/* ==========================================================================
   Tungate Law Office — Watseka, Illinois
   Premium design system: deep forest green, champagne gold, ivory.
   Display serif: Cormorant Garamond. UI/body: Inter.
   Animation: hero entrance, scroll reveals, counters, micro-interactions.
   ========================================================================== */

:root {
  --forest-950: #0a1710;
  --forest-900: #0d1f16;
  --forest-800: #12291d;
  --forest-700: #1a3828;
  --forest-600: #24503a;
  --gold: #c9a962;
  --gold-bright: #dcc084;
  --gold-dim: #9a7f45;
  --ivory: #f7f4ed;
  --ivory-warm: #f1ecdf;
  --ink: #1c241f;
  --ink-soft: #55605a;
  --white: #ffffff;
  --line: #e4ddcc;
  --line-dark: rgba(201, 169, 98, 0.25);
  --max: 74rem;
  --measure: 44rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 5.5rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  color: var(--forest-900);
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.1rem; }
h3 { font-size: 1.55rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1.1rem; max-width: var(--measure); }
ul, ol { margin: 0 0 1.1rem 1.3rem; max-width: var(--measure); }
li { margin-bottom: 0.55rem; }

a { color: var(--forest-700); text-decoration: none; transition: color 0.3s var(--ease-out); }
a:hover { color: var(--gold-dim); }

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

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

/* --- Eyebrow ------------------------------------------------------------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--gold);
  flex: none;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--gold);
  flex: none;
}

/* ==========================================================================
   HEADER — fixed, glass blur, shrinks on scroll
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(10, 23, 16, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(10, 23, 16, 0.92);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--header-h);
  transition: height 0.4s var(--ease-out);
}
.site-header.scrolled .header-inner { height: 4.25rem; }

.brand { display: flex; align-items: center; gap: 0.9rem; }

.brand-mark {
  width: 2.9rem;
  height: 2.9rem;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.brand:hover .brand-mark { background: rgba(201, 169, 98, 0.12); transform: rotate(-3deg); }

.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ivory);
}
.brand-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--gold);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  max-width: none;
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2rem);
}
.site-nav li { margin: 0; }

.site-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(247, 244, 237, 0.82);
  padding: 0.4rem 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav a[aria-current="page"] { color: var(--gold-bright); }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-cta { flex: none; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(201, 169, 98, 0.5);
  width: 2.8rem;
  height: 2.8rem;
  cursor: pointer;
  position: relative;
  z-index: 110;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1.2rem;
  height: 1.5px;
  background: var(--gold-bright);
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.nav-toggle span { top: 50%; transform: translate(-50%, -50%); }
.nav-toggle span::before { top: -6px; left: 0; transform: translateX(-0%); width: 1.2rem; }
.nav-toggle span::after { top: 6px; left: 0; width: 1.2rem; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 62rem) {
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 0;
    background: rgba(10, 23, 16, 0.97);
    backdrop-filter: blur(20px);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s var(--ease-out), visibility 0.45s;
  }
  .nav-open .site-nav { opacity: 1; visibility: visible; }
  .site-nav ul { flex-direction: column; gap: 1.6rem; text-align: center; }
  .site-nav a { font-size: 1rem; letter-spacing: 0.2em; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-block;
  padding: 0.95rem 2.2rem;
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  overflow: hidden;
  transition: color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.4s var(--ease-out);
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-gold { background: var(--gold); color: var(--forest-950); }
.btn-gold::before { background: var(--gold-bright); }
.btn-gold:hover { color: var(--forest-950); box-shadow: 0 14px 30px rgba(201, 169, 98, 0.35); }

.btn-ghost { border: 1px solid rgba(201, 169, 98, 0.6); color: var(--gold-bright); }
.btn-ghost::before { background: rgba(201, 169, 98, 0.14); }
.btn-ghost:hover { color: var(--white); border-color: var(--gold); }

.btn-forest { border: 1px solid var(--forest-700); color: var(--forest-800); }
.btn-forest::before { background: var(--forest-800); }
.btn-forest:hover { color: var(--ivory); }

/* ==========================================================================
   HERO (homepage) — full screen, layered animated background
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(100vh, 58rem);
  min-height: min(100svh, 58rem);
  display: flex;
  align-items: center;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(36, 80, 58, 0.55) 0%, transparent 55%),
    radial-gradient(100% 80% at 15% 90%, rgba(26, 56, 40, 0.6) 0%, transparent 60%),
    linear-gradient(160deg, var(--forest-950) 0%, var(--forest-900) 55%, var(--forest-800) 100%);
  color: var(--ivory);
  overflow: hidden;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
}

/* slow drifting glow */
.hero::before {
  content: "";
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  top: -20vmax;
  right: -15vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.10) 0%, transparent 65%);
  animation: drift 16s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-8vmax, 6vmax) scale(1.15); }
}

