/* =========================================================
   KELLEY CONSTRUCTION — Heraldic premium theme
   Navy · Gold · Ivory · with modern motion
   ========================================================= */

:root {
  /* Brand constants (same in both themes) */
  --navy-900: #0b1a3a;
  --navy-800: #11224a;
  --navy-700: #1a2e5c;
  --navy-600: #23417a;
  --gold:     #c9a24b;
  --gold-2:   #e2c275;
  --gold-dk:  #a0802f;

  /* Constants used for text on dark brand surfaces (same in both themes) */
  --ivory:    #f6f1e7;
  --cream:    #faf7f0;
  --stone:    #e8e2d4;
  --ink:      #0a0f1e;

  /* LIGHT THEME (default) */
  --bg:         #faf7f0;
  --bg-alt:     #f6f1e7;
  --bg-deep:    #e8e2d4;
  --surface:    #ffffff;
  --text:       #0a0f1e;
  --text-soft:  #11224a;
  --text-mute:  #6b7280;
  --line:       rgba(201,162,75,.28);
  --border:     rgba(11,26,58,.08);
  --nav-bg:     rgba(250, 247, 240, .9);
  --nav-bg-solid: rgba(250,247,240,.97);
  --input-bg:   #faf7f0;

  --radius: 14px;
  --radius-btn: 999px;
  --shadow: 0 20px 60px -20px rgba(11,26,58,.35);
  --shadow-lg: 0 30px 80px -20px rgba(11,26,58,.55);

  --ease: cubic-bezier(.22,1,.36,1);
}

/* DARK THEME */
[data-theme="dark"] {
  --bg:         #0a1226;
  --bg-alt:     #0d1730;
  --bg-deep:    #070d1e;
  --surface:    #142145;
  --text:       #f3ead5;
  --text-soft:  #e2c275;
  --text-mute:  #9aa4bf;
  --line:       rgba(201,162,75,.22);
  --border:     rgba(201,162,75,.15);
  --nav-bg:     rgba(10,18,38,.85);
  --nav-bg-solid: rgba(10,18,38,.97);
  --input-bg:   #0d1730;
  --shadow:     0 20px 60px -20px rgba(0,0,0,.55);
  --shadow-lg:  0 30px 80px -20px rgba(0,0,0,.7);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
}

h1, h2, h3, h4 {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--text-soft);
}
[data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3, [data-theme="dark"] h4 { color: var(--gold-2); }

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1200px, 92%); margin: 0 auto; }

