/* ============================================
   ROOTED INSIGHT SOMATICS
   Editorial wellness, global styles
   ============================================ */

:root {
  /* Official brand kit */
  --cream: #fdf6f1;
  --ink: #3c3833;
  --brown: #7a5b4c;
  --terracotta-deep: #b66146;
  --terracotta: #d48a75;
  --teal-deep: #318f9a;
  --teal: #7ca8ad;
  --teal-soft: #b9cfd1;

  /* Derived neutrals */
  --cream-deep: #f2e7db;
  --brown-soft: #8c7062;
  --muted: #8a7d72;
  --line: rgba(60, 56, 51, 0.12);

  /* Section tones, softened warm neutrals; plaster texture adds the depth */
  --tone-clay: #ecdbcb;
  --tone-terra: #d8b59b;
  --tone-warm-mid: #e9d8c7;

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  --max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-lg: 28px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  position: relative;
}
/* Soft paper grain, fine noise overlay across everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.28;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.35 0 0 0 0 0.27 0 0 0 0 0.22 0 0 0 0.07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

body { background-color: var(--cream); }

/* Editorial ornament, a thin line with a centered glyph,
   used between sections to give a paper-and-ink rhythm */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0.5rem 0;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 1.4rem;
}
.ornament::before, .ornament::after {
  content: "";
  flex: 0 1 120px;
  height: 1px;
  background: var(--line);
}
.ornament span {
  font-style: italic;
  letter-spacing: 0.06em;
}

/* sections positioned for layered children */
.section, .who, .final-cta, .feature, .si-hero, .page-hero, .plaster {
  position: relative;
}
/* Soft plaster / limewash mottle, applied ONLY to .plaster sections.
   Multiplies a cloudy tonal layer onto the section's base color. */
.plaster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.5;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='560' height='560'><filter id='p'><feTurbulence type='fractalNoise' baseFrequency='0.013 0.018' numOctaves='4' seed='7' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.32 0 0 0 0 0.25 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23p)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.3 0 0 0 0 0.24 0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23g)'/></svg>");
  background-size: 560px 560px, 180px 180px;
}

.section > .container,
.who > .container,
.final-cta > .container,
.feature > .container,
.si-hero > .si-hero-inner,
.page-hero > .container,
.plaster > .container {
  position: relative;
  z-index: 1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--brown);
}
h1 { font-size: clamp(2.6rem, 6.2vw, 5.4rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  font-weight: 500;
}

p { color: var(--brown-soft); max-width: 60ch; }

.lead { font-size: 1.1rem; line-height: 1.8; color: var(--brown-soft); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 4.5vw, 4rem) 0; }

.cream { background: var(--cream); }
.cream-deep { background: var(--cream-deep); }
.tone-clay { background: var(--tone-clay); }
.tone-terra { background: var(--tone-terra); }
.tone-warm-mid { background: var(--tone-warm-mid); }

/* ---------- Nav (frosted parchment) ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(90, 70, 60, 0.08);
}
/* paper grain laid over the frosted cream */
.nav::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='ng'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.36 0 0 0 0 0.28 0 0 0 0 0.22 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23ng)'/></svg>");
  background-size: 180px 180px;
}
.nav-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.83rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--brown);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  height: 126px;
  width: auto;
  display: block;
}
.nav .brand-logo { margin: -38px 0; }
footer .brand-logo { height: 92px; margin: -24px 0; }
.brand em {
  font-style: italic;
  color: var(--terracotta-deep);
}
.nav-links {
  display: flex;
  gap: 2.9rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-family: var(--serif);
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 400;
  color: var(--brown-soft);
  position: relative;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  transition: color 0.35s var(--ease), background 0.35s var(--ease);
}
.nav-links a:not(.nav-cta):hover {
  color: var(--brown);
  background: rgba(212, 138, 117, 0.14);
}
.nav-links a.active:not(.nav-cta) {
  color: var(--brown);
  background: rgba(212, 138, 117, 0.1);
}

