/* ============================================================
   11 DIAMONDS MEDIA — DESIGN SYSTEM
   Brand DNA derived directly from the official SVG mark:
     • off-white  #F0ECE4
     • deep sea   #1A5F7A
     • ice blue   #ABE1FF
     • ink        #080808
     • Helvetica Light, extreme letter-spacing
     • hairline rules + diamond glyph as structural device
   ============================================================ */

/* ---------- 1. RESET ---------- */

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

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ol, ul {
  margin: 0;
  padding: 0;
}

ol, ul { list-style: none; }

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

img { height: auto; }

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button { font: inherit; cursor: pointer; }

::selection {
  background: var(--sea);
  color: var(--bone);
}

/* ---------- 2. TOKENS ---------- */

:root {
  /* Colour — derived from brand SVGs */
  --ink:        #080808;
  --ink-soft:   #1a2230;
  --navy:       #0B1B2B;
  --bone:       #F0ECE4;     /* primary bg, brand off-white */
  --paper:      #F7F4ED;     /* elevated bg */
  --shell:      #E5DFD3;     /* warm pale */
  --sea:        #1A5F7A;     /* brand deep sea — primary accent */
  --sea-deep:   #133C4E;     /* darker variant for text */
  --horizon:    #ABE1FF;     /* brand ice — light moments only */
  --sun:        #C9A35E;     /* warm gold — used once or twice */

  --rule:        rgba(26, 95, 122, 0.22);
  --rule-strong: rgba(26, 95, 122, 0.45);
  --rule-soft:   rgba(11, 27, 43, 0.10);

  /* Type */
  --font-display:    'Italiana', 'Cormorant Garamond', Georgia, serif;
  --font-structural: 'Geist', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, system-ui, sans-serif;
  --font-body:       'Geist', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, system-ui, sans-serif;

  /* Fluid scale */
  --t-xs:   clamp(10.5px, 0.15vw + 10px, 11.5px);
  --t-sm:   clamp(12px,   0.2vw + 11.5px, 13px);
  --t-base: clamp(15px,   0.3vw + 14px,   16.5px);
  --t-md:   clamp(17px,   0.4vw + 16px,   19px);
  --t-lg:   clamp(20px,   0.6vw + 18px,   24px);
  --t-xl:   clamp(26px,   1.2vw + 22px,   34px);
  --t-2xl:  clamp(34px,   2vw + 28px,     48px);
  --t-3xl:  clamp(44px,   3.4vw + 28px,   72px);
  --t-hero: clamp(40px,   8vw + 12px,     128px);

  /* Layout */
  --container: 1320px;
  --gutter:    clamp(20px, 4vw, 56px);
  --section:   clamp(96px, 12vw, 176px);
  --header-h:  72px;

  /* Motion */
  --ease-out:  cubic-bezier(.2, .7, .2, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
  --dur-slow:  900ms;
  --dur-med:   600ms;
  --dur-fast:  220ms;
}

/* ---------- 3. BASE ---------- */

html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: var(--t-base);
  font-weight: 300;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv01", "calt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100svh;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--sea);
  color: var(--bone);
  padding: 8px 14px;
  font-size: var(--t-sm);
  z-index: 1000;
}
.skip-link:focus { left: 8px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.italic {
  font-family: var(--font-display);
  font-style: normal; /* Italiana is already display-cut */
  font-weight: 400;
  letter-spacing: 0;
}

/* ---------- 4. HEADER ----------
   Two states:
   • Initial (over the cinematic hero video): transparent, light text.
   • Scrolled (over the cream content): bone backdrop, sea-deep text. */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 50;
  background: transparent;
  transition: background var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out),
              backdrop-filter var(--dur-med) var(--ease-out);
  border-bottom: 1px solid transparent;
}

/* Hero state — header colours go light, mark uses ice-blue */
.site-header:not(.is-scrolled) .brand-wordmark { color: var(--horizon); }
.site-header:not(.is-scrolled) .brand-mark .diamond-fill { fill: var(--horizon); }
.site-header:not(.is-scrolled) .brand-mark .diamond-stroke { stroke: var(--horizon); }
.site-header:not(.is-scrolled) .primary-nav { color: rgba(240, 236, 228, 0.85); }
.site-header:not(.is-scrolled) .primary-nav a:hover { color: var(--horizon); }
.site-header:not(.is-scrolled) .cta-link {
  color: var(--bone);
  border-color: rgba(240, 236, 228, 0.45);
}
.site-header:not(.is-scrolled) .cta-link:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}

.site-header.is-scrolled {
  background: rgba(240, 236, 228, 0.82);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--rule);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gutter);
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.brand-mark .diamond-fill { fill: var(--sea); }
.brand-mark .diamond-stroke {
  fill: none;
  stroke: var(--sea);
  stroke-width: 1.4;
}

