:root {
  --ink: #14110d;
  --forest: #121c16;
  --forest-2: #18251b;
  --forest-black: #100f0d;
  --cream: #f4ede1;
  --paper: #fff9ed;
  --sage: #b7bea7;
  --gold: #d3a747;
  --terracotta: #b75f34;
  --copper: #d98551;
  --muted: #6d6659;
  --line: rgba(20, 17, 13, 0.14);
  --light-line: rgba(244, 237, 225, 0.18);
  --shadow: 0 24px 70px rgba(20, 17, 13, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(211, 167, 71, 0.18), transparent 26rem),
    linear-gradient(180deg, #fbf5e9 0%, #efe5d6 100%);
  font-family: Avenir, "Avenir Next", "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
  padding: 0.9rem clamp(1rem, 3vw, 3.2rem);
  color: var(--cream);
  background: rgba(18, 28, 22, 0.97);
  border-bottom: 1px solid var(--light-line);
  backdrop-filter: blur(12px);
}

.brand {
  display: grid;
  gap: 0.12rem;
  text-decoration: none;
  min-width: 210px;
}

.brand-dots {
  display: flex;
  gap: 0.42rem;
  margin-bottom: 0.1rem;
}

.brand-dots span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.brand-dots span:nth-child(1) {
  background: #ffd047;
}

.brand-dots span:nth-child(2) {
  background: #ff8b43;
}

.brand-dots span:nth-child(3) {
  background: #ef2724;
}

.brand-name {
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1;
  letter-spacing: 0.04em;
}

.brand-line {
  color: rgba(244, 237, 225, 0.78);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.3rem);
  font-size: 0.95rem;
}

.main-nav a,
.nav-cta {
  text-decoration: none;
}

.main-nav a {
  color: rgba(244, 237, 225, 0.86);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border: 1px solid rgba(244, 237, 225, 0.4);
  color: var(--cream);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(18rem, 0.84fr) minmax(22rem, 1.16fr);
  min-height: min(680px, calc(100vh - 84px));
  background: var(--forest);
  color: var(--cream);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(18, 28, 22, 0.99) 0%,
      rgba(18, 28, 22, 0.97) 31%,
      rgba(24, 29, 22, 0.78) 42%,
      rgba(24, 29, 22, 0.24) 52%,
      rgba(24, 29, 22, 0.04) 66%,
      rgba(16, 15, 13, 0.12) 82%,
      rgba(16, 15, 13, 0.72) 100%
    ),
    linear-gradient(
      180deg,
      rgba(18, 28, 22, 0.26) 0%,
      rgba(18, 28, 22, 0.04) 42%,
      rgba(18, 28, 22, 0.28) 100%
    );
}

.hero::after {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(18, 28, 22, 0.18), transparent 20%, transparent 80%, rgba(16, 15, 13, 0.28)),
    linear-gradient(180deg, rgba(18, 28, 22, 0.18), transparent 28%, transparent 74%, rgba(18, 28, 22, 0.28));
}

.hero-left-floral,
.hero-right-floral {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(7.2rem, 11vw, 10rem);
  background:
    linear-gradient(90deg, rgba(18, 28, 22, 0.58), rgba(18, 28, 22, 0.28) 54%, transparent 82%),
    url("./assets/derived/hero-floral-left.png") center / cover no-repeat;
  filter: saturate(0.96) brightness(1.22) contrast(1.04);
  opacity: 0.88;
  pointer-events: none;
}

