/* ==========================================================================
   Geneva Ski Storage — stylesheet
   Premium Swiss alpine concierge aesthetic: warm ivory, near-black
   charcoal, stone-grey neutrals, one restrained alpine accent.
   No build step: plain CSS, custom properties, mobile-first.
   ========================================================================== */

/* -------------------------------------------------------------------------
   0. Self-hosted type — Bricolage Grotesque (display) & Instrument Sans
   (body). Both are open-license (SIL OFL 1.1) Google Fonts, self-hosted
   as .woff so the site makes zero third-party font requests (no
   fonts.googleapis.com / fonts.gstatic.com calls — faster, and avoids
   the GDPR concerns some EU regulators have raised about the Google
   Fonts CDN). License files ship alongside in assets/fonts/.
   ------------------------------------------------------------------------- */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/BricolageGrotesque-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/BricolageGrotesque-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/InstrumentSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/InstrumentSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* -------------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------------- */
:root {
  /* Palette */
  --ivory-50: #fdfcfa;
  --ivory-100: #f6f4ef;
  --ivory-200: #efebe1;
  --stone-100: #e8e4db;
  --stone-200: #d8d3c7;
  --stone-300: #beb8a9;
  --stone-400: #9c9587;
  --stone-500: #7b7568;
  --stone-600: #5c574c;
  --charcoal-900: #15151a;
  --charcoal-800: #1d1d22;
  --charcoal-700: #2a2a2e;
  --charcoal-600: #3c3c41;
  --alpine-600: #3b4a43;
  --alpine-500: #4d5f56;
  --white: #ffffff;

  /* Semantic */
  --bg: var(--ivory-100);
  --bg-raised: var(--ivory-50);
  --bg-inverse: var(--charcoal-900);
  --text: var(--charcoal-900);
  --text-muted: var(--stone-600);
  --text-on-inverse: var(--ivory-100);
  --text-on-inverse-muted: var(--stone-300);
  --border: var(--stone-200);
  --border-strong: var(--stone-300);
  --accent: var(--alpine-600);
  --focus-ring: #1b6ef3;

  /* Type — self-hosted editorial sans (see @font-face above), falling
     back to native system faces if a font fails to load. */
  --font-display: "Bricolage Grotesque", -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Instrument Sans", -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  /* Scale */
  --step-display-xl: clamp(2.6rem, 7vw + 0.5rem, 5.5rem);
  --step-display-lg: clamp(2.1rem, 4.6vw, 3.6rem);
  --step-display-md: clamp(1.6rem, 2.6vw, 2.25rem);
  --step-display-sm: clamp(1.25rem, 1.6vw, 1.5rem);

  /* Layout */
  --content-max: 1240px;
  --gutter: 1.25rem;
  --radius: 3px;
  --shadow-soft: 0 1px 2px rgba(21, 21, 26, 0.04), 0 18px 40px -20px rgba(21, 21, 26, 0.16);
  --shadow-card: 0 1px 0 rgba(21, 21, 26, 0.05), 0 24px 48px -28px rgba(21, 21, 26, 0.22);
  --ease-swiss: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

@media (min-width: 640px) {
  :root { --gutter: 1.75rem; }
}
@media (min-width: 1024px) {
  :root { --gutter: 2.5rem; }
}

/* -------------------------------------------------------------------------
   2. Reset
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
input, select, textarea { font: inherit; color: inherit; }

/* Respect reduced-motion preference throughout */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--charcoal-900); color: var(--ivory-100); }

