/* ============================================================
   MLS Electrical Services — premium landing page
   Navy + gold, editorial type, generous space
   ============================================================ */

:root {
  /* Brand */
  --navy-950: #061321;
  --navy-900: #0A1C30;
  --navy-850: #0A2540;
  --navy-800: #0E2C4A;
  --navy-700: #143A5E;
  --navy-line: rgba(255, 255, 255, 0.10);

  --gold: #FFC400;
  --gold-soft: #FFD24D;
  --gold-deep: #D9A300;

  --paper: #F6F4EF;
  --paper-2: #EEEAE1;
  --card: #FFFFFF;

  --ink: #0C1A28;
  --ink-2: #3A4B5C;
  --ink-3: #6B7A88;
  --line: #E2DDD2;

  /* Type */
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;

  /* Rhythm */
  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(8, 20, 35, 0.06), 0 4px 14px rgba(8, 20, 35, 0.05);
  --shadow-md: 0 10px 30px rgba(8, 20, 35, 0.10), 0 2px 8px rgba(8, 20, 35, 0.06);
  --shadow-lg: 0 30px 70px rgba(6, 19, 33, 0.30);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 18px;
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding-block: clamp(72px, 10vw, 150px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
}
.eyebrow.on-dark { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.display {
  font-size: clamp(44px, 8vw, 104px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.h2 { font-size: clamp(34px, 5vw, 60px); }
.h3 { font-size: clamp(24px, 3vw, 34px); }

.lede {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
}

.muted { color: var(--ink-3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-gold {
  background: var(--gold);
  color: var(--navy-950);
  box-shadow: 0 8px 24px rgba(255, 196, 0, 0.30);
}
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 196, 0, 0.42); }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.btn-dark {
  background: var(--navy-850);
  color: #fff;
}
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--navy-850); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 19, 33, 0);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7, 19, 33, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--navy-line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.monogram {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--gold);
  color: var(--navy-950);
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.04em;
  border-radius: 9px;
  box-shadow: 0 6px 18px rgba(255,196,0,0.28);
}
.brand-text { line-height: 1.05; }
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: #fff;
}
.brand-sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: color .2s ease;
}
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: flex; align-items: center; gap: 9px;
  color: #fff; font-weight: 700; font-size: 16px;
}
.nav-phone svg { width: 17px; height: 17px; color: var(--gold); }
.menu-btn { display: none; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-phone span { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 80% at 85% 0%, rgba(255,196,0,0.10), transparent 55%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: #fff;
  overflow: hidden;
  margin-top: -84px;
  padding-top: 84px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 90% at 30% 10%, #000, transparent 75%);
          mask-image: radial-gradient(120% 90% at 30% 10%, #000, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 110px);
}
.hero-rating {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 10px;
  border: 1px solid var(--navy-line);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  margin-bottom: 26px;
  font-size: 14px;
}
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold); }
.hero .lede { color: rgba(255,255,255,0.74); max-width: 33ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px 26px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--navy-line);
}
.hero-trust .ht {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.82);
}
.hero-trust svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

.hero-visual { position: relative; }
.hero-visual image-slot {
  width: 100%;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  left: -22px; bottom: 34px;
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
}
.hero-badge .num { font-family: var(--display); font-weight: 800; font-size: 34px; line-height: 1; color: var(--navy-850); }
.hero-badge .lbl { font-size: 13px; line-height: 1.25; color: var(--ink-2); font-weight: 600; }

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; }
  .hero-visual image-slot { aspect-ratio: 16 / 11; }
  .hero-badge { left: auto; right: 16px; bottom: -18px; }
}

/* Centered, image-free hero */
.hero-inner.centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding-bottom: clamp(40px, 5vw, 64px);
}
.hero-inner.centered .hero-rating { margin-bottom: 28px; }
.hero-inner.centered .display { max-width: 16ch; }
.hero-inner.centered .lede { margin-inline: auto; max-width: 56ch; }
.hero-inner.centered .hero-actions { justify-content: center; }
.hero-inner.centered .hero-trust { justify-content: center; border-top: none; padding-top: 30px; }

