/* Raising You Too — earthy editorial wellness */

:root {
  --ivory: #F6F1E8;
  --ivory-2: #F1EADE;
  --oat: #E8DFCE;
  --sand: #D9C9AC;
  --clay: #B89072;
  --clay-deep: #9C7556;
  --sage: #A0AC8E;
  --sage-deep: #7E8A6C;
  --olive: #5F6A4B;
  --beige: #C9B89A;
  --blush: #E8D5C5;
  --brown: #5A4936;
  --brown-soft: #7A6650;
  --ink: #38302A;
  --hairline: rgba(90, 73, 54, 0.18);

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Type scale */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-soft);
  font-weight: 400;
}

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.04;
  color: var(--ink);
  font-style: italic;
}

.h-section {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.008em;
  line-height: 1.1;
  color: var(--ink);
}

.body-lg {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--brown);
  font-weight: 400;
}

.body {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--brown);
  font-weight: 400;
}

/* Layout */
.page {
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.4s, color 0.4s, box-shadow 0.5s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--olive);
  color: var(--ivory);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.btn-primary:hover {
  background: var(--brown);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -12px rgba(60, 50, 35, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--brown);
  border: 1px solid var(--hairline);
}
.btn-secondary:hover {
  background: rgba(184, 144, 114, 0.08);
  border-color: var(--clay);
}

.text-link {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--brown);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.text-link:hover { color: var(--olive); border-color: var(--olive); }

.btn .arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.btn:hover .arrow { transform: translateX(4px); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.6s cubic-bezier(0.7, 0, 0.2, 1);
}
.reveal-img.in {
  clip-path: inset(0 0 0 0);
}

/* Image placeholders — subtly striped linen */
.img-ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(184, 144, 114, 0.06) 0px,
      rgba(184, 144, 114, 0.06) 2px,
      transparent 2px,
      transparent 6px
    ),
    linear-gradient(180deg, var(--oat), var(--sand));
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.img-ph .ph-label {
  display: none;
}

.img-ph.tone-sage {
  background:
    repeating-linear-gradient(135deg, rgba(95,106,75,0.08) 0px, rgba(95,106,75,0.08) 2px, transparent 2px, transparent 6px),
    linear-gradient(180deg, #C9D2B5, #A0AC8E);
}
.img-ph.tone-clay {
  background:
    repeating-linear-gradient(135deg, rgba(120,80,50,0.07) 0px, rgba(120,80,50,0.07) 2px, transparent 2px, transparent 6px),
    linear-gradient(180deg, #D9C0A4, #B89072);
}
.img-ph.tone-blush {
  background:
    repeating-linear-gradient(135deg, rgba(184,144,114,0.06) 0px, rgba(184,144,114,0.06) 2px, transparent 2px, transparent 6px),
    linear-gradient(180deg, #F0E0D2, #E8D5C5);
}
.img-ph.tone-ivory {
  background:
    repeating-linear-gradient(135deg, rgba(90,73,54,0.05) 0px, rgba(90,73,54,0.05) 2px, transparent 2px, transparent 6px),
    linear-gradient(180deg, #F1EADE, #E8DFCE);
}
.img-ph.tone-stone {
  background:
    repeating-linear-gradient(135deg, rgba(60,50,40,0.06) 0px, rgba(60,50,40,0.06) 2px, transparent 2px, transparent 6px),
    linear-gradient(180deg, #BFB6A6, #8E8676);
}

/* Sections */
section {
  position: relative;
}

/* Soft divider — line + dot */
.soft-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0.6;
}
.soft-divider .line {
  width: 36px;
  height: 1px;
  background: var(--hairline);
}
.soft-divider .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clay);
}

/* Subtle background variants */
.bg-ivory { background: var(--ivory); }
.bg-oat { background: var(--ivory-2); }
.bg-deep {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(160,172,142,0.18), transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(184,144,114,0.16), transparent 60%),
    var(--ivory);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  padding: 22px 0;
  background: rgba(246, 241, 232, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}
.nav.scrolled {
  border-bottom-color: var(--hairline);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  height: 66px;
  width: auto;
  display: block;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.brand-mark svg { width: 18px; height: 18px; }
.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  letter-spacing: 0.005em;
  color: var(--ink);
}
.brand-name .amp {
  font-feature-settings: "ss01";
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: var(--brown);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--olive); }
.nav-links a.cta-link {
  border: 1px solid var(--brown);
  border-radius: 999px;
  padding: 9px 18px;
}
.nav-links a.cta-link:hover {
  background: var(--brown);
  color: var(--ivory);
}

@media (max-width: 760px) {
  .nav-links { gap: 18px; }
  .nav-links .hide-mobile { display: none; }
  .container, .container-narrow { padding: 0 24px; }
}

/* Hero */
.hero {
  padding: 64px 0 120px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-deep);
  box-shadow: 0 0 0 0 rgba(126, 138, 108, 0.5);
  animation: gentlePulse 3.6s ease-in-out infinite;
}
@keyframes gentlePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(126, 138, 108, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(126, 138, 108, 0); }
}
.hero h1 {
  font-size: clamp(40px, 5.4vw, 76px);
  margin: 0 0 32px 0;
  font-style: italic;
}
.hero h1 .stress {
  font-style: italic;
  color: var(--olive);
}
.hero-sub {
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  height: 640px;
}
.hero-img-main {
  position: absolute;
  inset: 0 0 60px 40px;
  border-radius: 220px 220px 240px 240px / 320px 320px 240px 240px;
  overflow: hidden;
}
.hero-img-accent {
  position: absolute;
  width: 220px;
  height: 280px;
  bottom: 20px;
  left: -30px;
  border-radius: 110px 110px 120px 120px / 130px 130px 120px 120px;
  overflow: hidden;
  border: 6px solid var(--ivory);
  z-index: 1;
}
.hero-portrait-cutout {
  position: absolute;
  inset: -20px 0 0 20px;
  z-index: 3;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-portrait-cutout img {
  height: 100%;
  width: auto;
  max-width: 110%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 40px rgba(60, 50, 35, 0.18));
}
.hero-img-main {
  z-index: 2;
}
.hero-sparkle {
  position: absolute;
  color: var(--clay);
  opacity: 0.7;
  z-index: 4;
  animation: gentleFloat 5s ease-in-out infinite;
}
.hero-sparkle-1 { width: 18px; height: 18px; top: 18%; right: 8%; }
.hero-sparkle-2 { width: 14px; height: 14px; bottom: 32%; left: 4%; color: var(--sage-deep); animation-delay: -2s; }
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0) rotate(0); opacity: 0.5; }
  50% { transform: translateY(-8px) rotate(15deg); opacity: 0.85; }
}
.hero-leaf {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 90px;
  height: 90px;
  opacity: 0.4;
  color: var(--sage-deep);
}
.hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--hairline);
}
.hero-meta-item .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 6px;
}
.hero-meta-item .value {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { height: 480px; }
  .hero { padding: 32px 0 80px; }
  .hero-meta { flex-wrap: wrap; gap: 24px; }
}