/* -------------------------------------------------------------------------
   3. Layout helpers
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.section--inverse { background: var(--bg-inverse); color: var(--text-on-inverse); }
.section--raised { background: var(--bg-raised); }
.section--border-top { border-top: 1px solid var(--border); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -3rem;
  background: var(--charcoal-900);
  color: var(--ivory-100);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  z-index: 1000;
  transition: top 0.2s var(--ease-swiss);
}
.skip-link:focus { top: 1rem; }

/* -------------------------------------------------------------------------
   4. Typography
   ------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.section--inverse .eyebrow { color: var(--text-on-inverse-muted); }

.display-xl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-display-xl);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-display-lg);
  line-height: 1.06;
  letter-spacing: -0.015em;
}
.display-md {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-display-md);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.lede {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 38rem;
}
.section--inverse .lede { color: var(--text-on-inverse-muted); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head > .eyebrow { display: block; margin-bottom: 0.9rem; }
.section-head > .display-lg { margin-bottom: 0.9rem; }

/* -------------------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease-swiss), background-color 0.25s var(--ease-swiss), color 0.25s var(--ease-swiss), border-color 0.25s var(--ease-swiss);
  min-height: 48px;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--charcoal-900); color: var(--ivory-100); }
.btn--primary:hover { background: var(--charcoal-700); }
.section--inverse .btn--primary { background: var(--ivory-100); color: var(--charcoal-900); }
.section--inverse .btn--primary:hover { background: var(--white); }

.btn--secondary { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn--secondary:hover { border-color: var(--charcoal-900); background: rgba(21,21,26,0.03); }
.section--inverse .btn--secondary { color: var(--text-on-inverse); border-color: rgba(246,244,239,0.35); }
.section--inverse .btn--secondary:hover { border-color: var(--ivory-100); background: rgba(246,244,239,0.08); }

.btn--block { width: 100%; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }

/* -------------------------------------------------------------------------
   6. Header / navigation
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(246, 244, 239, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s var(--ease-swiss);
}
.site-header[data-scrolled="true"] { box-shadow: var(--shadow-soft); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.6rem;
  width: 100%;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.86rem, 3.4vw, 1.05rem);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  flex: none;
}
.brand__mark {
  width: 28px; height: 28px;
  flex: none;
}
.brand__mark svg { width: 100%; height: 100%; }

.nav-desktop { display: none; }
.nav-desktop__list { display: flex; align-items: center; gap: 1.5rem; }
.nav-desktop__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.2s var(--ease-swiss);
}
.nav-desktop__link:hover, .nav-desktop__link:focus-visible { color: var(--text); }
.nav-desktop__link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--charcoal-900);
  transition: right 0.25s var(--ease-swiss);
}
.nav-desktop__link:hover::after, .nav-desktop__link:focus-visible::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 0.5rem; flex: none; }
@media (min-width: 480px) {
  .header-actions { gap: 0.9rem; }
}

.lang-switch { display: flex; align-items: center; font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; }
.lang-switch a { color: var(--text-muted); padding: 0.3rem 0.4rem; }
.lang-switch a[aria-current="true"] { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.lang-switch__sep { color: var(--border-strong); }

.header-cta { display: none; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius);
}
.menu-toggle svg { width: 22px; height: 22px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 1.5rem var(--gutter) 2.5rem;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s var(--ease-swiss), transform 0.22s var(--ease-swiss), visibility 0.22s;
}
.mobile-nav[data-open="true"] {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-nav__list { display: flex; flex-direction: column; }
.mobile-nav__link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav__cta { margin-top: 1.75rem; }
.mobile-nav__lang { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); font-family: var(--font-display); font-weight: 600; }
.mobile-nav__lang a { font-size: 1rem; color: var(--text-muted); margin-right: 1.25rem; }
.mobile-nav__lang a[aria-current="true"] { color: var(--text); text-decoration: underline; }

@media (min-width: 1180px) {
  .nav-desktop { display: block; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* -------------------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------------------- */
.hero { padding-top: clamp(3rem, 8vw, 6rem); padding-bottom: clamp(3rem, 8vw, 6rem); }
.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.hero__content { max-width: 40rem; }
.hero__kicker { display: inline-block; margin-bottom: 1.25rem; }
.hero__h1 { margin-bottom: 1.3rem; }
.hero__supporting { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-muted); margin-bottom: 2.1rem; max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__trust {
  margin-top: 1.5rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.hero__visual { position: relative; }

@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 0.97fr 1.03fr; }
}

@media (max-width: 959px) {
  .hero__grid { gap: 1.25rem; }
}

/* -------------------------------------------------------------------------
   8. Media frame — houses swappable placeholder SVGs / future photography
   ------------------------------------------------------------------------- */
.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(155deg, var(--ivory-50), var(--stone-100));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.media-frame::before { content: ""; display: block; padding-top: var(--frame-ratio, 118%); }
.media-frame__inner { position: absolute; inset: 0; }
.media-frame__inner img, .media-frame__inner svg { width: 100%; height: 100%; object-fit: cover; }
.media-frame--wide { --frame-ratio: 62%; }
.media-frame--square { --frame-ratio: 100%; }

