:root {
  --bg: #F5EFE6;
  --cream: #FBF8F2;
  --ink: #3D342B;
  --tan: #B08D6A;
  --tan-mid: #9C7B57;
  --tan-deep: #7A6248;
  --band: #EDE3D4;
  --gold: #C9A981;
  --blush: #E4C9BE;
  --body: #5F564A;
  --muted: #6C6355;
  --muted-2: #7C7264;
  --muted-3: #8B8071;
  --faint: #A89A86;
  --on-dark: #EFE7DA;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
  --shell: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* The width/height attributes on <img> map to CSS width/height as presentational hints. Without
   height:auto here, that hint keeps height definite, and every `aspect-ratio` below is ignored. */
img { display: block; max-width: 100%; height: auto; }
a { color: var(--tan-mid); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--ink); }
::selection { background: var(--blush); color: var(--ink); }

:focus-visible { outline: 2px solid var(--tan-deep); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--cream); padding: 12px 20px;
}
.skip:focus { left: 12px; top: 12px; }

@keyframes lvFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes lvFade { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn-sm { font-size: 11px; letter-spacing: .16em; padding: 9px 18px; }
.btn-block { width: 100%; }

.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: #2E2721; color: var(--bg); }

.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: #fff; color: var(--ink); }

.btn-outline { background: none; border-color: var(--tan); color: var(--tan-deep); }
.btn-outline:hover { background: var(--tan); color: var(--cream); }

.btn-ghost-light { border-color: rgba(251, 248, 242, .7); color: var(--cream); }
.btn-ghost-light:hover { background: rgba(251, 248, 242, .16); color: var(--cream); }

/* ---------- Announcement + header ---------- */
.announce {
  background: var(--ink);
  color: var(--on-dark);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  text-align: center;
  padding: 11px 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 230, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(176, 141, 106, .28);
}
.header-inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px 40px;
}
.nav { display: flex; gap: 34px; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; font-weight: 400; }
.nav-right { justify-content: flex-end; align-items: center; }
.nav a { color: var(--tan-mid); }
.nav a:hover { color: var(--ink); }
.brand { justify-self: center; display: flex; }
.brand img { height: 66px; width: auto; }

.cart-btn {
  display: flex; align-items: center; gap: 7px;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase; color: var(--tan-mid);
}
.cart-btn:hover { color: var(--ink); }
.cart-count {
  min-width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--tan); color: var(--cream);
  border-radius: 50%; font-size: 11px; letter-spacing: 0; padding: 0 6px;
}

.menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-btn span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 4px 0; }
.mobile-menu { display: none; }

/* ---------- Cart drawer ---------- */
.drawer-root { position: fixed; inset: 0; z-index: 100; display: flex; justify-content: flex-end; }
/* display:flex above would otherwise beat the UA's [hidden] { display: none } on equal specificity */
.drawer-root[hidden] { display: none; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(61, 52, 43, .42); animation: lvFade .3s ease both; }
.drawer {
  position: relative;
  width: min(440px, 92vw);
  height: 100%;
  background: var(--bg);
  box-shadow: -20px 0 60px rgba(61, 52, 43, .25);
  display: flex;
  flex-direction: column;
  animation: lvFadeUp .35s ease both;
}
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(176, 141, 106, .28);
}
.drawer-title { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.drawer-close { background: none; border: none; font-size: 26px; line-height: 1; color: var(--tan-deep); cursor: pointer; }

.drawer-state {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px; gap: 14px;
}
.drawer-state[hidden] { display: none; }
.drawer-empty-title { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--muted-3); }
.drawer-sent-title { font-family: var(--serif); font-size: 28px; font-weight: 500; }
.drawer-empty-text { font-size: 14px; line-height: 1.7; color: var(--muted); }

.drawer-body { flex: 1; overflow-y: auto; padding: 8px 28px; }
.drawer-body[hidden] { display: none; }

.cart-item {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(176, 141, 106, .2);
}
.cart-item-main { flex: 1; }
.cart-item-name { font-family: var(--serif); font-size: 19px; font-weight: 500; line-height: 1.2; }
.cart-item-price { font-size: 12px; color: var(--muted-3); margin-top: 2px; }
.qty { display: flex; align-items: center; gap: 10px; }
.qty button {
  width: 26px; height: 26px;
  border: 1px solid var(--tan); background: none; color: var(--tan-deep);
  border-radius: 50%; cursor: pointer; font-size: 15px; line-height: 1;
}
.qty button:hover { background: var(--tan); color: var(--cream); }
.qty span { min-width: 18px; text-align: center; font-size: 14px; }
.cart-line-total { min-width: 56px; text-align: right; font-size: 14px; }