.hero-left-floral {
  left: 0;
  opacity: 0.78;
  mask-image: radial-gradient(ellipse 132% 92% at left center, #000 34%, rgba(0, 0, 0, 0.74) 58%, transparent 92%);
  -webkit-mask-image: radial-gradient(ellipse 132% 92% at left center, #000 34%, rgba(0, 0, 0, 0.74) 58%, transparent 92%);
}

.hero-right-floral {
  right: 0;
  transform: scaleX(-1);
  opacity: 0.72;
  mask-image: radial-gradient(ellipse 118% 84% at right center, #000 42%, rgba(0, 0, 0, 0.82) 62%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 118% 84% at right center, #000 42%, rgba(0, 0, 0, 0.82) 62%, transparent 90%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  grid-column: 1 / 2;
  align-self: center;
  padding:
    clamp(3rem, 8vw, 6.4rem)
    clamp(1.3rem, 5vw, 5.2rem)
    clamp(3rem, 8vw, 6.4rem)
    clamp(6.8rem, 13vw, 12rem);
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 8.5ch;
  font-size: clamp(3.25rem, 8vw, 7.25rem);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.65rem);
}

.hero-text {
  max-width: 34rem;
  margin: 1.35rem 0 0;
  color: rgba(244, 237, 225, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
  border: 1px solid currentColor;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.button.primary {
  color: #fff8ea;
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.button.secondary {
  color: var(--cream);
  background: transparent;
  border-color: rgba(244, 237, 225, 0.42);
}

.button.secondary.light {
  border-color: rgba(244, 237, 225, 0.55);
}

.hero-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  min-height: 100%;
  margin: 0;
  background: var(--forest-black);
}

.hero-art::after {
  display: none;
}

.hero-art img {
  width: 60%;
  max-width: none;
  height: 100%;
  min-height: min(680px, calc(100vh - 84px));
  object-fit: cover;
  object-position: 52% 50%;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 7%, rgba(0, 0, 0, 0.72) 21%, #000 35%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 7%, rgba(0, 0, 0, 0.72) 21%, #000 35%);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--forest);
  color: var(--cream);
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.proof-strip div {
  min-height: 104px;
  padding: 1.35rem clamp(1rem, 3vw, 2rem);
  border-right: 1px solid var(--light-line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--gold);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-strip span {
  margin-top: 0.4rem;
  color: rgba(244, 237, 225, 0.78);
  line-height: 1.45;
}

.collections {
  padding: clamp(3.2rem, 7vw, 5rem) clamp(1rem, 4vw, 4.5rem);
  background:
    linear-gradient(rgba(255, 249, 237, 0.92), rgba(255, 249, 237, 0.92)),
    var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 2rem;
}

.section-heading h2 {
  max-width: 12ch;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.35rem);
  max-width: 1180px;
  margin: 0 auto;
}

.collection-card {
  min-width: 0;
  background: #f5ecdf;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(20, 17, 13, 0.08);
}

.collection-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.collection-card h3 {
  margin: 1rem 1rem 0.25rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.collection-card p {
  margin: 0 1rem 1rem;
  color: var(--muted);
  line-height: 1.45;
}

.rooms {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(24rem, 1.28fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 4.5rem);
  color: var(--cream);
  background:
    linear-gradient(115deg, rgba(18, 28, 22, 1), rgba(24, 37, 27, 0.96)),
    var(--forest);
}

.rooms-copy {
  align-self: center;
  max-width: 34rem;
}

.rooms-copy p:not(.eyebrow) {
  color: rgba(244, 237, 225, 0.82);
  line-height: 1.72;
  margin: 1.25rem 0 1.7rem;
}

.room-gallery {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
  justify-content: end;
  width: min(100%, 66rem);
  margin-left: auto;
}

.room-frame {
  position: relative;
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 237, 225, 0.16);
  background: var(--forest-black);
  box-shadow: var(--shadow);
}

.room-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--forest-black);
}

.room-frame figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.65rem;
  color: var(--cream);
  background: rgba(18, 28, 22, 0.78);
  border: 1px solid rgba(244, 237, 225, 0.18);
  font-size: 0.82rem;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(14rem, 0.55fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 4.8rem) clamp(1rem, 4vw, 4.5rem);
  background:
    radial-gradient(circle at 92% 10%, rgba(211, 167, 71, 0.18), transparent 18rem),
    #eadccd;
}

.story-image {
  justify-self: end;
  width: min(320px, 100%);
  border: 12px solid #2c2118;
  box-shadow: var(--shadow);
}

.story-copy {
  max-width: 48rem;
}

.story-copy p:not(.eyebrow) {
  color: #4d4539;
  font-size: 1.05rem;
  line-height: 1.7;
}

.gifts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 4.5rem);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.gifts div {
  max-width: 54rem;
}

.gifts p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) minmax(0, 1.4fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem clamp(1rem, 4vw, 4.5rem);
  color: rgba(244, 237, 225, 0.78);
  background: var(--forest-black);
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
}

.footer-brand .brand-line {
  display: none;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .rooms,
  .section-heading,
  .story-band,
  .gifts,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 40rem;
  }

  .hero-copy {
    padding:
      clamp(4rem, 13vw, 6rem)
      clamp(1.2rem, 6vw, 2rem)
      3rem
      clamp(5.5rem, 17vw, 8rem);
  }

  .hero-art {
    min-height: 100%;
  }

  .hero-art img {
    width: 82%;
    min-height: 40rem;
    object-position: 58% 50%;
  }

  .proof-strip,
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-gallery {
    grid-template-columns: 1.12fr 1fr 1fr;
    gap: 0.75rem;
  }

  .story-image {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand-line {
    max-width: 17rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero::after {
    opacity: 0.72;
  }

  .hero-left-floral,
  .hero-right-floral {
    width: 4.9rem;
    opacity: 0.66;
  }

  .hero-right-floral {
    opacity: 0.48;
  }

  .hero-copy {
    width: 100%;
    max-width: 24rem;
    padding-right: 1rem;
    padding-left: clamp(4.35rem, 16vw, 5.25rem);
  }

  .hero .eyebrow {
    max-width: 15.5rem;
    line-height: 1.42;
    letter-spacing: 0.08em;
  }

  .hero-text {
    max-width: 17.5rem;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    max-width: 17rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .proof-strip,
  .room-gallery,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--light-line);
  }

  .gifts .button {
    width: 100%;
  }
}

