/* ============================================================
   PREKSHA AGNIHOTRI · PSYCHOTHERAPIST
   Type:  Fraunces (display) + Inter (text)
   Palette: warm cream / peach / terracotta, grounded with cocoa
   ============================================================ */

:root {
  /* Warm neutrals */
  --cream:      #FBF5EF;
  --cream-2:    #F6EBE0;
  --peach:      #F3DDCC;
  --peach-soft: #FaF0E8;

  /* Accents */
  --terracotta: #C2694B;   /* primary action */
  --terracotta-d: #A9553A;
  --coral:      #D98E73;
  --blush:      #EBC7B6;

  /* Grounded browns (tie into portrait) */
  --cocoa:      #6B4A38;
  --espresso:   #3C2C22;

  /* Ink */
  --ink:        #3a2e26;
  --ink-soft:   #6a5a4f;
  --ink-muted:  #9a887b;
  --line:       #ecdccd;
  --line-2:     #e3cfbd;

  /* Type */
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 8px 24px -16px rgba(76, 47, 30, .30);
  --shadow:    0 40px 90px -55px rgba(76, 47, 30, .55);
  --ease: cubic-bezier(0.4, 0, 0.15, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(72px, 11vw, 150px) 0; position: relative; }

/* ---------- Type helpers ---------- */
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--terracotta-d); margin-bottom: 22px;
}
.label--center { justify-content: center; }
.label__no { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 1rem; letter-spacing: 0; color: var(--blush); }
.label__no::after { content: ''; display: inline-block; width: 26px; height: 1px; background: var(--line-2); margin-left: 10px; vertical-align: middle; }