.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; padding: 20px 0 4px; }
.cart-total-label { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-3); }
.cart-total { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.cart-fineprint { font-size: 11px; color: var(--faint); font-style: italic; }

.drawer-form {
  padding: 20px 28px 26px;
  border-top: 1px solid rgba(176, 141, 106, .28);
  display: flex; flex-direction: column; gap: 11px;
}
.drawer-form[hidden] { display: none; }
.drawer-form input,
.drawer-form textarea {
  background: var(--cream);
  border: 1px solid rgba(176, 141, 106, .4);
  padding: 13px 15px;
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  border-radius: 2px; outline: none; resize: vertical;
}
.drawer-form input:focus,
.drawer-form textarea:focus { border-color: var(--tan); }

.form-note { font-size: 12px; color: var(--tan-deep); }
.form-note.light { color: var(--gold); }
.form-note.center { text-align: center; margin-top: 14px; }
.form-note.is-error { color: #A5462F; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 88vh;
  min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: #F1E9DA;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* The design's gradient bottomed out at 12% over the headline. That was fine against a dark
   crest illustration but leaves cream text unreadable on this bright living-room photo. */
.hero-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(61, 52, 43, .46) 0%, rgba(61, 52, 43, .40) 45%, rgba(61, 52, 43, .60) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  color: var(--cream); padding: 0 24px;
  animation: lvFadeUp 1.1s ease both;
}
.eyebrow-rule {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  font-size: 13px; letter-spacing: .42em; text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow-rule span { width: 44px; height: 1px; background: rgba(251, 248, 242, .6); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 104px);
  line-height: .98;
  text-shadow: 0 2px 30px rgba(61, 52, 43, .35);
}
.hero h1 em { font-style: italic; font-weight: 400; }
.hero-content p {
  max-width: 560px; margin: 26px auto 0;
  font-size: 17px; line-height: 1.7;
  color: rgba(251, 248, 242, .92);
}
.hero-cta { display: flex; gap: 16px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }

/* ---------- Intro statement ---------- */
.intro { max-width: 920px; margin: 0 auto; padding: 110px 40px; text-align: center; }
.intro-mark {
  width: 118px; height: 118px;
  border-radius: 50%; object-fit: cover;
  margin: 0 auto 34px;
  box-shadow: 0 12px 40px rgba(61, 52, 43, .12);
}
.intro p {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.42;
  font-weight: 400;
  color: #4A4034;
}
.intro p em { font-style: italic; color: var(--tan-mid); }

/* ---------- Shared section bits ---------- */
.section { max-width: var(--shell); margin: 0 auto; padding: 110px 40px; }
.band { background: var(--band); padding: 104px 40px; }
.dark { background: var(--ink); color: var(--on-dark); padding: 104px 40px; }
.band-inner { max-width: var(--shell); margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head.narrow { max-width: 640px; margin-left: auto; margin-right: auto; margin-bottom: 58px; }

.eyebrow {
  font-size: 12px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--tan); font-weight: 400; margin-bottom: 14px;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.light { color: rgba(251, 248, 242, .85); }

h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px, 4.6vw, 58px); line-height: 1; }
h2 em { font-style: italic; }
.h2-tight { font-size: clamp(32px, 4vw, 52px); line-height: 1.06; margin-bottom: 26px; }

.section-lede { margin: 20px auto 0; font-size: 16px; line-height: 1.75; color: var(--muted); }
.section-lede.light { color: rgba(239, 231, 218, .8); max-width: 540px; }

.grid { display: grid; }
.grid-products { grid-template-columns: repeat(5, 1fr); gap: 26px; }
.grid-stories { grid-template-columns: repeat(3, 1fr); gap: 34px; }
.grid-animals { grid-template-columns: repeat(6, 1fr); gap: 22px; }
.grid-two { grid-template-columns: 1fr 1fr; gap: 34px; }

/* Media boxes get their height from aspect-ratio, so a child img with height:100% has no
   resolvable percentage basis and falls back to its natural height, bursting the box.
   Taking the img out of flow with inset:0 gives object-fit a definite box to cover. */
.product-media,
.story-media,
.card-media,
.pool-strip a { position: relative; overflow: hidden; }

