/* ============================================================
   The People Place — Editorial Design System v2
   Paper texture, decorative ornaments, redesigned CTAs, tighter padding,
   image moments, hand-drawn flourishes. Above-industry-standard.
   ============================================================ */

:root {
  --cream:        #FAF6EE;
  --cream-deep:   #F2EAD6;
  --bone:         #ECE3CE;
  --terracotta:   #B85948;
  --terracotta-deep: #913D2F;
  --rose:         #C56B8C;
  --rose-soft:    #E8C9D2;
  --rose-deep:    #8E3A55;
  --sage:         #8FA88A;
  --sage-deep:    #5C7058;
  --indigo:       #2A4A6B;
  --indigo-deep:  #14283C;
  --honey:        #C9A356;
  --honey-deep:   #8E7029;
  --ink:          #1A1815;
  --ink-soft:     #4A4540;
  --gray:         #807A70;
  --gray-soft:    #D4CDB8;
  --crisis:       #8B2828;

  --font-serif:   'Fraunces', 'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-script:  'Caveat', 'Brush Script MT', cursive;

  --max-w:        1320px;
  --read-w:       680px;
  --header-h:     90px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}
/* Subtle paper-grain texture overlay across the whole site */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .1  0 0 0 0 .09  0 0 0 0 .08  0 0 0 .15 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
button { cursor: pointer; border: 0; background: 0; font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 4px; border-radius: 2px; }
::selection { background: var(--rose-soft); color: var(--ink); }

/* ===== Type scale */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -.018em;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
}
.display {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 9.5vw, 8.4rem);
  line-height: .92;
  letter-spacing: -.035em;
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
}
.display em, h1 em, h2 em { font-style: italic; font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1; color: var(--terracotta); }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); letter-spacing: -.012em; }
h4 { font-family: var(--font-sans); font-size: .82rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 1em; }

p { margin: 0 0 1.4em; max-width: 64ch; }
.lead { font-family: var(--font-serif); font-size: clamp(1.25rem, 1.8vw, 1.55rem); line-height: 1.45; color: var(--ink-soft); font-weight: 400; font-variation-settings: 'opsz' 36; max-width: 32ch; }
.lede-wide { max-width: 52ch; }

.script { font-family: var(--font-script); font-weight: 400; font-style: normal; }

.dropcap::first-letter {
  font-family: var(--font-serif);
  font-size: 5.4em;
  float: left;
  line-height: .8;
  margin: .08em .14em 0 -.04em;
  color: var(--terracotta);
  font-weight: 600;
}

/* ===== Layout */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.read { max-width: var(--read-w); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
@media (max-width: 600px) { .wrap { padding: 0 22px; } }

/* ===== Decorative ornaments — hand-drawn dividers */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin: 50px 0;
  color: var(--terracotta);
  font-family: var(--font-serif);
}
.ornament__line { display: block; width: 60px; height: 1px; background: currentColor; opacity: .4; }
.ornament__star { font-size: 1.4rem; opacity: .8; }
.ornament-sm { margin: 30px 0; }

.divider-flourish {
  display: flex; justify-content: center; align-items: center;
  padding: 60px 0; gap: 18px; color: var(--terracotta); opacity: .8;
}
.divider-flourish svg { display: block; }

/* ===== 988 Crisis ribbon */
.crisis {
  background: var(--crisis);
  color: var(--cream);
  padding: 12px 24px;
  font-size: .9rem;
  text-align: center;
  position: relative;
  z-index: 60;
  letter-spacing: .005em;
}
.crisis a { color: var(--cream); border-bottom: 1.5px solid rgba(250,246,238,.5); font-weight: 600; padding-bottom: 1px; }
.crisis a:hover { border-bottom-color: var(--cream); }
.crisis__sym { display: inline-block; transform: translateY(-1px); margin-right: 6px; }