.nav-links a.nav-cta {
  background: var(--brown);
  color: var(--cream) !important;
  padding: 0.66rem 1.55rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  text-transform: none;
  font-family: var(--serif);
  line-height: 1.2;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.nav-cta:hover {
  background: var(--terracotta-deep);
  color: var(--cream) !important;
  transform: translateY(-1px);
}
.nav-cta::after { content: none !important; display: none !important; }

/* ---------- Nav dropdown (Offerings) ---------- */
.nav-item { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 0.4rem; }
.has-dropdown > a::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.6;
  transition: transform 0.35s var(--ease);
}
.has-dropdown:hover > a::after { transform: rotate(225deg) translateY(2px); }
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.55rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 48px -28px rgba(90, 70, 60, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: 60;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}
.dropdown a {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--brown-soft);
  padding: 0.62rem 1rem;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.dropdown a:hover {
  background: rgba(212, 138, 117, 0.14);
  color: var(--brown);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--brown);
  transition: 0.3s var(--ease);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 1.9rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.btn-primary {
  background: var(--brown);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(90, 70, 60, 0.5);
}
.btn-outline {
  border-color: var(--brown);
  color: var(--brown);
  background: transparent;
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-text {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-text .arrow { transition: transform 0.4s var(--ease); }
.btn-text:hover .arrow { transform: translateX(6px); }

/* ---------- HERO ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  align-items: stretch;
  min-height: clamp(690px, 88vh, 905px);
  gap: 0;
}
.hero-text {
  padding: clamp(2rem, 3.4vw, 3.4rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-text .eyebrow { margin-bottom: 1.6rem; }
.hero h1 {
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
  line-height: 1.14;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 300;
  max-width: 18ch;
}
.hero h1 .accent {
  font-style: normal;
  color: var(--terracotta);
}
.hero p {
  margin-bottom: 2.1rem;
  max-width: 38ch;
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-image {
  position: relative;
  background: var(--cream-deep);
  overflow: hidden;
  border-bottom-left-radius: var(--radius-lg);
}
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease);
}
.hero-image:hover img { transform: scale(1.04); }
.hero-image::after { content: none; }
.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(253, 246, 241, 0.92);
  backdrop-filter: blur(8px);
  padding: 1rem 1.3rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---------- Section header ---------- */
.section-head { margin-bottom: clamp(2.2rem, 4vw, 3.4rem); max-width: 760px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.4rem; display: inline-block; }
.section-head p { margin-top: 1.4rem; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- Offerings grid ---------- */
.offerings {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.4rem);
}
.offering {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: transform 0.5s var(--ease);
}
.offering:hover { transform: translateY(-6px); }
.offering-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-deep);
}
.offering-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.offering:hover .offering-img img { transform: scale(1.06); }
.offering h3 {
  font-style: italic;
  font-weight: 400;
}
.offering-num {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--terracotta-deep);
  margin-bottom: 0.4rem;
}
.offering p { font-size: 0.95rem; line-height: 1.7; }

/* ---------- Who this is for ---------- */
.who {
  background: var(--cream);
}
.who-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}
.who-intro { position: sticky; top: 110px; }
.who-intro .eyebrow { display: inline-block; margin-bottom: 1.4rem; }
.who-intro h2 {
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.6rem;
}
.who-intro p { font-size: 1.05rem; }
.who-list { list-style: none; }
.who-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.8rem;
  align-items: baseline;
  padding: 1.7rem 0;
  border-top: 1px solid var(--line);
}
.who-list li:last-child { border-bottom: 1px solid var(--line); }
.who-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--terracotta-deep);
}
.who-text {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.35;
  color: var(--brown);
}

/* ---------- Philosophy ---------- */
.philosophy::after { opacity: 0.22; }
.philosophy .split-image { box-shadow: 0 30px 60px -36px rgba(90, 70, 60, 0.35); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.split-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream-deep);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { margin-bottom: 1.8rem; }
.split .eyebrow { margin-bottom: 1.2rem; display: inline-block; }
.split p + p { margin-top: 1.2rem; }
.split-actions { margin-top: 2.4rem; }