.section__title {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--espresso);
}
.section__sub { margin-top: 20px; color: var(--ink-soft); font-size: 1.08rem; max-width: 56ch; }
.section__head { max-width: 680px; margin-bottom: clamp(44px, 6vw, 72px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .section__sub { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: .95rem; letter-spacing: .005em;
  padding: 14px 28px; border-radius: 100px; cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--terracotta); color: #fff; box-shadow: var(--shadow-sm); }
.btn--solid:hover { background: var(--terracotta-d); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--terracotta); color: var(--terracotta-d); }
.btn--outline { background: transparent; color: var(--terracotta-d); border-color: var(--blush); }
.btn--outline:hover { background: var(--peach-soft); border-color: var(--terracotta); }
.btn--light { background: #fff; color: var(--terracotta-d); }
.btn--light:hover { background: var(--cream); }
.btn--pill { padding: 11px 22px; font-size: .9rem; }
.btn--lg { padding: 17px 38px; font-size: 1.02rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 20px 0; transition: background .35s, box-shadow .35s, padding .35s;
}
.nav.is-scrolled {
  background: rgba(251, 245, 239, .85); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(236, 220, 205, .9); padding: 11px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__menu { display: contents; }
.nav__brand { display: flex; align-items: center; gap: 13px; }
.nav__brand-mark { display: block; width: 44px; height: 44px; line-height: 0; filter: drop-shadow(0 5px 13px rgba(194, 105, 75, .30)); transition: transform .3s var(--ease); }
.nav__brand:hover .nav__brand-mark { transform: rotate(-4deg) scale(1.04); }
.nav__brand-mark svg { display: block; width: 100%; height: 100%; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav__brand-name { font-family: var(--display); font-weight: 600; font-size: 1.2rem; letter-spacing: -.005em; color: var(--espresso); }
.nav__brand-role {
  display: flex; align-items: center; gap: 7px;
  font-size: .66rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--terracotta-d); margin-top: 3px;
}
.nav__brand-dot { width: 14px; height: 1.5px; background: var(--coral); border-radius: 2px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-weight: 500; font-size: .95rem; color: var(--ink-soft); position: relative; padding: 4px 0;
  transition: color .2s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0; background: var(--terracotta);
  transition: width .28s var(--ease);
}
.nav__links a:hover { color: var(--espresso); }
.nav__links a:hover::after { width: 100%; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--espresso); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(120px, 16vw, 180px) 0 clamp(70px, 9vw, 120px);
  background:
    radial-gradient(90% 70% at 92% 8%, var(--peach) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  overflow: hidden;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.hero__eyebrow {
  font-weight: 600; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--terracotta-d); margin-bottom: 22px;
}
.hero__title {
  font-family: var(--display); font-optical-sizing: auto; font-weight: 400;
  font-size: clamp(2.5rem, 5.4vw, 4.3rem); line-height: 1.04; letter-spacing: -0.02em;
  color: var(--espresso);
}
.hero__tagline {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.5rem); color: var(--terracotta); margin-top: 22px; max-width: 30ch;
}
.hero__lede { margin-top: 20px; font-size: 1.12rem; color: var(--ink-soft); max-width: 46ch; }
.hero__actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust {
  margin-top: 40px; display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center;
}
.hero__trust li {
  position: relative; font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  color: var(--cocoa); padding-left: 20px;
}
.hero__trust li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 50%; background: var(--coral);
}

/* Hero text animates in ON LOAD (not on scroll), so the headline is never left
   blank when it sits below the fold on mobile beneath the tall portrait.
   Opacity stays 1 the whole time (transform-only) — if the animation ever fails
   to run, the text is still fully visible rather than invisible. */
@keyframes heroRise { from { transform: translateY(16px); } to { transform: none; } }
.hero__eyebrow, .hero__title, .hero__tagline, .hero__lede, .hero__actions, .hero__trust {
  animation: heroRise .6s var(--ease) both;
}
.hero__title { animation-delay: .06s; }
.hero__tagline { animation-delay: .13s; }
.hero__lede { animation-delay: .2s; }
.hero__actions { animation-delay: .27s; }
.hero__trust { animation-delay: .34s; }

/* Portrait */
.hero__media { position: relative; }
.hero__portrait {
  position: relative; aspect-ratio: 4/5; border-radius: 180px 180px 24px 24px;
  overflow: hidden; box-shadow: var(--shadow);
  background: linear-gradient(160deg, var(--peach), var(--blush));
  border: 6px solid #fff;
}
.hero__portrait::after {
  content: ''; position: absolute; inset: 0; box-shadow: inset 0 -60px 70px -50px rgba(60,44,34,.35);
  pointer-events: none;
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }
.hero__portrait-fallback {
  position: absolute; inset: 0; display: none; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--display); color: rgba(255,255,255,.92); gap: 4px;
}
.hero__portrait.is-empty img { display: none; }
.hero__portrait.is-empty .hero__portrait-fallback { display: flex; }
.hero__portrait-fallback span { font-size: 2.4rem; font-style: italic; }
.hero__portrait-fallback small { letter-spacing: .3em; text-transform: uppercase; font-family: var(--sans); font-size: .68rem; }
/* soft blob behind */
.hero__media::before {
  content: ''; position: absolute; z-index: -1; width: 78%; height: 78%; right: -6%; top: -6%;
  background: var(--blush); opacity: .5; border-radius: 50% 50% 46% 54%; filter: blur(8px);
}
.hero__cardlet {
  position: absolute; left: -18px; bottom: 40px; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 15px 20px; box-shadow: var(--shadow-sm); max-width: 275px;
  display: flex; align-items: center; gap: 13px;
}
.hero__cardlet-ic {
  flex: none; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: var(--peach-soft); color: var(--terracotta); border: 1px solid var(--line);
}
.hero__cardlet-text { display: flex; flex-direction: column; line-height: 1.25; }
.hero__cardlet-k { font-family: var(--display); font-weight: 500; color: var(--espresso); font-size: 1.02rem; }
.hero__cardlet-v { font-size: .8rem; color: var(--ink-muted); margin-top: 1px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.about__aside {
  position: sticky; top: 110px; background: var(--peach-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 38px 34px;
}
.about__pull {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem); line-height: 1.32; color: var(--cocoa); margin: 6px 0 30px;
}
.about__creds { display: flex; flex-direction: column; gap: 0; }
.cred { display: flex; align-items: baseline; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); }
.cred:last-child { border-bottom: 1px solid var(--line); }
.cred strong { font-family: var(--display); font-weight: 500; font-size: 1.1rem; color: var(--terracotta-d); min-width: 92px; }
.cred span { color: var(--ink-soft); font-size: .95rem; }
.about__motif { width: 100%; max-width: 200px; height: auto; margin: 26px auto 0; display: block; }

