/* ============================================================
   G's Level Up — VERSION C "Editorial"
   estherperel-inspired modern editorial layout.
   Warm cream + ink + oxblood. Cormorant Garamond + Montserrat.
   ============================================================ */

:root {
  --ink:     #1b1a17;   /* near-black, warm */
  --ink-2:   #2c2a26;
  --cream:   #f3efe6;   /* page background */
  --cream-2: #ece6da;   /* alt sections */
  --paper:   #faf7f0;
  --accent:    #6d2b2e;   /* oxblood — used on light/cream */
  --accent-deep:#561f22;  /* deeper oxblood — hover on light */
  --accent-soft:#c27f78;  /* dusty rose — accent on dark backgrounds */
  --muted:   #6a655b;
  --line:    rgba(27,26,23,.16);
  --line-2:  rgba(27,26,23,.1);
  --line-light: rgba(243,239,230,.18);

  --serif: "Cormorant Garamond", "Georgia", serif;
  --sans:  "Montserrat", system-ui, -apple-system, sans-serif;

  --maxw: 1300px;
  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); color: var(--ink); background: var(--cream); line-height: 1.72; font-size: 16px; font-weight: 400; letter-spacing: .005em; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 32px; }
.ital { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--accent); }

/* ---------- buttons & links ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; font-family: var(--sans); font-weight: 600; font-size: .95rem; letter-spacing: .01em; padding: .92em 1.7em; border-radius: var(--radius); border: 1.5px solid transparent; cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease); white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: var(--ink-2); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-line:hover { border-color: var(--ink); }
.btn-gold { background: var(--accent); color: var(--cream); }
.btn-gold:hover { background: #82383b; color: var(--cream); }
.btn-sm { padding: .62em 1.2em; font-size: .88rem; }
.btn-lg { padding: 1.05em 2.1em; font-size: 1.02rem; }
.btn-block { width: 100%; }
.link-arrow { font-weight: 600; font-size: .95rem; color: var(--ink); border-bottom: 1.5px solid var(--accent); padding-bottom: 3px; transition: color .2s; }
.link-arrow:hover { color: var(--accent-deep); }
.link-arrow span { transition: transform .2s var(--ease); display: inline-block; }
.link-arrow:hover span { transform: translateX(4px); }
.link-arrow-lg { font-size: 1.05rem; }

/* ---------- header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease); padding: 11px 0; background: rgba(243,239,230,.35); -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px); box-shadow: 0 1px 0 rgba(27,26,23,.06); }
.site-header.scrolled { background: rgba(243,239,230,.92); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line-2); padding: 8px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 13px; font-family: var(--serif); font-size: 1.36rem; font-weight: 500; color: var(--ink); letter-spacing: .01em; }
.brand-logo { height: 90px; width: 90px; flex: none; display: block; margin-left: -10px; }
.brand-thin { font-style: italic; color: var(--accent-deep); font-weight: 400; }
.nav { display: flex; gap: 32px; margin-left: auto; }
.nav a { color: var(--ink); font-size: .9rem; font-weight: 500; position: relative; opacity: .82; transition: opacity .2s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1.5px; background: var(--accent); transition: width .25s var(--ease); }
.nav a:hover { opacity: 1; }
.nav a:hover::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: flex; flex-direction: column; gap: 4px; padding: 14px 32px 24px; background: rgba(243,239,230,.98); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line-2); font-weight: 500; }
.mobile-menu .btn { margin-top: 12px; }

/* ---------- eyebrow ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .2em; font-size: .72rem; font-weight: 600; color: var(--muted); margin-bottom: 30px; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* ---------- hero ---------- */
.c-hero { padding: 165px 0 90px; }
.c-hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: stretch; }
.c-hero-copy { display: flex; flex-direction: column; }
.c-hero-title { font-family: var(--serif); font-weight: 500; font-size: clamp(3.2rem, 8.6vw, 7.1rem); line-height: 1.0; letter-spacing: -.01em; margin-bottom: 0; }
.c-hero-foot { flex: 1; display: flex; flex-direction: column; padding-top: 30px; max-width: 560px; }
.c-hero-sub { font-size: 1.18rem; font-weight: 300; color: var(--muted); margin-bottom: 30px; }
.c-hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-top: auto; }
.c-hero-visual { position: relative; }
.c-photo { position: relative; aspect-ratio: 5/7; border-radius: var(--radius); overflow: hidden; background: linear-gradient(160deg, var(--ink-2), var(--ink)); display: grid; place-items: center; }
.c-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder { display: none; color: rgba(243,239,230,.7); text-align: center; font-size: .92rem; padding: 20px; }
.photo-placeholder small { color: var(--accent); font-size: .78rem; }
.c-photo.photo-empty .photo-placeholder { display: block; }
.c-photo-cap { margin-top: 14px; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }

