/* =========================================================
   Lighthouse Title — shared styles
   Palette: blues + whites, one warm "beam" accent (the light)
   Display: Newsreader  ·  Body/UI: Source Sans 3
   ========================================================= */

:root {
  /* color */
  --navy-900: #07182e;
  --navy-800: #0b2340;
  --navy-700: #123a63;
  --blue-600: #1c5a93;
  --blue-500: #2a6cab;
  --blue-400: #5c90c2;
  --sky-100:  #e8f1fa;
  --sky-50:   #f3f8fd;
  --white:    #ffffff;
  --paper:    #fbfcfe;
  --beam:     #f2c572;   /* the lighthouse light — used sparingly */
  --beam-deep:#e0a945;
  --ink:      #0e2238;
  --ink-soft: #46607c;
  --line:     #d3e0ee;
  --line-soft:#e6eef7;

  /* type */
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* spacing + shape */
  --wrap: 1180px;
  --radius: 14px;
  --radius-sm: 9px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow: 0 24px 60px -28px rgba(7, 24, 46, 0.45);
  --shadow-soft: 0 12px 34px -22px rgba(7, 24, 46, 0.4);
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;             /* guard against any element overflowing the viewport width */
  overflow-wrap: break-word;    /* let long words in display headings wrap on narrow screens */
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--navy-800);
}

p { margin: 0 0 1rem; }
a { color: var(--blue-600); text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 28px; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--blue-400);
}
.eyebrow.on-dark { color: var(--beam); }
.eyebrow.on-dark::before { background: var(--beam); opacity: 0.7; }

.lede { font-size: 1.15rem; color: var(--ink-soft); line-height: 1.65; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 12px 26px -14px rgba(28, 90, 147, 0.85);
}
.btn-primary:hover { background: var(--blue-500); transform: translateY(-2px); }
.btn-light {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--line);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255,255,255,0.6); }

/* =========================================================
   Header / nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 252, 254, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header.on-dark {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand .mark { width: 40px; height: 42px; flex: none; background: url(logo/lighthouse-mark.svg) center/contain no-repeat; }
.on-dark .brand .mark { background-image: url(logo/lighthouse-mark-dark.svg); }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand .name {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--navy-800);
}
.brand .sub {
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}
.on-dark .brand .name { color: var(--white); }
.on-dark .brand .sub { color: var(--blue-400); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a.navlink {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
}
.nav-links a.navlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--blue-500);
  transition: width 0.3s var(--ease);
}
.nav-links a.navlink:hover::after,
.nav-links a.navlink[aria-current="page"]::after { width: 100%; }
.nav-links a.navlink[aria-current="page"] { color: var(--navy-800); }
.on-dark .nav-links a.navlink { color: rgba(255, 255, 255, 0.78); }
.on-dark .nav-links a.navlink:hover,
.on-dark .nav-links a.navlink[aria-current="page"] { color: var(--white); }
.on-dark .nav-links a.navlink::after { background: var(--beam); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-800); margin: 5px 0; transition: 0.3s var(--ease); }
.on-dark .nav-toggle span { background: var(--white); }

/* =========================================================
   Hero (home)
   ========================================================= */
