/* ============================================================
   PR Construction — Design System v2 "Split-Path"
   Bold, full-bleed, photo-forward, interactive.
   Palette: Navy / Warm White / Stone / Gold
   Type: Archivo (display) + Inter (body)
   ============================================================ */

:root{
  --navy: #14233F;
  --navy-deep: #0E1A30;
  --navy-mid: #1C2F54;
  --white: #FFFFFF;
  --cream: #F7F4EC;
  --stone: #EFEBE0;
  --slate: #5C6470;
  --slate-soft: #8A93A3;
  --line: rgba(20,35,63,0.12);
  --line-dark: rgba(247,244,236,0.16);
  --gold: #D1A54E;
  --gold-deep: #B3872F;
  --gold-tint: #F4E7CB;
  --ink: #14233F;
  --cream-ink: #EDEFF3;

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1280px;
  --ease: cubic-bezier(.65,0,.35,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --shadow-md: 0 24px 60px -24px rgba(14,26,48,0.45);
  --shadow-sm: 0 10px 28px -14px rgba(14,26,48,0.35);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0; font-family: var(--font-body); color: var(--ink); background: var(--white);
  font-size: 16.5px; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; background:none; border:none; cursor:pointer; }
h1,h2,h3,h4{
  font-family: var(--font-display); font-weight: 800; line-height: 1.03; letter-spacing: -0.015em;
  margin: 0 0 16px; text-wrap: balance; color: var(--ink);
}
p{ margin: 0 0 16px; color: var(--slate); }
p:last-child{ margin-bottom:0; }

.container{ max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px){ .container{ padding: 0 20px; } }

/* -------------------- Top strip -------------------- */
.top-bar{
  background: var(--navy-deep); color:#B9C2D1; font-size: 12.5px;
  transition: margin-top .35s var(--ease), opacity .3s;
}
.top-bar.is-hidden{ margin-top:-40px; opacity:0; }
.top-bar-inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding-top: 9px; padding-bottom: 9px; flex-wrap:wrap;
}
.top-bar-left{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
.top-bar a{ color:#D7DCE6; display:inline-flex; align-items:center; gap:7px; font-weight:600; }
.top-bar a:hover{ color: var(--gold); }
.top-bar svg{ flex:none; opacity:0.85; }
.top-bar-right{ display:flex; align-items:center; gap:20px; }
.top-bar-area{ color:#8C96A8; font-weight:500; }
.top-bar-cta{ color: var(--gold) !important; font-weight:700 !important; }
@media (max-width: 760px){ .top-bar-area{ display:none; } }
@media (max-width: 560px){ .top-bar-inner{ padding-top:8px; padding-bottom:8px; } .top-bar-left{ gap:14px; } .top-bar .email-link{ display:none; } }

/* -------------------- Header -------------------- */
.site-header{
  position: sticky; top:0; z-index: 200; background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: transform .35s var(--ease), box-shadow .3s;
}
.site-header.is-condensed{ box-shadow: 0 12px 30px -18px rgba(0,0,0,0.5); }
.header-bar{ display:flex; align-items:center; justify-content:space-between; gap: 24px; padding-top: 15px; padding-bottom: 15px; }
.brand img{ height: 42px; width:auto; }
.main-nav{ display:flex; align-items:center; gap:4px; }
.main-nav a{
  padding: 10px 15px; font-size: 13.5px; font-weight: 700; color: #D7DCE6; letter-spacing:0.01em;
  border-radius: 3px; transition: color .15s ease, background .15s ease; position: relative;
  text-transform: uppercase;
}
.main-nav a:hover, .main-nav a.active{ color: #fff; background: rgba(255,255,255,0.07); }
.main-nav a.active::after{ content:""; position:absolute; left:15px; right:15px; bottom:5px; height:2px; background: var(--gold); }
.header-actions{ display:flex; align-items:center; gap:18px; }
.header-phone{ display:flex; align-items:center; gap:8px; font-family: var(--font-display); font-weight:700; color:#fff; font-size:14.5px; }
.header-phone .phone-label{ display:block; font-family: var(--font-body); font-weight:600; font-size:10px; letter-spacing:0.1em; text-transform:uppercase; color: var(--gold); }

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px; width:42px; height:42px;
  background:transparent; border:1px solid rgba(255,255,255,0.25); border-radius: 3px;
}
.nav-toggle span{ display:block; height:2px; width:20px; margin:0 auto; background:#fff; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2){ opacity:0; }
.nav-toggle.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px){
  .main-nav{
    position: fixed; inset: 0 0 0 0; background: var(--navy-deep);
    flex-direction: column; align-items: stretch; justify-content:center; padding: 100px 32px 40px;
    gap: 2px; overflow-y:auto; transform: translateY(-12px); opacity:0; pointer-events:none;
    transition: opacity .22s var(--ease), transform .22s var(--ease); z-index:150;
  }
  .main-nav.is-open{ transform: translateY(0); opacity:1; pointer-events:auto; }
  .main-nav a{ padding:20px 8px; font-size:26px; border-bottom:1px solid rgba(255,255,255,0.08); font-family:var(--font-display); font-weight:800; }
  .main-nav a.active::after{ display:none; }
  .main-nav .btn{ margin-top:24px; align-self:flex-start; }
  .nav-toggle{ display:flex; position:relative; z-index:160; }
  .header-phone .phone-label{ display:none; }
}
@media (max-width: 560px){ .brand img{ height:34px; } }

/* -------------------- Buttons -------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 16px 28px; font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: 0.07em; border-radius: 2px; border: 1.5px solid transparent;
  cursor:pointer; transition: transform .2s var(--ease-out), box-shadow .2s, background-color .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn-primary{ background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover{ background: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-secondary{ background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover{ background: var(--navy); color:#fff; transform: translateY(-2px); }
.btn-ghost-light{ background:transparent; color:#fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover{ background:#fff; color:var(--navy); transform: translateY(-2px); }
.btn-block{ width:100%; }
.btn-row{ display:flex; gap:16px; flex-wrap:wrap; align-items:center; }
.btn-sm{ padding: 12px 20px; font-size: 11.5px; }

/* -------------------- Section rhythm -------------------- */
.section{ padding: 120px 0; }
@media (max-width: 900px){ .section{ padding: 76px 0; } }
.section-tight{ padding: 72px 0; }
.section-white{ background: var(--white); color: var(--ink); }
.section-cream{ background: var(--cream); color: var(--ink); }
.section-navy{ background: var(--navy); color: var(--cream-ink); }
.section-navy-deep{ background: var(--navy-deep); color: var(--cream-ink); }
.section-navy h1,.section-navy h2,.section-navy h3,.section-navy h4,
.section-navy-deep h1,.section-navy-deep h2,.section-navy-deep h3,.section-navy-deep h4{ color: var(--white); }
.section-navy p, .section-navy-deep p{ color: #AEB7C4; }

.eyebrow{
  display:inline-flex; align-items:center; gap:12px; text-transform: uppercase; letter-spacing: 0.24em;
  font-size: 11.5px; font-weight: 800; color: var(--gold-deep); margin-bottom: 18px; font-family:var(--font-display);
}
.section-navy .eyebrow, .section-navy-deep .eyebrow{ color: var(--gold); }
.eyebrow::before{ content:""; width:34px; height:2px; background: var(--gold); }

.section-head{ max-width: 760px; margin: 0 0 56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(34px, 4vw, 56px); }
.section-head p{ font-size: 18px; }

/* -------------------- SPLIT HERO -------------------- */
.split-hero{
  position:relative; height: 100vh; min-height:640px; max-height:980px; display:flex; overflow:hidden;
  background: var(--navy-deep);
}
.split-panel{
  position:relative; flex: 1 1 0; overflow:hidden; cursor:pointer;
  transition: flex-grow .7s var(--ease);
  display:flex; align-items:flex-end;
}
.split-hero:has(.split-panel:nth-child(1):hover) .split-panel:nth-child(1){ flex-grow: 1.45; }
.split-hero:has(.split-panel:nth-child(1):hover) .split-panel:nth-child(3){ flex-grow: 0.68; }
.split-hero:has(.split-panel:nth-child(3):hover) .split-panel:nth-child(3){ flex-grow: 1.45; }
.split-hero:has(.split-panel:nth-child(3):hover) .split-panel:nth-child(1){ flex-grow: 0.68; }

.split-panel img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transform: scale(1.02); transition: transform .9s var(--ease-out);
}
.split-panel:hover img{ transform: scale(1.08); }
.split-panel .tint{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(14,26,48,0.1) 0%, rgba(14,26,48,0.88) 82%);
  transition: background .4s;
}
.split-panel:nth-child(3) .tint{ background: linear-gradient(180deg, rgba(14,26,48,0.28) 0%, rgba(14,26,48,0.9) 82%); }

.split-content{ position:relative; z-index:3; padding: 56px; width:100%; }
.split-eyebrow{ font-family:var(--font-display); font-weight:800; font-size:11.5px; letter-spacing:0.24em; text-transform:uppercase; color: var(--gold); margin-bottom:18px; }
.split-content h2{ font-family:var(--font-display); font-weight:900; font-size: clamp(34px, 3.6vw, 54px); line-height:0.98; color:#fff; letter-spacing:-0.01em; margin-bottom:20px; }
.split-content p{ color:#D8DEE9; font-size:15.5px; max-width:36ch; line-height:1.6; margin-bottom:28px; }
.split-go{
  display:inline-flex; align-items:center; gap:12px; font-family:var(--font-display); font-weight:700;
  font-size:12.5px; letter-spacing:0.08em; text-transform:uppercase; color:#fff;
  border:1.5px solid rgba(255,255,255,0.4); padding:16px 26px; width:fit-content; transition: all .25s;
}
.split-go svg{ transition: transform .25s var(--ease-out); }
.split-panel:nth-child(1) .split-go{ background:var(--gold); color:var(--navy-deep); border-color:var(--gold); }
.split-panel:hover .split-go svg{ transform: translateX(6px); }

.split-divider{
  position:absolute; top:0; bottom:0; left:50%; transform:translateX(-50%); z-index:6;
  display:flex; align-items:center; justify-content:center; pointer-events:none;
}
.split-divider .orb{
  width:78px; height:78px; border-radius:50%; background:var(--navy-deep); border:2px solid var(--gold);
  display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:800;
  font-size:13px; color:var(--gold); letter-spacing:0.06em; box-shadow:0 20px 44px -14px rgba(0,0,0,0.6);
}

.split-hdr{
  position:absolute; top:0; left:0; right:0; z-index:20;
  display:flex; align-items:center; justify-content:space-between; padding: 28px 40px;
}
.split-hdr .brand img{ height:38px; }
.split-hdr .phone{ font-family:var(--font-display); font-weight:700; font-size:13.5px; color:#fff; display:flex; align-items:center; gap:9px; }

.hero-stat-strip{
  position:relative; z-index:8; display:flex; justify-content:center; gap: 64px; flex-wrap:wrap;
  padding: 22px 20px; background: var(--navy-deep); border-top:1px solid rgba(255,255,255,0.08);
}
.hero-stat-strip div{ font-family:var(--font-display); font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:#B9C2D1; }
.hero-stat-strip b{ color: var(--gold); }

@media (max-width: 900px){
  .split-hero{ flex-direction:column; height:auto; min-height:0; max-height:none; }
  .split-hero:has(.split-panel:hover) .split-panel{ flex-grow:1 !important; }
  .split-panel{ min-height: 62vh; flex:none; }
  .split-hdr{ position:sticky; background:var(--navy-deep); padding:20px 20px; }
  .split-content{ padding: 32px 24px 40px; }
  .split-content h2{ font-size: 34px; }
  .split-divider{ display:none; }
  .hero-stat-strip{ gap:28px; padding:18px 20px; }
}

/* -------------------- Page hero (subpages) -------------------- */
.page-hero{ position: relative; color:#fff; overflow:hidden; min-height: 480px; display:flex; align-items:center; }
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg img{ width:100%; height:100%; object-fit:cover; }
.hero-overlay{ position:absolute; inset:0; z-index:1; background: linear-gradient(120deg, rgba(14,26,48,0.94) 28%, rgba(14,26,48,0.35) 100%); }
.page-hero .hero-content{ position:relative; z-index:2; padding-top: 100px; padding-bottom: 90px; max-width: 760px; }
.page-hero h1{ color:#fff; font-size: clamp(38px, 5vw, 66px); }
.page-hero .lede{ font-size: 18.5px; color: #DCE1EA; max-width: 50ch; }
.page-hero .eyebrow{ color: var(--gold); }

/* -------------------- Interactive service list -------------------- */
.svc-list{ border-top:1px solid var(--line-dark); }
.section-white .svc-list, .section-cream .svc-list{ border-top-color:var(--line); }
.svc-row{
  position:relative; display:flex; align-items:center; justify-content:space-between;
  padding: 40px 8px; border-bottom:1px solid var(--line-dark); overflow:hidden; cursor:pointer;
  transition: padding-left .35s var(--ease);
}
.section-white .svc-row, .section-cream .svc-row{ border-bottom-color:var(--line); }
.svc-row .bg{
  position:absolute; inset:0; z-index:0; opacity:0; transition: opacity .45s;
}
.svc-row .bg img{ width:100%; height:100%; object-fit:cover; }
.svc-row .bg::after{ content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(14,26,48,0.94) 30%, rgba(14,26,48,0.55)); }
.svc-row:hover .bg{ opacity:1; }
.svc-row:hover{ padding-left:28px; }
.svc-row-inner{ position:relative; z-index:2; display:flex; align-items:baseline; gap:28px; }
.svc-num{ font-family:var(--font-display); font-weight:800; font-size:14px; color:var(--gold); letter-spacing:0.05em; }
.svc-name{ font-family:var(--font-display); font-weight:800; font-size: clamp(22px,2.6vw,34px); transition: color .3s; }
.svc-row:hover .svc-name{ color:#fff; }
.svc-desc{ position:relative; z-index:2; font-size:13.5px; color:var(--slate-soft); max-width:30ch; text-align:right; transition:color .3s; display:none; }
.svc-row:hover .svc-desc{ color:#D6DCE7; }
.svc-arrow{ position:relative; z-index:2; font-size:22px; color:var(--slate-soft); transition: transform .35s var(--ease-out), color .3s; }
.svc-row:hover .svc-arrow{ transform: rotate(-45deg) translateX(4px); color:var(--gold); }
@media (min-width: 760px){ .svc-desc{ display:block; } }
@media (max-width: 900px){ .svc-name{ font-size:20px; } .svc-row{ padding:28px 4px; } }

/* -------------------- Stat counters -------------------- */
.stat-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-block{ text-align:center; }
.stat-block .num{ font-family:var(--font-display); font-weight:900; font-size: clamp(40px,5vw,64px); color:var(--navy); letter-spacing:-0.02em; }
.section-navy .stat-block .num, .section-navy-deep .stat-block .num{ color:#fff; }
.stat-block .lbl{ font-size:13.5px; color:var(--slate); letter-spacing:0.02em; margin-top:10px; }
.section-navy .stat-block .lbl, .section-navy-deep .stat-block .lbl{ color:#AEB7C4; }
@media (max-width: 860px){ .stat-grid{ grid-template-columns: repeat(2, 1fr); row-gap: 44px; } }

/* -------------------- Process steps (frame/protect/move) -------------------- */
.step-row{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,0.1); }
.step{ position:relative; padding: 48px 40px; background: var(--navy-deep); overflow:hidden; transition: background .35s; }
.step:hover{ background: var(--navy-mid); }
.step .step-num{ font-family: var(--font-display); font-weight:900; font-size:60px; color: rgba(255,255,255,0.1); position:absolute; top:20px; right:28px; letter-spacing:0; }
.step h3{ font-size:22px; color:#fff; margin: 40px 0 12px; position:relative; }
.step p{ position:relative; font-size:14.5px; }
.step .tag{ font-family:var(--font-display); font-size:11px; font-weight:800; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); position:relative; }
@media (max-width: 900px){ .step-row{ grid-template-columns:1fr; } }

/* -------------------- Project gallery -------------------- */
.gallery-grid{ display:grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows:340px; gap:20px; }
.gallery-item{ position:relative; overflow:hidden; border-radius:2px; grid-column:span 2; }
.gallery-item.wide{ grid-column:span 2; }
.gallery-item.tall{ grid-row:span 2; }
.gallery-item img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease-out); }
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-item::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(14,26,48,0) 45%, rgba(14,26,48,0.92) 100%); }
.gallery-cap{
  position:absolute; left:26px; right:26px; bottom:24px; z-index:2; color:#fff;
  transform: translateY(14px); opacity:0.88; transition: transform .35s var(--ease-out);
}
.gallery-item:hover .gallery-cap{ transform: translateY(0); opacity:1; }
.gallery-tag{ font-family:var(--font-display); font-size:10.5px; font-weight:800; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); margin-bottom:6px; display:block; }
.gallery-cap h3{ font-size:19px; color:#fff; margin-bottom:4px; }
.gallery-cap .meta{ font-size:12px; color:#C7CEDB; }
@media (max-width: 980px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); grid-auto-rows:280px; } .gallery-item, .gallery-item.wide{ grid-column: span 2; } .gallery-item.tall{ grid-row:span 1; } }
@media (max-width: 600px){ .gallery-grid{ grid-template-columns: 1fr; grid-auto-rows:260px; } .gallery-item, .gallery-item.wide{ grid-column: span 1; } }

/* -------------------- Why cards -------------------- */
.reason-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top:1px solid var(--line-dark); border-left:1px solid var(--line-dark); }
.reason{ padding: 40px 32px; border-right:1px solid var(--line-dark); border-bottom:1px solid var(--line-dark); transition: background .3s; }
.reason:hover{ background: rgba(255,255,255,0.03); }
.reason .num{ font-family: var(--font-display); font-weight:900; color: var(--gold); font-size:13px; letter-spacing:0.1em; margin-bottom:16px; display:block; }
.reason h3{ font-size:19px; color:#fff; margin-bottom:10px; }
.reason p{ font-size:14.5px; }
@media (max-width: 900px){ .reason-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .reason-grid{ grid-template-columns: 1fr; } }

/* -------------------- Process (numbered) -------------------- */
.process-row{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.process-step .n{ font-family: var(--font-display); font-weight:900; font-size: 44px; color: var(--stone); -webkit-text-stroke: 1.5px var(--navy); display:block; margin-bottom: 16px; line-height:1; }
.process-step h3{ font-size:17px; margin-bottom:8px; }
.process-step p{ font-size:14.5px; }
@media (max-width: 900px){ .process-row{ grid-template-columns: repeat(2,1fr); row-gap:36px; } }
@media (max-width: 560px){ .process-row{ grid-template-columns: 1fr; } }

/* -------------------- Testimonial switcher -------------------- */
.testi-wrap{ max-width:900px; margin:0 auto; text-align:center; position:relative; }
.testi-mark{ font-family:Georgia,serif; font-size:110px; line-height:0; color:var(--gold); opacity:0.5; position:relative; top:36px; }
.testi-slide{ display:none; }
.testi-slide.is-active{ display:block; animation: fadein .5s var(--ease-out); }
@keyframes fadein{ from{opacity:0; transform:translateY(10px);} to{opacity:1; transform:none;} }
.testi-quote{ font-family:var(--font-display); font-weight:600; font-size: clamp(20px,2.6vw,30px); line-height:1.4; color:var(--ink); max-width:34ch; margin:0 auto 28px; }
.section-navy .testi-quote, .section-navy-deep .testi-quote{ color:#fff; }
.testi-person{ font-size:13.5px; color:var(--slate); }
.testi-person b{ color:var(--gold-deep); }
.section-navy .testi-person b, .section-navy-deep .testi-person b{ color:var(--gold); }
.testi-dots{ display:flex; justify-content:center; gap:10px; margin-top:36px; }
.testi-dot{ width:9px; height:9px; border-radius:50%; background:var(--line); cursor:pointer; transition:.25s; }
.section-navy .testi-dot, .section-navy-deep .testi-dot{ background:rgba(255,255,255,0.2); }
.testi-dot.is-active{ background:var(--gold); width:26px; border-radius:5px; }

/* -------------------- Service area -------------------- */
.area-list{ display:flex; flex-wrap:wrap; gap:12px; margin: 24px 0 28px; }
.area-chip{ padding: 10px 20px; border:1px solid rgba(255,255,255,0.2); border-radius: 20px; font-size: 13.5px; font-weight:700; color: #fff; font-family:var(--font-display); transition:.25s; }
.area-chip:hover{ background:var(--gold); border-color:var(--gold); color:var(--navy-deep); }
.section-white .area-chip, .section-cream .area-chip{ color:var(--navy); border-color:var(--line); }

/* -------------------- Final CTA -------------------- */
.cta-band{ position:relative; overflow:hidden; color:#fff; text-align:center; }
.cta-band .hero-overlay{ background: linear-gradient(180deg, rgba(14,26,48,0.86), rgba(14,26,48,0.94)); }
.cta-band .cta-inner{ position:relative; z-index:2; max-width: 760px; margin:0 auto; padding-top: 120px; padding-bottom: 120px; }
.cta-band h2{ color:#fff; font-size: clamp(36px,4.6vw,60px); }
.cta-band .btn-row{ justify-content:center; margin-top: 32px; }
.cta-band .cta-phone{ margin-top:20px; font-size:14.5px; color:#C7CEDB; }
.cta-band .cta-phone a{ color:#fff; font-weight:700; text-decoration:underline; text-underline-offset:3px; }

/* -------------------- Footer -------------------- */
.site-footer{ background: var(--navy-deep); color:#B9C2D1; padding: 90px 0 30px; }
.footer-top{ display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--line-dark); }
.footer-brand img{ height:40px; margin-bottom:20px; }
.footer-brand p{ font-size:14px; color:#98A2B3; max-width: 34ch; }
.footer-contact{ margin-top:20px; display:flex; flex-direction:column; gap:9px; font-size:14px; }
.footer-contact a{ color:#E7EAF0; font-weight:600; }
.footer-contact a:hover{ color: var(--gold); }
.footer-col h4{ color:#fff; font-size:12px; text-transform:uppercase; letter-spacing:0.14em; margin-bottom:20px; font-family:var(--font-display); font-weight:800; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:14px; color:#B9C2D1; }
.footer-col a:hover{ color: var(--gold); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; padding-top: 28px; font-size: 12.5px; color:#7C879A; }
.footer-bottom a{ color:#7C879A; }
.footer-bottom a:hover{ color: var(--gold); }
.footer-legal{ display:flex; gap:20px; flex-wrap:wrap; }
@media (max-width: 900px){ .footer-top{ grid-template-columns: 1fr 1fr; row-gap:40px; } }
@media (max-width: 560px){ .footer-top{ grid-template-columns: 1fr; } }

/* -------------------- Grids -------------------- */
.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items:center; }
@media (max-width: 980px){ .grid-2{ grid-template-columns:1fr; gap:40px; } }
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 900px){ .grid-3{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .grid-3{ grid-template-columns: 1fr; } }

.bio-card{ text-align:center; }
.bio-card img{ width:88px; height:88px; border-radius:50%; margin:0 auto 20px; object-fit:cover; }
.bio-card .name{ font-family:var(--font-display); font-weight:800; font-size:16px; color:var(--ink); }
.bio-card .role{ color:var(--slate-soft); font-size:13px; margin: 4px 0 14px; }
.bio-card p{ font-size:13.5px; }

/* -------------------- Forms -------------------- */
.form-card{ background:#fff; border:1px solid var(--line); border-radius: 2px; padding: 44px; box-shadow: var(--shadow-sm); }
@media (max-width: 640px){ .form-card{ padding: 28px 20px; } }
fieldset{ border:0; padding:0; margin: 0 0 40px; }
fieldset:last-of-type{ margin-bottom: 0; }
legend{ font-family: var(--font-display); font-weight:800; font-size: 20px; color: var(--navy); padding:0 0 10px; margin-bottom: 22px; width:100%; border-bottom: 2px solid var(--stone); }
.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom:20px; }
.field-row.cols-3{ grid-template-columns: repeat(3,1fr); }
@media (max-width: 700px){ .field-row, .field-row.cols-3{ grid-template-columns: 1fr; } }
.field{ display:flex; flex-direction:column; gap:8px; }
.field label{ font-size: 13.5px; font-weight:700; color: var(--navy); }
.field .hint{ font-size:12.5px; color: var(--slate-soft); font-weight:400; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="date"], .field input[type="number"], .field select, .field textarea{
  font-family: var(--font-body); font-size:15px; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 2px; background:#fff; color: var(--ink); width:100%;
}
.field textarea{ resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus{ outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(209,165,78,0.18); }
.check-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 560px){ .check-grid{ grid-template-columns:1fr; } }
.check-item{ display:flex; align-items:center; gap:10px; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 2px; font-size: 14.5px; cursor:pointer; transition:.2s; }
.check-item:has(input:checked){ border-color: var(--navy); background: var(--cream); }
.radio-row{ display:flex; flex-wrap:wrap; gap:12px; }
.radio-pill{ display:flex; align-items:center; gap:8px; padding: 11px 17px; border:1.5px solid var(--line); border-radius: 20px; font-size:14px; cursor:pointer; transition:.2s; }
.radio-pill:has(input:checked){ border-color: var(--navy); background: var(--navy); color:#fff; }
.file-drop{ border: 2px dashed var(--line); border-radius: 2px; padding: 40px 24px; text-align:center; color: var(--slate); font-size:14px; background: var(--cream); }
.file-drop strong{ color: var(--navy); display:block; margin-bottom:6px; font-size:15px; }
.file-drop input[type="file"]{ margin-top:14px; }
.form-success{ display:none; text-align:center; padding: 64px 24px; background:#fff; border:1px solid var(--line); border-radius: 2px; }
.form-success.is-visible{ display:block; }
.form-success .check{ width:68px; height:68px; border-radius:50%; background: var(--gold-tint); color: var(--gold-deep); display:flex; align-items:center; justify-content:center; margin:0 auto 24px; font-size:32px; }
.form-success h3{ font-size:26px; }
.form-success p{ max-width: 46ch; margin: 0 auto; }

.contact-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px){ .contact-grid{ grid-template-columns: 1fr; } }
.contact-card{ background:#fff; border:1px solid var(--line); border-radius: 2px; padding: 32px 28px; transition: box-shadow .3s, transform .3s; }
.contact-card:hover{ box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.contact-card .icon{ width:50px; height:50px; border-radius:50%; background: var(--cream); color: var(--navy); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.contact-card h3{ font-size:16px; margin-bottom:8px; }
.contact-card a{ color: var(--navy); font-weight:700; }
.contact-card a:hover{ color: var(--gold-deep); }

/* -------------------- Utility -------------------- */
.text-center{ text-align:center; }
.tag-pill{ display:inline-block; padding:6px 14px; border-radius: 20px; background: var(--cream); color: var(--navy); font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:0.05em; }
.skip-link{ position:absolute; left:-9999px; top:0; background:#fff; color:#000; padding:10px 16px; z-index:400; }
.skip-link:focus{ left: 12px; top: 12px; }
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in-view{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
  .split-panel, .split-panel img, .gallery-item img{ transition:none; }
}