/* ============================================================ */
/* v2 additions (used by index_v2.html only - v1 unaffected)     */
/* ============================================================ */

/* v2 hero zoom-out: matches v1 hero band feel.
   Cover-fit (so image fills its box - no letterbox), narrower width
   (48% so the child sits in the right zone without dominating),
   small right padding (so the child centres in the right zone instead
   of being flush right), object-position upper-third (to bring more
   of the painted field above the face into view, mimicking v1's wider
   composition), gentler mask (fade over first 14% only - not 36% -
   so the face content is preserved). The portrait sits left enough that the
   child stays complete and the source artwork background can carry the outer
   fade into the floral band. */
.hero-art-v2 img {
  width: 50%;
  max-width: 50%;
  height: 100%;
  margin-right: 7%;
  object-fit: cover;
  object-position: center 32%;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 5%, #000 14%, #000 88%, rgba(0, 0, 0, 0.78) 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 5%, #000 14%, #000 88%, rgba(0, 0, 0, 0.78) 94%, transparent 100%);
}

/* v2 hero copy: shift the headline + body block slightly right of the
   v1 position so the page has visual breathing room on the far left
   (matches Pano's "give it its place" call). */
.hero-v2 .hero-copy {
  padding-left: clamp(9.5rem, 17vw, 17rem);
}

/* v2 hero floral edge fade — Variation 4 (chosen 2026-05-05).
   Three techniques bundled to soften the hard band-boundary:
     1) Tonal handshake — soft-light blend so the cream floral takes on
        the dark green's value world (no colour collision at the seam).
     2) Sharper inward radial fade — mask centre at 4% from outer edge,
        transparent at 78% (v1 was 92%) so the floral dissolves before
        reaching the headline's left padding / portrait's outer bleed.
     3) Noise-broken edge — SVG fractalNoise mask intersected with the
        radial so the seam grain organic instead of a geometric line.
   Locked: child portrait, headline, body, CTAs, right-side artwork bleed.
   Touched: only the two floral underlay regions. */
.hero-v2 .hero-left-floral,
.hero-v2 .hero-right-floral {
  background:
    linear-gradient(90deg, rgba(18, 28, 22, 0.42), rgba(18, 28, 22, 0.14) 55%, transparent 82%),
    url("./assets/derived/hero-floral-left.png") center / cover no-repeat,
    var(--forest);
  background-blend-mode: normal, soft-light, normal;
  filter: saturate(0.86) brightness(1.12) contrast(1.0);
}