/* ---------- hero B (disco full-bleed) ---------- */
.c-hero-b {
  position: relative; min-height: 92vh; display: flex; flex-direction: column; justify-content: center;
  padding: 150px 0 90px; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(243,239,230,.66) 0%, rgba(243,239,230,.14) 24%, rgba(243,239,230,0) 42%),
    linear-gradient(90deg, rgba(243,239,230,.86) 0%, rgba(243,239,230,.6) 44%, rgba(243,239,230,.28) 76%, rgba(243,239,230,.12) 100%),
    url(../images/disco-angel-hero.jpg) center 32% / cover no-repeat;
}
.c-hero-b-inner { position: relative; z-index: 2; max-width: 640px; }
.c-hero-b-sub {
  font-size: 1.12rem; font-weight: 400; color: var(--ink); max-width: 520px; margin: 30px 0 0;
  background: rgba(255,255,255,.3); -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
  padding: 17px 22px; border-radius: 10px;
}
.c-hero-b .c-hero-actions { margin-top: 34px; }

/* ---------- promise ---------- */
.c-promise { padding: 18px 0 6px; }
.rule { border: 0; border-top: 1px solid var(--line); }
.c-promise-text { font-family: var(--serif); font-weight: 500; font-size: clamp(1.7rem, 4.2vw, 2.9rem); line-height: 1.2; text-align: center; padding: 40px 0; letter-spacing: 0; }

/* ---------- generic section ---------- */
.c-section { padding: 100px 0; }
/* alternating cream blocks get a slight diagonal (incline ~30px, up to the right) */
.c-section-alt { background: var(--cream-2); clip-path: polygon(0 30px, 100% 0, 100% calc(100% - 30px), 0 100%); }
/* About You borders the dark CTA above, so keep its top edge flat — only slant the bottom */
#about-you { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%); }
.c-head { max-width: 880px; margin-bottom: 60px; }
.c-label { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; font-weight: 600; color: var(--muted); margin-bottom: 22px; }
.c-num { color: var(--accent); font-family: var(--serif); font-style: italic; font-size: 1rem; }
.c-h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.3rem, 5.2vw, 4rem); line-height: 1.03; letter-spacing: -.01em; }
.c-lead { color: var(--muted); font-size: 1.18rem; font-weight: 300; max-width: 620px; margin-top: 22px; }

/* ---------- 3-col blocks (approach) ---------- */
.c-cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.c-block { padding: 38px 34px 38px 0; border-right: 1px solid var(--line); }
.c-block:last-child { border-right: 0; padding-right: 0; }
.c-cols-3 .c-block { padding-left: 34px; }
.c-cols-3 .c-block:first-child { padding-left: 0; }
.c-block-num { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--accent); }
.c-block h3 { font-family: var(--serif); font-weight: 500; font-size: 1.6rem; margin: 14px 0 12px; letter-spacing: -.01em; }
.c-block p { color: var(--muted); font-size: 1rem; }