/* ===== Header */
.masthead {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,246,238,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26,24,21,.07);
  padding: 18px 0;
}
.masthead__row { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand-mark { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.brand-mark__name { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; letter-spacing: -.01em; color: var(--ink); font-variation-settings: 'opsz' 36, 'SOFT' 100; }
.brand-mark__sub { font-family: var(--font-script); font-size: 1.05rem; color: var(--terracotta); margin-top: 2px; transform: rotate(-2deg); transform-origin: left; }
.nav { display: flex; align-items: center; gap: 28px; font-size: .95rem; }
.nav a { color: var(--ink-soft); position: relative; padding: 4px 0; font-weight: 500; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--terracotta); transition: width .35s cubic-bezier(.2,.8,.2,1); }
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

/* ===== Book a Session — hero CTA, redesigned, distinctive */
.btn-book {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
  color: var(--cream) !important;
  padding: 12px 12px 12px 24px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .005em;
  position: relative;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s;
  box-shadow: 0 4px 12px -2px rgba(184,89,72,.35), inset 0 1px 0 rgba(255,255,255,.18);
  overflow: hidden;
  white-space: nowrap;
}
.btn-book::after { display: none; }
.btn-book__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream); color: var(--terracotta);
  font-size: .9rem; transform: translateX(0); transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(184,89,72,.55), inset 0 1px 0 rgba(255,255,255,.18);
  color: var(--cream);
}
.btn-book:hover .btn-book__arrow { transform: translateX(4px) rotate(-2deg); }
.btn-book::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 1.6px; background: var(--ink); transition: all .3s; }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 20px 32px 32px; gap: 0; box-shadow: 0 10px 40px rgba(0,0,0,.06); border-top: 1px solid rgba(0,0,0,.06); }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid rgba(26,24,21,.08); }
  .btn-book { margin-top: 14px; align-self: stretch; justify-content: center; }
}

/* ===== Hand-drawn SVG underline under highlighted words */
.scribbled { position: relative; display: inline-block; }
.scribbled svg { position: absolute; left: -4%; right: -4%; bottom: -.2em; width: 108%; height: .35em; pointer-events: none; color: var(--terracotta); }

/* ===== Rotating circular stamp/seal */
.stamp {
  width: 160px; height: 160px;
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 5;
}
.stamp__svg { width: 100%; height: 100%; animation: stamp-rotate 24s linear infinite; }
.stamp__svg text { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; fill: var(--terracotta); }
.stamp__center { position: absolute; font-family: var(--font-script); color: var(--terracotta); font-size: 1.45rem; line-height: 1; transform: rotate(-4deg); text-align: center; }
@keyframes stamp-rotate { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .stamp__svg { animation: none; } }

/* ===== Bold full-bleed TERRACOTTA WALL section */
.wall {
  position: relative;
  padding: 140px 0;
  background: var(--terracotta);
  color: var(--cream);
  overflow: hidden;
  z-index: 2;
}
.wall::before {
  content: ''; position: absolute;
  width: 800px; height: 800px; border-radius: 50%;
  top: -300px; right: -300px;
  background: radial-gradient(circle, rgba(254,235,200,.18) 0%, transparent 70%);
  pointer-events: none;
}
.wall::after {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  bottom: -300px; left: -200px;
  background: radial-gradient(circle, rgba(0,0,0,.18) 0%, transparent 70%);
  pointer-events: none;
}
.wall__inner { position: relative; z-index: 2; }
.wall__display {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 14vw, 14rem);
  line-height: .85;
  letter-spacing: -.04em;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  color: var(--cream);
  margin: 0;
}
.wall__display em { font-style: normal; color: var(--rose-soft); }
.wall__lede {
  font-family: var(--font-serif); font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-style: italic; line-height: 1.4; max-width: 32ch;
  color: var(--cream); opacity: .92; margin-top: 30px;
}
.wall__handwritten {
  font-family: var(--font-script); font-size: 1.6rem;
  color: var(--rose-soft); transform: rotate(-2deg);
  display: inline-block; margin-bottom: 16px;
}

/* ===== Numbered section header */
.num-header { display: flex; align-items: baseline; gap: 32px; margin-bottom: 60px; }
.num-header__num {
  font-family: var(--font-serif); font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1; color: var(--terracotta);
  font-style: italic; font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  flex-shrink: 0;
  opacity: .85;
}
.num-header__body { flex: 1; max-width: 50ch; }
.num-header__body h2 { margin: 0 0 12px; }
@media (max-width: 720px) { .num-header { flex-direction: column; gap: 12px; } }

/* ===== HERO 2-photo collage with tape */
.hero__collage {
  position: relative;
  height: 100%;
  min-height: 640px;
}
.hero__photo-a, .hero__photo-b {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bone);
  box-shadow: 0 30px 80px -30px rgba(26,24,21,.4);
}
.hero__photo-a {
  top: 0; left: 0; width: 70%; height: 65%;
  border-radius: 200px 200px 16px 16px;
  z-index: 2;
}
.hero__photo-b {
  bottom: 0; right: 0; width: 60%; height: 55%;
  z-index: 1;
  transform: rotate(3deg);
}
.hero__photo-a img, .hero__photo-b img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 1.6s cubic-bezier(.2,.8,.2,1);
}
.hero__photo-a:hover img, .hero__photo-b:hover img { transform: scale(1.05); }
.hero__tape {
  position: absolute;
  background: rgba(255,250,235,.78);
  width: 90px; height: 24px;
  z-index: 4;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,.18);
  transform: rotate(-12deg);
}
.hero__tape.t1 { top: -10px; left: 30%; }
.hero__tape.t2 { bottom: -10px; right: 30%; transform: rotate(8deg); }
.hero__photo-a::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,24,21,.18) 100%);
  pointer-events: none;
}
@media (max-width: 980px) {
  .hero__collage { min-height: 480px; }
  .hero__photo-a { width: 80%; height: 70%; }
  .hero__photo-b { width: 70%; height: 60%; }
}