.brand-wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
  color: var(--sea-deep);
}
.brand-line-1 {
  font-family: var(--font-structural);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
}
.brand-line-2 {
  font-family: var(--font-structural);
  font-size: 8.5px;
  font-weight: 300;
  letter-spacing: 0.62em;
  padding-left: 0.62em;     /* visually centred with line-1 due to tracking */
  opacity: 0.55;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: var(--font-structural);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sea-deep);
}
.primary-nav a {
  position: relative;
  padding: 6px 0;
  transition: color var(--dur-fast) var(--ease-out);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-med) var(--ease-out);
}
.primary-nav a:hover { color: var(--sea); }
.primary-nav a:hover::after { transform: scaleX(1); }

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-structural);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sea-deep);
  padding: 12px 18px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  transition: background var(--dur-med) var(--ease-out),
              color var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out);
}
.cta-link svg { width: 22px; height: 11px; transition: transform var(--dur-med) var(--ease-out); }
.cta-link:hover {
  background: var(--sea);
  color: var(--bone);
  border-color: var(--sea);
}
.cta-link:hover svg { transform: translateX(4px); }

/* ---------- 5. HERO (cinematic, video bg, light type) ---------- */

.hero {
  position: relative;
  padding: calc(var(--header-h) + 24px) 0 24px;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);          /* fallback before video paints */
  color: var(--bone);
}

/* Full-bleed background video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* Subtle slow zoom — Ken Burns, very gentle */
  animation: hero-kenburns 28s ease-in-out infinite alternate;
  filter: saturate(0.92) contrast(1.04) brightness(0.95);
  pointer-events: none;
}

/* Kill every native control browsers might overlay when autoplay is throttled.
   Covers iOS Safari's centered ▶ button, Chrome's audio-track UI, etc. */
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-overlay-play-button,
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@keyframes hero-kenburns {
  from { transform: scale(1.04) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1.2%, -0.8%); }
}

/* Darkening + brand-tinted overlay so typography stays editorial */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* warm sun glint, top-right */
    radial-gradient(ellipse 70% 50% at 85% 12%, rgba(201, 163, 94, 0.22), transparent 65%),
    /* sea light, bottom-left */
    radial-gradient(ellipse 80% 55% at 12% 88%, rgba(26, 95, 122, 0.32), transparent 65%),
    /* vertical legibility wash, slightly heavier at top + bottom */
    linear-gradient(180deg,
      rgba(8, 12, 22, 0.55) 0%,
      rgba(8, 12, 22, 0.35) 28%,
      rgba(8, 12, 22, 0.30) 55%,
      rgba(8, 12, 22, 0.55) 100%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  padding-bottom: clamp(48px, 6vh, 80px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(40px, 6vw, 64px);
  color: var(--horizon);
}
.eyebrow-line {
  width: clamp(40px, 8vw, 80px);
  height: 1px;
  background: rgba(171, 225, 255, 0.55);
}
.eyebrow-text {
  font-family: var(--font-structural);
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-headline {
  font-family: var(--font-structural);
  font-size: var(--t-hero);
  font-weight: 200;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--bone);
  max-width: 16ch;
  margin-bottom: clamp(28px, 4vw, 44px);
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero-word {
  display: inline-block;
  margin: 0 0.12em;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease-out),
              transform 1100ms var(--ease-out);
  transition-delay: calc(var(--i) * 120ms + 200ms);
}
.hero-word.italic { letter-spacing: -0.01em; color: var(--horizon); }
.hero-word.in     { opacity: 1; transform: translateY(0); }

.hero-lede {
  max-width: 56ch;
  font-size: var(--t-md);
  line-height: 1.6;
  color: rgba(240, 236, 228, 0.86);
  margin-bottom: clamp(36px, 5vw, 56px);
  font-weight: 300;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: center;
  align-items: center;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-structural);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: transform var(--dur-med) var(--ease-out),
              background var(--dur-med) var(--ease-out),
              color var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}
.btn-primary {
  background: var(--bone);
  color: var(--ink);
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid var(--bone);
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 16px 40px -22px rgba(0,0,0,.55);
}
.btn-primary:hover {
  background: var(--horizon);
  border-color: var(--horizon);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -20px rgba(171,225,255,.4);
}
.btn-ghost {
  color: var(--bone);
  padding: 16px 4px;
  border-bottom: 1px solid rgba(240, 236, 228, 0.45);
  border-radius: 0;
}
.btn-ghost svg {
  width: 11px; height: 16px;
  transition: transform var(--dur-med) var(--ease-out);
}
.btn-ghost:hover { color: var(--horizon); border-bottom-color: var(--horizon); }
.btn-ghost:hover svg { transform: translateY(3px); }