.hero {
  position: relative;
  background: radial-gradient(120% 130% at 78% -10%, var(--navy-700) 0%, var(--navy-800) 38%, var(--navy-900) 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
/* the signature: a sweeping beam of light from the lantern */
.hero .beam {
  position: absolute;
  top: -18%;
  right: 4%;
  width: 70vw;
  height: 150%;
  background: conic-gradient(from 205deg at 100% 8%,
              transparent 0deg,
              rgba(242, 197, 114, 0.0) 18deg,
              rgba(242, 197, 114, 0.16) 30deg,
              rgba(242, 197, 114, 0.05) 40deg,
              transparent 52deg);
  filter: blur(2px);
  transform-origin: 100% 8%;
  animation: sweep 14s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -1;
}
.hero .glow {
  position: absolute;
  top: -60px; right: 6%;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--beam);
  box-shadow: 0 0 30px 12px rgba(242, 197, 114, 0.55), 0 0 90px 30px rgba(242,197,114,0.22);
  z-index: -1;
}
@keyframes sweep {
  0%   { transform: rotate(-7deg); opacity: 0.85; }
  100% { transform: rotate(6deg); opacity: 1; }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  padding-block: clamp(72px, 11vw, 132px);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.9rem, 6vw, 5rem);
  font-weight: 480;
  letter-spacing: -0.02em;
  margin: 1.4rem 0 0;
}
.hero h1 .accent { font-style: italic; color: var(--beam); }
.hero p.lede { color: rgba(255, 255, 255, 0.8); max-width: 44ch; margin-top: 1.4rem; }
.hero-actions { display: flex; gap: 0.9rem; margin-top: 2.2rem; flex-wrap: wrap; }

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(6px);
}
.hero-card h3 { color: var(--white); font-size: 1.2rem; font-weight: 500; }
.hero-card .row { display: flex; align-items: baseline; gap: 0.8rem; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.hero-card .row:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-card .row .step { font-family: var(--display); font-size: 0.95rem; color: var(--beam); width: 26px; flex: none; }
.hero-card .row .txt { font-size: 0.95rem; color: rgba(255,255,255,0.82); }
.hero-card .row .txt b { color: #fff; font-weight: 600; display: block; }

.trustbar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 22px;
}
.trustbar .wrap { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: space-between; }
.trustbar span.label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-400); }
.trustbar ul { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.trustbar li { color: rgba(255,255,255,0.72); font-size: 0.92rem; display: flex; align-items: center; gap: 0.5rem; }
.trustbar li svg { width: 15px; height: 15px; color: var(--beam); }

/* =========================================================
   Generic sections
   ========================================================= */
.section { padding-block: clamp(64px, 9vw, 116px); }
.section.tint { background: var(--sky-50); }
.section.tint-2 { background: var(--sky-100); }
.section-head { max-width: 640px; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-top: 1rem; }
.section-head p { margin-top: 1rem; }

/* feature grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--line); }
.card .ico {
  width: 46px; height: 46px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--sky-100);
  color: var(--blue-600);
  margin-bottom: 18px;
}
.card .ico svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.card p { color: var(--ink-soft); font-size: 0.97rem; margin: 0; }

/* numbered process */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 54px; counter-reset: step; }
.step-item { position: relative; padding-top: 28px; border-top: 2px solid var(--line); }
.step-item .num {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--blue-400);
  line-height: 1;
  font-weight: 480;
}
.step-item h3 { font-size: 1.2rem; margin: 0.7rem 0 0.5rem; }
.step-item p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* split / why */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.checklist { list-style: none; margin: 28px 0 0; padding: 0; }
.checklist li { display: flex; gap: 0.9rem; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.checklist li:last-child { border-bottom: 0; }
.checklist .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--sky-100); color: var(--blue-600); display: grid; place-items: center; }
.checklist .tick svg { width: 14px; height: 14px; }
.checklist b { display: block; color: var(--navy-800); font-weight: 600; }
.checklist span.d { color: var(--ink-soft); font-size: 0.95rem; }

.panel-dark {
  background: radial-gradient(120% 140% at 85% 0%, var(--navy-700), var(--navy-800) 55%, var(--navy-900));
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.panel-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(from 200deg at 92% 6%, transparent 22deg, rgba(242,197,114,0.12) 34deg, transparent 46deg);
  pointer-events: none;
}
.panel-dark .eyebrow { position: relative; }
.panel-dark .stat { display: flex; align-items: baseline; gap: 0.6rem; margin-top: 22px; position: relative; }
.panel-dark .stat .big { font-family: var(--display); font-size: 3rem; color: var(--beam); line-height: 1; }
.panel-dark .stat .lab { color: rgba(255,255,255,0.78); font-size: 0.95rem; }

