@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url("../fonts/archivo/archivo-var-wdth.woff2") format("woff2");
}

:root {
  --ink: #15181c;
  --ink-2: #1d2126;
  --ink-3: #272c32;
  --text: #2c3238;
  --muted: #565e68;
  --muted-dark: #a7afb8;
  --line: #e1e3e6;
  --line-dark: #333940;
  --bg: #ffffff;
  --concrete: #f1f0ec;
  --brand: #ffc20e;
  --brand-dark: #eaaa00;
  --success: #17663a;
  --danger: #b42318;
  --radius: 4px;
  --radius-lg: 6px;
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(64px, 9vw, 128px);
  --font: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --header-h: 76px;
  --hazard: repeating-linear-gradient(-45deg, var(--brand) 0 14px, var(--ink) 14px 28px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--brand); color: var(--ink); }

h1, h2, h3, h4 { font-family: var(--font); color: var(--ink); margin: 0 0 .5em; }
h1, h2 { text-transform: uppercase; font-stretch: 112%; line-height: .98; letter-spacing: -.01em; text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 1.3rem + 4.4vw, 5rem); font-weight: 850; }
h2 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.4rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 1.05rem + .45vw, 1.4rem); font-weight: 750; line-height: 1.2; letter-spacing: -.005em; }
.h3 { font-size: clamp(1.15rem, 1.05rem + .45vw, 1.4rem); }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; }
.hl { color: var(--brand); }

:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }

.skip-link { position: absolute; left: 12px; top: -80px; z-index: 100; background: var(--brand); color: var(--ink); padding: 12px 18px; font-weight: 800; text-decoration: none; }
.skip-link:focus { top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 54px; padding: .9rem 1.6rem; border-radius: var(--radius); border: 2px solid transparent;
  font-weight: 800; font-size: .92rem; letter-spacing: .06em; text-transform: uppercase; line-height: 1.1;
  text-decoration: none; cursor: pointer; transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn svg { width: 1.2em; height: 1.2em; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: var(--ink); }
.btn-primary:hover { background: #fff; }
.section-concrete .btn-primary:hover, .form-card .btn-primary:hover, .site-header .btn-primary:hover { background: var(--ink); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-3); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: .45rem; font-weight: 800; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); text-decoration: none; border-bottom: 3px solid var(--brand); padding-bottom: 3px; }
.link-arrow svg { transition: transform .2s var(--ease); }
.link-arrow:hover svg, .card-link:hover .link-arrow svg { transform: translateX(4px); }
.section-dark .link-arrow { color: #fff; }

/* Top bar & header */
.topbar { background: var(--ink); color: var(--muted-dark); font-size: .82rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 40px; }
.topbar p { margin: 0; display: flex; align-items: center; gap: .5rem; }
.topbar p::before { content: ""; width: 8px; height: 8px; background: var(--brand); flex: none; }
.topbar-links { display: flex; gap: 1.5rem; }
.topbar a { color: #fff; text-decoration: none; font-weight: 700; }
.topbar a:hover { color: var(--brand); }
@media (max-width: 767px) { .topbar { display: none; } }

.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.brand img { width: 158px; height: auto; }
.primary-nav > ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .15rem; }
.primary-nav > ul > li { position: relative; display: flex; align-items: center; }
.primary-nav > ul > li > a { display: block; padding: .7rem .9rem; text-decoration: none; font-weight: 800; font-size: .84rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); position: relative; }
.primary-nav > ul > li > a::after { content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .3rem; height: 3px; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.primary-nav > ul > li > a:hover::after, .primary-nav > ul > li > a[aria-current]::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone { display: inline-flex; align-items: center; gap: .6rem; color: var(--ink); text-decoration: none; white-space: nowrap; line-height: 1.15; }
.header-phone svg { width: 20px; height: 20px; }
.header-phone .phone-icon { display: grid; place-items: center; width: 42px; height: 42px; background: var(--brand); border-radius: var(--radius); }
.header-phone small { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.header-phone strong { font-size: 1.05rem; font-weight: 800; }
.nav-toggle { display: none; width: 48px; height: 48px; border: 0; background: var(--ink); color: #fff; border-radius: var(--radius); cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 1180px) { .header-actions .btn { display: none; } }

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .header-actions .btn, .header-phone .phone-text { display: none; }
  .header-phone .phone-icon { width: 48px; height: 48px; }
  .primary-nav { position: absolute; left: 0; right: 0; top: 100%; background: var(--ink); display: none; border-top: 4px solid var(--brand); }
  .primary-nav.is-open { display: block; }
  .primary-nav { max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
  .primary-nav > ul { flex-direction: column; align-items: stretch; padding: .5rem var(--gutter) 1.25rem; gap: 0; }
  .primary-nav > ul > li { flex-wrap: wrap; border-bottom: 1px solid var(--line-dark); }
  .primary-nav > ul > li > a { flex: 1; color: #fff; padding: 1rem 0; font-size: 1rem; }
  .primary-nav > ul > li > a::after { left: 0; right: auto; width: 32px; bottom: -1px; }
  .brand img { width: 132px; }
}

/* Sections */
.section { padding-block: var(--section); position: relative; }
.section-alt, .section-concrete { background: var(--concrete); }
.section-dark { background: var(--ink); color: var(--muted-dark); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { max-width: 780px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { color: var(--muted); font-size: 1.12rem; margin-bottom: 0; }
.section-dark .section-head p { color: var(--muted-dark); }
.split-head { max-width: none; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 1.5rem 4rem; align-items: end; }
.split-head h2 { margin: 0; }
@media (max-width: 860px) { .split-head { grid-template-columns: 1fr; } }

.eyebrow { display: inline-flex; align-items: center; gap: .65rem; font-size: .78rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); margin-bottom: 1.1rem; }
.eyebrow::before { content: ""; width: 12px; height: 12px; background: var(--brand); flex: none; }
.section-dark .eyebrow, .page-hero .eyebrow, .hero .eyebrow { color: #fff; }

.hazard { height: 10px; background: var(--hazard); }

.grid { display: grid; gap: clamp(16px, 2.2vw, 28px); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }

/* Hero */
.hero { position: relative; color: #fff; background: var(--ink); isolation: isolate; overflow: hidden; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 12px; background: var(--hazard); }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21, 24, 28, .96) 0%, rgba(21, 24, 28, .86) 45%, rgba(21, 24, 28, .45) 100%); }
.hero-inner { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(360px, .75fr); gap: clamp(32px, 5vw, 72px); align-items: center; padding-block: clamp(56px, 8vw, 112px) clamp(72px, 9vw, 128px); }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 1.1rem + 4.2vw, 4.7rem); font-stretch: 108%; margin-bottom: .35em; text-wrap: pretty; }
.hero-lead { font-size: clamp(1.05rem, 1rem + .35vw, 1.25rem); color: #d3d8de; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero-points { list-style: none; padding: 1.75rem 0 0; margin: 2.25rem 0 0; display: flex; flex-wrap: wrap; gap: .75rem 2rem; color: #fff; font-weight: 700; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; border-top: 1px solid rgba(255, 255, 255, .15); }
.hero-points li { display: flex; align-items: center; gap: .55rem; }
.hero-points svg { width: 20px; height: 20px; color: var(--brand); flex: none; }
@media (max-width: 991px) { .hero-inner { grid-template-columns: minmax(0, 1fr); } }

/* Stats */
.stats { background: var(--ink-2); color: var(--muted-dark); }
.stats-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, auto); justify-content: space-between; }
.stats-list li { padding: clamp(28px, 4vw, 48px) clamp(16px, 2.5vw, 32px); border-left: 1px solid var(--line-dark); display: flex; flex-direction: column; gap: .35rem; }
.stats-list li:first-child { border-left: 0; padding-left: 0; }
.stats-list strong { white-space: nowrap; color: var(--brand); font-size: clamp(1.45rem, .8rem + 2.4vw, 2.9rem); font-weight: 850; font-stretch: 112%; line-height: 1; text-transform: uppercase; }
.stats-list span { font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 991px) {
  .stats-list { grid-template-columns: repeat(2, minmax(0, 1fr)); justify-content: stretch; }
  .stats-list li { padding: 24px 16px; border-left: 0; border-top: 1px solid var(--line-dark); }
  .stats-list li:nth-child(-n+2) { border-top: 0; }
  .stats-list li:nth-child(odd) { padding-left: 0; }
  .stats-list li:nth-child(even) { border-left: 1px solid var(--line-dark); }
}

/* Split */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(40px, 6vw, 96px); align-items: center; }
.split-media { position: relative; isolation: isolate; }
.split-media::before { content: ""; position: absolute; inset: 28px -28px -28px 28px; background: var(--brand); z-index: -1; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.split-media .media-tag { position: absolute; left: 0; bottom: 0; background: var(--ink); color: #fff; padding: 1.1rem 1.4rem; font-weight: 800; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.split-media .media-tag strong { display: block; color: var(--brand); font-size: 2.2rem; font-stretch: 112%; letter-spacing: 0; line-height: 1; }
@media (max-width: 991px) {
  .split { grid-template-columns: 1fr; }
  .split-media::before { inset: 14px -12px -14px 12px; }
  .split-media img { aspect-ratio: 4 / 3; }
}

.feature-list { display: grid; gap: 0; margin-top: 2rem; border-top: 1px solid var(--line); }
.feature { display: flex; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.feature-icon { flex: none; width: 52px; height: 52px; border-radius: var(--radius); background: var(--brand); color: var(--ink); display: grid; place-items: center; }
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: .3rem; }
.feature p { color: var(--muted); margin: 0; }
.section-dark .feature { border-color: var(--line-dark); }
.section-dark .feature p { color: var(--muted-dark); }

/* Cards */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; height: 100%; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.card::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); z-index: 2; }
.card-media { aspect-ratio: 4 / 3; background: var(--ink-3); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card-body { padding: clamp(22px, 2.5vw, 30px); display: flex; flex-direction: column; flex: 1; }
.card-body p { color: var(--muted); }
.card-body .link-arrow { margin-top: auto; align-self: flex-start; }
.card-title a { text-decoration: none; }
.card-link .card-title a::after { content: ""; position: absolute; inset: 0; z-index: 3; }
.card-link:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -24px rgba(21, 24, 28, .35); }
.card-link:hover::after { transform: scaleX(1); }
.card-link:hover .card-media img { transform: scale(1.05); }
.card-meta { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }
.card-num { font-size: .85rem; font-weight: 800; letter-spacing: .14em; color: var(--brand-dark); margin-bottom: .5rem; }
.section-dark .card { background: var(--ink-2); border-color: var(--line-dark); }
.section-dark .card-body p { color: var(--muted-dark); }
.section-dark .card-title { color: #fff; }
.section-dark .card-num { color: var(--brand); }
.section-dark .card-link:hover { box-shadow: 0 24px 48px -24px rgba(0, 0, 0, .8); }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px, 3vw, 40px); }
.steps li { counter-increment: step; position: relative; padding-top: 1.5rem; border-top: 4px solid var(--ink); }
.steps li::before { content: counter(step, decimal-leading-zero); display: block; font-size: clamp(3.2rem, 2.4rem + 2.4vw, 4.8rem); font-weight: 900; font-stretch: 115%; line-height: 1; color: transparent; -webkit-text-stroke: 2px var(--ink); margin-bottom: 1rem; }
.steps li::after { content: ""; position: absolute; top: -4px; left: 0; width: 64px; height: 4px; background: var(--brand); }
.steps p { color: var(--muted); margin: 0; }
.section-dark .steps li { border-color: var(--line-dark); }
.section-dark .steps li::before { -webkit-text-stroke-color: var(--brand); }
.section-dark .steps p { color: var(--muted-dark); }
@media (max-width: 991px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* Gallery */
.gallery { display: grid; gap: 10px; grid-auto-flow: dense; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: clamp(180px, 22vw, 320px); }
.gallery figure { margin: 0; overflow: hidden; background: var(--ink-3); position: relative; }
.gallery figure.wide { grid-column: span 2; }
.gallery figure.tall { grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 2.5rem 1rem .9rem; background: linear-gradient(0deg, rgba(21, 24, 28, .9), transparent); color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
@media (max-width: 767px) {
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 170px; }
  .gallery figure.tall { grid-row: span 1; }
}

.check-list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .8rem; }
.check-list li { position: relative; padding-left: 2.1rem; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .2em; width: 1.35rem; height: 1.35rem; border-radius: var(--radius); background: var(--brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315181c' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 70% no-repeat; }

/* Testimonials */
.quote { margin: 0; background: #fff; border-left: 5px solid var(--brand); padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; height: 100%; }
.quote svg { width: 40px; height: 40px; color: var(--brand); margin-bottom: 1.25rem; }
.quote blockquote { margin: 0 0 1.5rem; color: var(--ink); font-size: 1.12rem; line-height: 1.6; }
.quote blockquote p { margin: 0; }
.quote figcaption { margin-top: auto; display: flex; align-items: center; gap: .75rem; font-weight: 800; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); }
.quote figcaption::before { content: ""; width: 24px; height: 3px; background: var(--ink); }

/* CTA */
.cta-yellow { background: var(--brand); color: var(--ink); position: relative; }
.cta-yellow::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 12px; background: var(--hazard); }
.cta-yellow-inner { display: grid; grid-template-columns: minmax(0, 1.3fr) auto; gap: 2rem 4rem; align-items: center; padding-block: clamp(56px, 8vw, 104px); }
.cta-yellow h2 { font-size: clamp(2.2rem, 1.2rem + 4vw, 4.6rem); margin-bottom: .3em; }
.cta-yellow p { font-size: 1.15rem; max-width: 56ch; margin: 0; }
.cta-yellow .btn-dark:hover { background: #fff; color: var(--ink); }
.cta-phone { display: block; font-size: clamp(1.8rem, 1.2rem + 2.4vw, 3rem); font-weight: 850; font-stretch: 110%; color: var(--ink); text-decoration: none; line-height: 1; margin-bottom: 1rem; }
.cta-phone:hover { text-decoration: underline; text-decoration-thickness: 4px; text-underline-offset: 6px; }
@media (max-width: 860px) { .cta-yellow-inner { grid-template-columns: 1fr; } }

.cta-band { background: var(--ink); color: var(--muted-dark); padding: clamp(32px, 5vw, 60px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; position: relative; overflow: hidden; border-radius: var(--radius); }
.cta-band::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 8px; background: var(--hazard); }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.5rem); margin-bottom: .35rem; }
.cta-band p { margin: 0; max-width: 60ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.faq-layout .section-head { margin-bottom: 0; position: sticky; top: calc(var(--header-h) + 32px); }
@media (max-width: 860px) { .faq-layout { grid-template-columns: 1fr; } .faq-layout .section-head { position: static; } }
.faq { max-width: 880px; margin-inline: auto; border-top: 2px solid var(--ink); }
.faq-layout .faq { margin: 0; max-width: none; }
.faq details { border-bottom: 1px solid #cfd3d8; }
.faq summary { list-style: none; cursor: pointer; padding: 1.4rem 3.5rem 1.4rem 0; position: relative; font-weight: 750; color: var(--ink); font-size: 1.12rem; line-height: 1.35; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; display: grid; place-items: center; background: var(--ink); color: #fff; font-size: 1.4rem; font-weight: 500; line-height: 1; border-radius: var(--radius); transition: background-color .2s var(--ease); }
.faq details[open] summary::after { content: "−"; background: var(--brand); color: var(--ink); }
.faq summary:hover::after { background: var(--brand); color: var(--ink); }
.faq details > div { padding: 0 3.5rem 1.4rem 0; color: var(--muted); }
.faq details > div p { margin: 0; }
.faq a { color: var(--ink); font-weight: 700; text-decoration-color: var(--brand); text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* Page hero & breadcrumbs */
.page-hero { background: var(--ink); color: var(--muted-dark); padding-block: clamp(48px, 7vw, 96px) clamp(56px, 8vw, 104px); position: relative; overflow: hidden; isolation: isolate; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 85% 20%, rgba(255, 194, 14, .12), transparent 45%), linear-gradient(135deg, transparent 60%, rgba(255, 255, 255, .03) 60%); }
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 10px; background: var(--hazard); }
.page-hero h1 { color: #fff; max-width: 20ch; font-size: clamp(2.3rem, 1.3rem + 3.8vw, 4.5rem); }
.page-hero p { max-width: 62ch; font-size: 1.15rem; margin: 0; color: #cdd3d9; }
.page-hero .hero-actions { margin-top: 1.75rem; }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-wrap: wrap; gap: .4rem; font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .4rem; color: var(--brand); }
.breadcrumbs a { color: #fff; text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs [aria-current] { color: var(--muted-dark); }

/* Forms */
.form-card { background: #fff; color: var(--text); border-radius: var(--radius); padding: clamp(22px, 3vw, 36px); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .55); border-top: 6px solid var(--brand); }
.form-card h2 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); margin-bottom: .35rem; }
.form-card > p { color: var(--muted); margin-bottom: 1.4rem; font-size: .98rem; }
.form-bordered { box-shadow: 0 20px 40px -24px rgba(21, 24, 28, .3); border: 1px solid var(--line); border-top: 6px solid var(--brand); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem 1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 520px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: .35rem; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: .75rem .9rem; border: 1.5px solid #c9ced4; border-radius: var(--radius); background: #fafafa; font-size: 1rem; transition: border-color .15s, box-shadow .15s, background-color .15s; }
.field textarea { min-height: 104px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #9aa2ab; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: #fff; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(255, 194, 14, .5); }
.field [aria-invalid="true"] { border-color: var(--danger); background: #fff8f7; }
.field-error { display: block; color: var(--danger); font-size: .85rem; font-weight: 600; margin-top: .3rem; }
.checkbox { display: flex; align-items: flex-start; gap: .65rem; font-size: .93rem; }
.checkbox input { width: 20px; height: 20px; margin-top: .15rem; accent-color: var(--ink); flex: none; }
.checkbox a { font-weight: 700; color: var(--ink); }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.alert { padding: .9rem 1rem; border-radius: var(--radius); margin-bottom: 1rem; font-weight: 700; border-left: 5px solid currentColor; }
.alert-success { background: #e8f5ec; color: var(--success); }
.alert-error { background: #fdecea; color: var(--danger); }
.form-note { font-size: .88rem; color: var(--muted); margin: .9rem 0 0; text-align: center; }
.form-note a { color: var(--ink); font-weight: 800; }

/* Contact */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.contact-list li { display: flex; gap: 1.1rem; align-items: center; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.contact-list strong { display: block; color: var(--muted); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-list a { color: var(--ink); font-weight: 700; text-decoration: none; font-size: 1.1rem; }
.contact-list a:hover { text-decoration: underline; text-decoration-color: var(--brand); text-decoration-thickness: 3px; }
.map-embed { overflow: hidden; border: 4px solid var(--ink); aspect-ratio: 16 / 7; background: var(--ink-3); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.85) contrast(1.05); }
@media (max-width: 767px) { .map-embed { aspect-ratio: 4 / 3; } }

/* Article & sidebar */
.layout-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(32px, 5vw, 72px); align-items: start; }
.sidebar { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 1.25rem; }
@media (max-width: 991px) { .layout-sidebar { grid-template-columns: 1fr; } .sidebar { position: static; } }
.article-meta { display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-top: 1.5rem; }
.article-meta span { display: inline-flex; align-items: center; gap: .5rem; }
.article-meta span::before { content: ""; width: 6px; height: 6px; background: var(--brand); }
.article-cover { overflow: hidden; aspect-ratio: 16 / 9; background: var(--ink-3); margin-bottom: 2.5rem; border-bottom: 6px solid var(--brand); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.prose { max-width: 72ch; color: var(--text); font-size: 1.1rem; line-height: 1.8; }
.prose h2, .prose h3 { text-transform: none; font-stretch: 100%; letter-spacing: -.01em; line-height: 1.2; }
.prose h2 { font-size: clamp(1.45rem, 1.2rem + .9vw, 1.9rem); margin-top: 2.2em; font-weight: 800; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.6em; }
.prose a { color: var(--ink); text-decoration-color: var(--brand); text-decoration-thickness: 3px; text-underline-offset: 3px; font-weight: 700; }
.prose a:hover { background: rgba(255, 194, 14, .3); }
.prose ul:not(.check-list), .prose ol { padding-left: 1.4rem; }
.prose li { margin-bottom: .45rem; }
.prose img { margin: 1.5rem 0; }
.prose table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
.prose th, .prose td { border: 1px solid var(--line); padding: .5rem .75rem; text-align: left; }
.sidebar-card { background: var(--concrete); padding: 1.75rem; border-top: 5px solid var(--ink); }
.sidebar-card.dark { background: var(--ink); color: var(--muted-dark); border-top-color: var(--brand); }
.sidebar-card.dark h2 { color: #fff; }
.sidebar-card h2 { font-size: 1.3rem; margin-bottom: .9rem; }
.sidebar-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.sidebar-card ul:not(.check-list) li { border-bottom: 1px solid #dcdad4; }
.sidebar-card ul:not(.check-list) li:last-child { border-bottom: 0; }
.sidebar-card li a { display: block; padding: .7rem 0; color: var(--ink); text-decoration: none; font-weight: 700; }
.sidebar-card li a:hover { color: var(--ink); text-decoration: underline; text-decoration-color: var(--brand); text-decoration-thickness: 3px; }
.sidebar-card .check-list { gap: .7rem; margin-bottom: 1.5rem; }

/* Area links */
.area-links { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.area-links.center { justify-content: center; }
.area-links a { display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1.1rem; background: #fff; border: 1.5px solid var(--ink); border-radius: var(--radius); color: var(--ink); font-weight: 800; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; transition: background-color .2s, color .2s; }
.area-links a::before { content: ""; width: 8px; height: 8px; background: var(--brand); }
.area-links a:hover { background: var(--ink); color: #fff; }
.section-dark .area-links a { background: transparent; border-color: var(--line-dark); color: #fff; }
.section-dark .area-links a:hover { background: var(--brand); border-color: var(--brand); color: var(--ink); }

/* Legal */
.legal { max-width: 820px; }

/* 404 */
.error-page { text-align: center; padding-block: clamp(72px, 12vw, 160px); }
.error-code { font-size: clamp(6rem, 4rem + 10vw, 12rem); font-weight: 900; font-stretch: 120%; line-height: .9; color: transparent; -webkit-text-stroke: 3px var(--ink); margin-bottom: 1rem; }
.error-page p { color: var(--muted); max-width: 52ch; margin-inline: auto; }
.error-links { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2rem; }

/* Footer */
.site-footer { background: #0f1114; color: var(--muted-dark); font-size: .98rem; }
.footer-main { padding-block: clamp(48px, 6vw, 72px) 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr; gap: 2.5rem; }
.footer-grid.has-areas { grid-template-columns: 1.3fr 1fr 1fr .9fr 1.3fr; }
@media (max-width: 991px) { .footer-grid, .footer-grid.has-areas { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 575px) { .footer-grid, .footer-grid.has-areas { grid-template-columns: 1fr; } }
.footer-logo { display: inline-block; background: #fff; padding: 12px 16px; border-radius: var(--radius); margin-bottom: 1.25rem; }
.footer-logo img { width: 150px; }
.footer-title { color: #fff; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 800; margin-bottom: 1.1rem; display: flex; align-items: center; gap: .5rem; }
.footer-title::before { content: ""; width: 8px; height: 8px; background: var(--brand); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.site-footer a { color: #e4e7ea; text-decoration: none; }
.site-footer a:hover { color: var(--brand); }
.site-footer address { font-style: normal; display: grid; gap: .6rem; }
.footer-bottom { border-top: 1px solid var(--line-dark); margin-top: clamp(40px, 6vw, 64px); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .85rem; }

/* Mobile call bar */
.mobile-cta { display: none; }
@media (max-width: 767px) {
  .mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); background: var(--ink); border-top: 3px solid var(--brand); }
  .mobile-cta .btn { min-height: 48px; padding-inline: .5rem; font-size: .85rem; }
  .mobile-cta .btn-dark { background: var(--ink-3); }
  body { padding-bottom: 74px; }
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.section-cta { margin-top: clamp(36px, 4vw, 56px); text-align: center; }

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

/* Header dropdowns */
.has-dropdown > a { padding-right: .3rem; }
.dropdown-toggle { width: 26px; height: 36px; margin-right: .45rem; padding: 0; display: grid; place-items: center; border: 0; background: transparent; color: var(--ink); cursor: pointer; border-radius: var(--radius); }
.dropdown-toggle:hover { background: var(--concrete); }
.dropdown-toggle svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.has-dropdown.is-open > .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown { position: absolute; top: 100%; left: 0; min-width: 360px; padding-top: 14px; z-index: 70; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; }
.dropdown-areas { min-width: 440px; }
.has-dropdown.is-open > .dropdown { opacity: 1; visibility: visible; transform: none; }
@media (min-width: 1081px) and (hover: hover) {
  .has-dropdown:hover > .dropdown { opacity: 1; visibility: visible; transform: none; }
  .has-dropdown:hover > .dropdown-toggle svg { transform: rotate(180deg); }
}
.dropdown-panel { background: #fff; border-top: 4px solid var(--brand); box-shadow: 0 30px 60px -20px rgba(21, 24, 28, .35), 0 0 0 1px var(--line); padding: .5rem; }
.dropdown-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.dropdown-areas .dropdown-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dropdown-list a { display: block; padding: .8rem 1rem; color: var(--ink); text-decoration: none; border-left: 3px solid transparent; transition: background-color .15s, border-color .15s; }
.dropdown-list strong { display: block; font-size: .95rem; font-weight: 800; line-height: 1.25; }
.dropdown-list span { display: block; margin-top: .2rem; font-size: .84rem; line-height: 1.4; color: var(--muted); }
.dropdown-list a:hover, .dropdown-list a[aria-current] { background: var(--concrete); border-left-color: var(--brand); }
.dropdown-all { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: .5rem; padding: .9rem 1rem; background: var(--ink); color: #fff; text-decoration: none; font-weight: 800; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; transition: background-color .15s, color .15s; }
.dropdown-all:hover { background: var(--brand); color: var(--ink); }

@media (max-width: 1080px) {
  .dropdown-toggle { width: 48px; height: 48px; margin: 0; color: #fff; }
  .dropdown-toggle:hover { background: var(--ink-3); }
  .dropdown-toggle svg { width: 18px; height: 18px; }
  .dropdown, .dropdown-areas { position: static; min-width: 0; width: 100%; padding: 0 0 .9rem; display: none; opacity: 1; visibility: visible; transform: none; transition: none; }
  .has-dropdown.is-open > .dropdown { display: block; }
  .dropdown-panel { background: var(--ink-2); border-top: 0; border-left: 3px solid var(--brand); box-shadow: none; padding: .25rem 0; }
  .dropdown-areas .dropdown-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dropdown-list a { color: #fff; padding: .75rem 1rem; }
  .dropdown-list strong { font-size: .95rem; font-weight: 600; }
  .dropdown-list span { display: none; }
  .dropdown-list a:hover, .dropdown-list a[aria-current] { background: var(--ink-3); }
  .dropdown-all { margin: .25rem 0 0; background: transparent; color: var(--brand); }
  .dropdown-all:hover { background: var(--ink-3); color: var(--brand); }
}

.card-body .link-arrow { display: block; border-bottom: 0; padding-bottom: 0; line-height: 1.9; text-decoration: underline; text-decoration-color: var(--brand); text-decoration-thickness: 3px; text-underline-offset: 7px; }
.card-body .link-arrow svg { display: inline-block; vertical-align: -3px; margin-left: .3rem; }
.nowrap { white-space: nowrap; }
