/* ==========================================================================
   True Weight Loss Clinic — Editorial Luxury Stylesheet v2
   Built by Level Nine Media
   ========================================================================== */

:root {
  /* === Surfaces === */
  --white:          #ffffff;
  --off-white:      #FAFAFA;
  --paper:          #F5F2EE;     /* tactile warm white */
  --line:           #EAEAEA;
  --line-strong:    #D4D4D4;

  /* === Ink === */
  --ink:            #0A0A0A;
  --ink-2:          #2A2A35;
  --ink-3:          #4A4A55;
  --muted:          #7A7A85;

  /* === Signature brights === */
  --pink:           #FF3B7C;
  --pink-soft:      #FFE5EE;
  --pink-tint:      #FFF5F8;
  --pink-deep:      #C81E5C;

  --blue:           #1E40FF;
  --blue-soft:      #E0E7FF;
  --blue-tint:      #F0F4FF;
  --blue-deep:      #0028AA;

  --green:          #00B97A;
  --green-soft:     #DCFCE7;
  --green-tint:     #F0FDF4;
  --green-deep:     #008059;

  --lavender:       #B794F4;
  --peach:          #FFCBAA;

  /* === Type === */
  --font-display:   "Instrument Serif", "Times New Roman", serif;
  --font-body:      "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:      "DM Mono", ui-monospace, "SF Mono", monospace;

  /* === Spacing === */
  --container-px:   clamp(1.25rem, 4vw, 3rem);
  --section-py:     clamp(4.5rem, 10vw, 9rem);

  /* === Radius === */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* === Shadows (very subtle, luxury feel) === */
  --shadow-sm:  0 1px 2px rgba(10,10,10,.04);
  --shadow-md:  0 4px 24px rgba(10,10,10,.06), 0 1px 2px rgba(10,10,10,.04);
  --shadow-lg:  0 24px 60px rgba(10,10,10,.08), 0 8px 24px rgba(10,10,10,.06);
  --shadow-pink: 0 16px 48px rgba(255,59,124,.18);
  --shadow-blue: 0 16px 48px rgba(30,64,255,.16);
}

/* ============================================================ Base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s ease, color .2s ease; }
a:hover { opacity: .7; }

/* === Headings — editorial italic display === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 .4em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 8vw, 6.5rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2.25rem, 5.5vw, 4.5rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -0.02em; }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 500; letter-spacing: 0; }

em, .italic { font-style: italic; font-family: var(--font-display); }

p { margin: 0 0 1em; color: var(--ink-2); }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.5; color: var(--ink-2); max-width: 60ch; }

/* === Eyebrows === */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.eyebrow--pink { color: var(--pink-deep); }
.eyebrow--blue { color: var(--blue-deep); }
.eyebrow--green { color: var(--green-deep); }

/* ============================================================ Layout */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding-left: var(--container-px); padding-right: var(--container-px); }
.container-narrow { max-width: 920px; }
.container-wide { max-width: 1440px; }
.section { padding: var(--section-py) 0; position: relative; }

.bg-white { background: var(--white); }
.bg-pink { background: var(--pink-tint); }
.bg-pink-soft { background: var(--pink-soft); }
.bg-blue { background: var(--blue-tint); }
.bg-blue-soft { background: var(--blue-soft); }
.bg-green { background: var(--green-tint); }
.bg-green-soft { background: var(--green-soft); }
.bg-ink { background: var(--ink); color: var(--off-white); }
.bg-ink * { color: inherit; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: var(--white); }
.bg-ink p { color: rgba(255,255,255,.78); }