.accent { color: var(--gold-dk); }
.kicker {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  letter-spacing: .35em;
  color: var(--gold-dk);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.85rem;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  transition: all .35s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn::after {
  content:"";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }

.btn-gold { background: var(--gold); color: var(--navy-900); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 10px 30px -10px rgba(201,162,75,.6); }
.btn-ghost { background: transparent; color: var(--ivory); border-color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: var(--navy-900); }
.btn-dark { background: var(--navy-900); color: var(--ivory); border-color: var(--navy-900); }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.1rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- TICKER ---------- */
.ticker {
  background: var(--navy-900);
  color: var(--gold-2);
  padding: .45rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,162,75,.25);
  position: relative;
  z-index: 51;
}
.ticker-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 45s linear infinite;
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.ticker-track span { flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg-solid);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.nav.scrolled { box-shadow: 0 8px 30px -12px rgba(11,26,58,.2); }
.nav-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .9rem; z-index: 2; position: relative; }
.brand img {
  width: 68px; height: 68px;
  object-fit: contain;
  transition: opacity .4s var(--ease);
}
.brand .logo-dark { position: absolute; left: 0; top: 50%; transform: translateY(-50%); opacity: 0; pointer-events: none; }
[data-theme="dark"] .brand .logo-light { opacity: 0; }
[data-theme="dark"] .brand .logo-dark { opacity: 1; }
@media (max-width: 600px) {
  .brand img { width: 56px; height: 56px; }
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: .08em;
}
[data-theme="dark"] .brand-text strong { color: var(--gold-2); }
.brand-text em {
  font-style: normal;
  font-size: .68rem;
  letter-spacing: .28em;
  color: var(--gold-dk);
  margin-top: .15rem;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links > a {
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .05em;
  color: var(--text-soft);
  position: relative;
  padding: .3rem 0;
  text-transform: uppercase;
}
[data-theme="dark"] .nav-links > a { color: var(--text); }
.nav-links a::after {
  content:""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-close, .nav-mobile-call { display: none; }

.nav-actions { display: flex; align-items: center; gap: .75rem; z-index: 2; }

.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold-dk); transform: rotate(15deg); }
.theme-toggle svg { width: 18px; height: 18px; position: absolute; transition: transform .5s var(--ease), opacity .3s; }
.theme-toggle .icon-sun { opacity: 0; transform: rotate(-90deg) scale(.5); }
.theme-toggle .icon-moon { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"] .theme-toggle { border-color: var(--gold); background: var(--navy-800); }
[data-theme="dark"] .theme-toggle .icon-sun { opacity: 1; transform: rotate(0) scale(1); color: var(--gold-2); }
[data-theme="dark"] .theme-toggle .icon-moon { opacity: 0; transform: rotate(90deg) scale(.5); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--navy-900);
  color: #f6f1e7;
  padding: .7rem 1.3rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
  border: 2px solid var(--navy-900);
}
.nav-cta:hover { background: var(--gold); color: var(--navy-900); border-color: var(--gold); }
.nav-cta svg { width: 15px; height: 15px; }
[data-theme="dark"] .nav-cta { background: var(--gold); color: var(--navy-900); border-color: var(--gold); }
[data-theme="dark"] .nav-cta:hover { background: var(--gold-2); border-color: var(--gold-2); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--navy-900); transition: .3s; border-radius: 2px; }
[data-theme="dark"] .nav-toggle span { background: #fff !important; }

.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
  z-index: 1;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.4rem;
    z-index: 2;
    align-items: flex-start;
    transform: none;
  }
  .nav-links.open { display: flex; }

  .nav-links > a {
    font-size: 1.05rem;
    width: 100%;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
    color: #11224a;
  }
  .nav-links > a:hover { color: #a0802f; }
  .nav-links a::after { display: none; }

  .nav-close {
    display: flex !important;
    position: absolute;
    top: 1rem; left: 1rem;
    width: 42px; height: 42px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 999px;
    color: #11224a;
    cursor: pointer;
    transition: all .3s var(--ease);
  }
  .nav-close:hover { border-color: var(--gold); color: var(--gold-dk); }
  .nav-close svg { width: 20px; height: 20px; }

  .nav-mobile-call {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: .95rem 1.5rem !important;
    width: auto !important;
    background: #c9a24b !important;
    color: #0b1a3a !important;
    border-radius: 999px !important;
    border: none !important;
    border-bottom: none !important;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: .08em;
  }
  .nav-mobile-call:hover { background: #e2c275 !important; }
  .nav-mobile-call::after { display: none !important; }

  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  /* DARK MODE DRAWER */
  [data-theme="dark"] .nav-links { background: #0b1a3a; }
  [data-theme="dark"] .nav-links > a { color: #f3ead5; border-bottom-color: rgba(201,162,75,.2); }
  [data-theme="dark"] .nav-links > a:hover { color: #e2c275; }
  [data-theme="dark"] .nav-close { background: #11224a; border-color: #c9a24b; color: #e2c275; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: calc(100svh - 120px);
  min-height: 520px;
  max-height: 780px;
  overflow: hidden;
  color: #f3ead5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}
@supports not (height: 100svh) {
  .hero { height: calc(100vh - 120px); }
}
@media (max-width: 700px) {
  .hero { height: calc(100svh - 130px); min-height: 440px; }
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, #0a1226 0%, #11224a 55%, #1a2e5c 100%);
  z-index: 0;
}
.hero-bg::before {
  content:"";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,162,75,.08), transparent 70%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(226,194,117,.07), transparent 70%);
}
.hero-bg::after {
  content:"";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,75,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,75,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
}
.hero-watermark {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(780px, 85vw);
  opacity: .10;
  pointer-events: none;
  animation: slowFloat 10s ease-in-out infinite;
}
.hero-watermark img { width: 100%; filter: brightness(0) invert(1); }
@media (max-width: 700px) { .hero-watermark { width: 110vw; opacity: .08; } }

.hero-corners { position: absolute; inset: 2.5rem; pointer-events: none; }
.corner {
  position: absolute;
  width: 36px; height: 36px;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: cornerIn 1s var(--ease) forwards;
}
.corner-tl { top: 0; left: 0; border-right: 0; border-bottom: 0; transform: translate(-12px, -12px); animation-delay: 1.6s; }
.corner-tr { top: 0; right: 0; border-left: 0; border-bottom: 0; transform: translate(12px, -12px); animation-delay: 1.7s; }
.corner-bl { bottom: 0; left: 0; border-right: 0; border-top: 0; transform: translate(-12px, 12px); animation-delay: 1.8s; }
.corner-br { bottom: 0; right: 0; border-left: 0; border-top: 0; transform: translate(12px, 12px); animation-delay: 1.9s; }
@keyframes cornerIn {
  to { opacity: .55; transform: translate(0, 0); }
}
@media (max-width: 700px) { .hero-corners { inset: 1.25rem; } .corner { width: 24px; height: 24px; } }

/* Hero shimmer sweep */
.hero-bg::after {
  content:"";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(201,162,75,.07) 50%, transparent 60%);
  background-size: 250% 100%;
  animation: heroShimmer 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes heroShimmer {
  0%, 100% { background-position: 250% 0; }
  50%      { background-position: -50% 0; }
}

/* Crest watermark pulse */
.hero-watermark {
  animation: slowFloat 10s ease-in-out infinite, crestPulse 6s ease-in-out infinite;
}
@keyframes crestPulse {
  0%, 100% { opacity: .10; }
  50%      { opacity: .06; }
}

.hero-inner {
  position: relative; z-index: 2;
  text-align: center;
  width: min(880px, 92%);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  letter-spacing: .32em;
  color: var(--gold-2);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .3s forwards;
}
.hero-eyebrow .line {
  width: 40px; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  animation: lineGrow .8s var(--ease) .6s forwards;
}
@keyframes lineGrow { to { transform: scaleX(1); } }

.hero-title {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 7.5vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: .02em;
  line-height: 1.15;
  overflow: visible;
}
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(45deg);
  animation: wordReveal 1.1s var(--ease) forwards;
  background: linear-gradient(180deg, #ffffff 0%, #e2c275 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 .15em;
}
@keyframes wordReveal {
  0%   { opacity: 0; transform: translateY(40px) rotateX(45deg); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0) rotateX(0deg); filter: blur(0); }
}
.hero-title .word[data-word="1"] { animation-delay: .5s; }
.hero-title .word[data-word="2"] { animation-delay: .75s; }
.hero-title .word[data-word="3"] { animation-delay: 1s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  max-width: 580px;
  margin: 0 auto 2rem;
  color: rgba(243,234,213,.85);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.2s forwards;
  line-height: 1.6;
  letter-spacing: 0;
}
.hero-cta {
  display: flex;
  gap: .9rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.4s forwards;
}
@media (max-height: 700px) {
  .hero-title { font-size: clamp(2rem, 6vw, 4rem); }
  .hero-sub { margin-bottom: 1.5rem; }
}

/* (old marquee removed — ticker now lives at top of page) */

/* ---------- SECTION HEAD ---------- */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}
.lede {
  font-size: 1.1rem;
  color: var(--text-mute);
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- SERVICES ---------- */
.services {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
}
.services::before {
  content:""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 10% 0%, rgba(201,162,75,.06), transparent 50%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--surface);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all .5s var(--ease);
}
.service-card::before {
  content:"";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.service-card::after {
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(201,162,75,.06) 100%);
  opacity: 0;
  transition: opacity .5s;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-card.featured { background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: var(--ivory); border-color: var(--gold); }
.service-card.featured h3, .service-card.featured .service-num { color: var(--ivory); }
.service-card.featured .service-list li { color: rgba(246,241,231,.8); }
.service-card.featured .service-list li::before { color: var(--gold-2); }

.service-num {
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  color: var(--gold-dk);
  letter-spacing: .2em;
  margin-bottom: .9rem;
  position: relative;
}
.service-icon {
  width: 44px; height: 44px;
  color: var(--gold-dk);
  margin-bottom: .9rem;
  transition: transform .5s var(--ease);
}
.service-card:hover .service-icon { transform: rotate(-5deg) scale(1.1); }
.service-card.featured .service-icon { color: var(--gold-2); }
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.service-card > p { color: var(--text-mute); font-size: .88rem; margin-bottom: 1rem; line-height: 1.55; }
.service-card.featured > p { color: rgba(246,241,231,.85); }

.service-list { list-style: none; padding: 0; margin: 0; }
.service-list li {
  font-size: .82rem;
  color: var(--text-soft);
  padding: .3rem 0 .3rem 1.1rem;
  position: relative;
  border-top: 1px dashed var(--line);
}
[data-theme="dark"] .service-list li { color: var(--text); }
.service-list li:first-child { border-top: 0; }
.service-list li::before {
  content:"◆";
  position: absolute;
  left: 0;
  color: var(--gold-dk);
  font-size: .6rem;
  top: .75rem;
}

.badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--gold);
  color: var(--navy-900);
  font-size: .65rem;
  letter-spacing: .12em;
  padding: .25rem .6rem;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
}

/* ---------- PROCESS ---------- */
.process {
  padding: 7rem 0;
  background: var(--navy-900);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.process::before {
  content:"";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201,162,75,.12), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(201,162,75,.08), transparent 50%);
  pointer-events: none;
}
.process .section-head h2, .process .section-head h2 .accent { color: var(--ivory); }
.process .section-head h2 .accent { color: var(--gold-2); }
.process .lede { color: rgba(246,241,231,.75); }

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 4rem auto 0;
  padding: 0 1rem;
}
.process-line {
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: rgba(201,162,75,.15);
  transform: translateX(-50%);
}
.process-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 0 15px var(--gold);
  transition: height .6s var(--ease);
}