/* ===== Polaroid moments — replaces flat moments grid */
.polaroids {
  position: relative;
  padding: 80px 0 120px;
  background: var(--cream);
  z-index: 2;
}
.polaroids__strip {
  display: flex; gap: 40px; justify-content: center; align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto;
}
.polaroid {
  background: var(--cream);
  padding: 16px 16px 56px;
  box-shadow: 0 30px 60px -25px rgba(26,24,21,.32), 0 1px 2px rgba(26,24,21,.08);
  position: relative;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  border-radius: 2px;
}
.polaroid:nth-child(1) { transform: rotate(-4deg); }
.polaroid:nth-child(2) { transform: rotate(2deg) translateY(20px); }
.polaroid:nth-child(3) { transform: rotate(-2deg) translateY(-10px); }
.polaroid:nth-child(4) { transform: rotate(3deg); }
.polaroid:hover { transform: rotate(0) translateY(-8px) scale(1.04); z-index: 3; }
.polaroid img { width: 240px; height: 240px; object-fit: cover; display: block; }
.polaroid__cap { font-family: var(--font-script); color: var(--terracotta); font-size: 1.3rem; text-align: center; margin-top: 16px; }
.polaroid__tape { position: absolute; top: -10px; left: 50%; transform: translateX(-50%) rotate(-3deg); width: 70px; height: 22px; background: rgba(255,250,235,.85); box-shadow: 0 4px 8px -4px rgba(0,0,0,.16); }
@media (max-width: 760px) {
  .polaroids__strip { gap: 24px; }
  .polaroid img { width: 180px; height: 180px; }
}

/* ===== Multi-row marquee — bold 2-direction scrolling */
.marquee-stack { background: var(--cream-deep); padding: 26px 0; border-top: 1px solid rgba(26,24,21,.1); border-bottom: 1px solid rgba(26,24,21,.1); position: relative; z-index: 2; overflow: hidden; }
.marquee-stack__row { overflow: hidden; white-space: nowrap; padding: 6px 0; }
.marquee-stack__track { display: inline-flex; gap: 40px; animation: marquee 40s linear infinite; }
.marquee-stack__track--rev { animation: marquee-rev 50s linear infinite; }
@keyframes marquee-rev { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.marquee-stack__item {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-style: italic; color: var(--ink); white-space: nowrap;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-weight: 400;
  line-height: 1;
}
.marquee-stack__item.is-outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--terracotta);
  text-stroke: 1px var(--terracotta);
}
.marquee-stack__sep { font-family: var(--font-script); color: var(--terracotta); font-size: clamp(2rem, 4vw, 3.2rem); align-self: center; }

/* ===== GIANT FOOTER WORDMARK */
.foot { padding-top: 60px; padding-bottom: 0; margin-top: 0; }
.foot__wordmark {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 22vw, 22rem);
  line-height: .88;
  letter-spacing: -.05em;
  color: var(--cream);
  opacity: .08;
  margin: 60px 0 -60px;
  padding: 0 32px;
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  user-select: none;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
}
.foot__wordmark em { font-style: italic; opacity: 1; color: var(--rose); }

/* Section heading with eyebrow + display split layout */
.section--feature { position: relative; padding: 120px 0; }
.section--feature .feat-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: end; }
.section--feature h2 { margin: 0; font-size: clamp(2.6rem, 6vw, 5.2rem); line-height: .95; }
@media (max-width: 880px) { .section--feature .feat-grid { grid-template-columns: 1fr; gap: 30px; } }

/* Floating terracotta text strip — between sections */
.callout-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 36px 0;
  position: relative; z-index: 2;
  text-align: center;
  overflow: hidden;
}
.callout-strip__text {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-variation-settings: 'opsz' 36, 'SOFT' 100, 'WONK' 1;
  color: var(--cream);
}
.callout-strip__text em { color: var(--rose-soft); }