/* About Malka */
.about {
  padding: 140px 0;
  background: var(--ivory-2);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 96px;
  align-items: start;
}
.about-portrait-wrap {
  position: sticky;
  top: 120px;
}
.about-portrait {
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}
.about-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.about-portrait-caption {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  position: relative;
}
.about-family-photo {
  position: absolute;
  left: -28px;
  top: -110px;
  width: 168px;
  height: 210px;
  border-radius: 84px 84px 92px 92px / 100px 100px 92px 92px;
  overflow: hidden;
  border: 6px solid var(--ivory-2);
  box-shadow: 0 24px 48px -24px rgba(60, 50, 35, 0.35);
  transform: rotate(-3deg);
  z-index: 2;
}
.about-family-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.about-content h2 {
  font-size: clamp(40px, 4.4vw, 64px);
  font-style: italic;
  margin: 14px 0 36px 0;
}
.about-content h2 .wave {
  display: inline-block;
}
.about-content .body-lg {
  margin-bottom: 22px;
}
.about-content .body-lg em {
  color: var(--olive);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.08em;
}
.about-cta {
  margin-top: 40px;
}

@media (max-width: 960px) {
  .about { padding: 90px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-portrait-wrap { position: static; max-width: 380px; }
}

/* Quote sections */
.quote-section {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section.q-deep {
  background: var(--ivory);
}
.quote-section.q-image {
  background: #36352E;
  color: var(--ivory);
}
.quote-section .quote-mark {
  font-family: var(--serif);
  font-size: 80px;
  color: var(--clay);
  line-height: 0.5;
  margin-bottom: 8px;
  opacity: 0.6;
}
.quote-section blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 auto;
  max-width: 880px;
  color: var(--ink);
}
.quote-section.q-image blockquote {
  color: var(--ivory);
}
.quote-section .attribution {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.quote-section.q-image .attribution { color: rgba(246, 241, 232, 0.65); }
.quote-section .deco-leaf {
  position: absolute;
  opacity: 0.18;
  color: var(--sage-deep);
}
.quote-section .deco-leaf.left { left: 6%; top: 20%; width: 110px; transform: rotate(-15deg); }
.quote-section .deco-leaf.right { right: 6%; bottom: 18%; width: 130px; transform: rotate(20deg); }

.quote-section.q-image .quote-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(160,172,142,0.5), transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(184,144,114,0.4), transparent 55%);
}

