/* =========================================================
   Hanss Retail Ltd — Styles
   System fonts only. No external assets. No frameworks.
   ========================================================= */

:root {
  --navy-900: #0b1f3b;
  --navy-800: #122a4f;
  --navy-700: #1a3763;
  --navy-600: #234677;
  --gold-500: #d9a93a;
  --gold-400: #e5bc5c;
  --gold-600: #b8862a;
  --off-white: #faf8f4;
  --paper: #ffffff;
  --grey-100: #f2f0ec;
  --grey-200: #e6e3dc;
  --grey-300: #d3cfc5;
  --grey-500: #8a8578;
  --grey-700: #5a564c;
  --ink: #16213a;
  --success-bg: #eaf6ec;
  --success-text: #1c5e2b;
  --error-bg: #fbeaea;
  --error-text: #9a2020;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(11, 31, 59, 0.06), 0 1px 1px rgba(11, 31, 59, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 31, 59, 0.10), 0 2px 8px rgba(11, 31, 59, 0.06);
  --shadow-lg: 0 20px 48px rgba(11, 31, 59, 0.16), 0 6px 16px rgba(11, 31, 59, 0.08);
  --max-width: 1180px;
  --nav-height: 76px;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: Georgia, "Segoe UI", "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 12px);
}

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

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--navy-900);
}

p { margin: 0 0 1em; }

ul { padding-left: 0; list-style: none; margin: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--navy-900);
  color: var(--off-white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s ease;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  top: 12px;
}

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-200);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(250, 248, 244, 0.98);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  color: var(--navy-900);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
}
.brand-name-full { display: inline; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-800);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { background: var(--grey-100); }
.nav-links a.nav-cta {
  background: var(--navy-900);
  color: var(--off-white);
  margin-left: 8px;
}
.nav-links a.nav-cta:hover { background: var(--navy-700); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-300);
  background: var(--paper);
  cursor: pointer;
}
.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-900);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after { transform: translateY(-6px) rotate(-45deg); }

.nav-backdrop {
  display: none;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-400); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  border-color: rgba(250, 248, 244, 0.5);
  color: var(--off-white);
}
.btn-secondary:hover { background: rgba(250, 248, 244, 0.12); border-color: var(--off-white); }
.btn-outline {
  background: transparent;
  border-color: var(--navy-900);
  color: var(--navy-900);
}
.btn-outline:hover { background: var(--navy-900); color: var(--off-white); }
.btn-block { width: 100%; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 45%, var(--navy-700) 100%);
  color: var(--off-white);
  padding: 84px 0 96px;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.35;
  background: radial-gradient(circle, var(--gold-500) 0%, rgba(217, 169, 58, 0) 70%);
}
.hero::before {
  width: 520px;
  height: 520px;
  top: -220px;
  right: -160px;
  animation: drift-a 22s ease-in-out infinite;
}
.hero::after {
  width: 380px;
  height: 380px;
  bottom: -200px;
  left: -120px;
  opacity: 0.22;
  animation: drift-b 26s ease-in-out infinite;
}
@keyframes drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.06); }
}
@keyframes drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -20px) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 169, 58, 0.16);
  border: 1px solid rgba(217, 169, 58, 0.4);
  color: var(--gold-400);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: status-pulse 2.4s ease-out infinite;
}
@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.hero h1 {
  color: var(--off-white);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero p.lede {
  font-size: 1.15rem;
  color: rgba(250, 248, 244, 0.86);
  max-width: 640px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* =========================================================
   Sections
   ========================================================= */
section {
  padding: 88px 0;
}
.section-off { background: var(--paper); }
.section-heading {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}
.section-heading p {
  color: var(--grey-700);
  font-size: 1.05rem;
  margin: 0;
}
.eyebrow {
  display: inline-block;
  color: var(--gold-600);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.card-grid .service-card:nth-child(3n+1).is-visible { transition-delay: 0ms; }
.card-grid .service-card:nth-child(3n+2).is-visible { transition-delay: 90ms; }
.card-grid .service-card:nth-child(3n+3).is-visible { transition-delay: 180ms; }
.standards-list li:nth-child(2n+1).is-visible { transition-delay: 0ms; }
.standards-list li:nth-child(2n+2).is-visible { transition-delay: 80ms; }

/* =========================================================
   About
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.about-copy p { color: var(--grey-700); font-size: 1.05rem; }
.about-facts {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.about-facts dl {
  margin: 0;
  display: grid;
  gap: 18px;
}
.about-facts .fact + .fact {
  border-top: 1px solid var(--grey-200);
  padding-top: 18px;
}
.about-facts dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-500);
  font-weight: 700;
  margin-bottom: 4px;
}
.about-facts dd {
  margin: 0;
  font-weight: 600;
  color: var(--navy-900);
}

/* =========================================================
   Services
   ========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-500);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.service-card p {
  color: var(--grey-700);
  margin: 0;
  font-size: 0.98rem;
}

/* =========================================================
   Standards
   ========================================================= */
.standards-section {
  background: var(--navy-900);
  color: var(--off-white);
}
.standards-section .section-heading h2 { color: var(--off-white); }
.standards-section .section-heading p { color: rgba(250, 248, 244, 0.75); }
.standards-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}
.standards-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(250, 248, 244, 0.05);
  border: 1px solid rgba(250, 248, 244, 0.14);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-weight: 500;
}
.standards-list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-500);
}