/* Harbour ticker — bottom row of the hero grid, in flow */
.harbours {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  padding: 8px 0 4px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.harbours-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  font-family: var(--font-structural);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--horizon);
  opacity: 0.7;
  animation: drift 70s linear infinite;
  will-change: transform;
}
.harbours-track span { display: inline-block; }
.harbours-track .dot { font-size: 7px; opacity: 0.55; }

@keyframes drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* (Hero ambient glow replaced by .hero-overlay above .hero-video) */

/* ---------- 6. SIGNATURE DIVIDER ---------- */

.signature-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) var(--gutter);
}
.divider-line {
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.divider-glyph {
  color: var(--sea);
  font-size: 10px;
  opacity: 0.7;
  transform: translateY(-1px);
  letter-spacing: 0;
}

/* ---------- 7. SECTION HEADS ---------- */

.section-head {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-eyebrow {
  font-family: var(--font-structural);
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--sea);
}
.section-headline {
  font-family: var(--font-structural);
  font-size: var(--t-3xl);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 22ch;
}
.section-headline .italic { color: var(--sea); }

.section-note {
  max-width: 56ch;
  margin-top: 16px;
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--ink-soft);
  opacity: 0.85;
  font-weight: 300;
}

/* ---------- 8. STUDIO ---------- */

.studio {
  padding: var(--section) 0;
}
.manifesto {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.manifesto-item {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.manifesto-item::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 36px; height: 1px;
  background: var(--sea);
}
.manifesto-item p {
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 36ch;
}

/* Studio bridge — narrative hand-off to the rest of the page.
   Editorial inline-link styling, sits centred below the manifesto. */
.studio-bridge {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--rule);
  font-family: var(--font-display);
  font-size: clamp(18px, 1vw + 14px, 26px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
  letter-spacing: 0;
}
.studio-bridge a {
  color: var(--sea);
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 1px;
  transition: color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}
.studio-bridge a:hover {
  color: var(--sea-deep);
  border-bottom-color: var(--sea);
}

/* ---------- 9. CAPABILITIES — magazine-spread editorial ----------
   Four disciplines, each its own editorial moment. Side-by-side
   media + content spreads, alternating orientation, massive
   Italiana title pulls. */

.capabilities {
  padding: var(--section) 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.cap-spreads {
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 9vw, 144px);
}

.cap-spread {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: clamp(40px, 4.5vw, 88px);
  align-items: center;
  position: relative;
}

/* Hairline divider between spreads — subtle editorial rhythm */
.cap-spread::before {
  content: "";
  position: absolute;
  top: calc(clamp(72px, 9vw, 144px) / -2);
  left: 50%;
  width: 28px;
  height: 1px;
  background: var(--rule);
  transform: translateX(-50%);
}
.cap-spread:first-child::before { display: none; }

/* Alternate orientation: even spreads put media on the right */
.cap-spread:nth-child(even) {
  grid-template-columns: 1fr 1.08fr;
}
.cap-spread:nth-child(even) .cap-spread-media { order: 2; }
.cap-spread:nth-child(even) .cap-spread-content { order: 1; }

/* ----- Media side ----- */
.cap-spread-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--shell);
  box-shadow:
    0 1px 0 rgba(11, 27, 43, 0.03),
    0 28px 50px -36px rgba(11, 27, 43, 0.28);
}
.cap-spread-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 2400ms var(--ease-soft),
    filter 1000ms var(--ease-out);
  filter: saturate(0.92) contrast(1.04) brightness(0.97);
}
.cap-spread:hover .cap-spread-media img {
  transform: scale(1.05);
  filter: saturate(1) contrast(1.06) brightness(1);
}

.cap-spread-tag {
  position: absolute;
  left: 20px;
  bottom: 18px;
  padding: 8px 12px;
  background: rgba(8, 12, 22, 0.72);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: var(--horizon);
  font-family: var(--font-structural);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.cap-spread:hover .cap-spread-tag {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Content side ----- */
.cap-spread-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(8px, 1vw, 24px) 0;
  max-width: 56ch;
}

.cap-spread-eyebrow {
  font-family: var(--font-structural);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sea);
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 8px;
}

/* THE moment — massive editorial display serif title */
.cap-spread-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 5.4vw + 18px, 112px);
  font-weight: 400;
  color: var(--ink);
  line-height: 0.92;
  letter-spacing: -0.012em;
  margin: 0;
}

.cap-spread-tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.2vw + 14px, 30px);
  color: var(--sea);
  line-height: 1.25;
  letter-spacing: 0.005em;
  margin: 4px 0 8px;
  max-width: 26ch;
}

.cap-spread-body {
  font-size: var(--t-md);
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 48ch;
}