.process-step {
  position: relative;
  min-height: 140px;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
}
.process-dot {
  grid-column: 2;
  width: 60px; height: 60px;
  margin: 0 auto;
  background: var(--navy-800);
  border: 2px solid rgba(201,162,75,.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--gold-2);
  position: relative;
  z-index: 2;
  transition: all .5s var(--ease);
}
.process-step.active .process-dot {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold-2);
  box-shadow: 0 0 0 8px rgba(201,162,75,.15), 0 0 30px rgba(201,162,75,.5);
  transform: scale(1.1);
}
.process-dot span { font-size: 1.3rem; }

.process-content {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,162,75,.15);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  backdrop-filter: blur(6px);
  transition: all .5s var(--ease);
}
.process-step.active .process-content {
  border-color: var(--gold);
  background: rgba(201,162,75,.08);
  transform: translateY(-3px);
}
.process-left { grid-column: 1; margin-right: 1rem; text-align: right; }
.process-right { grid-column: 3; margin-left: 1rem; text-align: left; }
.process-content h3 { color: var(--ivory); font-size: 1.3rem; margin-bottom: .5rem; }
.process-content p { color: rgba(246,241,231,.75); font-size: .95rem; margin: 0; }

@media (max-width: 768px) {
  .process-timeline { max-width: 100%; padding-left: 40px; }
  .process-line { left: 20px; }
  .process-step { grid-template-columns: 60px 1fr; gap: 1rem; margin-bottom: 1.5rem; }
  .process-dot { grid-column: 1; margin: 0; }
  .process-content, .process-left, .process-right {
    grid-column: 2;
    text-align: left;
    margin: 0;
  }
}