/* =========================================================
   Location
   ========================================================= */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.location-card {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.location-card h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.location-row {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}
.location-row svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold-600);
  margin-top: 3px;
}
.location-row .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey-500);
  font-weight: 700;
  margin-bottom: 2px;
}
.location-row address,
.location-row p {
  margin: 0;
  font-style: normal;
  font-weight: 600;
  color: var(--navy-900);
}
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.hours-badge .status-dot { width: 10px; height: 10px; }
.hours-time {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy-900);
  font-weight: 700;
}
.hours-sub {
  color: var(--grey-700);
  font-size: 0.95rem;
  margin-top: 2px;
}
.location-map-panel {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--off-white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}
.location-map-panel p { color: rgba(250, 248, 244, 0.8); }

.map-visual {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.map-visual:hover,
.map-visual:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.map-visual svg {
  display: block;
  width: 100%;
  height: auto;
}
.map-visual-cta {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.map-visual-cta svg { width: 14px; height: 14px; }

/* =========================================================
   Contact form
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-intro p { color: var(--grey-700); font-size: 1.05rem; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 24px;
}
.contact-detail svg {
  width: 22px;
  height: 22px;
  color: var(--gold-600);
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-detail a {
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row {
  margin-bottom: 22px;
}
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--navy-900);
}
.required-flag {
  color: var(--gold-600);
  font-weight: 700;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  font-size: 1rem;
  font-family: inherit;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
textarea { resize: vertical; min-height: 140px; }
input:hover, select:hover, textarea:hover { border-color: var(--grey-500); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(26, 55, 99, 0.12);
}
input:user-invalid,
select:user-invalid,
textarea:user-invalid {
  border-color: var(--error-text);
}
.field-hint {
  font-size: 0.85rem;
  color: var(--grey-500);
  margin-top: 6px;
}
.field-error {
  display: none;
  font-size: 0.85rem;
  color: var(--error-text);
  margin-top: 6px;
  font-weight: 600;
}
.field-error.is-visible { display: block; }
.form-row.has-error input,
.form-row.has-error select,
.form-row.has-error textarea {
  border-color: var(--error-text);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.checkbox-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--navy-900);
}
.checkbox-row label {
  font-weight: 500;
  margin-bottom: 0;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
  font-weight: 600;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.success { background: var(--success-bg); color: var(--success-text); }
.form-status.error { background: var(--error-bg); color: var(--error-text); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--navy-900);
  color: rgba(250, 248, 244, 0.82);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(250, 248, 244, 0.14);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--off-white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-brand .brand-mark { width: 32px; height: 32px; }
.footer-col h4 {
  color: var(--off-white);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.footer-col address,
.footer-col p {
  font-style: normal;
  margin: 0 0 6px;
  font-size: 0.94rem;
}
.footer-col a {
  color: rgba(250, 248, 244, 0.82);
  text-decoration: none;
}
.footer-col a:hover { color: var(--gold-400); text-decoration: underline; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(250, 248, 244, 0.6);
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--off-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 400;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--navy-700); }
.back-to-top svg { width: 22px; height: 22px; }

/* =========================================================
   Simple pages (privacy / accessibility / thank you / 404)
   ========================================================= */
.page-hero {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: var(--off-white);
  padding: 64px 0;
}
.page-hero h1 { color: var(--off-white); margin-bottom: 10px; }
.page-hero p { color: rgba(250, 248, 244, 0.82); margin: 0; }

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}
.prose h2 {
  margin-top: 2em;
  font-size: 1.4rem;
}
.prose h2:first-of-type { margin-top: 0; }
.prose ul {
  list-style: disc;
  padding-left: 1.4em;
  margin-bottom: 1em;
}
.prose li { margin-bottom: 0.5em; }
.prose p { color: var(--grey-700); }
.prose a { color: var(--navy-800); text-decoration: underline; font-weight: 600; }
.prose strong { color: var(--navy-900); }

.status-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px;
}
.status-page .status-card {
  max-width: 520px;
}
.status-page .status-code {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-600);
  margin-bottom: 8px;
}
.status-page h1 { margin-bottom: 14px; }
.status-page p { color: var(--grey-700); margin-bottom: 28px; }

.thank-you-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--success-bg);
  color: var(--success-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.thank-you-icon svg { width: 36px; height: 36px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .about-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    height: calc(100vh - var(--nav-height));
    width: min(320px, 84vw);
    background: var(--off-white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 6px;
    box-shadow: -12px 0 32px rgba(11, 31, 59, 0.16);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; }
  .nav-links a.nav-cta { margin-left: 0; text-align: center; margin-top: 10px; }
  .nav-backdrop.is-open {
    display: block;
    position: fixed;
    inset: var(--nav-height) 0 0 0;
    background: rgba(11, 31, 59, 0.4);
    z-index: 490;
  }
  .brand-name-full { display: none; }
  section { padding: 64px 0; }
  .hero { padding: 56px 0 72px; }
  .card-grid { grid-template-columns: 1fr; }
  .standards-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row-split { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .about-facts, .location-card, .form-card { padding: 24px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
