/* ════════════════════════════════════════════════
   Saraos para Señoras — Welcome Summer
   Editorial landing — cream + rose alternating bands
══════════════════════════════════════════════════ */
:root {
  --cream:       #F6EFE9;
  --cream-deep: #EFE5DA;
  --rose:        #D89F92;     /* deepened for AA contrast w/ ink */
  --rose-soft:   #ECD8CF;     /* softer in-between band */
  --coral:       #E97C7B;
  --coral-deep:  #D85A30;
  --coral-hover: #D8615F;
  --ink:         #5E5C5E;
  --ink-deep:    #3F3D3F;
  --ink-soft:    #7A7679;
  --hairline:        rgba(94, 92, 94, 0.18);
  --hairline-rose:   rgba(94, 92, 94, 0.26);

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:  'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --max:        1240px;
  --max-narrow: 720px;
  --gutter:     clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
::selection { background: var(--coral); color: var(--cream); }

em, .italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
}
strong { font-weight: 600; color: var(--ink); }

/* Highlighted / quoted phrases sit in serif italic over a sans body, so
   make them clearly larger + bolder so they read as real highlights. */
.prose-narrow p:not(.bridge-text):not(.lede) em,
.about-text-col p:not(.about-close) em,
.includes-lede em,
.price-inner p:not(.price-close) em { font-size: 1.45em; font-weight: 600; line-height: 1; }
/* serif statement lines are already large — keep their emphasis inline-sized,
   just a touch bolder. */
.bridge-text em,
.about-close em,
.price-close em { font-weight: 600; }
.about-close em { font-size: 1.12em; }

/* Reveal animation — translate only (opacity stays 1, set inline by React) */
.reveal { will-change: transform; }

/* Umbrella sway */
@keyframes umbrella-sway {
  0%, 100% { transform: rotate(calc(var(--tilt, 0deg) - 6deg)); }
  50%      { transform: rotate(calc(var(--tilt, 0deg) + 6deg)); }
}
.umbrella { transform-origin: 50% 4%; }
.umbrella--sway { animation: umbrella-sway 6.5s ease-in-out infinite; transform: rotate(var(--tilt, 0deg)); }

@keyframes twinkle {
  0%, 100% { opacity: 1;   transform: scale(1)    rotate(var(--rot, 0deg)); }
  50%      { opacity: 0.55; transform: scale(0.92) rotate(calc(var(--rot, 0deg) + 8deg)); }
}

/* CTA pulse */
@keyframes cta-pulse-tight {
  0%   { box-shadow: 0 0 0 0 rgba(233, 124, 123, 0.4); }
  100% { box-shadow: 0 0 0 16px rgba(233, 124, 123, 0); }
}
.cta--pulse { animation: cta-pulse-tight 2.4s ease-out infinite; }

/* ════════════════════════════════════════════════
   MINI HEADER — appears on scroll
══════════════════════════════════════════════════ */
.mini-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  background: rgba(246, 239, 233, 0.96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--hairline);
  padding: 10px 0;
  transform: translateY(-100%);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.mini-header.is-visible { transform: translateY(0); }
.mini-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.mini-logo { display: inline-flex; align-items: center; }
/* Mini-header wordmark — compact, anthracite + coral on the cream bar */
.mini-header .wm { display: inline-flex; flex-direction: column; line-height: .92; }
.mini-header .wm-saraos { font-family: var(--serif); font-weight: 500; font-size: 19px; color: var(--ink); letter-spacing: .01em; }
.mini-header .wm-para { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--coral); margin-top: -1px; }
/* Mini-header section nav */
.mini-nav { display: flex; align-items: center; gap: 28px; }
.mini-nav a {
  font-family: var(--sans); font-size: 13.5px; font-weight: 500; color: var(--ink);
  letter-spacing: .01em; position: relative; padding: 4px 0; transition: color .2s ease;
}
.mini-nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--coral); transition: right .3s cubic-bezier(.2,.7,.2,1);
}
.mini-nav a:hover { color: var(--coral); }
.mini-nav a:hover::after { right: 0; }
.mini-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--coral);
  color: var(--cream);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background 240ms ease, transform 240ms ease;
}
.mini-cta:hover { background: var(--coral-hover); transform: translateY(-1px); }