/* Spec table — craft-led, multi-line copy */
.cap-specs {
  margin-top: auto;
  padding-top: clamp(20px, 2vw, 28px);
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.cap-specs > div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  font-family: var(--font-structural);
  font-size: 12px;
  align-items: start;
}
.cap-specs dt {
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sea);
  font-weight: 400;
  padding-top: 2px;                       /* visually align with multi-line dd */
}
.cap-specs dd {
  color: var(--ink-soft);
  font-weight: 300;
  letter-spacing: 0.005em;
  line-height: 1.55;
  max-width: 42ch;
}

/* ---------- 10. SHOWREEL — click-to-play editorial reel player ----------
   One intentional video. Poster + custom play overlay until clicked.
   On play: native controls activate, overlay fades. On end: overlay
   returns. Swap assets/showreel.mp4 + showreel-poster.jpg with own
   reel — no code change required. */

.reel { padding: var(--section) 0; }

.reel-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(11, 27, 43, 0.04),
    0 36px 70px -40px rgba(11, 27, 43, 0.42),
    0 16px 32px -20px rgba(26, 95, 122, 0.25);
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom play overlay — large editorial ring with triangle.
   Sits dead-centre, dims slightly the underlying poster for legibility. */
.reel-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(8,12,22,0.32) 0%, rgba(8,12,22,0.12) 50%, transparent 75%),
    linear-gradient(180deg, rgba(8,12,22,0.18) 0%, rgba(8,12,22,0.05) 35%, rgba(8,12,22,0.35) 100%);
  border: 0;
  cursor: pointer;
  color: var(--bone);
  padding: 0;
  transition: opacity 500ms var(--ease-out), background 500ms var(--ease-out);
}
.reel-play-ring {
  position: absolute;
  width: clamp(88px, 8vw, 124px);
  height: clamp(88px, 8vw, 124px);
  transition: transform 700ms var(--ease-soft);
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.32));
}
.reel-play-tri {
  position: relative;
  width: clamp(24px, 2vw, 32px);
  height: clamp(28px, 2.4vw, 38px);
  margin-left: 4px;       /* optical alignment with ring centre */
  transition: transform 500ms var(--ease-out);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.36));
}
.reel-play:hover .reel-play-ring {
  transform: scale(1.08);
}
.reel-play:hover .reel-play-tri {
  transform: translateX(2px) scale(1.05);
}

/* Meta strip — bottom-left, editorial caption */
.reel-meta {
  position: absolute;
  left: clamp(20px, 2vw, 36px);
  bottom: clamp(20px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--horizon);
  font-family: var(--font-structural);
  pointer-events: none;
  transition: opacity 500ms var(--ease-out);
}
.reel-meta-label {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.95;
  filter: drop-shadow(0 1px 8px rgba(0,0,0,0.5));
}
.reel-meta-cue {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1vw + 12px, 20px);
  letter-spacing: 0;
  color: var(--bone);
  opacity: 0.78;
  filter: drop-shadow(0 1px 8px rgba(0,0,0,0.5));
}

/* Playing state — overlay fades, native controls take over */
.reel-player.is-playing .reel-play,
.reel-player.is-playing .reel-meta {
  opacity: 0;
  pointer-events: none;
}
.reel-player.is-playing { cursor: default; }

/* ---------- 11. FOR WHOM ---------- */

.for-whom {
  padding: var(--section) 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 56px);
}
.audience {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  position: relative;
}
.audience::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 60px; height: 1px;
  background: var(--sea);
}
.audience h3 {
  font-family: var(--font-structural);
  font-size: clamp(22px, 1.8vw + 10px, 30px);
  font-weight: 200;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.15;
}
.audience p {
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 38ch;
}

/* ---------- 12. PROCESS ---------- */

.process { padding: var(--section) 0; }
.process-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.process-step {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(36px, 5vw, 56px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.step-marker {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}
.step-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  color: var(--sea);
  letter-spacing: 0;
  line-height: 1;
  display: inline-block;
}
.step-body { max-width: 56ch; }
.step-body h3 {
  font-family: var(--font-structural);
  font-size: clamp(26px, 2.4vw + 12px, 40px);
  font-weight: 200;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.1;
}
.step-body p {
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
}
.step-meta {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-structural);
  font-size: var(--t-xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sea);
}

/* Process CTA — closes the funnel narratively, hands off to Inquire.
   Editorial inline link rather than a button. Sits flush-right under
   the process list, like a magazine "continue reading" tag. */
.process-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--rule);
}
.process-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.4vw + 14px, 30px);
  color: var(--sea);
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  padding: 4px 2px;
}
.process-cta-arrow {
  width: 28px;
  height: 12px;
  transition: transform var(--dur-med) var(--ease-out);
}
.process-cta-link::after {
  content: "";
  position: absolute;
  left: 2px; right: 36px; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 600ms var(--ease-out);
}
.process-cta-link:hover { color: var(--sea-deep); }
.process-cta-link:hover::after { transform: scaleX(1); }
.process-cta-link:hover .process-cta-arrow { transform: translateX(6px); }

