/* ============================================================
   ANESTHESIA SERVICES OF ATLANTA — "ATL Metropolitan"
   Playfair Display / Inter
   Deep Emerald · Warm Gold · Cream
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --emerald:       #0B3327;
  --emerald-mid:   #1A5C42;
  --emerald-light: #2A7A5A;
  --emerald-pale:  #EBF4EF;
  --gold:          #C9981E;
  --gold-light:    #DDB040;
  --gold-pale:     #FBF3DC;
  --cream:         #F7F2E9;
  --off-white:     #FEFCF8;
  --white:         #FFFFFF;
  --ink:           #0A150E;
  --mid:           #2A3F30;
  --muted:         #5E7A68;
  --border:        rgba(11, 51, 39, 0.10);
  --rule:          rgba(11, 51, 39, 0.07);

  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;

  --nav-h:    72px;
  --max-w:    1240px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm:   0 2px 10px rgba(11, 51, 39, 0.08);
  --shadow-md:   0 6px 28px rgba(11, 51, 39, 0.13);
  --shadow-lg:   0 20px 56px rgba(11, 51, 39, 0.18);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--ink); background: var(--off-white); overflow-x: hidden; line-height: 1.65; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--emerald-light); border-radius: 10px; }
::selection { background: var(--emerald); color: var(--white); }

/* ── Reveal ─────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── Container ──────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }

/* ── Section label ──────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-label--light { color: rgba(255,255,255,0.6); }
.section-label--light::before { background: rgba(255,255,255,0.4); }
.section-label--center {
  display: flex;
  justify-content: center;
}
.section-label--center::before { display: none; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  transition: all 0.22s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201, 152, 30, 0.38);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201, 152, 30, 0.48); }

.btn--white {
  background: var(--white);
  color: var(--emerald);
  font-weight: 600;
}
.btn--white:hover { background: var(--cream); transform: translateY(-2px); }

.btn--ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--ghost-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }

.btn--outline-emerald {
  background: transparent;
  color: var(--emerald);
  border: 1.5px solid var(--emerald);
}
.btn--outline-emerald:hover { background: var(--emerald); color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(254, 252, 248, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav--scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(11, 51, 39, 0.08);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav__logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--emerald);
  border-radius: 6px;
  flex-shrink: 0;
}
.nav__logo-abbr {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav__logo-text { display: flex; flex-direction: column; gap: 0.15rem; }
.nav__logo-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.nav__logo-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.01em;
  line-height: 1;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mid);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
}
.nav__link:hover, .nav__link.active { color: var(--emerald); background: var(--emerald-pale); }
.nav__cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.55rem 1.25rem !important;
  margin-left: 0.5rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav__cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav__dropdown { position: relative; }
.nav__dropdown-toggle { background: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.35rem; }
.nav__dropdown-toggle svg { transition: transform 0.2s; }
.nav__dropdown-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav__dropdown-menu { display: none; position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%); background: var(--white, #fff); border-radius: 8px; box-shadow: 0 8px 24px rgba(10,21,14,0.13); min-width: 190px; padding: 0.4rem 0; list-style: none; z-index: 200; }
.nav__dropdown-menu.open { display: block; }
.nav__dropdown-link { display: block; padding: 0.6rem 1.25rem; font-family: var(--font-body); font-size: 0.875rem; font-weight: 500; color: var(--mid); transition: color 0.15s, background 0.15s; white-space: nowrap; }
.nav__dropdown-link:hover, .nav__dropdown-link.active { color: var(--emerald); background: var(--emerald-pale); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s var(--ease-out); }
.nav__overlay {
  position: fixed; inset: 0;
  background: rgba(10, 21, 14, 0.55);
  z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(4px);
}
.nav__overlay.open { opacity: 1; pointer-events: all; }
.nav__drawer {
  position: fixed; top: 0; right: 0;
  width: min(340px, 85vw); height: 100%;
  background: var(--white); z-index: 400;
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  box-shadow: -4px 0 40px rgba(11, 51, 39, 0.18);
}
.nav__drawer.open { transform: translateX(0); }
.nav__drawer-close { align-self: flex-end; font-size: 1.1rem; color: var(--muted); margin-bottom: 2rem; padding: 0.5rem; border-radius: 4px; transition: color 0.2s, background 0.2s; }
.nav__drawer-close:hover { color: var(--ink); background: var(--emerald-pale); }
.nav__drawer-link {
  font-family: var(--font-body); font-size: 1.15rem; font-weight: 600; color: var(--ink);
  padding: 0.9rem 0; border-bottom: 1px solid var(--rule);
  transition: color 0.2s, padding-left 0.2s;
}
.nav__drawer-link:hover { color: var(--emerald); padding-left: 0.5rem; }
.nav__drawer-cta {
  display: flex; align-items: center; justify-content: center;
  margin-top: 2rem; background: var(--gold); color: var(--white);
  padding: 1rem; border-radius: 4px; font-weight: 600;
  font-size: 0.9375rem; transition: background 0.2s;
}
.nav__drawer-cta:hover { background: var(--gold-light); }

/* ============================================================
   HERO  — full-width emerald
   ============================================================ */