/* ════════════════════════════════════════════════
   CTA buttons
══════════════════════════════════════════════════ */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: var(--coral);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition:
    background 280ms cubic-bezier(.2,.7,.2,1),
    transform 280ms cubic-bezier(.2,.7,.2,1),
    padding 280ms cubic-bezier(.2,.7,.2,1);
}
.cta--lg { padding: 16px 28px; font-size: 15px; }
.cta--xl { padding: 20px 36px; font-size: 16px; }
.cta:hover { background: var(--coral-hover); transform: translateY(-3px); padding-right: 44px; }
.cta:hover .cta-arrow { transform: translateX(6px); }
.cta-arrow { display: inline-flex; transition: transform 280ms ease; }
.cta-label { letter-spacing: 0.04em; }

/* ════════════════════════════════════════════════
   Typography helpers
══════════════════════════════════════════════════ */
.serif-h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  margin: 0 0 26px;
  color: var(--ink);
  text-wrap: balance;
}
.serif-h2.centered { text-align: center; }
.serif-h2.on-rose  { color: var(--ink-deep); }
.serif-h2 em       { color: var(--coral); }
.on-rose em        { color: var(--cream); }

.prose-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.prose-narrow p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 18px;
  color: var(--ink);
  text-wrap: pretty;
}
/* Lead paragraph — serif standfirst, clearly distinct from the sans body */
.prose-narrow p.lede {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.7vw, 33px);
  line-height: 1.32;
  letter-spacing: -.005em;
  color: var(--ink);
  margin-bottom: 28px;
  text-wrap: balance;
}
.prose-narrow p.lede em { font-style: italic; color: var(--coral); }
.prose-c { max-width: 600px; margin-left: auto; margin-right: auto; }
.centered { text-align: center; }
.centered-cta { display: flex; justify-content: center; margin: 32px 0 0; }

/* ════════════════════════════════════════════════
   HERO — full-bleed photo background, overlaid composition
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  min-height: 100vh;
  padding: 0;
}

/* Full-bleed background photo */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--cream-deep);
  overflow: hidden;
  z-index: 1;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% 50%;
  transition: transform 1400ms cubic-bezier(.2,.7,.2,1);
}
.hero:hover .hero-photo img { transform: scale(1.02); }

/* Cream wash fading from left edge → transparent toward photo */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    var(--cream) 0%,
    var(--cream) 50%,
    rgba(246, 239, 233, 0.96) 60%,
    rgba(246, 239, 233, 0.7) 72%,
    rgba(246, 239, 233, 0.25) 86%,
    rgba(246, 239, 233, 0) 100%
  );
  pointer-events: none;
}

/* Top bar — logo + mini nav within hero */
.hero-topbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(20px, 2.5vw, 32px) clamp(28px, 5vw, 72px);
  gap: 24px;
  background: transparent;
}
.hero-topbar-logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

/* Inner content overlaid on the photo */
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  padding: 0 clamp(28px, 5vw, 72px) clamp(36px, 5vw, 64px);
  min-height: calc(100vh - 140px);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(20px, 4vw, 40px);
  padding-bottom: clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: 620px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 1.0;
  letter-spacing: -0.018em;
  margin: 0 0 clamp(24px, 3vw, 36px);
  color: var(--ink);
  text-wrap: balance;
}
.hero-title em { color: var(--coral); }

.hero-divider {
  width: clamp(140px, 18vw, 240px);
  height: 1px;
  background: var(--hairline);
  margin: 0 0 clamp(20px, 2.5vw, 28px);
}

/* Meta now lives in the left column, above the CTA */
.hero-meta {
  display: grid;
  gap: 12px;
  margin: 0 0 clamp(24px, 3vw, 32px);
  width: 100%;
  max-width: 540px;
}
.hm-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: baseline;
  text-align: left;
}
.hm-k {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--coral);
  margin: 0;
}
.hm-v {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
}
.hm-s {
  font-family: var(--sans);
  font-style: normal;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ink-soft);
  display: inline;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: clamp(8px, 2vw, 16px);
}

/* Right column intentionally empty — keeps the photo visible */
.hero-right { display: none; }

/* Decorative scatter — like the butterflies in the reference */
.hero-deco { position: absolute; pointer-events: none; z-index: 4; }
.hero-deco-star-1 { top: 32%; right: 30%; }
.hero-deco-star-2 { bottom: 26%; right: 8%; animation: twinkle 5s ease-in-out infinite; }
.hero-deco-umb-1  { top: 14%; right: 6%; animation: umbrella-sway 7s ease-in-out infinite; }
.hero-deco-umb-2  { bottom: 12%; right: 32%; animation: umbrella-sway 8.5s ease-in-out infinite; }