/* Hero photograph: a landscape source (skis, boots and a locker wall
   in a calm interior) art-directed with a single asset. The crop is
   pushed hard right and zoomed in specifically to keep the window
   and its Geneva skyline/lake view out of frame entirely -- this is
   an illustrative visual, not a photo of the real premises, and it
   should not read as "this exact view/location." That crop is what
   sets the minimum --frame-ratio here (it needs to be this tall to
   have room to exclude the window on any viewport); within that
   constraint it still gets a bit more presence on desktop's
   two-column layout via the grid-column split above. */
.media-frame--photo { --frame-ratio: 118%; }
.media-frame--photo .media-frame__inner img { object-position: 100% 32%; }

/* -------------------------------------------------------------------------
   9. Editorial divided row — shared hairline-divider pattern used by the
   Benefits row and the How It Works steps: a top rule on mobile (stacked),
   a left rule between columns once the grid opens up. No card
   backgrounds, no shadows, no icons -- just typography and a rule,
   repeated as a consistent device across the page.
   ------------------------------------------------------------------------- */
.divided-row {
  display: grid;
  row-gap: clamp(2rem, 4vw, 2.75rem);
  column-gap: 0;
}
.divided-row > * {
  border-top: 1px solid var(--border);
  padding-top: clamp(1.5rem, 3vw, 1.85rem);
}
.divided-row > *:first-child { border-top: 0; padding-top: 0; }

@media (min-width: 700px) {
  .divided-row { grid-template-columns: repeat(2, 1fr); }
  .divided-row > * { border-top: 0; padding-top: 0; border-left: 1px solid var(--border); padding-left: clamp(1.5rem, 3vw, 2rem); }
  .divided-row > *:nth-child(odd) { border-left: 0; padding-left: 0; }
  .divided-row > *:nth-child(n+3) { border-top: 1px solid var(--border); padding-top: clamp(1.5rem, 3vw, 1.85rem); }
}
@media (min-width: 1080px) {
  .divided-row { grid-template-columns: repeat(4, 1fr); }
  .divided-row > * { border-left: 1px solid var(--border); padding-left: clamp(1.5rem, 3vw, 2rem); border-top: 0; padding-top: 0; }
  .divided-row > *:nth-child(n+3) { border-top: 0; padding-top: 0; }
  .divided-row > *:nth-child(odd) { border-left: 1px solid var(--border); padding-left: clamp(1.5rem, 3vw, 2rem); }
  .divided-row > *:first-child { border-left: 0; padding-left: 0; }
}

/* -------------------------------------------------------------------------
   9a. Benefits
   ------------------------------------------------------------------------- */
.benefit-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.65rem; }
.benefit-card__body { color: var(--text-muted); font-size: 0.98rem; max-width: 20rem; }

/* -------------------------------------------------------------------------
   10. How it works
   ------------------------------------------------------------------------- */
.step-card__number {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--stone-400);
  margin-bottom: 1.1rem;
  letter-spacing: 0.01em;
}
.step-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-bottom: 0.55rem; }
.step-card__body { color: var(--text-muted); font-size: 0.98rem; max-width: 22rem; }

/* -------------------------------------------------------------------------
   10a. Editorial transition band (replaces the old large SVG detail
   break). Restrained: a short headline and one line of supporting copy
   on the existing dark section, with an extremely subtle topographic
   line texture behind the text -- no object illustrations.
   ------------------------------------------------------------------------- */
.transition-band { position: relative; overflow: hidden; text-align: center; }
.transition-band__texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--ivory-100);
  opacity: 0.05;
}
.transition-band__inner { position: relative; max-width: 42rem; margin-inline: auto; }
.transition-band .eyebrow { display: block; margin-bottom: 1rem; }
.transition-band .display-lg { margin-bottom: 1rem; }
.transition-band .lede { margin-inline: auto; }

/* -------------------------------------------------------------------------
   11. Storage section — two typography-led option panels. No photography,
   no icons: scale, whitespace and the shared divided-row rule (see
   section 9) are what tell the two options apart.
   ------------------------------------------------------------------------- */