/* ---------- the level up method ---------- */
.method { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.method-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 22px; text-align: center; display: flex; flex-direction: column; align-items: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.method-item:hover { transform: translateY(-4px); box-shadow: 0 22px 46px -26px rgba(27,26,23,.34); }
.method-icon { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: rgba(109,43,46,.08); margin-bottom: 20px; }
.method-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--accent); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.method-item h3 { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; margin-bottom: 10px; letter-spacing: -.01em; }
.method-item p { color: var(--muted); font-size: .92rem; line-height: 1.5; }

/* ---------- outcomes ---------- */
.c-ba { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.c-ba-col h4 { text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; font-weight: 700; color: var(--ink); padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
.c-ba-list { list-style: none; }
.c-ba-list li { padding: 15px 0; border-bottom: 1px solid var(--line-2); font-size: 1.08rem; color: var(--muted); position: relative; padding-left: 28px; }
.c-ba-list li::before { content: "—"; position: absolute; left: 0; color: var(--muted); }
.c-ba-good .c-ba-list li { color: var(--ink); }
.c-ba-good .c-ba-list li::before { content: "→"; color: var(--accent); font-weight: 600; }

/* ---------- process ---------- */
.c-process { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); }
.c-step { padding: 34px 24px 34px 0; border-right: 1px solid var(--line); padding-left: 24px; }
.c-step:first-child { padding-left: 0; }
.c-step:last-child { border-right: 0; }
.c-step-num { font-family: var(--serif); font-style: italic; font-size: 2.2rem; color: var(--accent); line-height: 1; }
.c-step h3 { font-family: var(--serif); font-weight: 500; font-size: 1.24rem; margin: 16px 0 10px; letter-spacing: -.01em; }
.c-step p { color: var(--muted); font-size: .93rem; }

/* ---------- pricing ---------- */
.c-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.c-plan { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 32px; display: flex; flex-direction: column; }
.c-plan-dark { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.c-plan-tag { text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; font-weight: 700; color: var(--accent); margin-bottom: 18px; }
.c-plan-dark .c-plan-tag { color: var(--accent-soft); }
.c-plan h3 { font-family: var(--serif); font-weight: 500; font-size: 1.7rem; letter-spacing: -.01em; }
.c-plan-meta { text-transform: uppercase; letter-spacing: .1em; font-size: .76rem; color: var(--muted); margin: 6px 0 16px; }
.c-plan-dark .c-plan-meta { color: rgba(243,239,230,.6); }
.c-plan-price { font-family: var(--serif); font-weight: 500; font-size: 3.4rem; line-height: 1; margin-bottom: 24px; letter-spacing: -.01em; }
.c-plan-list { list-style: none; display: grid; gap: 12px; margin-bottom: 30px; }
.c-plan-list li { font-size: .95rem; color: var(--muted); padding-left: 24px; position: relative; }
.c-plan-list li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }
.c-plan-dark .c-plan-list li { color: rgba(243,239,230,.82); }
.c-plan-dark .c-plan-list li::before { color: var(--accent-soft); }
.c-plan .btn { margin-top: auto; }

/* ---------- about ---------- */
.c-about { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.c-about-copy .about-mantra { font-family: var(--serif); font-weight: 500; font-size: clamp(1.65rem, 2.7vw, 2.15rem); line-height: 1.3; color: var(--ink); letter-spacing: -.01em; margin: 30px 0 36px; padding-top: 26px; border-top: 1px solid var(--line); }
.c-about-photo { position: sticky; top: 112px; align-self: start; }
.c-about-photo .c-photo { aspect-ratio: 4/5; height: auto; width: 100%; }
.c-about-copy p { color: var(--muted); font-size: 1.05rem; margin-top: 18px; }
.c-about-copy em { font-style: italic; }
.c-about-copy .c-h2 { margin-top: 6px; }
.c-creds { list-style: none; margin: 30px 0 32px; border-top: 1px solid var(--line); }
.c-creds li { padding: 16px 0; border-bottom: 1px solid var(--line-2); font-size: .95rem; color: var(--muted); }
.c-creds strong { color: var(--ink); font-weight: 600; margin-right: 12px; }
.about-vision { color: var(--ink); }
.about-vision strong { color: var(--accent); font-weight: 600; }
.vision-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 32px; }
.vision-tags li { font-size: .82rem; font-weight: 500; color: var(--ink); border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px; background: var(--cream-2); }

/* ---------- testimonials ---------- */
.c-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.c-quote { padding: 40px 34px 40px 0; border-right: 1px solid var(--line); padding-left: 34px; }
.c-quote:first-child { padding-left: 0; }
.c-quote:last-child { border-right: 0; }
.c-quote blockquote { font-family: var(--serif); font-size: 1.32rem; line-height: 1.4; letter-spacing: -.01em; margin-bottom: 22px; }
.c-quote figcaption { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.c-quote figcaption strong { color: var(--ink); font-weight: 600; }

/* ---------- CTA ---------- */
.c-cta { background: var(--ink); color: var(--cream); padding: 110px 0; text-align: center; }
.c-cta-inner { max-width: 760px; margin-inline: auto; }
.c-cta h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem, 6.2vw, 4.6rem); line-height: 1.0; letter-spacing: -.01em; margin-bottom: 22px; }
.c-cta .ital { color: var(--accent-soft); }
.c-cta p { color: rgba(243,239,230,.72); font-size: 1.12rem; max-width: 540px; margin: 0 auto 36px; }
/* CTA over the original disco photo, with a dark wash so the cream text stays legible */
.c-cta-disco {
  position: relative;
  padding: 150px 0;
  background:
    linear-gradient(180deg, rgba(27,26,23,.9) 0%, rgba(27,26,23,.78) 50%, rgba(27,26,23,.9) 100%),
    url(../images/disco-hero.jpg) center 42% / cover no-repeat;
}
.c-cta-disco .c-cta-inner { position: relative; z-index: 2; }
.c-cta-disco p { font-size: 1.28rem; max-width: 600px; }