/* ===== HERO with decorative shape behind image */
.hero { position: relative; padding: 50px 0 80px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute;
  top: 100px; right: -8%; width: 460px; height: 460px;
  background: radial-gradient(circle, var(--rose-soft) 0%, transparent 70%);
  opacity: .55;
  z-index: 0;
}
.hero::after {
  content: ''; position: absolute;
  bottom: 40px; left: -6%; width: 320px; height: 320px;
  background: radial-gradient(circle, var(--sage) 0%, transparent 70%);
  opacity: .25;
  z-index: 0;
}
.hero__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
  min-height: calc(100vh - var(--header-h) - 100px);
  max-height: 920px;
  position: relative;
  z-index: 2;
}
.hero__words { padding-bottom: 40px; position: relative; }
.hero__handwritten {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--terracotta);
  transform: rotate(-3deg);
  display: inline-block;
  margin-bottom: 18px;
  line-height: 1;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.8rem, 8vw, 7.2rem);
  line-height: .94;
  letter-spacing: -.038em;
  font-weight: 400;
  margin: 0 0 .35em;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'WONK' 1;
  color: var(--ink);
}
.hero__title .word { display: inline-block; overflow: hidden; }
.hero__title .word > span { display: inline-block; transform: translateY(110%); transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.hero__title.in .word > span { transform: translateY(0); }
.hero__title em { font-style: italic; color: var(--terracotta); font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1; }
.hero__under { font-family: var(--font-serif); font-size: clamp(1.3rem, 1.9vw, 1.7rem); line-height: 1.4; color: var(--ink-soft); max-width: 26ch; margin: 0 0 36px; font-weight: 400; font-style: italic; }

.hero__cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
  color: var(--cream);
  padding: 18px 24px 18px 36px; border-radius: 999px; font-weight: 600;
  font-size: 1rem;
  margin-right: 12px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
  box-shadow: 0 8px 24px -8px rgba(184,89,72,.5), inset 0 1px 0 rgba(255,255,255,.18);
  position: relative;
  overflow: hidden;
}
.hero__cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.hero__cta-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream); color: var(--terracotta);
  font-size: 1rem; transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.hero__cta:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(184,89,72,.6), inset 0 1px 0 rgba(255,255,255,.18); color: var(--cream); }
.hero__cta:hover .hero__cta-arrow { transform: translateX(5px); }

.hero__cta-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 28px; border-radius: 999px; font-weight: 500;
  border: 1.5px solid var(--ink); color: var(--ink);
  transition: background .25s, color .25s;
}
.hero__cta-ghost:hover { background: var(--ink); color: var(--cream); }

.hero__visual {
  position: relative;
  height: 100%;
  min-height: 600px;
  border-radius: 280px 280px 24px 24px;
  overflow: hidden;
  background: var(--bone);
  box-shadow: 0 30px 80px -30px rgba(26,24,21,.35);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.02); transition: transform 1.6s cubic-bezier(.2,.8,.2,1); }
.hero__visual.in img { transform: scale(1.04); }
.hero__visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,24,21,.18) 100%);
  pointer-events: none;
}
.hero__visual-frame {
  position: absolute; inset: -4px;
  border: 1px solid rgba(184,89,72,.3);
  border-radius: 284px 284px 28px 28px;
  pointer-events: none;
  z-index: 3;
}

.hero__sticker {
  position: absolute; bottom: 30px; left: -28px;
  background: var(--cream); padding: 18px 22px; border-radius: 16px;
  box-shadow: 0 24px 60px -20px rgba(26,24,21,.25);
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-sans); max-width: 260px;
  transform: rotate(-3deg);
  border: 1px solid rgba(26,24,21,.06);
  z-index: 4;
}
.hero__sticker-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--rose-soft); color: var(--rose-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 600; font-size: 1.1rem;
}
.hero__sticker-text { font-size: .85rem; line-height: 1.4; color: var(--ink); }
.hero__sticker-text strong { display: block; font-weight: 600; color: var(--ink); }

.hero__marginalia {
  position: absolute; right: 32px; top: 25%;
  font-family: var(--font-script); color: var(--sage-deep);
  font-size: 1.2rem; transform: rotate(8deg);
  max-width: 180px; opacity: .85;
  z-index: 3;
}

@media (max-width: 980px) {
  .hero__layout { grid-template-columns: 1fr; gap: 50px; min-height: auto; max-height: none; }
  .hero__visual { min-height: 480px; border-radius: 200px 200px 20px 20px; }
  .hero__words { padding-bottom: 0; }
  .hero__marginalia { display: none; }
  .hero::before { width: 280px; height: 280px; }
  .hero::after { width: 200px; height: 200px; }
}