/* ============================================================ Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.site-header__bar { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0; gap: 2rem; }
.brand { display: flex; align-items: center; gap: .75rem; font-family: var(--font-display); font-size: 1.5rem; font-style: italic; letter-spacing: -.02em; color: var(--ink); }
.brand img { height: 38px; width: auto; }
.brand strong { font-weight: 400; }
.brand strong em { font-style: italic; color: var(--pink); }

.nav-toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; color: var(--ink); }
.nav-toggle svg { width: 28px; height: 28px; }

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a { font-size: .92rem; font-weight: 500; color: var(--ink-2); position: relative; padding: .4rem 0; }
.site-nav a:hover, .site-nav a.is-active { color: var(--pink); opacity: 1; }
.site-nav a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--pink); border-radius: 2px; }

.header-cta { display: flex; gap: .75rem; align-items: center; }
.header-phones { display: flex; flex-direction: column; line-height: 1.2; text-align: right; }
.header-phones a { font-size: .82rem; color: var(--ink); font-weight: 500; }
.header-phones small { font-size: .72rem; color: var(--muted); font-weight: 400; }

/* ============================================================ Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem;
  padding: .95rem 1.75rem;
  font-family: var(--font-body); font-size: .92rem; font-weight: 500; letter-spacing: .005em;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.4, 0, .2, 1), box-shadow .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease, border-color .25s ease;
  text-decoration: none; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after { content: "→"; font-size: 1rem; transition: transform .25s ease, opacity .25s ease, width .25s ease; opacity: 0; width: 0; overflow: hidden; }
.btn:hover::after { opacity: 1; width: 1rem; transform: translateX(2px); }
.btn--primary { background: var(--ink); color: var(--white); }
.btn--primary:hover { background: var(--ink-2); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); opacity: 1; }
.btn--pink { background: var(--pink); color: var(--white); }
.btn--pink:hover { background: var(--pink-deep); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-pink); opacity: 1; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); opacity: 1; }
.btn--light { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn--light:hover { border-color: var(--ink); opacity: 1; }
.btn--sm { padding: .65rem 1.2rem; font-size: .82rem; }
.btn--lg { padding: 1.15rem 2.1rem; font-size: 1rem; }

/* ============================================================ Hero */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 9vw, 8rem); overflow: hidden; background: var(--white); }
.hero::before, .hero::after { content: ""; position: absolute; width: 700px; height: 700px; border-radius: 50%; filter: blur(120px); opacity: .35; z-index: 0; pointer-events: none; animation: float 20s ease-in-out infinite; }
.hero::before { top: -200px; right: -150px; background: radial-gradient(circle, var(--pink) 0%, transparent 70%); }
.hero::after { bottom: -300px; left: -200px; background: radial-gradient(circle, var(--blue) 0%, transparent 70%); animation-delay: -10s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 30px) scale(.95); }
}

.hero__inner { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.hero__title { margin-bottom: 1.5rem; }
.hero__title em { font-style: italic; color: var(--pink); display: inline-block; position: relative; }
.hero__subtitle { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.5; color: var(--ink-3); max-width: 36ch; margin-bottom: 2.5rem; }
.hero__cta { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.hero__meta { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero__meta-item { display: flex; flex-direction: column; gap: .25rem; }
.hero__meta-item strong { font-family: var(--font-display); font-style: italic; font-size: 2rem; font-weight: 400; color: var(--ink); line-height: 1; }
.hero__meta-item span { font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); }

.hero__visual { position: relative; aspect-ratio: 4/5; }
.hero__visual-main { position: absolute; inset: 0; border-radius: var(--r-xl); overflow: hidden; background: var(--paper); box-shadow: var(--shadow-lg); }
.hero__visual-main img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual-card { position: absolute; bottom: -20px; left: -30px; background: var(--white); border-radius: var(--r-md); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-lg); max-width: 260px; border: 1px solid var(--line); z-index: 2; }
.hero__visual-card-num { font-family: var(--font-display); font-style: italic; font-size: 2.5rem; color: var(--pink); line-height: 1; margin-bottom: .35rem; }
.hero__visual-card p { font-size: .8rem; color: var(--ink-2); margin: 0; line-height: 1.4; }
.hero__visual-pill { position: absolute; top: 24px; right: -16px; background: var(--ink); color: var(--white); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; padding: .6rem 1.1rem; border-radius: var(--r-pill); font-weight: 500; z-index: 2; transform: rotate(4deg); box-shadow: var(--shadow-md); }

/* ============================================================ Page hero */
.page-hero { padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem); text-align: center; background: var(--white); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 700px; height: 500px; background: radial-gradient(ellipse, var(--pink-soft) 0%, transparent 60%); filter: blur(60px); z-index: 0; }
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 em { color: var(--pink); }
.page-hero__lead { max-width: 60ch; margin: 1.5rem auto 0; font-size: 1.15rem; line-height: 1.55; color: var(--ink-3); }

