:root {
  --ink: #0b0c0e;
  --ink-soft: #121417;
  --panel: #181b1f;
  --panel-2: #20242a;
  --paper: #f4f4f1;
  --white: #fff;
  --muted: #aeb3ba;
  --muted-light: #555c64;
  --line: #30353c;
  --yellow: #ffd400;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
  --content: 1180px;
}

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

html { scroll-behavior: smooth; }

html, body { overflow-x: clip; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--yellow);
  color: var(--ink);
  padding: .75rem 1rem;
  font-weight: 800;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.skip-link:focus { top: 0; }

.container { width: min(calc(100% - 2rem), var(--content)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 790px); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 12, 14, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; font-weight: 850; letter-spacing: -.02em; flex: 0 0 auto; }
.brand img { width: 48px; height: 48px; border-radius: 50%; }
.brand span { max-width: 10rem; line-height: 1.1; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  color: var(--white);
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.primary-nav ul { display: flex; align-items: center; gap: .25rem; list-style: none; padding: 0; margin: 0; }
.primary-nav a { display: block; padding: .65rem .7rem; color: #d8dadd; text-decoration: none; font-size: .89rem; font-weight: 700; border-radius: 7px; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--ink); background: var(--yellow); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .75rem 1.15rem;
  border: 2px solid var(--yellow);
  border-radius: var(--radius-sm);
  background: var(--yellow);
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { background: #ffe033; border-color: #ffe033; transform: translateY(-2px); }
.button--outline { background: transparent; color: var(--white); border-color: #626870; }
.button--outline:hover { background: var(--panel-2); border-color: var(--yellow); }
.button--dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.button--dark:hover { background: var(--panel-2); border-color: var(--panel-2); }
.button-group { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

.eyebrow { margin: 0 0 .7rem; color: var(--yellow); font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-weight: 880; line-height: 1.1; letter-spacing: -.035em; text-wrap: balance; }
h1 { font-size: clamp(2.55rem, 7vw, 5.25rem); max-width: 13ch; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: 1.3rem; }
p { margin: 0; }
.lead { color: #d4d7db; font-size: clamp(1.08rem, 2vw, 1.28rem); max-width: 64ch; }
.hero-subhead { color: var(--white); font-size: clamp(1.2rem, 2.4vw, 1.65rem); font-weight: 800; line-height: 1.25; max-width: 34ch; }
.section-heading { display: grid; gap: .8rem; max-width: 760px; margin-bottom: 2.4rem; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }

.hero { position: relative; overflow: hidden; padding: clamp(3.25rem, 8vw, 7rem) 0 4rem; background: radial-gradient(circle at 85% 15%, rgba(255, 212, 0, .12), transparent 30%), var(--ink); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, var(--yellow), transparent); opacity: .5; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.hero-copy { display: grid; gap: 1.35rem; }
.hero-copy .button-group { margin-top: .35rem; }
.hero-brand { position: relative; padding: 1.4rem; background: linear-gradient(145deg, #17191c, #0e0f11); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-brand::before { content: ""; position: absolute; inset: -1px auto -1px -1px; width: 4px; border-radius: var(--radius) 0 0 var(--radius); background: var(--yellow); }
.hero-brand picture { display: block; }
.hero-brand img { width: 100%; aspect-ratio: 3/1; object-fit: contain; }
.hero-note { margin-top: 1rem; color: var(--muted); font-size: .92rem; }

.trust-strip { background: var(--yellow); color: var(--ink); }
.trust-list { min-height: 66px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .55rem 1.25rem; padding: .8rem 0; list-style: none; margin: 0; font-weight: 900; text-align: center; }
.trust-list li:not(:last-child)::after { content: "•"; margin-left: 1.25rem; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--light { background: var(--paper); color: var(--ink); }
.section--dark { background: var(--ink-soft); }
.section--yellow { background: var(--yellow); color: var(--ink); }
.section--compact { padding: 3rem 0; }
.section--light .eyebrow { color: #715f00; }

.grid { display: grid; gap: 1.25rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card { position: relative; display: flex; flex-direction: column; gap: 1rem; padding: clamp(1.4rem, 3vw, 2rem); background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.section--light .card { background: var(--white); border-color: #d8d9d6; }
.card p { color: var(--muted); }
.section--light .card p { color: var(--muted-light); }
.section--light .card-tag { color: #5f5000; border-color: #8f7900; background: #fff6bd; }
.card-link { color: var(--yellow); font-weight: 850; text-decoration-thickness: 2px; text-underline-offset: 4px; margin-top: auto; }
.section--light .card-link { color: #715f00; }
.card-link:hover { text-decoration-thickness: 4px; }
.card-number { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--yellow); color: var(--ink); font-weight: 950; }
.card-tag { align-self: flex-start; padding: .25rem .55rem; background: rgba(255, 212, 0, .12); border: 1px solid rgba(255, 212, 0, .45); border-radius: 999px; color: var(--yellow); font-size: .75rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split-copy { display: grid; gap: 1.2rem; }
.split-copy > p:not(.eyebrow) { color: var(--muted); }
.section--light .split-copy > p:not(.eyebrow) { color: var(--muted-light); }
.feature-panel { padding: clamp(1.5rem, 4vw, 2.5rem); background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-panel--yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.feature-panel address { font-style: normal; font-weight: 750; font-size: 1.08rem; }

.check-list { display: grid; gap: .7rem; padding: 0; margin: 1rem 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.75rem; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .6em; width: 10px; height: 10px; background: var(--yellow); transform: rotate(45deg); }
.section--yellow .check-list li::before, .feature-panel--yellow .check-list li::before { background: var(--ink); }

.step-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.step-list--3 { grid-template-columns: repeat(3, 1fr); }
.step { padding: 1.7rem; background: var(--panel); color: var(--white); }
.step strong { display: block; margin-bottom: .65rem; color: var(--yellow); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.step p { color: var(--muted); }

.reason-list { columns: 2; column-gap: 2rem; padding: 0; margin: 0; list-style: none; }
.reason-list li { break-inside: avoid; padding: .9rem 0 .9rem 1.5rem; border-bottom: 1px solid #d4d5d1; position: relative; }
.reason-list li::before { content: "+"; position: absolute; left: 0; color: #7a6500; font-weight: 950; }

.faq-list { display: grid; gap: .75rem; }
.faq-item { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.section--light .faq-item { background: var(--white); border-color: #d8d9d6; }
.faq-item summary { padding: 1.15rem 3.2rem 1.15rem 1.25rem; cursor: pointer; font-weight: 850; line-height: 1.3; position: relative; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 1.25rem; top: 50%; color: var(--yellow); font-size: 1.5rem; transform: translateY(-50%); }
.section--light .faq-item summary::after { color: #7a6500; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 1.25rem 1.25rem; color: var(--muted); }
.section--light .faq-answer { color: var(--muted-light); }

.page-hero { padding: clamp(3rem, 7vw, 6rem) 0 3.5rem; background: radial-gradient(circle at 85% 10%, rgba(255, 212, 0, .1), transparent 32%); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 17ch; font-size: clamp(2.4rem, 6vw, 4.6rem); }
.page-hero .lead { margin-top: 1.25rem; }
.breadcrumbs { padding: 1rem 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .5rem; color: #6f747b; }
.breadcrumbs a { color: var(--white); }

.prose { color: #d5d7da; }
.prose h2 { margin: 2.5rem 0 1rem; font-size: clamp(1.7rem, 4vw, 2.5rem); }
.prose h3 { margin: 1.8rem 0 .7rem; }
.prose p + p { margin-top: 1rem; }
.prose ul { margin: 1rem 0; padding-left: 1.25rem; }
.prose li + li { margin-top: .4rem; }
.prose a { color: var(--yellow); font-weight: 750; text-underline-offset: 3px; }
.prose .notice { margin: 2rem 0; padding: 1.25rem 1.4rem; background: rgba(255, 212, 0, .08); border-left: 4px solid var(--yellow); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.cta-band { display: grid; grid-template-columns: 1.2fr auto; align-items: center; gap: 2rem; }
.cta-band h2 { max-width: 16ch; }

.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 2rem; align-items: start; }
.contact-details { display: grid; gap: 1rem; position: sticky; top: 105px; }
.contact-details address { font-style: normal; }
.config-value { color: var(--yellow); font-weight: 800; }
.panel-title { font-size: 1.3rem; font-weight: 880; line-height: 1.1; letter-spacing: -.035em; }

.form { display: grid; gap: 1.2rem; padding: clamp(1.3rem, 4vw, 2.5rem); background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label, fieldset legend { font-weight: 800; }
.field small, .helper { color: var(--muted); }
input, select, textarea { width: 100%; border: 1px solid #4d535b; border-radius: 7px; background: #101215; color: var(--white); padding: .78rem .85rem; }
textarea { min-height: 160px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--yellow); outline: 2px solid rgba(255, 212, 0, .22); }
fieldset { border: 0; padding: 0; margin: 0; }
.radio-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: .55rem; }
.radio-label { display: flex; align-items: center; gap: .45rem; padding: .65rem .8rem; border: 1px solid #4d535b; border-radius: 7px; cursor: pointer; }
.radio-label:has(input:checked) { border-color: var(--yellow); background: rgba(255, 212, 0, .08); }
.radio-label input { width: auto; accent-color: var(--yellow); }

.site-footer { padding: 4rem 0 6rem; background: #070809; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .75fr .75fr; gap: 2.5rem; }
.footer-brand { display: grid; gap: 1rem; }
.footer-brand .brand { width: fit-content; }
.footer-brand address { color: var(--muted); font-style: normal; }
.opening-hours { margin-top: .35rem; }
.opening-hours h3 { margin-bottom: .75rem; }
.hours-list { display: grid; gap: .35rem; margin: 0; color: var(--muted); }
.hours-list > div { display: grid; grid-template-columns: minmax(9.5rem, 1fr) auto; gap: .75rem; }
.hours-list dt, .hours-list dd { margin: 0; }
.hours-list dd { font-variant-numeric: tabular-nums; white-space: nowrap; }
.feature-panel--yellow .hours-list { color: var(--ink); }
.footer-heading { margin-bottom: .8rem; color: var(--white); font-weight: 850; }
.footer-links { display: grid; gap: .45rem; padding: 0; margin: 0; list-style: none; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); color: #82878e; font-size: .85rem; }

.mobile-actions { display: none; }

.status-page { min-height: 65vh; display: grid; place-items: center; text-align: center; }
.status-page .narrow { display: grid; justify-items: center; gap: 1.25rem; }
.status-code { color: var(--yellow); font-weight: 950; letter-spacing: .12em; }

@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .primary-nav { position: absolute; top: calc(100% + 1px); left: 0; right: 0; background: var(--ink); border-bottom: 1px solid var(--line); padding: .75rem 1rem 1rem; display: none; }
  .primary-nav[data-open="true"] { display: block; }
  .primary-nav ul { width: min(100%, var(--content)); margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; }
  .primary-nav a { padding: .8rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-brand { max-width: 680px; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .step-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .brand span { font-size: .9rem; }
  .hero { padding-top: 3rem; }
  .hero-brand { padding: .8rem; }
  .trust-list { display: grid; gap: .25rem; padding: .8rem 0; }
  .trust-list li:not(:last-child)::after { content: none; }
  .grid--2, .grid--3, .split, .contact-layout, .footer-grid, .cta-band { grid-template-columns: 1fr; }
  .step-list { grid-template-columns: 1fr; }
  .reason-list { columns: 1; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .contact-details { position: static; }
  .mobile-actions { position: fixed; z-index: 60; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: repeat(3, 1fr); background: #090a0c; border-top: 1px solid var(--line); padding: .45rem max(.45rem, env(safe-area-inset-right)) calc(.45rem + env(safe-area-inset-bottom)) max(.45rem, env(safe-area-inset-left)); }
  .mobile-actions a { display: grid; justify-items: center; gap: .1rem; padding: .35rem; color: var(--white); text-decoration: none; font-size: .72rem; font-weight: 850; border-radius: 6px; }
  .mobile-actions a:hover { background: var(--panel-2); color: var(--yellow); }
  .mobile-actions strong { color: var(--yellow); font-size: 1.05rem; line-height: 1; }
  .site-footer { padding-bottom: 3rem; }
}

@media (max-width: 430px) {
  .container, .narrow { width: min(calc(100% - 1.25rem), var(--content)); }
  .nav-wrap { min-height: 70px; gap: .5rem; }
  .brand { gap: .55rem; }
  .brand img { width: 44px; height: 44px; }
  .brand span { max-width: 8.5rem; font-size: .82rem; }
  .nav-toggle { width: 44px; height: 44px; flex: 0 0 auto; }
  h1 { font-size: clamp(2.15rem, 12vw, 2.7rem); overflow-wrap: anywhere; }
  .page-hero h1 { font-size: clamp(2.1rem, 11vw, 2.6rem); }
  .section { padding-block: 3.5rem; }
  .card, .feature-panel, .form { padding: 1.2rem; }
  .primary-nav ul { grid-template-columns: 1fr; }
  .button-group { display: grid; }
  .button-group .button { width: 100%; }
  .hours-list > div { grid-template-columns: 1fr; gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