/* ===== Insurance pill row */
.ins-strip { padding: 50px 0; background: var(--cream); border-top: 1px solid rgba(26,24,21,.06); border-bottom: 1px solid rgba(26,24,21,.06); position: relative; z-index: 2; }
.ins-strip__head { font-family: var(--font-serif); font-size: 1.4rem; color: var(--ink); margin-bottom: 26px; max-width: 50ch; font-style: italic; font-weight: 400; }
.ins-strip__row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.ins-strip__pill {
  border: 1.5px solid var(--ink); padding: 12px 22px; border-radius: 999px;
  font-weight: 600; color: var(--ink); font-size: .92rem;
  transition: background .2s, color .2s, transform .2s;
  background: var(--cream);
}
.ins-strip__pill:hover { background: var(--ink); color: var(--cream); cursor: default; transform: translateY(-2px); }
.ins-strip__note { margin-top: 22px; font-size: .9rem; color: var(--gray); font-style: italic; }
.ins-strip__note a { color: var(--terracotta); border-bottom: 1px solid currentColor; }

/* ===== Sections — tighter, more visually distinct */
.section { padding: 80px 0; position: relative; z-index: 2; }
.section--lg { padding: 100px 0; }
.section-tight { padding: 50px 0; }
.section--cream { background: var(--cream); }
.section--bone { background: var(--bone); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--cream); }
.section--ink p { color: rgba(250,246,238,.84); }
.section--sage { background: var(--sage); color: var(--cream); }
.section--sage h2, .section--sage h3 { color: var(--cream); }
.section--sage p { color: rgba(250,246,238,.86); }

/* Section with overlapping decorative shape */
.section--shape { position: relative; }
.section--shape::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  opacity: .4; pointer-events: none;
}
.section--shape.shape-tl::before { top: -200px; left: -200px; background: radial-gradient(circle, var(--rose-soft), transparent 60%); }
.section--shape.shape-br::before { bottom: -200px; right: -200px; background: radial-gradient(circle, var(--bone), transparent 60%); opacity: 1; }

.section__intro { max-width: 50ch; margin-bottom: 60px; }
.section__intro h2 { margin-bottom: 24px; }

.eyebrow { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-sans); font-size: .82rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 26px; }
.eyebrow::before { content: ''; display: block; width: 38px; height: 1px; background: var(--terracotta); }

/* ===== BENTO services */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 220px; gap: 18px; }
.bento__tile {
  border-radius: 22px; padding: 32px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--cream-deep); color: var(--ink);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  text-decoration: none;
  border: 1px solid rgba(26,24,21,.05);
}
.bento__tile:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -20px rgba(26,24,21,.18); color: var(--ink); }
.bento__tile h3 { color: inherit; margin: 0 0 .5em; font-size: clamp(1.4rem, 2.2vw, 1.85rem); line-height: 1.05; }
.bento__tile p { font-size: .96rem; color: inherit; opacity: .82; max-width: 38ch; margin: 0 0 1em; }
.bento__tile .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: var(--cream);
  font-family: var(--font-serif); font-size: 1.1rem;
  align-self: flex-start;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), background .3s;
}
.bento__tile:hover .arrow { transform: translateX(6px); background: var(--terracotta); }
.bento__tile.is-tile-sage .arrow { background: var(--cream); color: var(--sage-deep); }
.bento__tile.is-tile-rose .arrow { background: var(--rose-deep); color: var(--cream); }
.bento__tile.is-tile-honey .arrow { background: var(--honey-deep); color: var(--cream); }

.bento__tile.is-large   { grid-column: span 8; }
.bento__tile.is-medium  { grid-column: span 4; grid-row: span 1; }
.bento__tile.is-tall    { grid-column: span 4; grid-row: span 2; }
.bento__tile.is-wide    { grid-column: span 6; }
.bento__tile.is-img     { padding: 0; align-items: stretch; }
.bento__tile.is-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bento__tile.is-img .bento__overlay {
  position: absolute; inset: 0; padding: 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(0deg, rgba(26,24,21,.78) 0%, rgba(26,24,21,.18) 50%, transparent 100%);
  color: var(--cream);
}
.bento__tile.is-img .bento__overlay h3 { color: var(--cream); }
.bento__tile.is-img .bento__overlay p { color: rgba(250,246,238,.92); }
.bento__tile.is-tile-rose { background: var(--rose-soft); }
.bento__tile.is-tile-sage { background: var(--sage); color: var(--cream); }
.bento__tile.is-tile-sage h3, .bento__tile.is-tile-sage p { color: var(--cream); }
.bento__tile.is-tile-sage p { opacity: .9; }
.bento__tile.is-tile-honey { background: var(--honey); color: var(--ink); }
.bento__tile.is-tile-cream { background: var(--cream); border: 1px solid rgba(26,24,21,.08); }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; }
  .bento__tile.is-large, .bento__tile.is-wide { grid-column: span 6; }
  .bento__tile.is-medium, .bento__tile.is-tall { grid-column: span 3; grid-row: span 1; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento__tile, .bento__tile.is-tall, .bento__tile.is-large, .bento__tile.is-wide, .bento__tile.is-medium { grid-column: span 1; grid-row: span 1; min-height: 220px; }
}