/* ============================================================ Service grid */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s cubic-bezier(.4, 0, .2, 1), box-shadow .35s ease, border-color .35s ease; position: relative; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; opacity: 1; }
.service-card__media { aspect-ratio: 4/3; background: var(--paper); overflow: hidden; position: relative; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, 0, .2, 1); }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.service-card__title { font-size: 1.5rem; margin-bottom: .5rem; font-style: italic; }
.service-card__desc { color: var(--ink-3); font-size: .92rem; line-height: 1.55; margin-bottom: 1.25rem; flex: 1; }
.service-card__link { font-weight: 500; font-size: .8rem; color: var(--ink); display: inline-flex; align-items: center; gap: .4rem; letter-spacing: .12em; text-transform: uppercase; }
.service-card__link::after { content: "→"; transition: transform .25s ease; font-size: 1rem; }
.service-card:hover .service-card__link { color: var(--pink); }
.service-card:hover .service-card__link::after { transform: translateX(6px); }

/* ============================================================ Feature list */
.feature-list { list-style: none; padding: 0; margin: 1.75rem 0; }
.feature-list li { position: relative; padding-left: 2.2rem; margin-bottom: 1rem; color: var(--ink-2); font-size: 1rem; line-height: 1.5; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: .35rem;
  width: 1.35rem; height: 1.35rem; border-radius: 50%; background: var(--pink);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10' fill='none' stroke='black' stroke-width='2'/><polyline points='8 12 11 15 16 9' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10' fill='none' stroke='black' stroke-width='2'/><polyline points='8 12 11 15 16 9' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.feature-list--blue li::before { background: var(--blue); }
.feature-list--green li::before { background: var(--green); }
.feature-list li strong { color: var(--ink); font-weight: 600; }

/* ============================================================ Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split--reverse > :first-child { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--r-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-md); }
.split__media-badge { position: absolute; bottom: -16px; left: -16px; background: var(--pink); color: var(--white); padding: 1rem 1.4rem; border-radius: var(--r-md); font-family: var(--font-display); font-style: italic; font-size: 1.3rem; box-shadow: var(--shadow-pink); max-width: 240px; line-height: 1.2; }
.split__media-badge--blue { background: var(--blue); box-shadow: var(--shadow-blue); }
.split__media-badge--green { background: var(--green); box-shadow: 0 16px 48px rgba(0,185,122,.18); }

/* ============================================================ Testimonial */
.testimonial { max-width: 900px; margin: 0 auto; text-align: center; position: relative; }
.testimonial__mark { font-family: var(--font-display); font-size: 8rem; line-height: .8; color: var(--pink); font-style: italic; margin-bottom: -1rem; display: block; }
.testimonial__quote { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.3; color: var(--ink); font-style: italic; margin-bottom: 2rem; letter-spacing: -.015em; }
.testimonial__attr { display: flex; flex-direction: column; align-items: center; gap: .35rem; }
.testimonial__name { font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--ink); }
.testimonial__source { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .2em; }
.testimonial__stars { color: var(--pink); letter-spacing: .2em; font-size: 1.1rem; margin-bottom: 1.5rem; }

/* ============================================================ FAQ */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.5rem 1.75rem; margin-bottom: .75rem; transition: border-color .2s ease, box-shadow .2s ease; }
.faq details[open] { border-color: var(--ink); box-shadow: var(--shadow-sm); }
.faq summary { font-family: var(--font-display); font-size: 1.35rem; font-style: italic; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; line-height: 1.3; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-body); font-size: 1.5rem; font-style: normal; color: var(--pink); transition: transform .3s ease; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 1rem; margin-bottom: 0; color: var(--ink-3); }