.product-media img,
.story-media img,
.card-media img,
.pool-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  background: rgba(251, 248, 242, .92); color: var(--tan-deep);
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 2px;
}
.price { font-size: 15px; color: #4A4034; white-space: nowrap; }

/* ---------- Products ---------- */
.product { display: flex; flex-direction: column; }
.product-media { position: relative; aspect-ratio: 4 / 5; margin-bottom: 18px; background: #EDE4D6; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product h3 { font-family: var(--serif); font-size: 25px; font-weight: 500; line-height: 1.15; }
.product-desc { font-size: 13px; line-height: 1.6; color: var(--muted-2); margin: 6px 0 12px; min-height: 42px; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.avail { font-size: 11px; color: var(--faint); font-style: italic; margin-top: 8px; }

/* ---------- Stories ---------- */
.story { display: flex; flex-direction: column; }
.story-media { position: relative; aspect-ratio: 1; margin-bottom: 18px; background: #EDE4D6; border-radius: 3px; overflow: hidden; }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.story-head h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; line-height: 1.1; }
.story-desc { font-size: 13px; line-height: 1.65; color: var(--muted-2); margin: 8px 0 14px; }
.story .btn { align-self: flex-start; margin-top: auto; }

/* ---------- Pool House ---------- */
.pool-hero { position: relative; min-height: 560px; height: 78vh; display: flex; align-items: center; }
.pool-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pool-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(61, 52, 43, .62) 0%, rgba(61, 52, 43, .30) 55%, rgba(61, 52, 43, .15) 100%);
}
.pool-content {
  position: relative; z-index: 2;
  max-width: var(--shell); width: 100%;
  margin: 0 auto; padding: 0 40px;
  color: var(--cream);
}
.pool-content > * { max-width: 520px; }
.pool-content h2 { line-height: 1.02; font-size: clamp(38px, 5vw, 68px); margin-bottom: 22px; }
.pool-content p { font-size: 16px; line-height: 1.75; color: rgba(251, 248, 242, .92); margin-bottom: 22px; }

.pills { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; list-style: none; }
.pills li {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid rgba(251, 248, 242, .5); border-radius: 100px; padding: 6px 14px;
}
.stats { display: flex; gap: 34px; margin-bottom: 34px; flex-wrap: wrap; }
.stat-n { font-family: var(--serif); font-size: 32px; line-height: 1; }
.stat-n span { font-size: 16px; }
.stat-l { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(251, 248, 242, .8); margin-top: 5px; }

.pool-strip { display: grid; grid-template-columns: repeat(4, 1fr); }
.pool-strip a { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.pool-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pool-strip a:hover img { transform: scale(1.04); }

/* ---------- Photography cards ---------- */
.card {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 12px 40px rgba(61, 52, 43, .08);
}
.card-media { aspect-ratio: 16 / 10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.card-body { padding: 34px 34px 38px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1.1; margin-bottom: 12px; }
.card-body p { font-size: 15px; line-height: 1.7; color: var(--muted); margin-bottom: 22px; }
.card-body .btn { align-self: flex-start; margin-top: auto; padding: 14px 30px; letter-spacing: .18em; }

/* ---------- Our story ---------- */
.story-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.story-photo { position: relative; }
.story-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 40%;
  border-radius: 3px; box-shadow: 0 20px 60px rgba(61, 52, 43, .18);
}
.story-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--bg); padding: 16px 22px;
  box-shadow: 0 10px 30px rgba(61, 52, 43, .14);
  font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--tan-deep);
}
.prose { display: flex; flex-direction: column; gap: 18px; font-size: 16px; line-height: 1.8; color: var(--body); max-width: 480px; }

/* ---------- Herd ---------- */
.animal { text-align: center; }
.animal img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 50%; margin-bottom: 16px;
  border: 1px solid rgba(201, 169, 129, .3);
}
.animal-name { display: block; font-family: var(--serif); font-size: 21px; font-weight: 500; }
.animal-kind {
  display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(201, 169, 129, .85); margin-top: 3px;
}
.wide-figure { margin-top: 70px; }
.wide-figure img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; object-position: center 42%; border-radius: 3px; }
.wide-figure figcaption {
  text-align: center; font-family: var(--serif); font-style: italic;
  font-size: 22px; color: rgba(239, 231, 218, .85); margin-top: 20px;
}