/* ---------- CRAFT ---------- */
.craft {
  padding: 7rem 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.craft-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) { .craft-grid { grid-template-columns: 1fr; gap: 3rem; } }

.craft-text h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1.25rem; }
.craft-text > p { font-size: 1.1rem; color: var(--text-soft); margin-bottom: 2rem; }
[data-theme="dark"] .craft-text > p { color: var(--text); }

.craft-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 600px) { .craft-features { grid-template-columns: 1fr; } }

.feature { display: flex; gap: .75rem; }
.feature-icon { font-size: 1.3rem; color: var(--gold-dk); line-height: 1; padding-top: .25rem; }
.feature h4 { font-family: 'Inter', sans-serif; font-size: 1rem; margin-bottom: .25rem; color: var(--text-soft); }
[data-theme="dark"] .feature h4 { color: var(--gold-2); }
.feature p { font-size: .88rem; color: var(--text-mute); margin: 0; }

.craft-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.crest-frame {
  position: relative;
  width: 320px; height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.crest-frame img {
  width: 75%; height: 75%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(11,26,58,.3));
  animation: slowFloat 6s ease-in-out infinite;
  transition: opacity .4s var(--ease);
}
.crest-frame .crest-dark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
[data-theme="dark"] .crest-frame .crest-light { opacity: 0; }
[data-theme="dark"] .crest-frame .crest-dark { opacity: 1; }
@keyframes slowFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.crest-ring, .crest-ring-2 {
  position: absolute; inset: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  border-top-color: transparent;
  border-right-color: transparent;
  animation: ringSpin 20s linear infinite;
}
.crest-ring-2 {
  inset: 20px;
  border: 1px dashed var(--gold-dk);
  border-top-color: transparent;
  animation: ringSpin 30s linear infinite reverse;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }

.crest-motto {
  margin-top: 1.5rem;
  font-family: 'Cinzel', serif;
  letter-spacing: .3em;
  color: var(--gold-dk);
  text-transform: uppercase;
  font-size: .9rem;
}

/* ---------- ABOUT ---------- */
.about {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-deep) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } }

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 420px;
  position: relative;
}
.about-card {
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: all .5s var(--ease);
}
.about-card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--shadow-lg); }
.about-card-1 { grid-column: 1; grid-row: 1 / 3; background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: var(--ivory); }
.about-card-2 { grid-column: 2; grid-row: 1; }
.about-card-3 { grid-column: 2; grid-row: 2; background: var(--gold); color: var(--navy-900); }
.about-num { font-family: 'Cinzel', serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1; margin-bottom: .5rem; }
.about-card-1 .about-num { color: var(--gold-2); }
.about-lbl { font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; opacity: .85; }

.about-text h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1.25rem; }
.about-text p { font-size: 1.05rem; color: var(--text-soft); margin-bottom: 1rem; }
[data-theme="dark"] .about-text p { color: var(--text); }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 3rem 0 3.5rem;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}
.testimonials .section-head { margin-bottom: 1.5rem; }
.testimonials .section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: .4rem; }
.testimonials .lede { font-size: .95rem; }
.testimonials-soon {
  max-width: 560px;
  margin: 0 auto;
}
.soon-frame {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow), 0 0 0 0 rgba(201,162,75,.35);
  overflow: hidden;
  animation: soonGlow 4s ease-in-out infinite;
}
@keyframes soonGlow {
  0%, 100% { box-shadow: var(--shadow), 0 0 0 0 rgba(201,162,75,.35); }
  50%      { box-shadow: var(--shadow), 0 0 0 10px rgba(201,162,75,0); }
}
.soon-frame::after {
  content:"";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(201,162,75,.08), transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(201,162,75,.08), transparent 40%);
  pointer-events: none;
}
.soon-stars {
  display: flex;
  justify-content: center;
  gap: .25rem;
  color: var(--gold);
  margin-bottom: .75rem;
}
.soon-stars svg { width: 18px; height: 18px; animation: starPulse 2s ease-in-out infinite; }
.soon-stars svg:nth-child(2) { animation-delay: .15s; }
.soon-stars svg:nth-child(3) { animation-delay: .3s; }
.soon-stars svg:nth-child(4) { animation-delay: .45s; }
.soon-stars svg:nth-child(5) { animation-delay: .6s; }
@keyframes starPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.15); opacity: .7; }
}
.soon-badge {
  display: inline-block;
  background: var(--navy-900);
  color: var(--gold-2);
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .35em;
  padding: .3rem .85rem;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: .75rem !important;
  border: 1px solid var(--gold);
}
.soon-title {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  margin-bottom: .5rem;
  position: relative;
  z-index: 2;
}
.soon-sub { color: var(--text-mute); margin-bottom: 1rem; font-size: .92rem; position: relative; z-index: 2; }
.soon-frame .btn { position: relative; z-index: 2; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background:
    linear-gradient(135deg, rgba(11,26,58,.95), rgba(26,46,92,.95)),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(201,162,75,.05) 20px 21px);
  color: var(--ivory);
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.cta-band h2 { color: var(--ivory); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: .5rem; }
.cta-band p { color: var(--gold-2); font-size: 1.1rem; margin-bottom: 2rem; letter-spacing: .05em; }
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- CONTACT ---------- */
.contact {
  padding: 4rem 0 4.5rem;
  background: var(--bg);
  position: relative;
}
.contact::before {
  content:"";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100px; height: 4px; background: var(--gold);
  border-radius: 0 0 6px 6px;
}
.contact .section-head { margin-bottom: 2rem; }
.contact .section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .5rem; }
.contact .lede { font-size: 1rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }

.contact-info { display: flex; flex-direction: column; gap: .85rem; }
.info-item {
  display: flex;
  gap: .9rem;
  padding: .9rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .4s var(--ease);
  align-items: center;
}
.info-item:hover { border-color: var(--gold); transform: translateX(4px); box-shadow: var(--shadow); }
.info-icon {
  width: 40px; height: 40px;
  background: var(--navy-900);
  color: var(--gold-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 17px; height: 17px; }
.info-lbl { display: block; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-mute); margin-bottom: .1rem; }
.info-val { display: block; font-weight: 600; color: var(--text-soft); font-size: .92rem; }
[data-theme="dark"] .info-val { color: var(--gold-2); }
a.info-val:hover { color: var(--gold-dk); }

.contact-form {
  background: var(--surface);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.contact-form label { display: flex; flex-direction: column; gap: .35rem; }
.contact-form label span { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; }
[data-theme="dark"] .contact-form label span { color: var(--gold-2); }
.contact-form input, .contact-form select, .contact-form textarea {
  padding: .7rem .9rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: .92rem;
  background: var(--input-bg);
  color: var(--text);
  transition: all .3s;
}
.contact-form textarea { resize: vertical; min-height: 90px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(201,162,75,.18);
}
.form-note { font-size: .78rem; color: var(--text-mute); margin: 0; text-align: center; }

.file-field span em { font-style: normal; text-transform: none; letter-spacing: 0; color: var(--mute); font-weight: 400; font-size: .75rem; margin-left: .4rem; }
.file-drop {
  position: relative;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--input-bg);
  transition: all .3s var(--ease);
  cursor: pointer;
}
.file-drop:hover { border-color: var(--gold); background: var(--surface); }
.file-drop input[type="file"] {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: pointer;
}
.file-drop-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  text-align: center;
  pointer-events: none;
}
.file-drop-inner svg { width: 26px; height: 26px; color: var(--gold-dk); margin-bottom: .15rem; }
.file-drop-label { font-weight: 600; color: var(--text-soft); font-size: .95rem; letter-spacing: 0; text-transform: none; }
[data-theme="dark"] .file-drop-label { color: var(--gold-2); }
.file-drop-hint { font-size: .78rem; color: var(--text-mute); letter-spacing: 0; text-transform: none; }

.file-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.file-list:empty { display: none; }
.file-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: .35rem .7rem;
  border-radius: 20px;
  font-size: .8rem;
  color: var(--text-soft);
  max-width: 100%;
}
[data-theme="dark"] .file-chip { color: var(--gold-2); }
.file-chip svg { width: 14px; height: 14px; color: var(--gold-dk); flex-shrink: 0; }
.file-chip span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(246,241,231,.72);
  padding: 4.5rem 0 2rem;
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
/* Animated radial glow that drifts across the footer */
.footer::before {
  content:"";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 0%, rgba(201,162,75,.10), transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 100%, rgba(35,65,122,.55), transparent 60%);
  animation: footerGlow 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes footerGlow {
  0%   { background-position: 20% 0%, 80% 100%; transform: scale(1); opacity: 1; }
  50%  { opacity: .75; }
  100% { background-position: 80% 0%, 20% 100%; transform: scale(1.05); opacity: 1; }
}
/* Shimmering gold top border */
.footer::after {
  content:"";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--gold-dk) 0%,
    var(--gold) 25%,
    #fff5d6 50%,
    var(--gold) 75%,
    var(--gold-dk) 100%
  );
  background-size: 200% 100%;
  animation: footerShimmer 6s linear infinite;
}
@keyframes footerShimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}
.footer-crest-bg {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  opacity: .045;
  pointer-events: none;
}
.footer-crest-bg img { width: 100%; filter: brightness(0) invert(1); }

.footer .container { position: relative; z-index: 2; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img {
  width: 160px;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: .92rem; max-width: 320px; line-height: 1.65; }
.footer-motto {
  margin-top: 1rem !important;
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  letter-spacing: .28em;
  color: var(--gold-2);
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  color: var(--gold-2);
  font-size: .8rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: .6rem;
}
.footer-col h4::after {
  content:"";
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--gold);
  transition: width .5s var(--ease);
}
.footer-col:hover h4::after { width: 64px; }

.footer-col a, .footer-col span {
  display: block;
  font-size: .9rem;
  padding: .28rem 0;
  color: rgba(246,241,231,.7);
  transition: color .3s, transform .3s, padding .3s;
}
.footer-col a { position: relative; }
.footer-col a:hover { color: var(--gold-2); transform: translateX(4px); }

