*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}
::selection { background: var(--navy-800); color: var(--ivory); }

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--brass);
  color: var(--navy-950);
  padding: 8px 14px;
  z-index: 1000;
}
.skip:focus { top: 12px; }

.wrap {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.wrap-wide {
  width: min(var(--wide), calc(100% - 40px));
  margin-inline: auto;
}
.wrap-narrow {
  width: min(var(--narrow), calc(100% - 40px));
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-600);
  font-weight: 500;
}
.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border: 1px solid var(--brass);
  flex-shrink: 0;
}
.kicker.light { color: var(--brass-300); }

.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.muted { color: var(--muted); }
.gold { color: var(--brass); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: var(--brass);
  color: var(--navy-950);
  border-color: var(--brass);
}
.btn-gold:hover { background: var(--brass-300); border-color: var(--brass-300); }
.btn-navy {
  background: var(--navy-900);
  color: var(--ivory);
  border-color: var(--navy-900);
}
.btn-navy:hover { background: var(--navy-700); }
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(243, 238, 228, 0.35);
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-300); }
.btn-ghost-dark {
  background: transparent;
  color: var(--navy-900);
  border-color: rgba(11, 26, 44, 0.22);
}
.btn-ghost-dark:hover { border-color: var(--brass-600); color: var(--brass-600); }
.btn-wa { background: var(--wa); color: #fff; border-color: var(--wa); }
.btn-wa:hover { background: #0b6a5e; }
.btn-full { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header);
  background: rgba(11, 26, 44, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .bar {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory);
  min-width: 180px;
}
.brand img {
  width: 42px;
  height: 42px;
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand-name span {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  color: rgba(243, 238, 228, 0.82);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav a:hover, .nav a.is-active { color: var(--brass-300); }
.nav-drop { position: relative; }
.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  padding: 8px 0;
  color: rgba(243, 238, 228, 0.82);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.nav-drop-btn:hover,
.nav-drop.is-open .nav-drop-btn { color: var(--brass-300); }
.nav-drop ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  background: var(--navy-900);
  border: 1px solid var(--line-dark);
  padding: 10px 0;
  list-style: none;
  z-index: 90;
}
.nav-drop ul::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 12px;
}
@media (min-width: 981px) {
  .nav-drop.is-open ul,
  .nav-drop:hover ul { display: block; }
}
.nav-drop ul a {
  display: block;
  padding: 8px 16px;
  white-space: nowrap;
  font-size: 13px;
}
@media (max-width: 980px) {
  .nav-drop {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-drop-btn {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 11px 8px;
    font-size: 15px;
    color: rgba(243, 238, 228, 0.82);
  }
  .nav-drop-btn::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s var(--ease);
    margin-right: 6px;
  }
  .nav-drop.is-open .nav-drop-btn::after {
    transform: rotate(225deg);
    margin-top: 4px;
  }
  .nav-drop ul {
    display: none;
    position: static;
    transform: none;
    border: 0;
    padding: 0 0 8px 8px;
    min-width: 0;
    background: transparent;
  }
  .nav-drop.is-open ul {
    display: grid;
  }
  .nav-drop ul::before { display: none; }
  .nav-drop ul a {
    white-space: normal;
    padding: 9px 8px;
    font-size: 14px;
  }
}
.header-cta { display: flex; gap: 8px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  color: var(--ivory);
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform 0.2s var(--ease), top 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: grid;
  align-items: end;
  color: var(--ivory);
  overflow: hidden;
  background: var(--navy-950);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
}
.hero-media.slideshow img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-media.slideshow img.is-on { opacity: 1; }
.hero-dots {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 28px;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: rgba(243, 238, 228, 0.35);
  border: 0;
}
.hero-dots button.is-on { background: var(--brass); }
[data-address-wrap][hidden] { display: none !important; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 24, 0.88) 0%, rgba(7, 16, 24, 0.55) 48%, rgba(7, 16, 24, 0.22) 100%),
    linear-gradient(180deg, rgba(7, 16, 24, 0.2) 0%, rgba(7, 16, 24, 0.72) 100%);
}
.hero-body {
  position: relative;
  z-index: 1;
  padding: 72px 0 64px;
  width: min(var(--wide), calc(100% - 40px));
  margin-inline: auto;
  max-width: 820px;
  margin-left: max(20px, calc((100% - var(--wide)) / 2));
}
.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-300);
}
.hero-pillars span {
  display: inline-flex;
  align-items: center;
}
.hero-pillars span + span::before {
  content: "";
  width: 5px;
  height: 5px;
  margin: 0 14px;
  border-radius: 50%;
  background: var(--brass);
  opacity: 0.75;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.4vw, 84px);
  font-weight: 600;
  line-height: 0.98;
  margin: 18px 0 18px;
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--brass-300); }
.hero .lead {
  font-size: 18px;
  font-weight: 300;
  max-width: 560px;
  color: rgba(243, 238, 228, 0.82);
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 238, 228, 0.78);
}
.trust-item svg { color: var(--brass); flex-shrink: 0; }