@media (max-width: 880px) {
  .hero { min-height: auto; }
  .hero-photo::after {
    background: linear-gradient(
      180deg,
      var(--cream) 0%,
      rgba(246, 239, 233, 0.94) 35%,
      rgba(246, 239, 233, 0.55) 70%,
      rgba(246, 239, 233, 0) 100%
    );
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 90vh;
    padding: 0 var(--gutter) clamp(24px, 5vw, 48px);
  }
  .hero-left { max-width: 100%; }
  .hero-topbar { padding: 16px var(--gutter); }
  .hero-topbar-logo { max-width: 220px; }
  .hero-deco-umb-2, .hero-deco-star-1 { display: none; }
}
@media (max-width: 520px) {
  .hm-row { grid-template-columns: 1fr; gap: 2px; }
}

/* ════════════════════════════════════════════════
   BLOCK SECTIONS
══════════════════════════════════════════════════ */
.block { position: relative; padding: clamp(56px, 7vw, 100px) 0; overflow: hidden; }
.block--cream     { background: var(--cream); }
.block--rose-soft { background: var(--rose-soft); }
.block--rose      { background: var(--rose); }

.abs-star { position: absolute; pointer-events: none; }
.abs-star-a { top: 8%; right: 8%; animation: twinkle 5.5s ease-in-out infinite; }
.abs-umb { position: absolute; pointer-events: none; }
.abs-umb-a { top: 6%; left: -10px; }

/* ════════════════════════════════════════════════
   INCLUDES — card grid on rose
══════════════════════════════════════════════════ */
.includes {
  position: relative;
  background: var(--rose);
  padding: clamp(56px, 7vw, 110px) 0;
  overflow: hidden;
}
.includes-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.includes-lede {
  font-size: 19px;
  line-height: 1.55;
  max-width: 640px;
  margin: 0 0 40px;
  color: var(--ink-deep);
}
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.include-card {
  background: var(--cream);
  padding: 26px 24px 24px;
  border-radius: 6px;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1),
              border-color 320ms ease;
}
.include-card:nth-child(even) { background: #FDF6F1; }
.include-card:hover {
  transform: translateY(-4px);
  border-color: var(--coral);
}
.include-card:hover .ic-bar { width: 60px; background: var(--coral); }
.include-card:hover .ic-star { transform: rotate(60deg) scale(1.15); }

.ic-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ic-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  color: var(--coral);
  line-height: 1;
}
.ic-bar {
  flex: 0 0 28px;
  width: 28px;
  height: 1px;
  background: var(--hairline);
  transition: width 320ms ease, background 320ms ease;
}
.ic-star { margin-left: auto; transition: transform 500ms cubic-bezier(.2,.7,.2,1); }
.ic-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  text-wrap: pretty;
}
.ic-pre  { color: var(--ink-soft); }
.ic-highlight {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 21px;
  color: var(--coral);
  line-height: 1.2;
  display: inline;
}
.ic-rest { color: var(--ink); }

.includes-cta { display: flex; justify-content: center; margin-top: 48px; }
.includes .cta { background: var(--ink-deep); color: var(--cream); }
.includes .cta:hover { background: var(--ink); }

.includes-umb { position: absolute; pointer-events: none; opacity: 0.92; }
.iu-1 { top: -30px; right: 4%; }
.iu-2 { bottom: 6%; left: -16px; }
.includes-star { position: absolute; pointer-events: none; }
.is-1 { top: 12%; left: 40%; opacity: 0.5; animation: twinkle 5s ease-in-out infinite; }

@media (max-width: 880px) {
  .includes-grid { grid-template-columns: 1fr; }
  .iu-1 { top: -10px; right: -20px; transform: scale(0.75); }
  .iu-2 { display: none; }
}

/* ════════════════════════════════════════════════
   PRIMER SARAO — compact collage
══════════════════════════════════════════════════ */
.first-sarao-intro { margin-bottom: clamp(24px, 3vw, 36px); text-align: center; }
.first-sarao-intro .serif-h2 { text-align: center; }
.first-sarao-intro p { line-height: 1.95; }
.prose-narrow.first-sarao-intro p:not(.bridge-text):not(.lede) em { font-size: 1.6em; }