.storage-grid.divided-row { row-gap: clamp(2.25rem, 4vw, 3rem); }
@media (min-width: 700px) and (max-width: 1079px) {
  /* only two items in this grid: force the 2-column split at the same
     860px breakpoint the section used before, not divided-row's 700px */
  .storage-grid.divided-row { grid-template-columns: 1fr; }
  .storage-grid.divided-row > * { border-top: 1px solid var(--border); padding-top: clamp(1.5rem, 3vw, 1.85rem); border-left: 0; padding-left: 0; }
  .storage-grid.divided-row > *:first-child { border-top: 0; padding-top: 0; }
}
@media (min-width: 860px) {
  .storage-grid.divided-row { grid-template-columns: repeat(2, 1fr); }
  .storage-grid.divided-row > * { border-top: 0; padding-top: 0; border-left: 1px solid var(--border); padding-left: clamp(1.75rem, 3vw, 2.5rem); }
  .storage-grid.divided-row > *:first-child { border-left: 0; padding-left: 0; }
}
.option-panel__index {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--stone-400);
  margin-bottom: 1.25rem;
}
.option-panel__title { margin-bottom: 0.9rem; }
.option-panel__text { color: var(--text-muted); max-width: 30rem; }

.storage-note {
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.summer-banner {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--alpine-600), var(--charcoal-900));
  color: var(--ivory-100);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.summer-banner__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 2vw, 1.5rem); }
.summer-banner__body { color: var(--text-on-inverse-muted); max-width: 36rem; }

/* -------------------------------------------------------------------------
   12. Airport section
   ------------------------------------------------------------------------- */
/* Intro column lost its illustration and is now short text only --
   rebalanced with an uneven column split and vertical centering so it
   sits comfortably beside the taller price-card column instead of
   leaving empty space where the image used to be. */
.airport-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.airport-grid__intro { max-width: 30rem; }
@media (min-width: 960px) {
  .airport-grid { grid-template-columns: 0.85fr 1.15fr; align-items: center; }
}
.airport-cards { display: grid; gap: 1.25rem; }
@media (min-width: 560px) {
  .airport-cards { grid-template-columns: repeat(2, 1fr); }
}
.price-card {
  border: 1px solid rgba(246,244,239,0.18);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(246,244,239,0.04);
}
.price-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.9rem; }
.price-card__amount { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.6rem); letter-spacing: -0.01em; }
.price-card__unit { font-size: 0.85rem; color: var(--text-on-inverse-muted); display: block; margin-top: 0.4rem; }
.price-card__body { margin-top: 1rem; color: var(--text-on-inverse-muted); font-size: 0.95rem; }

.notes-list { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1.75rem; }
.notes-list li { display: flex; gap: 0.65rem; font-size: 0.95rem; color: var(--text-on-inverse-muted); }
.notes-list li::before { content: ""; flex: none; width: 6px; height: 6px; margin-top: 0.5em; border-radius: 50%; background: currentColor; opacity: 0.6; }

.disclaimer { margin-top: 1.75rem; font-size: 0.85rem; color: var(--text-on-inverse-muted); opacity: 0.85; }

/* -------------------------------------------------------------------------
   13. Pricing table
   ------------------------------------------------------------------------- */
.pricing-table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-raised);
  box-shadow: var(--shadow-soft);
  overflow-x: auto;
}
table.pricing-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.pricing-table th, .pricing-table td {
  padding: 1.35rem 1.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.pricing-table thead th {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--ivory-200);
}
.pricing-table tbody tr:last-child td { border-bottom: 0; }
.pricing-table td[scope="row"], .pricing-table th[scope="row"] {
  font-family: var(--font-display);
  font-weight: 700;
}
.pricing-table .duration-name { display: block; font-family: var(--font-display); font-weight: 700; }
.pricing-table .duration-note { display: block; font-size: 0.82rem; color: var(--text-muted); font-weight: 400; margin-top: 0.15rem; }
.pricing-table .amount { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.pricing-table .amount-currency { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); margin-right: 0.25rem; }