/* ===== Editorial team */
.team-spread { display: grid; grid-template-columns: repeat(12, 1fr); gap: 40px 32px; }
.portrait { position: relative; cursor: pointer; }
.portrait__frame {
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bone);
  position: relative;
  box-shadow: 0 20px 50px -25px rgba(26,24,21,.3);
}
.portrait__frame::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(184,89,72,.0);
  border-radius: inherit; transition: border-color .35s, inset .35s;
  pointer-events: none;
}
.portrait:hover .portrait__frame::after { border-color: rgba(184,89,72,.4); inset: -6px; border-radius: 206px 206px 26px 26px; }
.portrait__frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .8s;
  filter: contrast(1.02) saturate(1.04);
}
.portrait:hover .portrait__frame img { transform: scale(1.04); filter: contrast(1.04) saturate(1.1); }
.portrait__name { font-family: var(--font-serif); font-size: clamp(1.25rem, 1.8vw, 1.55rem); margin: 18px 0 4px; line-height: 1.1; }
.portrait__cred { font-family: var(--font-sans); font-size: .82rem; color: var(--terracotta); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 8px; }
.portrait__quote { font-family: var(--font-serif); font-style: italic; color: var(--ink-soft); font-size: 1rem; line-height: 1.45; max-width: 30ch; }
.portrait .scribble { position: absolute; top: -10px; right: -8px; font-family: var(--font-script); color: var(--sage-deep); font-size: 1.1rem; transform: rotate(8deg); background: var(--cream); padding: 4px 10px; border-radius: 12px; box-shadow: 0 6px 18px -4px rgba(0,0,0,.08); pointer-events: none; z-index: 3; }

.portrait.is-1 { grid-column: 1 / span 4; }
.portrait.is-2 { grid-column: 6 / span 4; transform: translateY(60px); }
.portrait.is-3 { grid-column: 10 / span 3; }
.portrait.is-4 { grid-column: 2 / span 4; transform: translateY(40px); }
.portrait.is-5 { grid-column: 7 / span 4; }
.portrait.is-6 { grid-column: 1 / span 4; transform: translateY(40px); }

@media (max-width: 980px) {
  .team-spread { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .portrait, .portrait.is-1, .portrait.is-2, .portrait.is-3, .portrait.is-4, .portrait.is-5, .portrait.is-6 { grid-column: span 1; transform: none; }
}
@media (max-width: 540px) { .team-spread { grid-template-columns: 1fr; } }

/* ===== Pull quote */
.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -.018em;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 36, 'SOFT' 100, 'WONK' 1;
  max-width: 22ch;
  margin: 60px auto;
  text-align: center;
  position: relative;
  padding: 0 32px;
}
.pull-quote::before { content: '“'; font-size: 5em; color: var(--terracotta); position: absolute; top: -.2em; left: 0; line-height: 1; opacity: .25; font-family: var(--font-serif); }
.pull-quote cite { display: block; margin-top: 24px; font-style: normal; font-family: var(--font-sans); font-size: .85rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--terracotta); }

/* ===== Article layout */
.article { max-width: 720px; margin: 0 auto; padding: 60px 24px; position: relative; z-index: 2; }
.article p { font-size: 1.12rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 1.5em; }
.article p strong { color: var(--ink); }
.article h2 { margin-top: 1.6em; margin-bottom: .6em; }
.article h2:first-child { margin-top: 0; }
.article h3 { margin-top: 1.6em; }
.article ul, .article ol { padding-left: 1.4em; margin-bottom: 1.5em; }
.article li { margin-bottom: .6em; line-height: 1.65; color: var(--ink-soft); }
.article-aside {
  border-top: 1px solid rgba(26,24,21,.12); border-bottom: 1px solid rgba(26,24,21,.12);
  padding: 28px 0; margin: 36px 0;
  font-family: var(--font-serif); font-size: 1.4rem; line-height: 1.4; font-style: italic;
  color: var(--ink); font-weight: 400;
}