/* ============================================================ Forms */
.form-card { background: var(--white); padding: clamp(1.75rem, 4vw, 3rem); border-radius: var(--r-lg); border: 1px solid var(--line); }
.form-row { margin-bottom: 1.25rem; }
.form-row label { display: block; font-size: .72rem; font-weight: 600; color: var(--ink); margin-bottom: .5rem; letter-spacing: .12em; text-transform: uppercase; }
.form-row input[type="text"], .form-row input[type="email"], .form-row input[type="tel"], .form-row textarea, .form-row select {
  width: 100%; padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--white);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(255,59,124,.12); }
.form-row textarea { min-height: 130px; resize: vertical; }
.form-check { display: flex; gap: .65rem; align-items: flex-start; font-size: .78rem; color: var(--muted); line-height: 1.5; margin-bottom: 1.5rem; }
.form-check input { margin-top: .2rem; flex-shrink: 0; accent-color: var(--pink); }
.hp-field { position: absolute; left: -5000px; opacity: 0; height: 0; width: 0; }

/* ============================================================ Pricing */
.price-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.price-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.75rem; display: flex; flex-direction: column; gap: .75rem; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.price-card:hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: var(--shadow-md); }
.price-card__title { font-size: 1.15rem; font-family: var(--font-display); font-style: italic; color: var(--ink); line-height: 1.25; }
.price-card__price { font-size: 2.4rem; font-weight: 400; color: var(--pink); font-family: var(--font-display); font-style: italic; line-height: 1; }
.price-card__price small { font-size: .35em; color: var(--muted); font-family: var(--font-body); font-weight: 400; font-style: normal; }
.price-card .btn { margin-top: auto; align-self: flex-start; }

/* ============================================================ Membership card */
.member-card { max-width: 480px; margin: 0 auto; background: linear-gradient(160deg, var(--pink) 0%, var(--pink-deep) 100%); color: var(--white); border-radius: var(--r-xl); padding: 3rem; box-shadow: var(--shadow-pink); position: relative; overflow: hidden; }
.member-card::before { content: ""; position: absolute; top: -150px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,.25), transparent 70%); pointer-events: none; }
.member-card::after { content: ""; position: absolute; bottom: -100px; left: -50px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(30,64,255,.2), transparent 70%); pointer-events: none; }
.member-card > * { position: relative; z-index: 1; }
.member-card__badge { display: inline-block; background: var(--white); color: var(--pink-deep); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; padding: .4rem 1rem; border-radius: var(--r-pill); margin-bottom: 1.25rem; }
.member-card__title { color: var(--white); font-size: 2.5rem; margin-bottom: 1rem; font-style: italic; }
.member-card__price { font-family: var(--font-display); font-size: 4.5rem; font-weight: 400; margin-bottom: .25rem; font-style: italic; line-height: 1; }
.member-card__price small { font-size: .3em; color: rgba(255,255,255,.85); font-style: normal; }
.member-card .feature-list li { color: rgba(255,255,255,.95); padding-left: 1.8rem; }
.member-card .feature-list li::before { background: var(--white); width: 1.1rem; height: 1.1rem; top: .4rem; }
.member-card .btn { background: var(--white); color: var(--pink-deep); }
.member-card .btn:hover { background: var(--ink); color: var(--white); }

/* ============================================================ Locations */
.location-card { background: var(--white); border-radius: var(--r-lg); padding: 2.25rem; border: 1px solid var(--line); height: 100%; }
.location-card h3 { color: var(--ink); font-style: italic; margin-bottom: 1rem; }
.location-card dl { margin: 1.5rem 0 0; }
.location-card dt { font-weight: 600; color: var(--ink); font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; margin-top: 1.25rem; }
.location-card dd { margin: .35rem 0 0; color: var(--ink-2); font-size: .95rem; line-height: 1.5; }