/* ---------- 13. INQUIRE — editorial light, brand-harmonious ----------
   Was a hard dark/light contrast jump. Now: warm paper background
   with a whisper of sea + sun in the gradient, ink type, sea accents.
   Same brand DNA as the rest of the page, no mode-switch shock. */

.inquire {
  padding: clamp(120px, 14vw, 200px) 0 clamp(96px, 12vw, 160px);
  background: var(--paper);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--rule);
}
.inquire::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 88% -6%, rgba(26, 95, 122, 0.07), transparent 60%),
    radial-gradient(ellipse 70% 50% at 8% 110%, rgba(201, 163, 94, 0.06), transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.inquire-head { max-width: 64ch; margin-bottom: clamp(56px, 7vw, 96px); }
.inquire-eyebrow { color: var(--sea); opacity: 1; }
.inquire-headline {
  font-family: var(--font-structural);
  font-size: var(--t-3xl);
  font-weight: 200;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 22px 0 28px;
  max-width: 18ch;
}
.inquire-headline .italic { color: var(--sea); }
.inquire-lede {
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: var(--t-md);
  line-height: 1.65;
  font-weight: 300;
  opacity: 0.88;
}

/* New layout: form (primary) + side stack (secondary). */
.inquire-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(20px, 2.4vw, 36px);
  align-items: start;
}

/* ---- Form ---- */
.inquire-form {
  background: var(--bone);
  border: 1px solid var(--rule);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.2vw, 28px);
}
.form-head { display: flex; flex-direction: column; gap: 8px; padding-bottom: 4px; }
.form-eyebrow {
  font-family: var(--font-structural);
  font-size: var(--t-xs);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sea);
  font-weight: 400;
}
.form-note {
  font-family: var(--font-structural);
  font-size: var(--t-sm);
  color: var(--ink-soft);
  opacity: 0.75;
  line-height: 1.5;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.form-row label {
  font-family: var(--font-structural);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sea);
  font-weight: 400;
  opacity: 0.9;
}
.form-row input,
.form-row select,
.form-row textarea {
  font: inherit;
  font-family: var(--font-structural);
  font-size: 16px;                          /* prevent iOS zoom-on-focus */
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 8px 0 10px;
  outline: none;
  appearance: none;
  border-radius: 0;
  width: 100%;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.form-row textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
  font-family: var(--font-body);
}
.form-row select {
  cursor: pointer;
  padding-right: 26px;
}
.form-row .select-chev {
  position: absolute;
  right: 0; bottom: 14px;
  width: 12px; height: 8px;
  color: var(--sea);
  pointer-events: none;
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--ink-soft);
  opacity: 0.42;
  font-weight: 300;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-bottom-color: var(--sea);
}

.form-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-structural);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 16px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition:
    background var(--dur-med) var(--ease-out),
    color var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out),
    transform var(--dur-med) var(--ease-out);
}
.form-submit svg { width: 22px; height: 11px; transition: transform var(--dur-med) var(--ease-out); }
.form-submit:hover {
  background: var(--sea);
  border-color: var(--sea);
  transform: translateY(-1px);
}
.form-submit:hover svg { transform: translateX(4px); }
.form-submit[disabled] { opacity: 0.55; cursor: progress; }