/* ===== Form */
.form { max-width: 540px; }
.form__field { margin-bottom: 22px; }
.form__field label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 14px 0;
  border: 0; border-bottom: 1.5px solid var(--gray-soft);
  background: transparent; font-size: 1.05rem;
  font-family: var(--font-sans); color: var(--ink);
  transition: border-color .25s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 0; border-bottom-color: var(--terracotta); }
.form textarea { resize: vertical; min-height: 100px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__check { display: flex; gap: 12px; align-items: flex-start; margin: 24px 0; }
.form__check input { width: 18px; height: 18px; margin-top: 4px; flex-shrink: 0; accent-color: var(--terracotta); }
.form__check label { font-size: .9rem; color: var(--ink-soft); margin: 0; text-transform: none; letter-spacing: 0; font-weight: 400; line-height: 1.5; }
.form__submit {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
  color: var(--cream); border: 0;
  padding: 16px 28px 16px 36px; border-radius: 999px;
  font-size: 1rem; font-weight: 600;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 8px 24px -8px rgba(184,89,72,.5);
  position: relative; overflow: hidden;
}
.form__submit::after {
  content: ''; width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B85948' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 5l7 7-7 7'/></svg>");
  background-size: 16px; background-position: center; background-repeat: no-repeat;
  transition: transform .3s;
}
.form__submit:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(184,89,72,.6); }
.form__submit:hover::after { transform: translateX(4px); }

/* ===== FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(26,24,21,.12); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 28px 0; padding-right: 60px;
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; line-height: 1.3;
  color: var(--ink); position: relative;
  font-variation-settings: 'opsz' 36, 'SOFT' 100;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--terracotta); font-weight: 300; transition: transform .3s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item__answer { padding: 0 0 28px; color: var(--ink-soft); font-size: 1.04rem; line-height: 1.7; max-width: 60ch; }

/* ===== Image moments strip — between sections */
.moments {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  position: relative;
  z-index: 2;
}
.moments__item { aspect-ratio: 1/1; overflow: hidden; }
.moments__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .6s; filter: saturate(0.95) contrast(1.05); }
.moments__item:hover img { transform: scale(1.06); filter: saturate(1.1) contrast(1.05); }
@media (max-width: 760px) { .moments { grid-template-columns: repeat(2, 1fr); } }

/* ===== Footer */
.foot { background: var(--ink); color: rgba(250,246,238,.78); padding: 100px 0 32px; margin-top: 80px; position: relative; z-index: 2; }
.foot__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 80px; }
.foot a { color: rgba(250,246,238,.78); }
.foot a:hover { color: var(--rose-soft); }
.foot h5 { font-family: var(--font-sans); font-size: .82rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--cream); margin: 0 0 22px; }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 12px; font-size: .95rem; }
.foot__brand { font-family: var(--font-serif); font-size: 2.4rem; line-height: 1; color: var(--cream); margin-bottom: 16px; font-variation-settings: 'opsz' 144, 'SOFT' 80; }
.foot__signature { font-family: var(--font-script); font-size: 1.6rem; color: var(--rose); margin-top: 8px; transform: rotate(-3deg); display: inline-block; }
.foot__bottom { padding-top: 32px; border-top: 1px solid rgba(250,246,238,.12); display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; font-size: .82rem; color: rgba(250,246,238,.5); }
@media (max-width: 880px) { .foot__top { grid-template-columns: 1fr 1fr; gap: 40px 32px; } }
@media (max-width: 540px) { .foot__top { grid-template-columns: 1fr; } }

/* Pre-footer flourish */
.foot__flourish {
  text-align: center; padding: 40px 0;
  font-family: var(--font-script);
  color: var(--terracotta); font-size: 1.6rem;
  background: var(--cream); position: relative;
  z-index: 2;
}
.foot__flourish::before, .foot__flourish::after {
  content: ''; display: inline-block; width: 80px; height: 1px;
  background: var(--terracotta); opacity: .4;
  vertical-align: middle; margin: 0 18px;
}