.hero {
  min-height: 90vh;
  padding-top: var(--nav-h);
  background: var(--emerald);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(115deg, black 0%, black 45%, transparent 78%);
          mask-image: linear-gradient(115deg, black 0%, black 45%, transparent 78%);
  pointer-events: none;
}
.hero__glow-a {
  position: absolute;
  top: -35%;
  right: -8%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(201,152,30,0.16) 0%, transparent 65%);
  pointer-events: none;
}
.hero__glow-b {
  position: absolute;
  bottom: -40%;
  left: 20%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 5rem;
  position: relative;
  z-index: 1;
}
.hero__content {
  max-width: 640px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero__eyebrow::after {
  content: '';
  display: block;
  flex: 1;
  max-width: 48px;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.5;
}
.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.hero__heading em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.68);
  max-width: 48ch;
  margin-bottom: 2.75rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   INTRO BAND
   ============================================================ */
.intro-band {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 0;
}
.intro-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.intro-band__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.intro-band__items {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  flex: 1;
}
.intro-band__item {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--mid);
}
.intro-band__item::after {
  content: '·';
  margin: 0 1.25rem;
  color: var(--border);
  font-size: 1.2rem;
}
.intro-band__item:last-child::after { display: none; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 7rem 0;
  background: var(--off-white);
}
.about__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.about__pull {
  text-align: center;
  max-width: 72ch;
  margin: 0 auto 5rem;
  padding-bottom: 4.5rem;
  border-bottom: 1px solid var(--border);
}
.about__pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--emerald);
  quotes: none;
}
.about__pull-quote::before,
.about__pull-quote::after { content: ''; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.5rem;
}
.about__col-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.about__col-text {
  font-size: 0.9375rem;
  line-height: 1.78;
  color: var(--muted);
}
.about__col-text + .about__col-text { margin-top: 0.875rem; }

/* ============================================================
   SERVICES  — row layout (not cards)
   ============================================================ */
.services {
  background: var(--emerald);
  padding: 7rem 0;
}
.services__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.services__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.services__subtext {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  align-self: end;
}

.services__list { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2.5rem;
  align-items: start;
  padding: 2.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.service-row:last-child { border-bottom: none; }
.service-row:hover { background: rgba(255,255,255,0.03); margin: 0 -2.5rem; padding-left: 2.5rem; padding-right: 2.5rem; }
.service-row__num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: rgba(201,152,30,0.3);
  letter-spacing: -0.04em;
  line-height: 1;
}
.service-row__body {}
.service-row__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.service-row__desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.58);
  max-width: 60ch;
}
.service-row__icon {
  color: var(--gold);
  opacity: 0.55;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS  — full-width dark slider
   ============================================================ */
.testimonials {
  background: #000;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials__label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4.5rem;
}

.testimonials__slider {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 260px;
  padding: 0 7rem;
}

.testimonials__track {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 200px;
}

.testimonials__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.testimonials__slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
.testimonials__slide.exit-left {
  opacity: 0;
  transform: translateX(-40px);
}

.testimonials__quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(160, 180, 200, 0.85);
  text-align: center;
  max-width: 72ch;
  margin: 0 auto;
}