/* Support / Services */
.support {
  padding: 140px 0;
  background: var(--ivory-2);
}
.support-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.support-head h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-style: italic;
  margin: 14px 0 0 0;
  max-width: 520px;
}
.support-head .intro {
  max-width: 420px;
  padding-bottom: 8px;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.support-item {
  padding: 40px 36px 44px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: transparent;
  transition: background 0.6s ease;
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.support-item:hover {
  background: var(--ivory);
}
.support-item .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--brown-soft);
}
.support-item .icon {
  width: 32px;
  height: 32px;
  color: var(--olive);
  margin-bottom: 6px;
}
.support-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
}
.support-closing {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.support-closing p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  margin: 0;
  max-width: 560px;
  color: var(--ink);
  line-height: 1.4;
}

@media (max-width: 960px) {
  .support { padding: 90px 0; }
  .support-head { grid-template-columns: 1fr; gap: 24px; }
  .support-grid { grid-template-columns: 1fr; }
}
@media (min-width: 760px) and (max-width: 960px) {
  .support-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Reflections */
.reflections {
  padding: 140px 0 160px;
  background: var(--ivory);
}
.reflections-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.reflections-head h2 {
  font-size: clamp(34px, 3.8vw, 52px);
  font-style: italic;
  margin: 14px 0 0 0;
  max-width: 600px;
}
.reflections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.reflection-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.7s;
}
.reflection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -28px rgba(60, 50, 35, 0.4);
}
.reflection-card .meta {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reflection-card .handle {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(60, 50, 35, 0.65);
}
.reflection-card .glyph {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}
.reflection-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
}
.reflection-card.dark p { color: var(--ivory); }
.reflection-card.dark .handle { color: rgba(246, 241, 232, 0.7); }
.reflection-card.tone-sage {
  background: linear-gradient(160deg, #C9D2B5, #9DA88B);
}
.reflection-card.tone-clay {
  background: linear-gradient(160deg, #E8D2BA, #B89072);
}
.reflection-card.tone-blush {
  background: linear-gradient(160deg, #F0E0D2, #DEC4B0);
}
.reflection-card.tone-stone {
  background: linear-gradient(160deg, #C8BFAE, #8E8676);
  color: var(--ivory);
}

.reflections-foot {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

/* Card date stamp */
.card-date {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  opacity: 0.55;
  text-transform: uppercase;
}

/* Photo background cards */
.reflection-card.has-image {
  background: var(--ink);
  text-decoration: none;
  justify-content: flex-end;
}
.reflection-card.has-image:hover {
  text-decoration: none;
}
.card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reflection-card.has-image:hover .card-bg-img {
  transform: scale(1.04);
}
.card-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.reflection-card:hover .card-bg-video {
  opacity: 1;
}
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 25, 20, 0.05) 0%,
    rgba(30, 25, 20, 0.45) 55%,
    rgba(30, 25, 20, 0.85) 100%
  );
  z-index: 2;
}
.card-caption {
  position: relative;
  z-index: 3;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ivory);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.skeleton-caption {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Skeleton loading */
@keyframes skeletonPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 0.9; }
}
.skeleton-card {
  animation: skeletonPulse 1.8s ease-in-out infinite;
  cursor: default;
  pointer-events: none;
}
.skeleton-card:hover {
  transform: none;
  box-shadow: none;
}
.skeleton-line {
  display: block;
  border-radius: 4px;
  background: rgba(90, 73, 54, 0.22);
  height: 11px;
}
.skeleton-dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(90, 73, 54, 0.22);
}
.skeleton-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

@media (max-width: 1080px) {
  .reflections-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 540px) {
  .reflections-grid { grid-template-columns: 1fr; }
}

/* Final CTA */
.final-cta {
  padding: 160px 0;
  background: var(--ivory-2);
  position: relative;
  overflow: hidden;
}
.final-cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.final-cta h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-style: italic;
  margin: 24px 0 32px 0;
  line-height: 1.05;
}
.final-cta p {
  max-width: 480px;
  margin-bottom: 40px;
}
.final-img {
  aspect-ratio: 3 / 4;
  border-radius: 240px 240px 220px 220px / 320px 320px 220px 220px;
  overflow: hidden;
}

@media (max-width: 960px) {
  .final-cta { padding: 100px 0; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 56px; }
  .final-img { max-width: 360px; }
}