/* CTA band */
.cta-band { background: var(--navy-800); color: #fff; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-block: 64px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); max-width: 18ch; }
.cta-band p { color: rgba(255,255,255,0.74); margin: 0.6rem 0 0; max-width: 40ch; }

/* =========================================================
   About page
   ========================================================= */
.page-hero {
  background: radial-gradient(120% 140% at 80% -20%, var(--navy-700), var(--navy-800) 45%, var(--navy-900));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(from 202deg at 90% 4%, transparent 24deg, rgba(242,197,114,0.13) 34deg, transparent 44deg);
  pointer-events: none;
}
.page-hero .wrap { padding-block: clamp(70px, 10vw, 120px); position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 480; margin-top: 1.2rem; max-width: 16ch; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 52ch; margin-top: 1.3rem; font-size: 1.12rem; }

.prose { max-width: 70ch; }
.prose h2 { font-size: 1.9rem; margin: 2.4rem 0 0.8rem; }
.prose p { color: var(--ink-soft); font-size: 1.05rem; }
.prose p strong { color: var(--navy-800); }

.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 50px; }
.value { padding: 28px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--white); }
.value .k { font-family: var(--display); font-size: 1.3rem; color: var(--navy-800); }
.value p { color: var(--ink-soft); font-size: 0.97rem; margin: 0.5rem 0 0; }

.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.fact { text-align: left; padding: 24px; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.fact .n { font-family: var(--display); font-size: 2.5rem; color: var(--blue-600); line-height: 1; }
.fact .l { color: var(--ink-soft); font-size: 0.9rem; margin-top: 8px; }

/* team */
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; margin-top: 50px; }
.member {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--line); }
.member .photo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--sky-100), var(--sky-50));
  display: grid;
  place-items: center;
  color: var(--blue-400);
  margin: 0 auto 18px;
  overflow: hidden;
}
.member .photo svg { width: 44px; height: 44px; }
.member .photo img { width: 100%; height: 100%; object-fit: cover; }
.member h3 { font-size: 1.2rem; }
.member .role {
  display: block;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin: 5px 0 10px;
}
.member p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* =========================================================
   Order page
   ========================================================= */
.order-layout { display: grid; grid-template-columns: 1fr 330px; gap: 48px; align-items: start; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; }
.form-card .form-head { padding: 30px 34px; border-bottom: 1px solid var(--line-soft); background: var(--sky-50); }
.form-card .form-head h2 { font-size: 1.6rem; }
.form-card .form-head p { margin: 0.4rem 0 0; color: var(--ink-soft); font-size: 0.97rem; }

form.order-form { padding: 8px 34px 34px; }
fieldset { border: 0; margin: 0; padding: 0; }
.fs { padding-block: 26px; border-bottom: 1px solid var(--line-soft); }
.fs:last-of-type { border-bottom: 0; }
.fs > legend, .fs-legend {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-500);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 18px;
}
.fs-legend .n {
  width: 22px; height: 22px; flex: none;
  border-radius: 50%;
  background: var(--blue-600); color: #fff;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 0.78rem;
}

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.col-2 { grid-column: span 2; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--navy-800); }
.field label .req { color: var(--beam-deep); margin-left: 2px; }
.field .hint { font-size: 0.78rem; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--body);
  font-size: 0.96rem;
  color: var(--ink);
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(42, 108, 171, 0.14);
}
.field input:user-invalid, .field select:user-invalid {
  border-color: #c0453b;
  box-shadow: 0 0 0 3px rgba(192, 69, 59, 0.12);
}
.check-row { display: flex; gap: 0.7rem; align-items: flex-start; padding: 4px 0; }
.check-row input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--blue-600); flex: none; }
.check-row label { font-weight: 500; color: var(--ink); font-size: 0.94rem; }