.hero-stats {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px clamp(34px, 6vw, 80px);
  padding-bottom: clamp(56px, 8vw, 100px);
}
.hero-stats .hs { text-align: center; position: relative; padding-inline: clamp(14px, 2vw, 28px); }
.hero-stats .hs:not(:last-child)::after {
  content: ""; position: absolute; right: calc(clamp(34px, 6vw, 80px) / -2);
  top: 50%; transform: translateY(-50%);
  width: 1px; height: 42px; background: var(--navy-line);
}
.hero-stats .hs .n { font-family: var(--display); font-weight: 800; font-size: clamp(34px, 4vw, 50px); color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.hero-stats .hs .l { color: rgba(255,255,255,0.66); font-size: 13.5px; margin-top: 9px; font-weight: 600; letter-spacing: 0.01em; }
@media (max-width: 560px) {
  .hero-stats { gap: 20px 0; }
  .hero-stats .hs { flex: 0 0 50%; }
  .hero-stats .hs::after { display: none; }
}

/* ---------- Marquee / credentials strip ---------- */
.credstrip {
  background: var(--navy-950);
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  padding-block: 26px;
  overflow: hidden;
}
.credstrip-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 18px 44px;
}
.cred {
  display: flex; align-items: center; gap: 11px;
  color: rgba(255,255,255,0.86);
  font-family: var(--display);
  font-weight: 600; font-size: 16px;
  letter-spacing: 0.01em;
}
.cred svg { width: 22px; height: 22px; color: var(--gold); }

/* ---------- Section headers ---------- */
.sec-head { max-width: 720px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .h2 { margin-top: 18px; }
.sec-head .lede { margin-top: 18px; }

/* ---------- Services ---------- */
.services { background: var(--paper); }
.svc-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.svc {
  background: var(--card);
  padding: 38px 34px 40px;
  transition: background .25s ease, transform .25s ease;
  position: relative;
}
.svc:hover { background: #fff; }
.svc-ic {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--navy-850);
  color: var(--gold);
  margin-bottom: 22px;
  transition: background .25s ease;
}
.svc:hover .svc-ic { background: var(--gold); color: var(--navy-950); }
.svc-ic svg { width: 27px; height: 27px; }
.svc h3 { font-size: 21px; letter-spacing: -0.01em; }
.svc p { margin: 10px 0 0; font-size: 15.5px; color: var(--ink-2); line-height: 1.55; }

@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- About / Why ---------- */
.about { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.about::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 90% 100%, rgba(255,196,0,0.08), transparent 60%);
  pointer-events: none;
}
.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.about-visual { position: relative; }
.about-visual image-slot { width: 100%; aspect-ratio: 5/6; box-shadow: var(--shadow-lg); }
.about .eyebrow { color: var(--gold); }
.about h2 { margin: 16px 0 20px; }
.about .lede { color: rgba(255,255,255,0.74); }
.about p.body { color: rgba(255,255,255,0.66); font-size: 16.5px; margin-top: 16px; }
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
  padding-top: 34px; border-top: 1px solid var(--navy-line);
}
.stat .num { font-family: var(--display); font-weight: 800; font-size: clamp(34px, 4vw, 46px); color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.stat .lbl { font-size: 14px; color: rgba(255,255,255,0.66); margin-top: 8px; font-weight: 500; }
.signature {
  margin-top: 34px;
  display: flex; align-items: center; gap: 16px;
}
.signature .sig-name { font-family: var(--display); font-weight: 700; font-size: 22px; }
.signature .sig-role { font-size: 14px; color: var(--gold); font-weight: 600; }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; }
}