.about__body { padding-top: 6px; }
.about__prose { margin-top: 26px; }
.about__prose p { margin-bottom: 20px; color: var(--ink-soft); font-size: 1.08rem; }
.about__prose strong { color: var(--espresso); font-weight: 600; }
.about__prose em { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 1.1em; color: var(--terracotta); }
.about__sign { font-family: var(--display); font-style: italic; font-size: 1.15rem; color: var(--ink-soft); margin-top: 8px; }
.about__sign span { font-size: 1.7rem; color: var(--espresso); }
.about__cta { margin-top: 30px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: linear-gradient(180deg, var(--cream-2), var(--peach-soft)); }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 38px 40px;
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.service__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 8px; }
.service__ill { width: 104px; flex: none; }
.service__num { font-family: var(--display); font-style: italic; font-weight: 400; font-size: 2rem; color: var(--blush); line-height: 1; }
.service__tag {
  margin-top: 8px;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--terracotta-d);
  background: var(--peach-soft); border: 1px solid var(--line); padding: 5px 12px; border-radius: 100px;
}

/* Shared illustration base */
.ill { display: block; width: 100%; height: auto; }
.service__title { font-family: var(--display); font-weight: 500; font-size: 1.5rem; margin-bottom: 12px; color: var(--espresso); }
.service p { color: var(--ink-soft); font-size: 1rem; }

/* ============================================================
   APPROACH / STEPS
   ============================================================ */