.section { padding: 88px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 40px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  margin-top: 10px;
}
.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.svc-card:hover { border-color: var(--brass); transform: translateY(-2px); }
.svc-card .thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-800);
}
.svc-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.svc-card:hover .thumb img { transform: scale(1.04); }
.svc-card .thumb::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(198, 165, 106, 0.35);
  pointer-events: none;
}
.svc-card .thumb-cap {
  position: absolute;
  left: 14px;
  right: auto;
  top: 14px;
  bottom: auto;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(7, 16, 24, 0.72);
  padding: 6px 10px;
  pointer-events: none;
}
.svc-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
}
.svc-card p { color: var(--muted); font-size: 15px; flex: 1; }
.svc-card .more {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-600);
  font-weight: 600;
}

.frame {
  position: relative;
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(198, 165, 106, 0.55);
  pointer-events: none;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  margin: 12px 0 16px;
  line-height: 1.12;
}
.split-copy p + p { margin-top: 14px; }
.split-copy .muted { margin-bottom: 22px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--navy-900);
  color: var(--ivory);
}
.stat {
  padding: 32px 24px;
  border-right: 1px solid var(--line-dark);
}
.stat:last-child { border-right: 0; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--brass-300);
  line-height: 1;
  margin-bottom: 8px;
}
.stat span {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(243, 238, 228, 0.7);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
.process-item {
  padding: 8px 28px 8px 0;
  border-right: 1px solid var(--stone);
  padding-left: 0;
  padding-right: 28px;
  margin-right: 28px;
}
.process-item:last-child { border: 0; margin: 0; }
.process-item h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 8px 0 8px;
}
.process-item p { color: var(--muted); font-size: 15px; }
.process-no {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-600);
}

.ba {
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  background: var(--navy-950);
  aspect-ratio: 16 / 10;
  cursor: ew-resize;
  --pos: 50%;
  --ba-w: 100cqi;
  container-type: inline-size;
}
.ba img,
.ba-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-reveal {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--pos);
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.ba-reveal img {
  width: var(--ba-w, 100cqi);
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
}
.ba.is-dragging,
.ba.is-dragging .ba-handle { touch-action: none; }
.ba.is-dragging .ba-reveal { will-change: width; }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 44px;
  background: transparent;
  transform: translateX(-50%);
  z-index: 2;
  touch-action: none;
}
.ba-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--brass);
  transform: translateX(-50%);
}
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid var(--brass);
  background: var(--navy-900);
  transform: translate(-50%, -50%) rotate(45deg);
}
.ba-handle i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: url("../img/brand/mark.svg") center/contain no-repeat;
  filter: invert(86%) sepia(28%) saturate(500%) hue-rotate(2deg);
}
.ba-label {
  position: absolute;
  top: 14px;
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(7, 16, 24, 0.72);
  color: var(--ivory);
  padding: 6px 10px;
}
.ba-label.before { left: 14px; }
.ba-label.after { right: 14px; }

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}
.project-side { display: grid; gap: 22px; }
.project-card {
  background: #fff;
  border: 1px solid var(--stone);
}
.project-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  padding: 16px 18px 4px;
}
.project-card .meta {
  padding: 0 18px 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-600);
}
.project-excerpt {
  padding: 0 18px 16px;
}

.cta-band {
  background: var(--navy-900);
  color: var(--ivory);
  padding: 72px 0;
  position: relative;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid var(--line-dark);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  margin: 10px 0 14px;
}
.cta-band p { max-width: 560px; color: rgba(243, 238, 228, 0.78); margin-bottom: 24px; }

.site-footer {
  background: var(--navy-950);
  color: rgba(243, 238, 228, 0.78);
  padding: 64px 0 28px;
  border-top: 1px solid var(--line-dark);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}