.pricing-footnote { margin-top: 1.5rem; font-size: 0.92rem; color: var(--text-muted); }
.pricing-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* -------------------------------------------------------------------------
   14. FAQ (native <details> accordion — zero JS required)
   ------------------------------------------------------------------------- */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon { flex: none; width: 22px; height: 22px; position: relative; }
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--charcoal-900);
  transition: transform 0.25s var(--ease-swiss), opacity 0.25s var(--ease-swiss);
}
.faq-item__icon::before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-item__icon::after { top: 0; left: 50%; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq-item[open] .faq-item__icon::after { opacity: 0; }
.faq-item__answer { padding: 0 0.25rem 1.5rem; color: var(--text-muted); max-width: 42rem; }

/* -------------------------------------------------------------------------
   15. Contact / Storage Request form
   ------------------------------------------------------------------------- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 1020px) {
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
}
.contact-info__email {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  border-bottom: 1px solid var(--border-strong);
}
.contact-info__block { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.contact-info__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 600; }
.contact-info__value { margin-top: 0.35rem; font-size: 1.05rem; }

.request-form {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-card);
}
.form-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 620px) {
  .form-grid--2 { grid-template-columns: repeat(2, 1fr); }
}
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
}
.form-field .optional {
  font-weight: 400;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
}
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--border-strong);
  background: var(--bg-raised);
  border-radius: var(--radius);
  padding: 0.8rem 0.95rem;
  font-size: 1rem;
  min-height: 48px;
  transition: border-color 0.2s var(--ease-swiss), box-shadow 0.2s var(--ease-swiss);
  width: 100%;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--charcoal-900);
  box-shadow: 0 0 0 3px rgba(21,21,26,0.08);
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%235c574c' stroke-width='1.6'><path d='M5 7l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.airport-detail-fields {
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 1.1rem;
  margin-top: -0.25rem;
  background: var(--ivory-200);
}
.airport-detail-fields__note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.airport-detail-fields[hidden] { display: none; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  width: 20px; height: 20px;
  min-height: 0;
  flex: none;
  margin-top: 0.15rem;
  accent-color: var(--charcoal-900);
}

.form-footer { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.form-note { font-size: 0.85rem; color: var(--text-muted); }

.form-status {
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  font-size: 0.95rem;
  display: none;
}
.form-status[data-visible="true"] { display: block; }
.form-status--error { background: #fbeceb; color: #7a2b23; border: 1px solid #eecac6; }

/* honeypot field must stay invisible but present for real users, plain for bots */
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* -------------------------------------------------------------------------
   16. Footer
   ------------------------------------------------------------------------- */
.site-footer { padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem; }
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand .brand { margin-bottom: 0.9rem; }
.footer-brand__tagline { color: var(--text-on-inverse-muted); max-width: 22rem; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-on-inverse-muted);
  margin-bottom: 1rem;
}
.footer-list { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-list a { color: var(--text-on-inverse-muted); transition: color 0.2s var(--ease-swiss); }
.footer-list a:hover { color: var(--text-on-inverse); }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(246,244,239,0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-on-inverse-muted);
}
.footer-lang { display: flex; gap: 0.75rem; }
.footer-lang a { color: var(--text-on-inverse-muted); }
.footer-lang a[aria-current="true"] { color: var(--text-on-inverse); text-decoration: underline; }

/* -------------------------------------------------------------------------
   17. Simple pages (thank-you / 404 / legal)
   ------------------------------------------------------------------------- */
.simple-page { min-height: 55vh; display: flex; align-items: center; }
.simple-page__inner { max-width: 34rem; }
.simple-page__icon { width: 56px; height: 56px; margin-bottom: 1.75rem; color: var(--alpine-600); }
.simple-page__body { margin-top: 1.1rem; color: var(--text-muted); font-size: 1.05rem; }
.simple-page__actions { margin-top: 2.25rem; }

.legal-page { max-width: 42rem; }
.legal-page__updated { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.5rem; }
.legal-page__intro { margin-top: 1.75rem; color: var(--text-muted); }
.legal-section { margin-top: 2.25rem; }
.legal-section__title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-bottom: 0.6rem; }
.legal-section__body { color: var(--text-muted); }

/* -------------------------------------------------------------------------
   18. Misc
   ------------------------------------------------------------------------- */
.divider { height: 1px; background: var(--border); border: 0; margin: 0; }
.stack { display: flex; flex-direction: column; }
.gap-sm { gap: 0.75rem; }
.gap-md { gap: 1.5rem; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

@media print {
  .site-header, .mobile-nav { display: none; }
}