/* Circle arrow buttons */
.testimonials__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.55);
  background: transparent;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  z-index: 2;
  flex-shrink: 0;
}
.testimonials__btn:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.testimonials__btn--prev { left: 1.5rem; }
.testimonials__btn--next { right: 1.5rem; }

@media (max-width: 640px) {
  .testimonials__slider { padding: 0 4.5rem; }
  .testimonials__btn--prev { left: 0.5rem; }
  .testimonials__btn--next { right: 0.5rem; }
  .testimonials__quote { font-size: 1.05rem; }
}

/* ============================================================
   WHY ASA
   ============================================================ */
.why {
  padding: 7rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.why__header {
  max-width: 48ch;
  margin-bottom: 5rem;
}
.why__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.why__item {
  padding: 0 3.5rem 0 0;
  border-right: 1px solid var(--border);
  margin-right: 3.5rem;
}
.why__item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.why__num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--emerald-pale);
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
}
.why__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}
.why__text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ============================================================
   APPROACH
   ============================================================ */
.approach {
  padding: 7rem 0;
  background: var(--emerald);
}
.approach__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.approach__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 4.5rem;
}
.approach__heading em { font-style: italic; color: var(--gold); }
.approach__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.approach__step {
  padding-right: 2.5rem;
  padding-top: 2.5rem;
  border-top: 2px solid rgba(255,255,255,0.1);
  position: relative;
}
.approach__step:first-child { border-top-color: var(--gold); }
.approach__step__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201,152,30,0.2);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.approach__step__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}
.approach__step__text {
  font-size: 0.9rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.56);
}

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.contact {
  padding: 7rem 0;
  background: var(--gold-pale);
  border-top: 3px solid var(--gold);
}
.contact__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact__left {}
.contact__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.875rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.contact__sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 46ch;
}
.contact__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.contact__right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-card {
  background: var(--white);
  border: 1px solid rgba(201,152,30,0.2);
  border-radius: 6px;
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(11,51,39,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-card:hover { box-shadow: 0 6px 24px rgba(11,51,39,0.1); transform: translateY(-2px); }
.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--emerald-pale);
  border-radius: 6px;
  color: var(--emerald);
  flex-shrink: 0;
}
.contact-card__type {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.contact-card__value {
  font-family: var(--font-body);
  font-size: 1.075rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.contact-card__value a { transition: color 0.2s; }
.contact-card__value a:hover { color: var(--emerald); }
.contact-card__email {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
}
.contact-card__email a { transition: color 0.2s; }
.contact-card__email a:hover { color: var(--emerald-mid); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  padding: 5rem 0 0;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem 4.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer__logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 5px;
  flex-shrink: 0;
}
.footer__logo-abbr {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.footer__logo-name {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.005em;
}
.footer__desc {
  font-size: 0.875rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.42);
  margin-bottom: 1.75rem;
  max-width: 34ch;
}
.footer__socials { display: flex; gap: 0.625rem; }
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  color: rgba(255,255,255,0.55);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer__social:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-2px); }
.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.18s;
}
.footer__link:hover { color: var(--white); }
.footer__address { display: flex; flex-direction: column; gap: 1rem; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
}
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); opacity: 0.8; }
.footer__contact-label { font-weight: 600; color: rgba(255,255,255,0.4); margin-right: 0.2rem; }
.footer__contact-item a { transition: color 0.18s; }
.footer__contact-item a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer__bottom-link { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color 0.18s; }
.footer__bottom-link:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero { min-height: auto; }
  .hero__inner { padding: 5rem 2.5rem; }
  .services__header { grid-template-columns: 1fr; gap: 1.5rem; }
  .services__header { margin-bottom: 3rem; padding-bottom: 2.5rem; }
  .why__grid { gap: 3rem; }
  .approach__grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-row { grid-template-columns: 52px 1fr; }
  .service-row__icon { display: none; }
  .why__grid { grid-template-columns: 1fr; gap: 3rem; }
  .why__item { border-right: none; padding-right: 0; margin-right: 0; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
  .why__item:last-child { border-bottom: none; padding-bottom: 0; }
  .approach__grid { grid-template-columns: 1fr 1fr; }
  .contact__container { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__desc { max-width: none; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .intro-band__items { gap: 0.75rem 0; }
  .testimonials__header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

@media (max-width: 520px) {
  .hero__inner { padding: 4rem 1.75rem; }
  .approach__grid { grid-template-columns: 1fr; }
  .hero__heading { font-size: 2.4rem; }
}

/* ============================================================
   PAGE HERO  (inner pages)
   ============================================================ */
.page-hero {
  background: var(--emerald);
  padding: calc(var(--nav-h) + 5rem) 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 40%, rgba(201,152,30,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.page-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.page-hero__heading span { color: var(--gold); font-style: italic; }
.page-hero__sub {
  font-size: 1.05rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.65);
  max-width: 58ch;
}

/* ============================================================
   BLOG LISTING
   ============================================================ */
.blog-listing { padding: 5rem 0 7rem; }
.blog-listing__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.blog-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: var(--emerald-pale);
  border: 1px solid rgba(11,51,39,0.12);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 1.125rem 1.5rem;
  margin-bottom: 3rem;
}
.blog-disclaimer__icon { color: var(--emerald); flex-shrink: 0; margin-top: 2px; }
.blog-disclaimer__text { font-size: 0.925rem; line-height: 1.6; color: var(--mid); }
.blog-disclaimer__text a { color: var(--emerald); font-weight: 600; text-decoration: underline; }
.blog-listing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .blog-listing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-listing__grid { grid-template-columns: 1fr; } }

.listing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
  text-decoration: none;
  color: inherit;
}
.listing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.listing-card__img {
  height: 200px;
  background: var(--emerald-pale);
  position: relative;
  flex-shrink: 0;
}
.listing-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,51,39,0.35) 0%, transparent 60%);
}
.listing-card__body {
  padding: 1.5rem 1.625rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.listing-card__date {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.775rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.875rem;
  letter-spacing: 0.02em;
}
.listing-card__date svg { flex-shrink: 0; }
.listing-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.listing-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.listing-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--emerald);
  letter-spacing: 0.01em;
  transition: gap 0.2s;
  margin-top: auto;
}
.listing-card:hover .listing-card__read-more { gap: 0.65rem; }