.hero-v2 .hero-left-floral {
  opacity: 0.78;
  mask-image:
    radial-gradient(ellipse 100% 78% at 4% center,
      #000 0%,
      #000 22%,
      rgba(0, 0, 0, 0.78) 42%,
      rgba(0, 0, 0, 0.36) 62%,
      transparent 78%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240' preserveAspectRatio='none'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='3' seed='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1.6 -0.25'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mask-size: 100% 100%, 320px 320px;
  mask-repeat: no-repeat, repeat;
  mask-composite: intersect;
  -webkit-mask-image:
    radial-gradient(ellipse 100% 78% at 4% center,
      #000 0%,
      #000 22%,
      rgba(0, 0, 0, 0.78) 42%,
      rgba(0, 0, 0, 0.36) 62%,
      transparent 78%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240' preserveAspectRatio='none'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='3' seed='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1.6 -0.25'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  -webkit-mask-size: 100% 100%, 320px 320px;
  -webkit-mask-repeat: no-repeat, repeat;
  -webkit-mask-composite: source-in;
}

.hero-v2 .hero-right-floral {
  /* Right band set to fully opaque (1.0) so the saturated child-portrait
     painting next to it cannot bleed through and shift the perceived green.
     Left band stays at 0.78 because the flat dark-green hero ground underneath
     it produces the same rendered green at any opacity — bleed-through of
     forest into forest is invisible. The mask still creates the inward fade,
     so the seam still dissolves; opacity=1 only removes neighbour-bleed in
     the dense region of the band. */
  opacity: 1;
  mask-image:
    radial-gradient(ellipse 100% 78% at 4% center,
      #000 0%,
      #000 22%,
      rgba(0, 0, 0, 0.78) 42%,
      rgba(0, 0, 0, 0.36) 62%,
      transparent 78%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240' preserveAspectRatio='none'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='3' seed='5' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1.6 -0.25'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mask-size: 100% 100%, 320px 320px;
  mask-repeat: no-repeat, repeat;
  mask-composite: intersect;
  -webkit-mask-image:
    radial-gradient(ellipse 100% 78% at 4% center,
      #000 0%,
      #000 22%,
      rgba(0, 0, 0, 0.78) 42%,
      rgba(0, 0, 0, 0.36) 62%,
      transparent 78%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240' preserveAspectRatio='none'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='3' seed='5' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1.6 -0.25'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  -webkit-mask-size: 100% 100%, 320px 320px;
  -webkit-mask-repeat: no-repeat, repeat;
  -webkit-mask-composite: source-in;
}

/* Room frame variant - cover-fit instead of contain-fit.
   Use when a landscape room render should fill its frame without
   letterbox (lady is 4:3 landscape - cover crops sides minimally,
   focal point centered). */
.room-frame.room-frame-fill img {
  object-fit: cover;
  object-position: center;
}

/* ----- v2 rooms section (lady left, sofa center hero, sawubona right) ----- */

/* Shrink the text column so the gallery uses the wide left space. */
.rooms.rooms-v2 {
  grid-template-columns: minmax(13rem, 0.46fr) minmax(28rem, 1.54fr);
}

/* Three-column gallery with center column wider (room-frame-hero).
   align-items stretch + fixed height = all three frames same height. */
.rooms.rooms-v2 .room-gallery {
  grid-template-columns: 1fr 1.7fr 1fr;
  align-items: stretch;
  width: 100%;
}

/* Override aspect-ratio + contain-fit from v1 .room-frame img.
   Fixed height + cover-fit = equal heights across all 3 columns,
   image content fills the frame (no letterbox), focal point centered. */
.rooms.rooms-v2 .room-frame {
  height: 360px;
}

.rooms.rooms-v2 .room-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

/* Center frame (room-frame-hero): subtle border/shadow lift so it reads
   as the visual anchor of the row, not just wider. */
.rooms.rooms-v2 .room-frame-hero {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(244, 237, 225, 0.22);
}

@media (max-width: 920px) {
  .rooms.rooms-v2 .room-gallery {
    grid-template-columns: 1fr;
  }

  .rooms.rooms-v2 .room-frame {
    height: 280px;
  }

  .hero-v2 .hero-copy {
    padding-left: clamp(5.5rem, 17vw, 8rem);
  }
}


/* Collection cards as full-card links (v2 uses <a> wrapping) */
.collection-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.collection-card a:hover h3,
.collection-card a:focus-visible h3 {
  color: var(--terracotta);
}

/* Card 3: Sawubona poster (artwork in top half, text in bottom half).
   Crop the card thumbnail to the artwork portion. */
.collection-card.card-sawubona img {
  object-position: top center;
}

/* Aletha quote embedded in Sawubona story */
.aletha-quote {
  margin: 1.6rem 0 0;
  padding: 1.1rem 1.4rem;
  border-left: 3px solid var(--terracotta);
  background: rgba(215, 197, 168, 0.4);
}

.aletha-quote p {
  margin: 0;
  font-style: italic;
  color: #4d4539;
  line-height: 1.65;
}

.aletha-quote cite {
  display: block;
  margin-top: 0.55rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Review strip section */
.review-strip {
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 4.5rem);
  background:
    linear-gradient(rgba(255, 249, 237, 0.96), rgba(255, 249, 237, 0.96)),
    var(--paper);
  border-top: 1px solid var(--line);
}

.reviews-heading {
  max-width: 1180px;
  margin: 0 auto 2rem;
}

.reviews-heading h2 {
  max-width: 18ch;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.6rem);
  max-width: 1180px;
  margin: 0 auto;
}

.review-card {
  margin: 0;
  padding: 1.5rem 1.4rem;
  background: #f5ecdf;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(20, 17, 13, 0.06);
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.55;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.review-card cite {
  display: block;
  margin-top: 0.85rem;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Gift clarity line - the digital-download-only legal line */
.gift-clarity {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  font-style: italic;
}

/* Pinterest near-footer strip */
.pinterest-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 4.5rem);
  color: var(--cream);
  background:
    linear-gradient(115deg, rgba(24, 37, 27, 0.96), rgba(18, 28, 22, 0.99)),
    var(--forest);
}

.pinterest-strip h2 {
  max-width: 22ch;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.05;
}

.pinterest-strip p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: rgba(244, 237, 225, 0.78);
  line-height: 1.6;
  max-width: 36rem;
}

/* Footer extensions for v2 (links + NulaAndCo route) */
.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links p {
  margin: 0;
}

.footer-nulaandco {
  font-size: 0.88rem;
  color: rgba(244, 237, 225, 0.62);
  line-height: 1.55;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 920px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .pinterest-strip {
    grid-template-columns: 1fr;
  }

  .footer-actions {
    justify-content: flex-start;
  }
}