/* ---------- Stretch Inward feature ---------- */
.feature {
  position: relative;
  background: var(--tone-terra);
  overflow: hidden;
  padding: clamp(5rem, 12vw, 10rem) 0;
}
.feature::before, .feature::after { content: none; }
.feature-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.feature-text .eyebrow { margin-bottom: 1.4rem; display: inline-block; color: var(--terracotta-deep); }
.feature h2 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-style: italic;
  margin-bottom: 2rem;
  font-weight: 300;
}
.feature h2 .underline {
  font-style: normal;
  color: var(--brown);
  position: relative;
}
.feature-text p { margin-bottom: 2.4rem; font-size: 1.05rem; }
.feature-media {
  position: relative;
  aspect-ratio: 4/5;
}
.feature-media .layer-2 {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(90, 70, 60, 0.4);
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- About Monica ---------- */
.about-monica {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.about-monica .portrait {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream-deep);
}
.about-monica .portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-monica h2 { font-style: italic; margin-bottom: 1.8rem; font-weight: 300; }
.about-monica .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--terracotta-deep);
  margin: 2rem 0 2.4rem;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background-color: #2f8e96;
  background-image:
    linear-gradient(rgba(38, 96, 102, 0.32), rgba(38, 96, 102, 0.32)),
    url("teal-texture-2.png?v=1");
  background-size: cover;
  background-position: center;
  color: var(--cream);
  text-align: center;
  padding: clamp(4.4rem, 8.75vw, 7.5rem) 0;
  position: relative;
  overflow: hidden;
}
.final-cta h2 { color: #ffffff; }
.final-cta .eyebrow { color: var(--teal-soft); }
.final-cta p { color: rgba(255, 255, 255, 0.86); }
.final-cta .btn-primary {
  background: var(--cream);
  color: #2b6d74;
}
.final-cta .btn-primary:hover {
  background: #ffffff;
  color: #2b6d74;
  transform: translateY(-2px);
}
.final-cta::before { content: none; }
.final-cta .container { position: relative; }
.final-cta .eyebrow { margin-bottom: 2rem; display: inline-block; }
.final-cta h2 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-style: italic;
  margin-bottom: 2.6rem;
  font-weight: 300;
}
.final-cta p {
  max-width: 480px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

/* ---------- Footer ---------- */
footer {
  background: var(--cream-deep);
  color: var(--brown);
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 4rem;
}
footer .brand { color: var(--brown); display: block; margin-bottom: 1.2rem; }
footer p { color: var(--brown-soft); font-size: 0.95rem; max-width: 30ch; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.4rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a {
  color: var(--brown-soft);
  font-size: 0.95rem;
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--terracotta-deep); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 1.2rem; display: inline-block; }
.page-hero h1 {
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.4rem;
}
.page-hero p { max-width: 56ch; margin: 0 auto; font-size: 1.1rem; }
.page-hero + .section { padding-top: clamp(1.6rem, 3vw, 2.6rem); }

/* ---------- About page ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-intro .portrait {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-intro .portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-values {
  background: var(--cream-deep);
  text-align: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-top: 4rem;
  text-align: left;
}
.value {
  padding: 2.4rem;
  background: var(--cream);
  border-radius: var(--radius);
}
.value-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.value h3 { font-style: italic; margin-bottom: 0.8rem; }
.value p { font-size: 0.95rem; }

/* ---------- Offerings page ---------- */
.offering-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  margin-bottom: clamp(5rem, 8vw, 8rem);
}
.offering-detail:nth-child(even) > .od-image { order: 2; }
.od-image {
  aspect-ratio: 5/6;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.od-image img { width: 100%; height: 100%; object-fit: cover; }
.od-text .eyebrow { margin-bottom: 1.2rem; display: inline-block; }
.od-text h2 { font-style: italic; margin-bottom: 1.6rem; font-weight: 300; }
.od-text .od-meta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin: 2rem 0 2.4rem;
}
.od-meta span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  background: var(--cream-deep);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
}

/* ---------- Contact ---------- */
#contact { scroll-margin-top: 90px; padding: clamp(2.4rem, 4vw, 3.6rem) 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.contact-info .eyebrow { display: inline-block; margin-bottom: 1rem; color: var(--teal-deep); }
.contact-title {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 2.9rem);
  margin-bottom: 1.1rem;
}
.contact-lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--brown-soft);
  margin-bottom: 2rem;
  max-width: 42ch;
}
.contact-details { display: flex; flex-direction: column; }
.contact-detail {
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}
.contact-detail:last-child { border-bottom: 1px solid var(--line); }
.contact-detail h4 {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.contact-detail a, .contact-detail span {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--brown);
  font-style: italic;
  transition: color 0.3s var(--ease);
}
.contact-detail a:hover { color: var(--teal-deep); }

form {
  background: #ffffff;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -40px rgba(90, 70, 60, 0.35);
}
.field { margin-bottom: 1.1rem; }
.field:last-of-type { margin-bottom: 1.4rem; }
form label {
  color: var(--brown-soft);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.45rem;
}
#contact input, #contact select, #contact textarea {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 0.82rem 1.1rem;
}
#contact textarea { min-height: 84px; }
.field { margin-bottom: 1.6rem; }
label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
input, textarea, select {
  width: 100%;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(124, 168, 173, 0.18);
}
textarea { min-height: 140px; resize: vertical; }

/* ---------- Stretch Inward page ---------- */
.si-hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--cream-deep);
  overflow: hidden;
  padding: 6rem var(--gutter);
}
.si-hero::before, .si-hero::after { content: none; }
.si-hero-inner { position: relative; z-index: 1; max-width: 880px; }
.si-hero h1 {
  font-size: clamp(3rem, 9vw, 7.4rem);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 2rem;
}
.si-hero h1 .accent { font-style: normal; color: var(--terracotta); }
.si-hero p { font-size: 1.2rem; max-width: 56ch; margin: 0 auto 2.8rem; }