/* ============================================================
   CONTACT INFO STRIP
   ============================================================ */
.contact-info-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.contact-info-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) { .contact-info-strip__inner { grid-template-columns: 1fr; gap: 1.5rem; } }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--emerald-pale);
  border-radius: 8px;
  color: var(--emerald);
  flex-shrink: 0;
}
.contact-info-item__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.contact-info-item__value {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
}
.contact-info-item__value a { transition: color 0.18s; }
.contact-info-item__value a:hover { color: var(--emerald); }

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-form-section { padding: 5.5rem 0 7rem; background: var(--cream); }
.contact-form-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-form-section__inner { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-form-aside__heading {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.contact-form-aside__text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 2rem;
}
.contact-form-aside__list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form-aside__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-form-aside__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--emerald-pale);
  border-radius: 7px;
  color: var(--emerald);
  flex-shrink: 0;
}
.contact-form-aside__item-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.contact-form-aside__item-value {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Form card */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 0.375rem;
}
.contact-form-card__sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

/* Form type selector */
.form-type-selector { margin-bottom: 1.75rem; }
.form-type-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 0.5rem;
}
.form-type-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--off-white);
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235E7A68' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-type-select:focus { outline: none; border-color: var(--emerald); }

/* Form panels */
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mid);
}
.form-label span, .form-required { color: var(--gold); }
.form-input, .form-textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(11,51,39,0.08);
}
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-check {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--ink);
  line-height: 1.4;
}
.form-check input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--emerald);
}
.form-check a { color: var(--emerald); text-decoration: underline; }
.form-submit {
  width: 100%;
  padding: 0.9375rem;
  background: var(--emerald);
  color: var(--white);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  margin-bottom: 1rem;
}
.form-submit:hover { background: var(--emerald-mid); transform: translateY(-1px); }
.form-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.form-note svg { flex-shrink: 0; color: var(--gold); }