.scatter-stage {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 30px var(--gutter) 16px;
  column-count: 3;
  column-gap: clamp(14px, 2vw, 28px);
}
.scatter-cell {
  position: relative;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 clamp(18px, 2.6vw, 32px);
}
.scatter-cell:nth-child(3n+2) { margin-top: 26px; }
.scatter-cell:nth-child(3n)   { margin-top: 12px; }
.scatter-cell:hover { z-index: 30; }

.polaroid {
  position: relative;
  background: #ffffff;
  padding: 9px;
  display: block;
  width: 100%;
  transform: rotate(var(--tilt, 0deg));
  border: 1px solid rgba(94, 92, 94, 0.08);
  box-shadow: 0 16px 34px -20px rgba(94,92,94,.55), 0 3px 8px -4px rgba(94,92,94,.40);
  transition: transform 480ms cubic-bezier(.2,.7,.2,1), box-shadow 480ms ease;
  cursor: pointer;
  font: inherit; color: inherit; text-align: inherit;
  -webkit-appearance: none; appearance: none;
}
.scatter-cell:hover .polaroid {
  transform: rotate(0deg) translateY(-6px) scale(1.045);
  box-shadow: 0 34px 60px -26px rgba(94,92,94,.62), 0 6px 16px -8px rgba(94,92,94,.45);
}
.polaroid:focus-visible { outline: 2px solid var(--coral); outline-offset: 4px; }
.polaroid--note { padding: 8px 8px 12px; }
.polaroid-cap {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.22;
  color: var(--coral);
  text-align: center;
  padding: 10px 6px 4px;
  text-wrap: balance;
}

.polaroid-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: var(--cream-deep);
}
.polaroid-photo--wide { aspect-ratio: 4 / 3; }
.polaroid-photo img { width: 100%; height: 100%; object-fit: cover; }

.polaroid-note { width: 100%; overflow: hidden; background: #fff; border-radius: 2px; }
.polaroid-note img { width: 100%; height: auto; display: block; }

/* paper-tape strip on the photo polaroids — the "stuck on a table" feel */
.polaroid-tape {
  position: absolute; top: -9px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 58px; height: 18px;
  background: linear-gradient(180deg, rgba(233,124,123,.26), rgba(233,124,123,.12));
  border: 1px solid rgba(233,124,123,.16);
  box-shadow: 0 1px 3px rgba(94,92,94,.12);
  pointer-events: none;
}

.poly-star { position: absolute; pointer-events: none; z-index: 1; }
.poly-star-1 { top: 1%; right: 3%; animation: twinkle 4.5s ease-in-out infinite; }
.poly-star-2 { bottom: 8%; left: 2%; animation: twinkle 5s ease-in-out infinite; animation-delay: 1.5s; }
.poly-umb { position: absolute; pointer-events: none; z-index: 1; }
.poly-umb-1 { bottom: 4%; left: 1%; }

@media (max-width: 860px) {
  .scatter-stage { column-count: 2; max-width: 640px; }
  .poly-star-1, .poly-star-2, .poly-umb-1 { display: none; }
}
@media (max-width: 520px) {
  .scatter-stage { column-count: 1; max-width: 360px; column-gap: 0; }
  .scatter-cell, .scatter-cell:nth-child(3n+2), .scatter-cell:nth-child(3n) { margin-top: 0; }
}

/* ════════════════════════════════════════════════
   BRIDGE
══════════════════════════════════════════════════ */
.first-sarao { padding-bottom: clamp(18px, 2.4vw, 40px); }
.bridge { padding: clamp(22px, 3vw, 44px) 0 clamp(40px, 6vw, 80px); }
.bridge-text {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(27px, 3.6vw, 42px);
  line-height: 1.3;
  text-align: center;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.bridge-text--small {
  font-size: clamp(23px, 2.8vw, 33px);
  line-height: 1.4;
  color: var(--ink);
}
/* the generic `.prose-narrow p` (17px) outranks `.bridge-text`, so set the
   size with matching-or-higher specificity. Keep --small after the base. */
.prose-narrow p.bridge-text { font-size: clamp(27px, 3.6vw, 42px); }
.prose-narrow p.bridge-text--small { font-size: clamp(23px, 2.8vw, 33px); }
.bridge-text em { color: var(--coral); }
.bridge--alt { padding: clamp(36px, 5vw, 64px) 0; }

/* ════════════════════════════════════════════════
   PRICE — rose
══════════════════════════════════════════════════ */
.price { padding: clamp(64px, 8vw, 110px) 0; }
.price-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.price-headline {
  font-size: clamp(40px, 5.4vw, 68px);
  margin-bottom: 24px;
}
.price-pill {
  display: inline-block;
  background: var(--coral);
  color: var(--cream);
  padding: 0 18px;
  border-radius: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}
.price .on-rose, .price p.on-rose { color: var(--ink-deep); }
.price p.on-rose em { color: var(--cream); }
.price-close {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.45;
  margin-top: 28px;
  font-weight: 500;
}

.price-umb { position: absolute; pointer-events: none; opacity: 0.88; }
.price-umb-1 { top: 8%; left: -10px; }
.price-umb-2 { bottom: 4%; right: -6px; }
.price-star { position: absolute; pointer-events: none; }
.price-star-1 { top: 14%; right: 12%; opacity: 0.55; animation: twinkle 5s ease-in-out infinite; }

@media (max-width: 720px) {
  .price-umb-1 { transform: scale(0.7); }
  .price-umb-2 { transform: scale(0.7); right: -20px; }
}

/* ════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════ */
.about { padding: clamp(64px, 8vw, 110px) 0; }
.about-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 4.5vw, 80px);
  align-items: start;
}
.about-photo {
  position: relative;
  margin: 0;
  position: sticky;
  top: 100px;
}
.about-photo-frame {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream-deep);
}
.about-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}
.about-photo-star {
  position: absolute;
  top: -16px; right: -16px;
  animation: twinkle 5s ease-in-out infinite;
}
.about-text-col p {
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 18px;
  text-wrap: pretty;
}
.about-close {
  font-family: var(--serif);
  font-size: clamp(25px, 2.7vw, 33px);
  line-height: 1.32;
  font-weight: 500;
  color: var(--ink);
  margin-top: 32px !important;
  text-wrap: balance;
}
/* beat the generic `.about-text-col p` (17px) */
.about-text-col p.about-close { font-size: clamp(25px, 2.7vw, 33px); }
.about-umb { position: absolute; top: 2%; right: 3%; pointer-events: none; opacity: 0.85; }