/* ===== Reveal motion */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1.2s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-words .word { display: inline-block; overflow: hidden; }
.reveal-words .word > span { display: inline-block; transform: translateY(110%); transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.reveal-words.in .word > span { transform: translateY(0); }
.reveal-words.in .word:nth-child(2) > span { transition-delay: .08s; }
.reveal-words.in .word:nth-child(3) > span { transition-delay: .16s; }
.reveal-words.in .word:nth-child(4) > span { transition-delay: .24s; }
.reveal-words.in .word:nth-child(5) > span { transition-delay: .32s; }
.reveal-words.in .word:nth-child(6) > span { transition-delay: .40s; }
.reveal-words.in .word:nth-child(7) > span { transition-delay: .48s; }
.reveal-words.in .word:nth-child(8) > span { transition-delay: .56s; }

/* ===== Marquee */
.marquee { overflow: hidden; white-space: nowrap; padding: 26px 0; border-top: 1px solid rgba(26,24,21,.1); border-bottom: 1px solid rgba(26,24,21,.1); background: var(--cream-deep); position: relative; z-index: 2; }
.marquee__track { display: inline-flex; gap: 40px; animation: marquee 36s linear infinite; }
.marquee__item { font-family: var(--font-serif); font-size: clamp(1.5rem, 2.2vw, 1.95rem); font-style: italic; color: var(--ink); white-space: nowrap; }
.marquee__sep { font-family: var(--font-script); color: var(--terracotta); font-size: clamp(1.5rem, 2.2vw, 2rem); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== Photo block */
.photo-block { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.photo-block.flip { grid-template-columns: 1fr 1.2fr; }
.photo-block.flip .photo-block__img { order: 2; }
.photo-block__img { aspect-ratio: 4/5; overflow: hidden; border-radius: 200px 200px 16px 16px; box-shadow: 0 30px 60px -25px rgba(26,24,21,.3); }
.photo-block__img.flat { border-radius: 16px; aspect-ratio: 5/4; }
.photo-block__img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) { .photo-block, .photo-block.flip { grid-template-columns: 1fr; gap: 32px; } .photo-block.flip .photo-block__img { order: 0; } }

/* ===== CTA banner — beautiful section-level */
.cta-banner {
  position: relative;
  padding: 90px 0;
  background: var(--ink);
  overflow: hidden;
  z-index: 2;
}
.cta-banner::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  bottom: -300px; right: -200px;
  background: radial-gradient(circle, var(--terracotta) 0%, transparent 60%);
  opacity: .4;
  pointer-events: none;
}
.cta-banner::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  top: -200px; left: -100px;
  background: radial-gradient(circle, var(--rose-deep) 0%, transparent 60%);
  opacity: .35;
  pointer-events: none;
}
.cta-banner .wrap { text-align: center; }
.cta-banner h2 { color: var(--cream); font-size: clamp(2.6rem, 6vw, 5rem); max-width: 18ch; margin: 0 auto 36px; }
.cta-banner .hero__cta { background: var(--cream); color: var(--terracotta); }
.cta-banner .hero__cta:hover { background: var(--cream); color: var(--terracotta-deep); }
.cta-banner .hero__cta-arrow { background: var(--terracotta); color: var(--cream); }
.cta-banner .script-tag { font-family: var(--font-script); font-size: 1.4rem; color: var(--rose-soft); margin-bottom: 12px; display: inline-block; }

/* ===== Mobile sticky CTA */
.mob-cta {
  display: none; position: fixed; bottom: 16px; left: 16px; right: 16px;
  background: var(--ink); color: var(--cream); padding: 14px 18px; border-radius: 999px;
  z-index: 60; box-shadow: 0 16px 32px -8px rgba(0,0,0,.25);
  align-items: center; justify-content: space-between; gap: 12px;
}
.mob-cta strong { font-weight: 600; }
.mob-cta a { color: var(--cream); border: 1px solid var(--cream); padding: 8px 16px; border-radius: 999px; font-size: .85rem; font-weight: 600; }
@media (max-width: 760px) { .mob-cta { display: flex; } body { padding-bottom: 80px; } }

/* ===== Skip link */
.skip-link { position: absolute; top: -50px; left: 16px; background: var(--ink); color: var(--cream); padding: 12px 18px; border-radius: 0 0 12px 12px; z-index: 200; font-weight: 600; }
.skip-link:focus { top: 0; color: var(--cream); }

/* ===== Misc */
.text-center { text-align: center; }
.mt-l { margin-top: 60px; }
.mt-xl { margin-top: 100px; }
.divider { height: 1px; background: rgba(26,24,21,.12); margin: 60px 0; }
.tag { display: inline-block; padding: 4px 12px; background: var(--cream-deep); color: var(--ink-soft); border-radius: 999px; font-size: .78rem; font-weight: 500; margin: 0 4px 4px 0; letter-spacing: .02em; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
  .marquee__track { animation: none !important; }
}