/* ---------- Journal ---------- */
.journal { max-width: 760px; margin: 0 auto; padding: 110px 40px; text-align: center; }
.journal h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.08; margin-bottom: 18px; }
.journal .section-lede { margin-bottom: 34px; }
.subscribe { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.subscribe input {
  flex: 1;
  background: var(--cream);
  border: 1px solid rgba(176, 141, 106, .4);
  padding: 15px 18px;
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  border-radius: 2px; outline: none;
}
.subscribe input:focus { border-color: var(--tan); }
.subscribe .btn { padding: 15px 30px; letter-spacing: .18em; white-space: nowrap; }

/* ---------- Contact ---------- */
.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start;
}
.contact-lede { font-size: 16px; line-height: 1.8; color: rgba(239, 231, 218, .82); max-width: 380px; margin-bottom: 28px; }
.contact-quote { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--blush); }

.enquiry { display: flex; flex-direction: column; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enquiry input,
.enquiry select,
.enquiry textarea {
  width: 100%;
  background: rgba(251, 248, 242, .06);
  border: 1px solid rgba(201, 169, 129, .35);
  padding: 14px 16px;
  font-family: var(--sans); font-size: 14px; color: var(--bg);
  border-radius: 2px; outline: none; resize: vertical;
}
.enquiry input::placeholder,
.enquiry textarea::placeholder { color: rgba(239, 231, 218, .5); }
.enquiry input:focus,
.enquiry select:focus,
.enquiry textarea:focus { border-color: var(--gold); }
.enquiry option { color: var(--ink); }
.enquiry .btn { align-self: flex-start; }

/* ---------- Footer ---------- */
.site-footer { background: var(--band); border-top: 1px solid rgba(176, 141, 106, .3); padding: 70px 40px 40px; }
.footer-inner {
  max-width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; align-items: start;
}
.footer-mark { height: 82px; width: auto; margin-bottom: 16px; }
.footer-blurb { font-size: 14px; line-height: 1.7; color: var(--muted-2); max-width: 280px; }
.footer-head { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--tan-mid); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
.footer-bar {
  max-width: var(--shell); margin: 56px auto 0; padding-top: 26px;
  border-top: 1px solid rgba(176, 141, 106, .28);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 12px; letter-spacing: .1em; color: var(--muted-3);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .grid-products { grid-template-columns: repeat(3, 1fr); }
  .grid-animals { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  /* nav-left is display:none here, so only .brand and .nav-right are placed: logo left,
     actions right. (Keeping 1fr auto 1fr would let the wider right column shove the logo
     off-centre, since an fr track can't shrink below its content's min-width.) */
  .header-inner { grid-template-columns: auto 1fr; padding: 12px 20px; }
  .nav-left, .nav-desktop-only { display: none; }
  .menu-btn { display: block; }
  .brand { justify-self: start; }
  .brand img { height: 54px; }

  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px 20px 20px;
    border-top: 1px solid rgba(176, 141, 106, .28);
  }
  .mobile-menu.is-open { display: flex; }
  .mobile-menu a {
    padding: 12px 0;
    font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
    border-bottom: 1px solid rgba(176, 141, 106, .18);
  }

  .section { padding: 72px 24px; }
  .band, .dark { padding: 72px 24px; }
  .journal, .intro { padding: 72px 24px; }

  .grid-stories { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .grid-two { grid-template-columns: 1fr; }
  .story-split { grid-template-columns: 1fr; gap: 48px; }
  .story-photo { max-width: 460px; }
  .story-badge { left: 16px; bottom: -18px; }
  .prose { max-width: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 44px; }
  .contact-lede { max-width: none; }

  .pool-content { padding: 0 24px; }
  .pool-hero { height: auto; min-height: 0; padding: 90px 0; }
  .pool-strip { grid-template-columns: repeat(2, 1fr); }

  .hero { height: auto; min-height: 0; padding: 120px 0 100px; }
}

@media (max-width: 640px) {
  .announce { font-size: 10px; letter-spacing: .18em; padding: 9px 14px; }
  .grid-products { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .grid-stories { grid-template-columns: 1fr; }
  .grid-animals { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .product h3 { font-size: 21px; }
  .product-desc { min-height: 0; }
  .product-foot { flex-direction: column; align-items: flex-start; gap: 8px; }

  .subscribe { flex-direction: column; }
  .field-row { grid-template-columns: 1fr; }
  .card-body { padding: 26px 24px 30px; }
  .stats { gap: 22px; }
  .footer-inner { grid-template-columns: 1fr; gap: 34px; }
  .footer-bar { flex-direction: column; gap: 10px; text-align: center; }
  .wide-figure { margin-top: 48px; }
  .wide-figure img { aspect-ratio: 4 / 3; }
}