@media (max-width: 880px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { position: relative; top: 0; max-width: 380px; margin: 0 auto; }
  .about-photo-frame { aspect-ratio: 4 / 4.2; }
  .about-photo-frame img { object-position: 50% 28%; }
}

/* ════════════════════════════════════════════════
   FINAL CTA — rose
══════════════════════════════════════════════════ */
.final-cta { padding: clamp(60px, 8vw, 110px) 0; text-align: center; }
.final-cta-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.final-disclaimer {
  margin-top: 30px;
  font-size: 19px;
  color: var(--ink-deep);
  line-height: 1.55;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.final-disclaimer em { color: var(--cream); font-size: 1.18em; font-weight: 600; }

.fc-umb { position: absolute; pointer-events: none; opacity: 0.9; }
.fc-umb-1 { top: -10px; left: -10px; }
.fc-umb-2 { bottom: -10px; right: -10px; }
.fc-star { position: absolute; pointer-events: none; }
.fc-star-1 { top: 18%; right: 14%; opacity: 0.55; animation: twinkle 5s ease-in-out infinite; }

/* ════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 48px 0 32px;
}
.site-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 36px;
}
/* Footer wordmark — cream + coral on the dark footer (matches hero) */
.footer-logo-link { display: inline-flex; }
.site-footer .wm { display: inline-flex; flex-direction: column; line-height: .98; }
.site-footer .wm-saraos { font-family: var(--serif); font-weight: 500; font-size: 32px; color: var(--cream); letter-spacing: .01em; }
.site-footer .wm-para { font-family: var(--serif); font-style: italic; font-size: 23px; color: var(--coral); margin-top: -2px; }
.site-footer .wm-by { font-family: var(--serif); font-style: italic; font-size: 12.5px; color: rgba(246,239,233,.6); letter-spacing: .04em; margin-top: 7px; }
.footer-meta { text-align: right; font-size: 14px; }
.footer-meta p { margin: 0 0 4px; }
.footer-fine { font-size: 12px; letter-spacing: 0.06em; opacity: 0.6; }

@media (max-width: 720px) {
  .site-footer-inner { grid-template-columns: 1fr; text-align: center; gap: 18px; }
  .footer-logo-link { margin: 0 auto; }
  .footer-meta { text-align: center; }
}