/* Footer */
.footer {
  background: #2D2A24;
  color: rgba(246, 241, 232, 0.85);
  padding: 100px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.5);
  margin: 0 0 22px 0;
  font-weight: 400;
}
.footer-brand .mark-large {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--ivory);
  margin-bottom: 18px;
  display: block;
  line-height: 1.1;
}
.footer-logo {
  width: 230px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(246, 241, 232, 0.7);
  max-width: 320px;
}
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a {
  color: rgba(246, 241, 232, 0.85);
  font-size: 14.5px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.3s, border-color 0.3s;
}
.footer-links a:hover {
  color: var(--ivory);
  border-bottom-color: rgba(246, 241, 232, 0.4);
}
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newsletter input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(246, 241, 232, 0.3);
  padding: 12px 0;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter input:focus { border-bottom-color: var(--ivory); }
.newsletter input::placeholder { color: rgba(246, 241, 232, 0.5); }
.newsletter button {
  align-self: flex-start;
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(246, 241, 232, 0.85);
  border: 1px solid rgba(246, 241, 232, 0.3);
  border-radius: 999px;
  padding: 10px 20px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.newsletter button:hover {
  background: var(--ivory);
  color: #2D2A24;
  border-color: var(--ivory);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(246, 241, 232, 0.12);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 960px) {
  .footer { padding: 70px 0 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Tweak overrides for warmth */
body.tone-warmer { --ivory: #F4EDE0; --ivory-2: #ECE3D0; }
body.tone-cooler { --ivory: #F1EEE7; --ivory-2: #E7E4DA; --olive: #6F7A5C; }

/* Newsletter Signup */
.newsletter-section {
  position: relative;
  padding: 140px 0;
  background:
    radial-gradient(ellipse at 18% 30%, rgba(160, 172, 142, 0.22), transparent 55%),
    radial-gradient(ellipse at 82% 72%, rgba(184, 144, 114, 0.18), transparent 55%),
    var(--ivory);
  overflow: hidden;
  text-align: center;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--hairline);
  opacity: 0.6;
}
.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--hairline);
  opacity: 0.6;
}
.newsletter-leaf {
  position: absolute;
  width: 130px;
  height: 130px;
  color: var(--sage-deep);
  opacity: 0.18;
  pointer-events: none;
}
.newsletter-leaf-l { top: 12%; left: 6%; transform: rotate(-18deg); }
.newsletter-leaf-r { bottom: 12%; right: 6%; transform: rotate(160deg); width: 110px; height: 110px; color: var(--clay); opacity: 0.22; }

.newsletter-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.newsletter-title {
  font-style: italic;
  font-size: clamp(34px, 4vw, 54px);
  margin: 14px 0 28px 0;
  max-width: 680px;
  line-height: 1.08;
}
.newsletter-sub {
  max-width: 520px;
  margin: 0 auto 44px auto;
}
.newsletter-form-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 6px 6px 6px 24px;
  width: 100%;
  max-width: 520px;
  backdrop-filter: blur(4px);
  transition: border-color 0.4s, box-shadow 0.4s, background 0.4s;
}
.newsletter-form:focus-within {
  border-color: var(--olive);
  background: var(--ivory);
  box-shadow: 0 8px 24px -16px rgba(60, 50, 35, 0.35);
}
.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 14px 0;
  min-width: 0;
}
.newsletter-form input::placeholder {
  color: rgba(90, 73, 54, 0.45);
}
.newsletter-form .btn {
  padding: 14px 24px;
  white-space: nowrap;
}
.newsletter-thanks {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-radius: 999px;
  background: rgba(160, 172, 142, 0.18);
  border: 1px solid rgba(126, 138, 108, 0.3);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--olive);
}
.newsletter-note {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-soft);
}

@media (max-width: 640px) {
  .newsletter-section { padding: 90px 0; }
  .newsletter-form {
    flex-direction: column;
    border-radius: 24px;
    padding: 12px;
    gap: 10px;
  }
  .newsletter-form input { width: 100%; padding: 12px 16px; text-align: center; }
  .newsletter-form .btn { width: 100%; justify-content: center; }
}

/* ── Testimonials ──────────────────────────────────────────────── */
.testimonials {
  padding: 120px 0;
  background: var(--ivory-2);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.testimonial-card {
  background: var(--ivory);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-quote-mark {
  font-family: var(--serif);
  font-size: 72px;
  line-height: 0.6;
  color: var(--clay);
  opacity: 0.5;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.testimonial-attribution {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-soft);
}
@media (max-width: 768px) {
  .testimonials { padding: 80px 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
  .testimonial-card { padding: 36px 28px 32px; }
}