/* faint concentric ring ornament */
.hero::after {
  content: "";
  position: absolute;
  bottom: -22rem;
  left: -14rem;
  width: 46rem;
  height: 46rem;
  border: 1px solid rgba(201, 169, 98, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(201, 169, 98, 0.04), 0 0 0 10rem rgba(201, 169, 98, 0.03);
  animation: ringPulse 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 0.5; }
}

.hero .wrap { position: relative; z-index: 2; }

.hero .eyebrow { color: var(--gold-bright); }
.hero .eyebrow::before { background: var(--gold); }

.hero h1 {
  color: var(--ivory);
  max-width: 17ch;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}

.hero .lede {
  margin-top: 1.75rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(247, 244, 237, 0.78);
  max-width: 54ch;
}

.hero .actions { margin-top: 2.75rem; display: flex; flex-wrap: wrap; gap: 1.1rem; }

/* staggered entrance */
.hero-anim { opacity: 0; transform: translateY(28px); animation: riseIn 1.1s var(--ease-out) forwards; }
.hero-anim.d1 { animation-delay: 0.15s; }
.hero-anim.d2 { animation-delay: 0.35s; }
.hero-anim.d3 { animation-delay: 0.55s; }
.hero-anim.d4 { animation-delay: 0.75s; }
@keyframes riseIn {
  to { opacity: 1; transform: translateY(0); }
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(247, 244, 237, 0.5);
  z-index: 2;
  animation: riseIn 1.2s var(--ease-out) 1.3s both;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 3.4rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: cueDrop 2.2s var(--ease-out) infinite;
}
@keyframes cueDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   PAGE HERO (interior pages)
   ========================================================================== */
.page-hero {
  position: relative;
  background:
    radial-gradient(110% 100% at 85% 0%, rgba(36, 80, 58, 0.5) 0%, transparent 55%),
    linear-gradient(155deg, var(--forest-950) 0%, var(--forest-900) 70%, var(--forest-800) 100%);
  color: var(--ivory);
  padding: calc(var(--header-h) + 5.5rem) 0 5.5rem;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: -14rem;
  right: -10rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(201, 169, 98, 0.05);
  animation: ringPulse 9s ease-in-out infinite;
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold-bright); }
.page-hero h1 { color: var(--ivory); max-width: 22ch; text-wrap: balance; }
.page-hero .lede {
  margin-top: 1.5rem;
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(247, 244, 237, 0.75);
  max-width: 56ch;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }
.section-ivory { background: var(--ivory); }
.section-warm { background: var(--ivory-warm); }
.section-dark {
  background:
    radial-gradient(100% 120% at 50% 120%, rgba(36, 80, 58, 0.5) 0%, transparent 60%),
    var(--forest-900);
  color: rgba(247, 244, 237, 0.8);
}
.section-dark h2, .section-dark h3 { color: var(--ivory); }
.section-dark .eyebrow { color: var(--gold-bright); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section-dark .section-head p { color: rgba(247, 244, 237, 0.7); }
.section-head.centered p { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   SCROLL REVEALS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--rd, 0s);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-left.in-view, .reveal-right.in-view { transform: none; }
.d1 { --rd: 0.12s; } .d2 { --rd: 0.24s; } .d3 { --rd: 0.36s; } .d4 { --rd: 0.48s; }

/* gold rule that draws itself */
.draw-rule {
  width: 5.5rem;
  height: 2px;
  background: var(--gold);
  margin: 1.4rem 0 1.8rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease-out) 0.25s;
}
.centered .draw-rule, .draw-rule.centered { margin-left: auto; margin-right: auto; transform-origin: center; }
.in-view .draw-rule, .draw-rule.in-view { transform: scaleX(1); }

/* ==========================================================================
   PRACTICE PANELS (homepage)
   ========================================================================== */
.practice-primary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
}

.practice-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(2.2rem, 4vw, 3.25rem);
  overflow: hidden;
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out), border-color 0.55s var(--ease-out);
}
.practice-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.practice-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(13, 31, 22, 0.14);
  border-color: transparent;
}
.practice-card:hover::before { transform: scaleX(1); }

.practice-card .card-index {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1.2rem;
}
.practice-card h3 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); }
.practice-card p { color: var(--ink-soft); font-size: 1rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-700);
  margin-top: 0.5rem;
}
.card-link .arrow { transition: transform 0.4s var(--ease-out); color: var(--gold-dim); }
.practice-card:hover .card-link .arrow, .card-link:hover .arrow { transform: translateX(6px); }

/* ==========================================================================
   STATS BAND — animated counters
   ========================================================================== */
.stats-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 2.5rem;
  text-align: center;
}
.stat .stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 500;
  color: var(--gold-bright);
  line-height: 1;
  display: block;
}
.stat .stat-label {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247, 244, 237, 0.62);
}

/* ==========================================================================
   QUOTE BAND
   ========================================================================== */
.quote-band { text-align: center; }
.quote-band blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  color: var(--forest-900);
  max-width: 26ch;
  margin: 0 auto;
  text-wrap: balance;
}
.section-dark .quote-band blockquote { color: var(--ivory); }