/* ============================================================ CTA strip */
.cta-strip { background: var(--ink); color: var(--white); text-align: center; padding: clamp(4rem, 8vw, 7rem) 0; position: relative; overflow: hidden; }
.cta-strip::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 30%, rgba(255,59,124,.25), transparent 50%), radial-gradient(circle at 85% 70%, rgba(30,64,255,.25), transparent 50%); pointer-events: none; }
.cta-strip > .container { position: relative; z-index: 1; }
.cta-strip h2 { color: var(--white); margin-bottom: 1rem; }
.cta-strip h2 em { color: var(--pink); }
.cta-strip p { color: rgba(255,255,255,.78); max-width: 55ch; margin: 0 auto 2.5rem; font-size: 1.1rem; }

/* ============================================================ Footer */
.site-footer { background: var(--off-white); color: var(--ink-2); padding: 5rem 0 2rem; border-top: 1px solid var(--line); }
.site-footer h4 { color: var(--ink); font-family: var(--font-body); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.25rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-tag { font-family: var(--font-display); font-style: italic; font-size: 2rem; color: var(--ink); line-height: 1.15; margin-bottom: 1rem; letter-spacing: -.02em; }
.footer-brand-tag em { color: var(--pink); }
.site-footer p { color: var(--ink-3); font-size: .92rem; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6rem; font-size: .92rem; }
.site-footer a { color: var(--ink-2); }
.site-footer a:hover { color: var(--pink); opacity: 1; }
.socials { display: flex; gap: .5rem; margin-top: 1.25rem; }
.socials a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--white); border: 1px solid var(--line); color: var(--ink-2); transition: all .25s ease; }
.socials a:hover { background: var(--ink); border-color: var(--ink); color: var(--white); opacity: 1; transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 1.5rem; font-size: .82rem; color: var(--muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; align-items: center; }
.footer-bottom a { color: var(--ink-2); margin-left: 1.25rem; }
.footer-bottom a:first-of-type { margin-left: 0; }

/* ============================================================ Marquee */
.marquee { background: var(--ink); color: var(--white); padding: 1.4rem 0; overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; gap: 4rem; animation: marquee 30s linear infinite; padding-right: 4rem; }
.marquee__item { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: var(--white); display: inline-flex; align-items: center; gap: 4rem; }
.marquee__item::after { content: "✦"; color: var(--pink); font-style: normal; font-size: 1rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================ Stat row */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; padding: 3rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { text-align: center; }
.stat__num { font-family: var(--font-display); font-style: italic; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--pink); line-height: 1; margin-bottom: .5rem; display: block; }
.stat__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; color: var(--ink-3); }

/* ============================================================ Utilities */
.text-center { text-align: center; }
.text-italic { font-style: italic; font-family: var(--font-display); }
.color-pink { color: var(--pink); }
.color-blue { color: var(--blue); }
.color-green { color: var(--green); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.divider { height: 1px; background: var(--line); margin: 4rem 0; }

/* ============================================================ Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s cubic-bezier(.2, 0, .2, 1), transform 1s cubic-bezier(.2, 0, .2, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero__title, .hero__subtitle, .hero__cta, .hero__visual, .hero__meta { animation: fadeIn 1s cubic-bezier(.2, 0, .2, 1) both; }
.hero__subtitle { animation-delay: .12s; }
.hero__cta { animation-delay: .24s; }
.hero__visual { animation-delay: .15s; }
.hero__meta { animation-delay: .36s; }

/* ============================================================ Responsive */
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .split, .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .split--reverse > :first-child { order: 0; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .header-phones { display: none; }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--white); border-bottom: 1px solid var(--line); padding: 1rem var(--container-px) 1.5rem; gap: 0; box-shadow: var(--shadow-md); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); width: 100%; font-size: 1.1rem; }
  .site-nav a:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom span:last-child a { margin-left: 0; margin-right: 1rem; }
  .hero__visual-card { bottom: -12px; left: 12px; }
  .hero__visual-pill { right: 12px; }
  .testimonial__mark { font-size: 5rem; }
  .stat-row { grid-template-columns: 1fr; }
}

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