/* ---------- contact ---------- */
.c-contact { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: start; }
.c-contact-copy .link-arrow-lg { display: inline-block; margin: 24px 0 36px; }
.c-contact-meta { list-style: none; border-top: 1px solid var(--line); }
.c-contact-meta li { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-2); align-items: baseline; }
.c-contact-meta li > span:first-child { text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 600; color: var(--muted); }
.c-contact-meta a { color: var(--ink); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }
.c-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 36px; }
.c-field { margin-bottom: 22px; }
.c-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.c-field label { display: block; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); margin-bottom: 9px; }
.c-field .opt { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.c-field input, .c-field select, .c-field textarea { width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink); padding: 12px 2px; border: 0; border-bottom: 1.5px solid var(--line); background: transparent; transition: border-color .2s; }
.c-field input:focus, .c-field select:focus, .c-field textarea:focus { outline: none; border-color: var(--accent); }
.c-field textarea { resize: vertical; }
.c-form .btn { margin-top: 8px; }
.form-status { margin-top: 16px; font-size: .92rem; text-align: center; min-height: 1.2em; }
.form-status.ok { color: #2c7a52; }
.form-status.err { color: #b4452f; }
.c-form-fine { margin-top: 14px; font-size: .78rem; color: var(--muted); text-align: center; }

/* ---------- about you (intake) ---------- */
.subpage-hero { padding: 168px 0 90px; }
.nav a.is-active { opacity: 1; }
.nav a.is-active::after { width: 100%; }
.intake-back { margin-top: 26px; text-align: center; }
.intake-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.intake-col { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 36px; display: flex; flex-direction: column; }
.intake-h { font-family: var(--sans); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .16em; color: var(--ink); padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.intake-q { font-size: 1.02rem; font-weight: 300; color: var(--ink); margin-bottom: 22px; }
.season-list { display: grid; gap: 2px; }
.season-opt { display: flex; align-items: center; gap: 14px; padding: 11px 0; cursor: pointer; font-size: 1rem; color: var(--ink); }
.season-opt input[type="radio"] { appearance: none; -webkit-appearance: none; width: 19px; height: 19px; border: 1.5px solid var(--line); border-radius: 50%; display: grid; place-items: center; flex: none; cursor: pointer; transition: border-color .2s; }
.season-opt input[type="radio"]::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); transform: scale(0); transition: transform .18s var(--ease); }
.season-opt input[type="radio"]:checked { border-color: var(--accent); }
.season-opt input[type="radio"]:checked::after { transform: scale(1); }
.season-opt:hover input[type="radio"] { border-color: var(--accent); }
.season-other { flex-wrap: wrap; }
.season-other-input { flex: 1; min-width: 140px; font-family: var(--sans); font-size: .98rem; color: var(--ink); padding: 6px 2px; border: 0; border-bottom: 1.5px solid var(--line); background: transparent; transition: border-color .2s; }
.season-other-input:focus { outline: none; border-color: var(--accent); }
.intake-quote { margin-top: auto; padding-top: 28px; font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 1.18rem; line-height: 1.35; color: var(--accent); }
.intake-quote em { color: var(--accent-deep); }
.intake-foot { margin-top: 30px; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.intake-foot .form-status { margin-top: 4px; }

/* ---------- footer ---------- */
.c-footer { background: var(--ink); color: var(--cream); padding: 64px 0 34px; }
.c-footer-top { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; padding-bottom: 34px; border-bottom: 1px solid var(--line-light); }
.c-footer-brand { font-family: var(--serif); font-size: 1.95rem; font-weight: 500; }
.c-footer-brand .ital { color: var(--accent-soft); }
.c-footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.c-footer-nav a { font-size: .9rem; color: rgba(243,239,230,.8); transition: color .2s; }
.c-footer-nav a:hover { color: var(--accent-soft); }
.c-footer-legal { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 28px; }
.c-footer-legal p { font-size: .8rem; color: rgba(243,239,230,.55); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .c-hero-inner { grid-template-columns: 1fr; gap: 44px; align-items: start; }
  .c-hero-visual { max-width: 420px; }
  .c-cols-3 { grid-template-columns: 1fr; }
  .c-block { border-right: 0; border-bottom: 1px solid var(--line); padding: 30px 0 !important; }
  .c-block:last-child { border-bottom: 0; }
  .method { grid-template-columns: repeat(3, 1fr); }
  .c-ba { grid-template-columns: 1fr; gap: 38px; }
  .c-process { grid-template-columns: 1fr 1fr; }
  .c-step { border-right: 0 !important; border-bottom: 1px solid var(--line); padding: 26px 0 !important; }
  .c-plans { grid-template-columns: 1fr; max-width: 460px; }
  .c-about { grid-template-columns: 1fr; gap: 44px; }
  .c-about-photo { max-width: 400px; position: static; }
  .c-about-photo .c-photo { aspect-ratio: 4/5; height: auto; min-height: 0; }
  .c-quotes { grid-template-columns: 1fr; }
  .c-quote { border-right: 0; border-bottom: 1px solid var(--line); padding: 32px 0 !important; }
  .c-quote:last-child { border-bottom: 0; }
  .c-contact { grid-template-columns: 1fr; gap: 44px; }
  .intake-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding-inline: 22px; }
  .c-hero { padding: 124px 0 64px; }
  .c-section { padding: 66px 0; }
  .eyebrow { letter-spacing: .1em; font-size: .62rem; gap: 8px; }
  .brand-logo { height: 50px; width: 50px; margin-left: -6px; }
  .brand { gap: 10px; font-size: 1.08rem; }
  .method { grid-template-columns: 1fr; }
  .c-process { grid-template-columns: 1fr; }
  .c-field-row { grid-template-columns: 1fr; }
  .c-footer-top { flex-direction: column; align-items: flex-start; gap: 22px; }
  .c-footer-legal { flex-direction: column; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