/* ==========================================================================
   SPLIT LAYOUT
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

/* framed ornamental panel (in place of photography, until photos exist) */
.ornament-panel {
  position: relative;
  min-height: 22rem;
  height: 100%;
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(90% 90% at 70% 20%, rgba(36, 80, 58, 0.45) 0%, transparent 60%),
    linear-gradient(150deg, var(--forest-900), var(--forest-800));
  display: grid;
  place-items: center;
  overflow: hidden;
}
.ornament-panel::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(201, 169, 98, 0.35);
  pointer-events: none;
}
.ornament-panel .monogram {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 10vw, 8rem);
  color: var(--gold);
  opacity: 0.9;
  line-height: 1;
}
.ornament-panel .est {
  position: absolute;
  bottom: 2rem;
  font-size: 0.66rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(247, 244, 237, 0.55);
}

/* ==========================================================================
   FEATURE LIST (what-you-can-expect etc.)
   ========================================================================== */
.feature-list { list-style: none; margin: 0; max-width: none; }
.feature-list li {
  display: flex;
  gap: 1.3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  margin: 0;
}
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.section-dark .feature-list li { border-color: rgba(201, 169, 98, 0.18); }
.feature-list .tick {
  flex: none;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-dim);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
}
.section-dark .feature-list .tick { color: var(--gold-bright); }
.feature-list h3 { font-size: 1.15rem; font-family: "Inter", sans-serif; font-weight: 600; letter-spacing: 0.01em; margin-bottom: 0.2rem; }
.section-dark .feature-list h3 { color: var(--ivory); }
.feature-list p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
.section-dark .feature-list p { color: rgba(247, 244, 237, 0.68); }

/* ==========================================================================
   TIMELINE (history page)
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 46rem;
  padding-left: 2.6rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 169, 98, 0.15));
}
.timeline-item { position: relative; padding-bottom: 3rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.6rem;
  top: 0.5rem;
  width: 1.15rem;
  height: 1.15rem;
  border: 1px solid var(--gold);
  background: var(--ivory);
  transform: rotate(45deg);
  transition: background 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}
.timeline-item.in-view::before { background: var(--gold); transform: rotate(225deg); }
.timeline-item .tl-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.12em;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 0.3rem;
}
.timeline-item h3 { font-size: 1.6rem; }
.timeline-item p { color: var(--ink-soft); font-size: 1rem; }

/* ==========================================================================
   CREDENTIALS / PROFILE
   ========================================================================== */
.cred-list { list-style: none; margin: 0; max-width: none; }
.cred-list li {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 0;
  font-size: 0.98rem;
}
.cred-list li:last-child { border-bottom: 1px solid var(--line); }
.cred-list .cred-k { font-weight: 600; color: var(--forest-800); flex: none; }
.cred-list .cred-v { color: var(--ink-soft); text-align: right; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 44rem; height: 44rem;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(201, 169, 98, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(201, 169, 98, 0.04), 0 0 0 10rem rgba(201, 169, 98, 0.03);
  animation: ringPulse 10s ease-in-out infinite;
  pointer-events: none;
}
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { max-width: 20ch; margin-left: auto; margin-right: auto; text-wrap: balance; }
.cta-band p { margin: 1.2rem auto 2.2rem; max-width: 46ch; }
.cta-band .phone-line {
  display: block;
  margin-top: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold-bright);
  letter-spacing: 0.04em;
}
.cta-band .phone-line:hover { color: var(--white); }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 2.2rem 2rem;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.contact-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(13, 31, 22, 0.12); }
.contact-card h3 { font-family: "Inter", sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 0.9rem; }
.contact-card p { color: var(--ink); font-size: 1.05rem; margin: 0; line-height: 1.85; }
.contact-card a { border-bottom: 1px solid var(--line-dark); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--forest-950);
  color: rgba(247, 244, 237, 0.6);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.5rem;
  font-size: 0.94rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 3rem;
}
@media (max-width: 46rem) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .brand-name { font-size: 1.6rem; }
.footer-brand p { margin-top: 1rem; max-width: 34ch; font-weight: 300; color: rgba(247, 244, 237, 0.55); }

.site-footer h3 {
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; margin: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { color: rgba(247, 244, 237, 0.72); }
.site-footer a:hover { color: var(--gold-bright); }

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.6rem;
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247, 244, 237, 0.38);
}
.footer-legal p { max-width: none; margin-bottom: 0.4rem; }

.design-credit { margin-top: 1rem; }
.design-credit a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(247, 244, 237, 0.45);
}
.design-credit img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  opacity: 0.85;
  transition: opacity 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}
.design-credit a:hover { color: var(--gold-bright); }
.design-credit a:hover img { opacity: 1; transform: rotate(10deg) scale(1.12); }

/* ==========================================================================
   UTILITIES & MOTION PREFERENCES
   ========================================================================== */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.article { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.article .wrap { max-width: 56rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .hero-anim { opacity: 1 !important; transform: none !important; }
  .draw-rule { transform: scaleX(1); }
}