.approach { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step {
  position: relative; background: var(--peach-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 34px; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.step__icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  background: #fff; border: 1px solid var(--line-2); color: var(--terracotta); margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.step__icon svg { width: 30px; height: 30px; }
.step__no { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 8px; }
.step h3 { font-family: var(--display); font-weight: 500; font-size: 1.35rem; color: var(--espresso); margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: .98rem; }
.approach__note {
  margin-top: 40px; text-align: center; font-family: var(--display); font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem); color: var(--ink-soft); max-width: 64ch; margin-inline: auto; line-height: 1.5;
}
.approach__note span { color: var(--terracotta-d); font-style: normal; font-weight: 600; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: linear-gradient(180deg, var(--peach-soft), var(--cream-2)); }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 34px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.plan--feature { background: linear-gradient(172deg, #fff, var(--peach-soft)); border-color: var(--blush); }
.plan__ill { width: 92px; margin-bottom: 8px; }
.plan__flag {
  position: absolute; top: -12px; left: 34px; background: var(--terracotta); color: #fff;
  font-size: .7rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.plan__title { font-family: var(--display); font-weight: 500; font-size: 1.5rem; color: var(--espresso); }
.plan__desc { color: var(--ink-soft); font-size: .96rem; margin: 8px 0 24px; min-height: 46px; }
.plan__prices { border-top: 1px solid var(--line); }
.plan__row { display: flex; align-items: baseline; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); }
.plan__amt { font-family: var(--display); font-weight: 500; font-size: 1.7rem; color: var(--terracotta-d); }
.plan__per { color: var(--ink-muted); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.plan__cta { margin-top: 26px; }
.pricing__foot { text-align: center; color: var(--ink-muted); font-size: .92rem; margin-top: 30px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--cream); }
.tcarousel { max-width: 820px; margin: 0 auto; }
.tcarousel__viewport { overflow: hidden; }
.tcarousel__track { display: flex; transition: transform .55s var(--ease); }
.quote {
  min-width: 100%; padding: clamp(32px, 5vw, 60px); text-align: center;
}
.quote blockquote {
  font-family: var(--display); font-weight: 400; font-style: italic;
  font-size: clamp(1.35rem, 2.8vw, 2rem); line-height: 1.42; color: var(--espresso);
}
.quote figcaption { margin-top: 26px; font-weight: 600; color: var(--terracotta-d); letter-spacing: .04em; font-size: .95rem; }
.tcarousel__controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 18px; }
.tcarousel__nav {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-2);
  background: #fff; color: var(--terracotta-d); font-size: 1.5rem; cursor: pointer; line-height: 1;
  transition: background .25s, color .25s, transform .25s;
}
.tcarousel__nav:hover { background: var(--terracotta); color: #fff; transform: scale(1.05); }
.tcarousel__dots { display: flex; gap: 9px; }
.tcarousel__dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--blush); cursor: pointer; padding: 0;
  transition: transform .3s, background .3s;
}
.tcarousel__dots button.is-active { background: var(--terracotta); transform: scale(1.35); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.contact__label { display: flex; justify-content: center; margin-bottom: clamp(26px, 4vw, 46px); }

.invite {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(168deg, #FCEFE6 0%, #F5DBC9 100%);
  border: 1px solid var(--blush);
  border-radius: 34px; padding: clamp(54px, 8vw, 92px) clamp(28px, 6vw, 60px);
  box-shadow: var(--shadow-sm);
  margin-bottom: clamp(32px, 5vw, 60px);
}
.invite__glow {
  position: absolute; left: 50%; top: -46%; transform: translateX(-50%);
  width: min(620px, 96%); aspect-ratio: 1; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(231, 192, 103, .32) 0%, rgba(226, 140, 116, .12) 40%, transparent 66%);
}
.invite__sprig { position: absolute; width: clamp(72px, 12vw, 118px); height: auto; opacity: .85; pointer-events: none; }
.invite__sprig--l { left: clamp(14px, 3vw, 40px); bottom: 22px; }
.invite__sprig--r { right: clamp(14px, 3vw, 40px); top: 22px; transform: scale(-1, -1); }
.invite__eyebrow {
  position: relative; font-size: .74rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: var(--terracotta-d); margin-bottom: 18px;
}
.invite__title {
  position: relative; font-family: var(--display); font-weight: 400; font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.08; letter-spacing: -.015em; color: var(--espresso);
}
.invite__text { position: relative; margin: 18px auto 32px; max-width: 48ch; color: var(--ink-soft); font-size: 1.08rem; }
.invite .btn { position: relative; }
.invite__foot { position: relative; margin-top: 22px; font-size: .84rem; color: var(--ink-muted); }

/* ============================================================
   CONTACT / FOOTER
   ============================================================ */
.contact { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.contact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 34px; text-align: center;
}
.contact__card--center { background: linear-gradient(172deg, #fff, var(--peach-soft)); border-color: var(--blush); }
.contact__card h3 { font-family: var(--display); font-weight: 500; font-size: 1.35rem; margin-bottom: 14px; color: var(--espresso); }
.contact__card p { color: var(--ink-soft); margin-bottom: 10px; }
.contact__card a:not(.btn) { color: var(--terracotta-d); font-weight: 600; }
.contact__card a:not(.btn):hover { text-decoration: underline; }
.contact__card .btn { margin-top: 8px; }
.contact__muted { color: var(--ink-muted); font-size: .88rem; }
.contact__socials { display: flex; gap: 12px; justify-content: center; margin-top: 18px; }
.social {
  width: 42px; height: 42px; border-radius: 50%; background: var(--peach-soft); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--terracotta-d); font-weight: 600;
  transition: background .25s, color .25s, transform .25s;
}
.social svg { width: 19px; height: 19px; }
.social:hover { background: var(--terracotta); color: #fff; transform: translateY(-3px); }

.footer__bottom {
  margin-top: 64px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
}
.footer__brand { font-family: var(--display); font-weight: 500; font-size: 1.05rem; color: var(--espresso); }
.footer__copy { color: var(--ink-muted); font-size: .88rem; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
/* Note: .hero__media is intentionally NOT given the `reveal` class. Its portrait
   carries a large soft box-shadow, and animating opacity/transform makes the
   browser rasterize that shadow harshly on a temporary layer for the duration of
   the transition (a visible dark flash). Rendering it statically avoids that. */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__eyebrow, .hero__title, .hero__tagline, .hero__lede, .hero__actions, .hero__trust {
    opacity: 1; animation: none;
  }
  html { scroll-behavior: auto; }
  .btn:hover, .service:hover, .plan:hover, .step:hover { transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav__menu { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-menu-open .nav__menu {
    display: flex; flex-direction: column; align-items: flex-start; gap: 22px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(251, 245, 239, .98); backdrop-filter: blur(14px); padding: 26px 28px;
    box-shadow: var(--shadow);
  }
  .nav.is-menu-open .nav__links { display: flex; flex-direction: column; gap: 20px; }
  .nav.is-menu-open .nav__links a { font-size: 1.05rem; }
  .nav.is-menu-open .nav__cta { width: 100%; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { width: 100%; max-width: 380px; margin: 8px auto 0; order: -1; }
  .hero__portrait { min-height: 400px; }
  .hero__content { text-align: left; }
  .about__grid { grid-template-columns: 1fr; }
  .about__aside { position: static; }
  .services__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .plan__flag { left: 50%; transform: translateX(-50%); }
  .contact__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .br-lg { display: none; }
  .service { padding: 32px 28px; }
  .about__aside { padding: 30px 26px; }
  .tcarousel__nav { width: 42px; height: 42px; font-size: 1.3rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__cardlet { left: 0; }
}