.footer-areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: .6rem 0;
  border-top: 1px solid rgba(201,162,75,.08);
}
.footer-areas a {
  font-size: .58rem;
  color: rgba(246,241,231,.18);
  transition: color .3s;
  white-space: nowrap;
  line-height: 1.6;
}
.footer-areas a::after { content: " · "; color: rgba(201,162,75,.12); }
.footer-areas a:last-child::after { content: ""; }
.footer-areas a:hover { color: rgba(246,241,231,.5); }

.footer-bottom {
  border-top: 1px solid rgba(201,162,75,.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(246,241,231,.55);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(246,241,231,.55);
  font-size: .82rem;
  transition: color .3s;
}
.footer-credit strong {
  font-weight: 600;
  color: var(--gold-2);
  font-family: 'Cinzel', serif;
  letter-spacing: .06em;
  background: linear-gradient(120deg, var(--gold-2), var(--gold-2));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
  transition: background-size .4s var(--ease);
}
.footer-credit svg { width: 13px; height: 13px; opacity: 0; transform: translateX(-4px); transition: all .3s var(--ease); }
.footer-bottom-left { display: inline-flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.footer-sep { color: rgba(201,162,75,.4); }
.footer-privacy { color: rgba(246,241,231,.65); transition: color .3s; text-decoration: underline; text-decoration-color: rgba(201,162,75,.3); text-underline-offset: 3px; }
.footer-privacy:hover { color: var(--gold-2); text-decoration-color: var(--gold); }
.footer-credit:hover { color: var(--gold-2); }
.footer-credit:hover strong { background-size: 100% 1px; }
.footer-credit:hover svg { opacity: 1; transform: translateX(0); }

/* ---------- AREA PAGES ---------- */
.area-hero {
  padding: 4rem 0 3.5rem;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201,162,75,.08), transparent 60%),
    var(--bg);
}
.area-hero h1 { font-size: clamp(1.8rem, 4.5vw, 3rem); margin-bottom: .75rem; }
.area-hero .lede { font-size: 1.05rem; color: var(--text-mute); max-width: 720px; }
.area-cta { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 2rem; }
.btn-dark-ghost { color: var(--text-soft) !important; border-color: var(--border) !important; }
.btn-dark-ghost:hover { background: var(--gold) !important; color: var(--navy-900) !important; border-color: var(--gold) !important; }
[data-theme="dark"] .btn-dark-ghost { color: var(--gold-2) !important; border-color: var(--gold) !important; }

.area-services { padding: 4rem 0; background: var(--bg-alt); }
.area-services h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 2rem; text-align: center; }
.area-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 800px) { .area-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .area-services-grid { grid-template-columns: 1fr; } }
.area-svc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all .4s var(--ease);
}
.area-svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.area-svc-card h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.area-svc-card p { font-size: .88rem; color: var(--text-mute); margin: 0; line-height: 1.55; }

.area-why { padding: 4rem 0; background: var(--bg); }
.area-why h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 2rem; text-align: center; }
.area-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 600px) { .area-features { grid-template-columns: 1fr; } }

/* ---------- LEGAL (privacy) ---------- */
.legal { padding: 4rem 0 6rem; background: var(--bg); }
.legal .section-head { margin-bottom: 2.5rem; text-align: left; max-width: 760px; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.legal-body {
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}
[data-theme="dark"] .legal-body { color: var(--text); }
.legal-body h2 {
  font-size: 1.3rem;
  margin-top: 2.25rem;
  margin-bottom: .5rem;
  color: var(--text-soft);
}
[data-theme="dark"] .legal-body h2 { color: var(--gold-2); }
.legal-body ul { padding-left: 1.25rem; margin: 0 0 1rem; }
.legal-body li { margin-bottom: .35rem; }
.legal-body a { color: var(--gold-dk); text-decoration: underline; text-underline-offset: 3px; }
[data-theme="dark"] .legal-body a { color: var(--gold-2); }
.legal-body strong { color: var(--text-soft); }
[data-theme="dark"] .legal-body strong { color: var(--gold-2); }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal, .reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-70px); }
.reveal-right { transform: translateX(70px); }

.reveal.in-view, .reveal-up.in-view, .reveal-left.in-view, .reveal-right.in-view {
  opacity: 1;
  transform: translate(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal, .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}