/* Promise card (replaces about photo) */
.promise-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--navy-line);
  border-radius: 18px;
  padding: clamp(28px, 3.5vw, 42px);
  box-shadow: var(--shadow-md);
}
.promise-card h3 { color: #fff; font-size: 26px; }
.promise-card .pc-sub { color: rgba(255,255,255,0.6); font-size: 15px; margin: 8px 0 8px; }
.promise-list { list-style: none; padding: 0; margin: 14px 0 0; }
.promise-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-top: 1px solid var(--navy-line);
}
.promise-list li:first-child { border-top: none; }
.promise-list .pi {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  background: var(--gold); color: var(--navy-950);
  display: grid; place-items: center; margin-top: 2px;
}
.promise-list .pi svg { width: 18px; height: 18px; }
.promise-list strong { display: block; font-family: var(--display); font-weight: 700; color: #fff; font-size: 17px; letter-spacing: -0.01em; }
.promise-list .pd { display: block; font-size: 14.5px; color: rgba(255,255,255,0.62); margin-top: 3px; line-height: 1.5; }

/* ---------- Process ---------- */
.process { background: var(--paper-2); }
.steps {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step { position: relative; }
.step-n {
  font-family: var(--display); font-weight: 800;
  font-size: 15px; color: var(--navy-950);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.step h3 { font-size: 20px; }
.step p { font-size: 15.5px; color: var(--ink-2); margin: 9px 0 0; line-height: 1.55; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 20px; left: 52px; right: -14px;
  height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
}
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; } .step::after { display: none; } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Work gallery ---------- */
.work { background: var(--paper); }
.gallery {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery image-slot { width: 100%; height: 100%; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
@media (max-width: 820px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-wide { grid-column: span 2; }
}

/* ---------- Reviews ---------- */
.reviews { background: var(--navy-950); color: #fff; }
.review-feature {
  margin-top: 50px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.quote-mark { font-family: var(--display); font-size: 90px; line-height: 0.7; color: var(--gold); height: 44px; }
.review-feature blockquote {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.review-meta { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.review-meta .ravatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gold); color: var(--navy-950);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 19px;
}
.review-meta .rname { font-weight: 700; }
.review-meta .rsub { font-size: 14px; color: rgba(255,255,255,0.6); }
.review-aside {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--navy-line);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
}
.review-aside .big {
  font-family: var(--display); font-weight: 800;
  font-size: 76px; line-height: 1; color: var(--gold);
}
.review-aside .stars { justify-content: center; margin: 14px 0 6px; }
.review-aside .stars svg { width: 22px; height: 22px; }
.review-aside .src { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 8px; }
.review-aside .btn { margin-top: 22px; }
@media (max-width: 800px) { .review-feature { grid-template-columns: 1fr; } }

/* ---------- Service area ---------- */
.area { background: var(--paper); }
.area-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.area-map {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  border: 1px solid var(--navy-line);
  box-shadow: var(--shadow-md);
}
.area-pins { position: absolute; inset: 0; }
.pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.pin .dot {
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(255,196,0,0.22);
}
.pin.hq .dot { width: 18px; height: 18px; box-shadow: 0 0 0 7px rgba(255,196,0,0.28); }
.pin .ptag { font-size: 12px; font-weight: 700; color: #fff; letter-spacing: 0.02em; white-space: nowrap; }
.pin .ring {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -2px);
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--gold);
  animation: pulse 2.4s ease-out infinite;
}
.pin.hq .ring { width: 18px; height: 18px; }
@keyframes pulse { 0% { opacity: .9; transform: translate(-50%,-2px) scale(1);} 100% { opacity: 0; transform: translate(-50%,-2px) scale(4);} }

.area-list { columns: 2; column-gap: 30px; margin-top: 30px; }
.area-list li {
  list-style: none; padding: 9px 0; display: flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--ink); break-inside: avoid;
  border-bottom: 1px solid var(--line);
}
.area-list svg { width: 16px; height: 16px; color: var(--gold-deep); flex: none; }
ul.area-list { padding: 0; }
@media (max-width: 800px) { .area-grid { grid-template-columns: 1fr; } .area-map { order: -1; } }

/* ---------- Contact / Quote ---------- */
.contact { background: var(--navy-900); color: #fff; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.contact h2 { margin: 16px 0 18px; }
.contact .lede { color: rgba(255,255,255,0.74); }
.contact-info { margin-top: 38px; display: flex; flex-direction: column; gap: 4px; }
.ci-row {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--navy-line);
}
.ci-row .ci-ic {
  width: 46px; height: 46px; border-radius: 10px; flex: none;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.05); color: var(--gold);
  border: 1px solid var(--navy-line);
}
.ci-row .ci-ic svg { width: 21px; height: 21px; }
.ci-row .ci-lbl { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 700; }
.ci-row .ci-val { font-family: var(--display); font-weight: 700; font-size: 20px; }
.ci-row a.ci-val:hover { color: var(--gold); }

.quote-card {
  background: #fff; color: var(--ink);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
}
.quote-card h3 { font-size: 26px; }
.quote-card p.sub { color: var(--ink-3); margin: 8px 0 26px; font-size: 15.5px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 7px; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 16px;
  padding: 13px 15px; border: 1.5px solid var(--line);
  border-radius: 10px; background: var(--paper); color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-850); background: #fff;
  box-shadow: 0 0 0 4px rgba(14,44,74,0.10);
}
.field textarea { resize: vertical; min-height: 96px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-card .btn { width: 100%; margin-top: 8px; }
.form-note { font-size: 13px; color: var(--ink-3); margin-top: 14px; text-align: center; }
.form-success {
  display: none;
  text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .check {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--gold); color: var(--navy-950);
  display: grid; place-items: center;
}
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { color: var(--ink); }
.form-success p { color: var(--ink-2); margin-top: 10px; }

@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.7); padding-block: 56px 30px; border-top: 1px solid var(--navy-line); }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; align-items: flex-start; }
.footer-brand { max-width: 320px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 15px; line-height: 1.6; }
.footer-cols { display: flex; gap: clamp(40px, 6vw, 80px); flex-wrap: wrap; }
.fcol h4 { font-family: var(--body); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.fcol a, .fcol p { display: block; font-size: 15px; color: rgba(255,255,255,0.7); padding: 6px 0; transition: color .2s; margin: 0; }
.fcol a:hover { color: #fff; }
.footer-bottom {
  margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--navy-line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13.5px; color: rgba(255,255,255,0.5);
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