.site-footer h3 {
  color: var(--brass-300);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.site-footer a:hover { color: var(--brass-300); }
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.site-footer .tiny { font-size: 14px; max-width: 280px; }
.legal-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  font-size: 13px;
  color: var(--muted-2);
}
.legal-row nav { display: flex; gap: 16px; }

.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--navy-900);
  border-top: 1px solid var(--line-dark);
  grid-template-columns: 1fr 1fr 1fr;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
}
.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--ivory);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px;
}
.mobile-bar a.wa { color: #7ddecf; }
.mobile-bar a.gold { color: var(--brass-300); }

.page-hero {
  background: var(--navy-900);
  color: var(--ivory);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero.photo { min-height: 420px; display: flex; align-items: end; }
.page-hero.photo .bg {
  position: absolute;
  inset: 0;
}
.page-hero.photo .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
}
.page-hero.photo .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,16,24,.88), rgba(7,16,24,.45));
}
.page-hero .inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin: 10px 0 12px;
  max-width: 18ch;
}
.page-hero .dek { max-width: 58ch; color: rgba(243,238,228,.8); }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.page-hero .crumbs { color: rgba(243,238,228,.55); }
.crumbs a:hover { color: var(--brass); }
.crumbs span[aria-current] { color: var(--brass-300); }

.prose {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--charcoal);
}
.prose h2 {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.15;
  margin: 40px 0 14px;
  color: var(--navy-900);
}
.prose h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 28px 0 10px;
}
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { margin: 0 0 18px 1.1em; }
.prose li { margin: 0 0 8px; }
.prose a { color: var(--brass-600); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
  margin: 28px 0;
  padding: 8px 0 8px 22px;
  border-left: 2px solid var(--brass);
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  line-height: 1.3;
  color: var(--navy-800);
}

.layout-2 {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.side-card {
  background: #fff;
  border: 1px solid var(--stone);
  padding: 24px;
  position: sticky;
  top: calc(var(--header) + 16px);
}
.side-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 8px;
}
.form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--stone);
  background: var(--paper);
  min-height: 46px;
  padding: 10px 12px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  color: var(--ink);
}
.form textarea { min-height: 110px; resize: vertical; }
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--brass);
  border-color: var(--brass);
}
.form-note { font-size: 13px; color: var(--muted); margin-top: 10px; }
.form-ok, .form-err { font-size: 14px; margin-top: 10px; display: none; }
.form-ok { color: var(--ok); }
.form-err { color: var(--danger); }

.faq { display: grid; gap: 0; border-top: 1px solid var(--stone); }
.faq-item { border-bottom: 1px solid var(--stone); }
.faq-item button {
  width: 100%;
  text-align: left;
  padding: 18px 8px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 17px;
  font-weight: 500;
}
.faq-item button::after {
  content: "+";
  color: var(--brass-600);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}
.faq-item.is-open button::after { content: "–"; }
.faq-item .ans {
  display: none;
  padding: 0 8px 18px;
  color: var(--muted);
}
.faq-item.is-open .ans { display: block; }

.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related a {
  border: 1px solid var(--stone);
  padding: 18px;
  background: #fff;
}
.related a:hover { border-color: var(--brass); }
.related strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-list { display: grid; gap: 18px; }
.contact-list a, .contact-list p { font-size: 18px; }
.map-ph,
.map-frame {
  position: relative;
  min-height: 320px;
  background:
    linear-gradient(180deg, #c5d2c4, #dfe6dc 42%, #c9d4e3);
  border: 1px solid var(--stone);
  overflow: hidden;
}
.map-ph iframe,
.map-frame iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  background: #d7e0d4;
}
.map-panel {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
  padding: 14px 16px 16px;
  width: min(280px, calc(100% - 32px));
}
.map-panel p { font-size: 14px; color: var(--muted); margin: 0 0 6px; }
.map-panel strong { color: var(--navy-900); font-size: 16px; }
.map-panel-kicker {
  font-size: 11px !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-600) !important;
  margin-bottom: 4px !important;
}
.map-panel .btn { margin-top: 10px; width: 100%; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  overflow: hidden;
  padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
}
.modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 24, 0.78);
}
.modal-card {
  position: relative;
  background: var(--paper);
  width: min(480px, 100%);
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 22px 22px 22px;
  border: 1px solid var(--brass);
  z-index: 1;
}
.modal-card h2 {
  font-family: var(--font-display);
  font-size: 32px;
  margin: 8px 0 8px;
  padding-right: 8px;
}
.modal-close {
  position: absolute;
  top: max(10px, env(safe-area-inset-top));
  right: max(10px, env(safe-area-inset-right));
  width: 44px;
  height: 44px;
  color: var(--ivory);
  background: var(--navy-900);
  border: 1px solid var(--line-dark);
  font-size: 28px;
  line-height: 1;
  z-index: 2;
}
.modal-card [data-dismiss-quote] { margin-top: 10px; }
body.modal-open {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}
body.modal-open .mobile-bar { visibility: hidden; pointer-events: none; }
img.img-missing {
  object-fit: none;
  background: var(--navy-800);
  min-height: 160px;
}
.hero-slide-label {
  position: absolute;
  right: 24px;
  bottom: 52px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(7, 16, 24, 0.7);
  padding: 8px 12px;
  pointer-events: none;
}