/* Billing note */
.billing-note {
  background: var(--emerald-pale);
  border: 1px solid rgba(11,51,39,0.12);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.billing-note__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 0.75rem;
}
.billing-note__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 0.375rem;
}
.billing-note__item:last-child { margin-bottom: 0; }
.billing-note__item svg { color: var(--emerald); flex-shrink: 0; }
.billing-note__item a { color: var(--emerald); font-weight: 600; }

/* Success */
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}
.form-success__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--emerald-pale);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  color: var(--emerald);
}
.form-success__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.625rem;
}
.form-success__text { font-size: 0.9375rem; color: var(--muted); }

/* ============================================================
   PRIVACY POLICY
   ============================================================ */
.privacy-section { padding: 5rem 0 7rem; background: var(--off-white); }
.privacy-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.privacy-inner p { font-size: 0.9375rem; line-height: 1.8; color: var(--muted); margin-bottom: 1.25rem; }
.privacy-inner h2 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 2.75rem 0 0.875rem;
}
.privacy-inner h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 1.75rem 0 0.625rem;
}
.privacy-inner ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.privacy-inner ul li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.privacy-inner a { color: var(--emerald); text-decoration: underline; }

/* ============================================================
   BLOG ARTICLE PAGES
   ============================================================ */
.article-header {
  margin-top: var(--nav-h);
  height: 380px;
  position: relative;
  overflow: hidden;
}
.article-header__gradient {
  position: absolute;
  inset: 0;
}
.article-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,21,14,0.12) 0%, rgba(10,21,14,0.78) 100%);
}
.article-header__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.article-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 2.75rem;
  width: 100%;
}
.article-header__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  margin-bottom: 1rem;
  transition: color 0.2s;
  line-height: 1;
}
.article-header__back:hover { color: var(--white); }
.article-header__date {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.article-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.12;
  max-width: 900px;
}

.article-body {
  background: var(--cream);
  padding: 4rem 0;
}
.article-body__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}
.article-body__inner > p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 1.625rem;
}
.article-body__inner h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 2.75rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--gold);
  line-height: 1.2;
}
.article-body__inner h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 2rem 0 0.75rem;
}
.article-body__inner ul,
.article-body__inner ol {
  margin: 0 0 1.5rem 1.5rem;
}
.article-body__inner li {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 0.5rem;
}
.article-body__inner strong {
  font-weight: 600;
  color: var(--ink);
}

.article-references {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.article-references__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}
.article-references__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--border);
}
.article-references ol { margin-left: 1.25rem; }
.article-references li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.article-references a {
  color: var(--emerald-mid);
  text-decoration: underline;
  text-decoration-color: rgba(26,92,66,0.3);
  transition: color 0.2s;
  word-break: break-all;
}
.article-references a:hover { color: var(--emerald); }

.article-nav {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.article-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1.5rem;
}
.article-nav__link {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 48%;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.article-nav__link:hover {
  border-color: var(--emerald-light);
  box-shadow: var(--shadow-sm);
}
.article-nav__link--next {
  text-align: right;
  align-items: flex-end;
  margin-left: auto;
}
.article-nav__direction {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald-mid);
  line-height: 1;
}
.article-nav__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .article-header { height: 300px; }
  .article-header__title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .article-nav__inner { flex-direction: column; }
  .article-nav__link { max-width: none; }
  .article-nav__link--next { align-items: flex-start; text-align: left; }
}