.form-foot { padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.form-foot .note { font-size: 0.84rem; color: var(--ink-soft); max-width: 42ch; }

/* aside summary */
.order-aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.aside-card { border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 24px; background: var(--white); }
.aside-card.dark { background: radial-gradient(130% 140% at 90% 0%, var(--navy-700), var(--navy-800) 60%, var(--navy-900)); color: #fff; border: 0; position: relative; overflow: hidden; }
.aside-card.dark::after { content:""; position:absolute; inset:0; background: conic-gradient(from 200deg at 92% 6%, transparent 24deg, rgba(242,197,114,0.13) 34deg, transparent 44deg); }
.aside-card h3 { font-size: 1.15rem; margin-bottom: 12px; position: relative; }
.aside-card.dark h3 { color: #fff; }
.aside-card ul { list-style: none; margin: 0; padding: 0; position: relative; }
.aside-card li { display: flex; gap: 0.7rem; padding: 9px 0; font-size: 0.92rem; color: var(--ink-soft); align-items: flex-start; }
.aside-card.dark li { color: rgba(255,255,255,0.82); }
.aside-card li svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--blue-500); }
.aside-card.dark li svg { color: var(--beam); }
.aside-card .contact-line { font-size: 0.95rem; color: #fff; position: relative; margin-top: 6px; }
.aside-card .contact-line a { color: var(--beam); }

/* success state */
.order-success {
  display: none;
  text-align: center;
  padding: 56px 34px;
}
.order-success.show { display: block; animation: rise 0.5s var(--ease); }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.order-success .seal {
  width: 72px; height: 72px; margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--sky-100);
  display: grid; place-items: center;
  color: var(--blue-600);
}
.order-success .seal svg { width: 34px; height: 34px; }
.order-success h2 { font-size: 1.9rem; }
.order-success p { color: var(--ink-soft); max-width: 46ch; margin-inline: auto; }
.order-success .ref { display: inline-block; margin: 18px 0; font-family: var(--display); font-size: 1.4rem; color: var(--navy-800); letter-spacing: 0.04em; background: var(--sky-50); border: 1px dashed var(--line); border-radius: var(--radius-sm); padding: 10px 22px; }

.form-error {
  display: none;
  margin: 0 34px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: #fdecea;
  border: 1px solid #f3c0bb;
  color: #8a2c24;
  font-size: 0.92rem;
}
.form-error.show { display: block; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding-block: 64px 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.site-footer .brand .name { color: #fff; }
.site-footer .brand .sub { color: var(--blue-400); }
.site-footer .brand .mark { background-image: url(logo/lighthouse-mark-dark.svg); }
.footer-blurb { margin-top: 16px; font-size: 0.94rem; max-width: 30ch; color: rgba(255,255,255,0.6); }
.footer-col h4 { font-family: var(--body); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-400); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.72); font-size: 0.94rem; margin: 0 0 10px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom .disclaimer { max-width: 70ch; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-card { max-width: 460px; }
  .grid-3, .steps { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .order-layout { grid-template-columns: 1fr; }
  .order-aside { position: static; }
  .values, .facts { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px 28px 18px;
  }
  .on-dark .nav-links.open { background: var(--navy-800); }
  .nav-links.open a.navlink { padding: 14px 0; border-bottom: 1px solid var(--line-soft); width: 100%; }
  .on-dark .nav-links.open a.navlink { border-bottom-color: rgba(255,255,255,0.1); }
  .nav-links.open .btn { margin-top: 12px; justify-content: center; }
  .grid-3, .steps, .values, .facts { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .field-grid { grid-template-columns: 1fr; }
  .field.col-2 { grid-column: span 1; }
  form.order-form, .form-card .form-head { padding-inline: 22px; }
  .form-error { margin-inline: 22px; }
  .cta-band .wrap { padding-block: 48px; }
}

/* accessibility */
:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--beam-deep);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
  .hero .beam { animation: none; transform: rotate(0deg); }
}