.form-status {
  font-family: var(--font-structural);
  font-size: var(--t-sm);
  margin-top: -8px;
  min-height: 1.2em;
}
.form-status.is-success { color: var(--sea); }
.form-status.is-error   { color: #B5524B; }

/* ---- Side stack ---- */
.inquire-side {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.inquire-card {
  background: var(--bone);
  padding: clamp(24px, 2.4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  transition: background var(--dur-med) var(--ease-out);
}
.inquire-card:not(.inquire-card-static):hover {
  background: var(--shell);
}
.inquire-label {
  font-family: var(--font-structural);
  font-size: var(--t-xs);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sea);
  font-weight: 400;
}
.inquire-value {
  font-family: var(--font-structural);
  font-size: clamp(18px, 1.4vw + 12px, 26px);
  font-weight: 300;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.25;
}
.inquire-cta {
  margin-top: auto;
  font-family: var(--font-structural);
  font-size: var(--t-sm);
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  opacity: 0.7;
  line-height: 1.55;
  transition: color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              opacity var(--dur-fast) var(--ease-out);
}
.inquire-card:hover .inquire-cta {
  color: var(--sea);
  opacity: 1;
  transform: translateX(4px);
}
.inquire-card-static { cursor: default; }
.inquire-card-static:hover { background: var(--bone); }
.inquire-card-static .inquire-cta { text-transform: none; letter-spacing: 0.02em; font-size: var(--t-base); font-style: italic; font-family: var(--font-display); opacity: 0.75; }

/* ---------- 14. FOOTER — light editorial, tonally matched ---------- */

.site-footer {
  background: var(--shell);                  /* warm pale tan, one step below paper */
  color: var(--sea-deep);
  padding: clamp(56px, 7vw, 96px) 0 36px;
  border-top: 1px solid var(--rule);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(36px, 5vw, 80px);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  align-self: start;
}
.footer-mark { width: 38px; height: 38px; }
.footer-mark .diamond-fill { fill: var(--sea); }
.footer-mark .diamond-stroke { fill: none; stroke: var(--sea); stroke-width: 1.4; }
.footer-words {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-structural);
  color: var(--sea-deep);
}
.footer-line-1 {
  font-size: 14px;
  letter-spacing: 0.28em;
  font-weight: 400;
}
.footer-rule {
  width: 100%;
  height: 1px;
  background: rgba(26, 95, 122, 0.28);
}
.footer-line-2 {
  font-size: 9.5px;
  letter-spacing: 0.62em;
  padding-left: 0.62em;
  opacity: 0.65;
  font-weight: 300;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 56px);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-head {
  font-family: var(--font-structural);
  font-size: var(--t-xs);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 8px;
  opacity: 0.9;
  font-weight: 400;
}
.footer-col a {
  font-family: var(--font-structural);
  font-size: var(--t-base);
  color: var(--ink-soft);
  font-weight: 300;
  opacity: 0.78;
  transition: color var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.footer-col a:hover { color: var(--sea); opacity: 1; }

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-structural);
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  opacity: 0.6;
  text-transform: uppercase;
}

/* ---------- 15. REVEAL ANIMATIONS ---------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 900ms var(--ease-out),
              transform 900ms var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 16. FOCUS ---------- */

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

/* ---------- 17. RESPONSIVE ---------- */