.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 84px;
  z-index: 95;
  background: var(--navy-900);
  color: var(--ivory);
  border: 1px solid var(--line-dark);
  padding: 16px 18px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  max-width: 720px;
  margin: 0 auto;
}
.cookie.is-on { display: flex; }
.cookie p { font-size: 14px; color: rgba(243,238,228,.8); }
@media (min-width: 981px) {
  .cookie { bottom: 20px; }
}

.notfound {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 20px;
}
.notfound .code {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.8;
  color: var(--brass);
}
.guide-list { display: grid; gap: 0; }
.guide-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--stone);
}
.guide-row .date {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-600);
}
.guide-row h3 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.15;
}
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip {
  border: 1px solid var(--stone);
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #fff;
}
.chip.is-on, .chip:hover { border-color: var(--brass); color: var(--brass-600); }

@media (max-width: 980px) {
  .svc-grid, .related, .stats, .process, .contact-grid, .foot-grid, .split, .split.reverse, .layout-2, .project-grid, .guide-row, .section-head {
    grid-template-columns: 1fr;
  }
  .site-header {
    height: auto;
    min-height: var(--header);
  }
  .site-header .bar {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "cta cta";
    align-items: center;
    height: auto;
    min-height: var(--header);
    column-gap: 12px;
    row-gap: 0;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .brand { grid-area: brand; min-width: 0; }
  .nav-toggle { grid-area: toggle; display: inline-flex; }
  .nav, .header-cta { display: none; }
  .nav.is-open {
    grid-area: nav;
    display: flex;
    position: static;
    left: auto;
    right: auto;
    top: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 8px 0 4px;
    margin-top: 8px;
    background: transparent;
    border: 0;
    max-height: calc(100dvh - var(--header) - 180px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .nav.is-open > a {
    display: block;
    padding: 11px 8px;
    font-size: 15px;
  }
  .header-cta.is-open {
    grid-area: cta;
    display: flex;
    flex-direction: column;
    position: static;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    gap: 8px;
    z-index: auto;
    padding: 12px 0 4px;
    margin-top: 4px;
    border-top: 1px solid var(--line-dark);
  }
  .header-cta.is-open .btn { width: 100%; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 88px; }
  body.nav-open { overflow: hidden; }
  body.nav-open .cookie { visibility: hidden; pointer-events: none; }
  .stat, .process-item { border: 0; border-bottom: 1px solid var(--line-dark); margin: 0; padding: 20px 0; }
  .stats { border: 0; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .hero { min-height: 86vh; }
  .side-card { position: static; }
  .cookie { flex-direction: column; align-items: stretch; bottom: 88px; }
  .form input,
  .form select,
  .form textarea { font-size: 16px; }
  .map-frame,
  .map-ph {
    display: flex;
    flex-direction: column;
  }
  .map-ph iframe,
  .map-frame iframe { height: 280px; }
  .map-panel {
    position: static;
    width: 100%;
    max-width: none;
    box-shadow: none;
    border: 0;
    border-top: 1px solid var(--stone);
  }
  .hero-slide-label {
    right: 16px;
    bottom: 48px;
    left: auto;
  }
  .hero-dots { right: 16px; bottom: 22px; }
  .modal-card { padding: 52px 16px 20px; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 40px; }
  .section { padding: 56px 0; }
  .btn { min-height: 46px; }
  .guide-row { gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