.si-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.pillar { padding: 2.4rem 0; border-top: 1px solid var(--line); }
.pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--terracotta);
  margin-bottom: 0.8rem;
}
.pillar h3 { font-style: italic; margin-bottom: 1rem; font-size: 1.5rem; }

.waitlist {
  background: var(--brown);
  color: var(--cream);
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) 0;
  border-radius: var(--radius-lg);
  margin: 0 var(--gutter);
}
.waitlist h2 { color: var(--cream); font-style: italic; margin-bottom: 1.6rem; font-weight: 300; }
.waitlist p { color: rgba(253, 246, 241, 0.75); margin: 0 auto 2.6rem; max-width: 50ch; }
.waitlist-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
}
.waitlist-form input {
  background: transparent;
  border: none;
  padding: 0.8rem 1.2rem;
  flex: 1;
}
.waitlist-form button {
  border: none;
  background: var(--terracotta);
  color: var(--cream);
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.waitlist-form button:hover { background: var(--terracotta-deep); }

/* ---------- Offering detail pages ---------- */
.subhead { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.subhead.center { margin-left: auto; margin-right: auto; text-align: center; }
.subhead .eyebrow { display: inline-block; margin-bottom: 1rem; }
.subhead h2 { font-style: italic; font-weight: 300; }
.prose { max-width: 760px; }
.prose.center { margin: 0 auto; text-align: center; }
.prose p { font-size: 1.08rem; margin-bottom: 1.3rem; }
.prose.center p { max-width: 62ch; margin-left: auto; margin-right: auto; }
.prose p:last-child { margin-bottom: 0; }

.bullet-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.bullet-grid li {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--brown);
  font-size: 1.06rem;
}
.bullet-grid li::before {
  content: "";
  flex-shrink: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2rem);
}
.work-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 2.8rem);
  box-shadow: 0 24px 50px -38px rgba(90, 70, 60, 0.35);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 60px -36px rgba(90, 70, 60, 0.42);
}
.work-card h3 {
  font-style: italic;
  margin-bottom: 0.9rem;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
}
.work-card > p {
  color: var(--brown-soft);
  font-size: 1rem;
  line-height: 1.7;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.work-card .ideal {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin-bottom: 1rem;
  font-weight: 500;
}
.work-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.work-card ul li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  color: var(--brown-soft);
  font-size: 0.98rem;
}
.work-card ul li::before {
  content: "";
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* Compact pricing section (Stretch Inward) so both tiers fit on screen */
.pricing { padding: clamp(2rem, 3.4vw, 3rem) 0; }
.pricing .subhead { margin-bottom: clamp(1.2rem, 2.2vw, 1.8rem); }
.pricing .work-card { padding: clamp(1.4rem, 2.2vw, 2rem); }
.pricing .work-card h3 { font-size: clamp(1.6rem, 2.2vw, 2rem); margin-bottom: 0.5rem; }
.pricing .work-card > p { font-size: 0.94rem; line-height: 1.5; padding-bottom: 0.85rem; margin-bottom: 0.85rem; }
.pricing .work-card .ideal { margin-bottom: 0.6rem; }
.pricing .work-card ul { gap: 0.35rem; }
.pricing .work-card ul li { font-size: 0.9rem; }

.closing { text-align: center; }
.closing .eyebrow { display: inline-block; margin-bottom: 1.6rem; }
.closing p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.4;
  color: var(--brown);
  max-width: 800px;
  margin: 0 auto 1rem;
  font-weight: 300;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { aspect-ratio: 4/5; border-bottom-left-radius: 0; }
  .offerings { grid-template-columns: repeat(2, 1fr); }
  .split, .feature-inner, .about-monica, .about-intro,
  .offering-detail, .contact-grid {
    grid-template-columns: 1fr;
  }
  .offering-detail:nth-child(even) > .od-image { order: 0; }
  .values-grid, .si-pillars { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .who-intro { position: static; }
  .bullet-grid, .work-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    padding: 2rem var(--gutter);
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    gap: 1.2rem;
  }
  /* dropdown becomes inline sub-list on mobile */
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0.4rem 0 0 1rem;
    min-width: 0;
    gap: 0.2rem;
  }
  .has-dropdown > a::after { display: none; }
  .dropdown a { font-size: 0.95rem; color: var(--muted); padding: 0.4rem 0.6rem; }
}
@media (max-width: 560px) {
  .offerings { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .waitlist-form { flex-direction: column; border-radius: var(--radius); padding: 1rem; gap: 0.8rem; }
  .waitlist-form input { text-align: center; }
}