@media (max-width: 1024px) {
  .manifesto, .audience-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-item:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root { --header-h: 64px; }

  .primary-nav { display: none; }
  .cta-link { padding: 10px 14px; font-size: 11px; letter-spacing: 0.22em; }
  .cta-link svg { width: 18px; height: 9px; }

  .hero { padding-top: calc(var(--header-h) + 40px); }
  .eyebrow-line { width: 24px; }
  .eyebrow-text { letter-spacing: 0.28em; font-size: 10px; }
  .hero-eyebrow { gap: 12px; }
  .hero-headline { max-width: 12ch; line-height: 1.06; }

  /* Capabilities: stack media on top, content below, reset alternation */
  .cap-spreads { gap: 72px; }
  .cap-spread,
  .cap-spread:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cap-spread:nth-child(even) .cap-spread-media { order: 1; }
  .cap-spread:nth-child(even) .cap-spread-content { order: 2; }
  .cap-spread-media { aspect-ratio: 5 / 4; }
  .cap-spread-title { font-size: clamp(64px, 10vw, 96px); }
  .cap-spread-tagline { font-size: clamp(20px, 3vw, 26px); }
  .cap-spread::before { display: none; }
  .manifesto, .audience-grid { grid-template-columns: 1fr; gap: 28px; }
  .manifesto-item:last-child { grid-column: auto; }

  /* Tablet/820: gallery already handled by 1024px breakpoint above */

  .process-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-marker { position: static; }
  .step-num { font-size: 56px; }

  .inquire-grid { grid-template-columns: 1fr; }
  .inquire-card { min-height: 0; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .footer-meta { flex-direction: column; gap: 8px; }

  .cap-specs > div { grid-template-columns: 100px 1fr; gap: 12px; }
}

/* ============================================================
   MOBILE PASS — not a shrunken desktop.
   Strategy: cut what doesn't sell on a 6-inch screen, surface
   what does, give thumbs proper real estate.
   ============================================================ */
@media (max-width: 640px) {

  /* ----- Tokens that drive everything else ----- */
  :root {
    --section: 64px;                /* desktop has 96–176px, way too much for mobile */
    --gutter:  20px;
    --header-h: 56px;
  }

  /* ----- HEADER: icon only, big touch CTA ----- */
  .brand-wordmark { display: none; }       /* drop the "11 DIAMONDS / MEDIA" text */
  .brand-mark { width: 24px; height: 24px; }
  .brand { gap: 0; }
  .header-inner { gap: 12px; }
  .cta-link {
    padding: 11px 16px;
    font-size: 11px;
    letter-spacing: 0.22em;
    min-height: 44px;                /* iOS touch target */
  }
  .cta-link svg { width: 16px; height: 8px; }

  /* ----- HERO: tighter, one bold CTA, calmer ticker ----- */
  .hero { padding-top: calc(var(--header-h) + 24px); padding-bottom: 16px; }
  .hero-eyebrow {
    gap: 10px;
    margin-bottom: 32px;
    max-width: 100%;
  }
  .eyebrow-line { width: 22px; }
  .eyebrow-text {
    font-size: 10px;
    letter-spacing: 0.28em;
    white-space: nowrap;
  }
  .eyebrow-long { display: none; }              /* mobile: only "European Yachting" */

  .hero-headline {
    max-width: 11ch;
    line-height: 1.04;
    margin-bottom: 22px;
  }
  .hero-lede {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 32px;
    max-width: 32ch;
  }

  /* CTAs: one full-width primary, one quiet ghost below */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    gap: 14px;
  }
  .btn-primary {
    justify-content: center;
    padding: 17px 22px;
    font-size: 11.5px;
    letter-spacing: 0.24em;
    min-height: 52px;                /* generous primary tap area */
  }
  .btn-ghost {
    justify-content: center;
    align-self: center;
    padding: 10px 4px;
    font-size: 11px;
    opacity: 0.85;
    border-bottom: 0;
  }

  /* Ticker: smaller, calmer, less competition with CTA */
  .harbours-track {
    font-size: 9.5px;
    letter-spacing: 0.32em;
    opacity: 0.55;
    animation-duration: 100s;        /* slower drift on mobile */
    gap: 18px;
  }

  /* ----- SIGNATURE DIVIDER: tighter ----- */
  .signature-divider { padding: 48px var(--gutter); gap: 16px; }

  /* ----- SECTION HEADS: tighter type, less margin ----- */
  .section-head { gap: 14px; margin-bottom: 36px; }
  .section-eyebrow { font-size: 10px; letter-spacing: 0.36em; }
  .section-headline {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.07;
    max-width: 14ch;
  }
  .section-note { font-size: 14px; margin-top: 12px; }

  /* ----- STUDIO MANIFESTO ----- */
  .manifesto { gap: 22px; }
  .manifesto-item { padding-top: 20px; }
  .manifesto-item p { font-size: 15px; line-height: 1.6; }

  /* ----- CAPABILITIES (magazine-spread, mobile): stack media + content,
     tag always visible, no hover transforms, dramatic title scale ----- */
  .cap-spreads { gap: 56px; }
  .cap-spread,
  .cap-spread:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .cap-spread:nth-child(even) .cap-spread-media { order: 1; }
  .cap-spread:nth-child(even) .cap-spread-content { order: 2; }
  .cap-spread::before { display: none; }
  .cap-spread:hover .cap-spread-media img { transform: none; filter: saturate(0.92) contrast(1.04) brightness(0.97); }

  .cap-spread-media { aspect-ratio: 5 / 4; box-shadow: none; }
  .cap-spread-tag {
    opacity: 1;
    transform: none;
    font-size: 9.5px;
    padding: 6px 10px;
    left: 12px;
    bottom: 12px;
    letter-spacing: 0.24em;
  }

  .cap-spread-content { gap: 14px; padding: 0; max-width: none; }
  .cap-spread-eyebrow { font-size: 10px; letter-spacing: 0.32em; margin-bottom: 4px; }
  .cap-spread-title {
    font-size: clamp(60px, 16vw, 88px);
    line-height: 0.9;
    letter-spacing: -0.015em;
  }
  .cap-spread-tagline {
    font-size: clamp(18px, 4.6vw, 22px);
    max-width: none;
    margin: 2px 0 6px;
  }
  .cap-spread-body { font-size: 15px; line-height: 1.65; max-width: none; }

  /* ----- SHOWREEL (mobile): tighter meta, play overlay scales itself ----- */
  .reel-meta { left: 14px; bottom: 14px; gap: 4px; }
  .reel-meta-label { font-size: 9.5px; letter-spacing: 0.28em; }
  .reel-meta-cue { font-size: 14px; }

  /* ----- STUDIO BRIDGE (mobile): tighter font, full width ----- */
  .studio-bridge {
    font-size: 17px;
    line-height: 1.5;
    margin-top: 32px;
    padding-top: 24px;
  }

  /* ----- PROCESS CTA (mobile): centre-align, smaller ----- */
  .process-cta { justify-content: flex-start; margin-top: 32px; padding-top: 24px; }
  .process-cta-link { font-size: 20px; gap: 12px; }
  .process-cta-arrow { width: 24px; height: 11px; }

  /* ----- FOR WHOM: stack, tighter ----- */
  .audience { padding-top: 20px; gap: 12px; }
  .audience h3 { font-size: 24px; }
  .audience p { font-size: 14.5px; line-height: 1.6; }

  /* ----- PROCESS: tighter, smaller roman numerals ----- */
  .process-step {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 32px 0;
  }
  .step-marker { position: static; }
  .step-num { font-size: 40px; }
  .step-body h3 { font-size: 26px; margin-bottom: 12px; }
  .step-body p { font-size: 15px; line-height: 1.6; }
  .step-meta { margin-top: 14px; font-size: 10px; letter-spacing: 0.28em; }

  /* ----- INQUIRE: form first, side cards below, tighter ----- */
  .inquire { padding-top: 80px; padding-bottom: 64px; }
  .inquire-head { margin-bottom: 36px; }
  .inquire-headline {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.08;
    max-width: 14ch;
  }
  .inquire-lede { font-size: 14.5px; }
  .inquire-layout { grid-template-columns: 1fr; gap: 14px; }
  .inquire-form { padding: 22px 20px; gap: 18px; }
  .form-row input,
  .form-row select,
  .form-row textarea { padding: 8px 0 9px; }
  .form-submit { width: 100%; justify-content: center; padding: 16px 18px; }
  .inquire-card {
    min-height: 0;
    padding: 20px 18px;
    gap: 10px;
  }
  .inquire-value { font-size: 17px; line-height: 1.3; }
  .inquire-label { font-size: 9.5px; }
  .inquire-cta { font-size: 12px; }

  /* ----- FOOTER: cut the redundant nav columns ----- */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { gap: 14px; }
  .footer-mark { width: 32px; height: 32px; }
  .footer-line-1 { font-size: 12px; letter-spacing: 0.24em; }
  .footer-line-2 { font-size: 8px; letter-spacing: 0.5em; padding-left: 0.5em; }
  .footer-columns { grid-template-columns: 1fr; gap: 28px; }
  .footer-col a { font-size: 14px; }
  .footer-meta {
    flex-direction: column;
    gap: 6px;
    margin-top: 36px;
    padding-top: 18px;
    font-size: 9.5px;
    letter-spacing: 0.16em;
  }
}

/* ---------- 18. MOTION SAFETY ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .hero-word { opacity: 1 !important; transform: none !important; }
  .harbours-track { animation: none; }
  .hero-video { animation: none; }
}

/* ============================================================
   LEGAL PAGES — Impressum + Datenschutz
   Single-column long-form, editorial typography, light bg.
   ============================================================ */

.legal-page {
  background: var(--bone);
  color: var(--ink-soft);
  padding: calc(var(--header-h) + clamp(64px, 9vw, 120px)) 0
           clamp(72px, 9vw, 120px);
}

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

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-structural);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: clamp(48px, 6vw, 72px);
  transition: color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.legal-back svg { width: 18px; height: 8px; transition: transform var(--dur-med) var(--ease-out); }
.legal-back:hover { color: var(--sea-deep); }
.legal-back:hover svg { transform: translateX(-4px); }

.legal-head {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: clamp(56px, 6vw, 88px);
  border-bottom: 1px solid var(--rule);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.legal-eyebrow {
  font-family: var(--font-structural);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--sea);
  font-weight: 400;
}
.legal-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 5.6vw + 14px, 96px);
  font-weight: 400;
  color: var(--ink);
  line-height: 0.95;
  letter-spacing: -0.012em;
  margin: 0;
}
.legal-lede {
  font-size: var(--t-md);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 56ch;
  font-weight: 300;
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 4vw, 56px);
}
.legal-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.legal-section h2 {
  font-family: var(--font-structural);
  font-size: 11.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--sea);
  font-weight: 400;
  margin: 0 0 8px 0;
}
.legal-section h3 {
  font-family: var(--font-structural);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  margin: 12px 0 4px 0;
  letter-spacing: -0.005em;
}
.legal-section p,
.legal-section li {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 64ch;
}
.legal-section p strong {
  color: var(--ink);
  font-weight: 500;
}
.legal-section a {
  color: var(--sea);
  border-bottom: 1px solid var(--rule-strong);
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.legal-section a:hover {
  color: var(--sea-deep);
  border-bottom-color: var(--sea);
}
.legal-section ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 0;
}
.legal-section ul li {
  position: relative;
  padding-left: 18px;
}
.legal-section ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--sea);
  opacity: 0.6;
}

.legal-meta {
  margin-top: clamp(56px, 6vw, 88px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--rule);
  font-family: var(--font-structural);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.6;
}

/* Mobile tuning */
@media (max-width: 640px) {
  .legal-page { padding-top: calc(var(--header-h) + 56px); padding-bottom: 64px; }
  .legal-back { margin-bottom: 32px; font-size: 10.5px; }
  .legal-head { margin-bottom: 40px; padding-bottom: 32px; gap: 16px; }
  .legal-title { font-size: clamp(44px, 12vw, 64px); }
  .legal-section h2 { font-size: 11px; }
  .legal-section p, .legal-section li { font-size: 14.5px; }
}
