/* =========================================================
   Troca One — Dark Luxury × Maritime
   Palette: midnight blue/black foundation + champagne gold
   Typography: Cormorant Garamond (display serif) + Inter (UI)
   ========================================================= */

:root {
  /* Color — OKLCH for perceptual consistency */
  --ink-0:   oklch(0.08 0.012 250);   /* near-black with blue undertone */
  --ink-1:   oklch(0.12 0.016 250);   /* page bg */
  --ink-2:   oklch(0.16 0.020 250);   /* card surface */
  --ink-3:   oklch(0.22 0.024 250);   /* elevated surface / border */
  --ink-4:   oklch(0.32 0.028 250);   /* divider strong */

  --bone:    oklch(0.96 0.012 85);    /* warm white text */
  --bone-2:  oklch(0.82 0.014 85);    /* secondary text */
  --bone-3:  oklch(0.62 0.012 85);    /* muted text */

  --gold:    oklch(0.78 0.13 78);     /* champagne gold accent */
  --gold-2:  oklch(0.88 0.10 82);     /* highlight gold */
  --gold-3:  oklch(0.62 0.13 70);     /* deep gold (hover) */

  --indigo:  oklch(0.42 0.18 270);    /* Troca brand indigo from logo */

  /* Layout */
  --max:     1280px;
  --gutter:  clamp(1.25rem, 4vw, 3rem);
  --radius:  6px;
  --radius-lg: 14px;

  /* Type scale (fluid) */
  --text-xs:    clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm:    clamp(0.875rem, 0.84rem + 0.2vw, 0.9375rem);
  --text-base:  clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg:    clamp(1.125rem, 1.08rem + 0.25vw, 1.25rem);
  --text-xl:    clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-2xl:   clamp(2rem, 1.7rem + 1.6vw, 3rem);
  --text-3xl:   clamp(2.75rem, 2.2rem + 2.8vw, 4.5rem);
  --text-hero:  clamp(3.25rem, 2.4rem + 4.2vw, 6.25rem);

  /* Spacing */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 20px;
  --s-6: 24px; --s-8: 32px; --s-10: 40px; --s-12: 48px; --s-16: 64px;
  --s-20: 80px; --s-24: 96px; --s-32: 128px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.55);

  /* Easing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { background: var(--ink-1); }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--text-base);
  color: var(--bone);
  background: var(--ink-1);
  font-feature-settings: "ss01", "cv02", "cv11";
}

.serif { font-family: 'Cormorant Garamond', 'Times New Roman', serif; font-weight: 500; letter-spacing: -0.01em; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 500;
}

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

/* ---- Header ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: var(--s-5) var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 400ms var(--ease), backdrop-filter 400ms var(--ease), padding 400ms var(--ease), border-color 400ms var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: oklch(0.08 0.012 250 / 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding-top: var(--s-3); padding-bottom: var(--s-3);
  border-bottom-color: oklch(1 0 0 / 0.06);
}
.brand { display: flex; align-items: center; gap: var(--s-3); color: var(--bone); }
.brand-mark { width: 34px; height: 34px; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500; letter-spacing: 0.06em;
  white-space: nowrap;
}
.brand-logo {
  display: block;
  height: 28px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.foot-brand .brand-logo { height: 32px; max-width: 240px; margin-bottom: var(--s-5); }
@media (max-width: 480px) {
  .brand-name { font-size: 1.2rem; letter-spacing: 0.04em; }
  .brand-mark { width: 28px; height: 28px; }
  .brand-logo { height: 22px; max-width: 170px; }
}
.nav { display: flex; align-items: center; gap: var(--s-8); }
.nav-links { display: flex; gap: var(--s-8); }
.nav a { font-size: var(--text-sm); color: var(--bone-2); transition: color 200ms; }
.nav a:hover { color: var(--gold); }
/* Active page indicator: brighter gold + medium weight */
.nav a[aria-current="page"] {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.01em;
}
/* Header CTA: dark text on gold for contrast (overrides .nav a above) */
.nav a.btn-primary { color: var(--ink-0); }
.nav a.btn-primary:hover { color: var(--ink-0); }
.nav a.btn-primary[aria-current="page"] { color: var(--ink-0); font-weight: 600; }
/* ---- Mobile menu (hamburger + drawer) ---- */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(231, 222, 207, 0.25);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  z-index: 100;
  transition: border-color 200ms, background 200ms;
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav a.header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 420px) {
  .header-cta .arrow { display: none; }
}
.nav-toggle:hover { border-color: var(--gold); }
.nav-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--bone-2);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 180ms ease, background 200ms;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--gold);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--gold);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 88px 24px 32px;
  background: rgba(10, 12, 16, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 222, 207, 0.12);
  transform: translateY(-100%);
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
  max-height: 100vh;
  overflow-y: auto;
}
.mobile-drawer[hidden] { display: none; }
.mobile-drawer.open { transform: translateY(0); }
.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-drawer-links li { display: block; }
.mobile-drawer-links a {
  display: block;
  padding: 14px 8px;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--bone-2);
  border-bottom: 1px solid rgba(231, 222, 207, 0.08);
  transition: color 200ms;
}
.mobile-drawer-links a:hover { color: var(--gold); }
.mobile-drawer-links a.btn-primary {
  margin-top: var(--s-3);
  text-align: center;
  border-bottom: none;
  color: var(--ink-0);
}
body.menu-open { overflow: hidden; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 14px 26px;
  font-size: var(--text-sm); font-weight: 500;
  border-radius: 999px;
  transition: transform 250ms var(--ease), background 250ms var(--ease), color 250ms var(--ease), box-shadow 250ms var(--ease);
  letter-spacing: 0.02em; white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink-0);
  box-shadow: 0 0 0 1px oklch(1 0 0 / 0.05), 0 8px 28px oklch(0.78 0.13 78 / 0.18);
}
.btn-primary:hover { background: var(--gold-2); transform: translateY(-1px); box-shadow: 0 12px 36px oklch(0.78 0.13 78 / 0.28); }
.btn-ghost {
  background: transparent; color: var(--bone);
  border: 1px solid oklch(1 0 0 / 0.22);
}
.btn-ghost:hover { background: oklch(1 0 0 / 0.06); border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 10px 18px; font-size: var(--text-xs); }
.btn .arrow { display: inline-block; transition: transform 250ms var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
}
.hero-video, .hero-poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
/* Hide the video until we've seeked past the opening title card.
   The poster image sits behind it as a clean fallback. */
.hero-video { opacity: 0; transition: opacity 900ms ease; }
.hero-video.ready { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, oklch(0.08 0.012 250 / 0.75) 0%, oklch(0.08 0.012 250 / 0.5) 25%, oklch(0.08 0.012 250 / 0.7) 60%, oklch(0.08 0.012 250 / 0.95) 100%),
    radial-gradient(ellipse at 50% 55%, oklch(0.08 0.012 250 / 0.2) 0%, oklch(0.08 0.012 250 / 0.7) 80%);
  backdrop-filter: blur(1px);
}
.hero-inner {
  text-align: center; max-width: 980px; padding: var(--s-12) var(--gutter);
  animation: heroIn 1100ms var(--ease) 300ms both;
}
.hero-eyebrow { margin-bottom: var(--s-6); display: inline-block; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-hero); font-weight: 500;
  line-height: 1.02; letter-spacing: -0.015em;
  color: var(--bone);
  text-shadow: 0 2px 30px oklch(0 0 0 / 0.5);
}
.hero-title em { font-style: italic; color: var(--gold-2); }
.hero-sub {
  margin-top: var(--s-6);
  font-size: var(--text-lg); color: var(--bone-2);
  max-width: 640px; margin-left: auto; margin-right: auto;
  line-height: 1.55;
}
.hero-cta { margin-top: var(--s-10); display: flex; gap: var(--s-4); justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: var(--s-8); left: 50%; transform: translateX(-50%);
  z-index: 1; color: var(--bone-2); font-size: var(--text-xs);
  text-transform: uppercase; letter-spacing: 0.3em;
  display: flex; flex-direction: column; align-items: center; gap: var(--s-2);
  animation: floatY 2.4s ease-in-out infinite;
}
.hero-scroll-line { width: 1px; height: 36px; background: linear-gradient(180deg, transparent, var(--gold)); }
@keyframes heroIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatY { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---- Sections ---- */
section { padding: clamp(80px, 12vh, 160px) 0; }
.section-head { max-width: 760px; margin-bottom: var(--s-16); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow { margin-bottom: var(--s-4); display: inline-block; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-2xl); font-weight: 500; line-height: 1.05;
  letter-spacing: -0.01em; color: var(--bone);
}
.section-title em { font-style: italic; color: var(--gold-2); }
.section-lede { margin-top: var(--s-5); color: var(--bone-2); font-size: var(--text-lg); line-height: 1.55; max-width: 60ch; }
.section-head.center .section-lede { margin-left: auto; margin-right: auto; }

/* ---- Sponsor wall ---- */
.sponsors-strip {
  border-top: 1px solid oklch(1 0 0 / 0.08);
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--ink-0);
}
.sponsors-eyebrow {
  display: block; text-align: center;
  color: var(--gold); font-size: var(--text-sm);
  letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: clamp(28px, 4vw, 56px);
}
.sponsors-featured {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 56px);
  align-items: center; justify-items: center;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.sponsors-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px) clamp(24px, 3vw, 56px);
  align-items: center; justify-items: center;
  padding-top: clamp(24px, 3vw, 40px);
  border-top: 1px solid oklch(1 0 0 / 0.06);
}
.sponsor-logo {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 12px; border-radius: 6px;
  filter: brightness(0.85);
  transition: transform 220ms ease, filter 220ms ease;
  text-decoration: none;
}
.sponsor-logo img {
  display: block; width: auto; height: auto;
  max-width: 100%; max-height: 56px;
  object-fit: contain;
}
.sponsor-logo.featured img { max-height: 96px; }
.sponsor-logo:hover, .sponsor-logo:focus-visible {
  transform: scale(1.06);
  filter: brightness(1.15);
  outline: none;
}
.sponsor-logo:focus-visible {
  box-shadow: 0 0 0 2px var(--gold);
}
@media (max-width: 900px) {
  .sponsors-featured { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .sponsors-grid { grid-template-columns: repeat(3, 1fr); }
  .sponsor-logo img { max-height: 44px; }
  .sponsor-logo.featured img { max-height: 80px; }
}
@media (max-width: 560px) {
  .sponsors-featured { grid-template-columns: 1fr; gap: 32px; }
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 28px; }
  .sponsor-logo.featured img { max-height: 80px; }
}

/* ---- Intro split ---- */
.intro { background: var(--ink-1); }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 880px) { .intro-grid { grid-template-columns: 1fr; } }
.intro-grid-reverse { grid-template-columns: 1.1fr 1fr; }
.intro-grid-reverse > .intro-text { order: 1; }
.intro-grid-reverse > .intro-image,
.intro-grid-reverse > .intro-image-wrap { order: 2; }
@media (max-width: 880px) {
  .intro-grid-reverse { grid-template-columns: 1fr; }
  .intro-grid-reverse > .intro-text { order: 2; }
  .intro-grid-reverse > .intro-image,
  .intro-grid-reverse > .intro-image-wrap { order: 1; }
}

/* Award row beneath vessel image */
.intro-image-wrap { display: flex; flex-direction: column; gap: var(--s-6); }

/* Aged sepia treatment for the Viareggio heritage image */
#vessel-img img {
  filter: sepia(0.55) saturate(0.85) contrast(0.95) brightness(0.95) hue-rotate(-6deg);
}
.award-row {
  display: flex; align-items: center; gap: var(--s-5);
  padding: var(--s-5) var(--s-6);
  background: oklch(0.10 0.012 250 / 0.6);
  border: 1px solid oklch(1 0 0 / 0.08);
  border-radius: var(--radius-md, 12px);
  backdrop-filter: blur(6px);
}
.award-link {
  display: inline-flex; flex: 0 0 auto;
  width: 84px; height: 84px;
  border-radius: 50%;
  transition: transform 220ms ease, filter 220ms ease;
}
.award-link:hover { transform: scale(1.06); filter: brightness(1.1); }
.award-medallion {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 4px 12px oklch(0 0 0 / 0.45));
}
.award-caption { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.award-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  color: var(--gold-2); line-height: 1.2; font-weight: 500;
}
.award-sub {
  font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bone-3);
}
.vessel-story { background: var(--ink-0, #0a0d14); border-top: 1px solid oklch(1 0 0 / 0.06); }
.vessel-story .intro-grid { align-items: start; }
.vessel-story .intro-image-wrap { margin-top: clamp(69px, 1.8rem + 4.2vw, 107px); }
.vessel-story .intro-image { aspect-ratio: 1/1; }
.vessel-story .intro-image img { object-position: center 35%; }
@media (max-width: 880px) {
  .vessel-story .intro-image-wrap { margin-top: 0; }
}
.intro-text p a { color: var(--gold-2); text-decoration: none; border-bottom: 1px solid oklch(from var(--gold-2) l c h / 0.35); transition: border-color 180ms ease, color 180ms ease; }
.intro-text p a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.intro-image { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius-lg); }
.intro-image img { width: 100%; height: 100%; object-fit: cover; }
.intro-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, oklch(0.08 0.012 250 / 0.55));
  pointer-events: none;
}
.intro-image .badge {
  position: absolute; top: var(--s-6); left: var(--s-6); z-index: 2;
  background: oklch(0.06 0.01 250 / 0.92); backdrop-filter: blur(8px);
  border: 1px solid oklch(from var(--gold) l c h / 0.4);
  color: var(--gold); padding: 8px 14px; border-radius: 999px;
  font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase;
  box-shadow: 0 4px 16px oklch(0 0 0 / 0.4);
}
.intro-text p { color: var(--bone-2); font-size: var(--text-lg); line-height: 1.65; margin-top: var(--s-5); }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); margin-top: var(--s-12); padding-top: var(--s-8); border-top: 1px solid oklch(1 0 0 / 0.08); align-items: start; }
.stat { display: flex; flex-direction: column; }
.stat .n {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-2); font-weight: 500; line-height: 1;
  display: flex; align-items: flex-end;
  height: clamp(2.2rem, 4.4vw, 3.3rem);
}
.stat .n.word { font-size: clamp(1.35rem, 2.4vw, 1.9rem); font-style: italic; letter-spacing: 0.005em; }
.stat .l { display: block; margin-top: var(--s-2); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.18em; color: var(--bone-3); }

/* ---- Tiers ---- */
.tiers { background: var(--ink-0); }
.tier-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6);
  margin-top: var(--s-12);
}
@media (max-width: 1024px) { .tier-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; } }
.tier {
  position: relative;
  background: var(--ink-2);
  border: 1px solid oklch(1 0 0 / 0.08);
  border-radius: var(--radius-lg);
  padding: var(--s-10);
  display: flex; flex-direction: column;
  transition: transform 350ms var(--ease), border-color 350ms var(--ease), box-shadow 350ms var(--ease);
}
.tier:hover { transform: translateY(-4px); border-color: oklch(0.78 0.13 78 / 0.35); box-shadow: var(--shadow-lg); }
.tier.featured { background: linear-gradient(180deg, var(--ink-2), oklch(0.14 0.018 250)); border-color: oklch(0.78 0.13 78 / 0.4); }
.tier.featured::before {
  content: "Most popular";
  position: absolute; top: -1px; left: 50%; transform: translate(-50%, -50%);
  background: var(--gold); color: var(--ink-0);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; font-weight: 600;
}
.tier-name { font-family: 'Cormorant Garamond', serif; font-size: var(--text-xl); color: var(--gold-2); letter-spacing: 0.04em; }
.tier-price { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 4vw, 3rem); color: var(--bone); margin-top: var(--s-3); line-height: 1; }
.tier-price small { font-family: 'Inter', sans-serif; font-size: var(--text-xs); color: var(--bone-3); letter-spacing: 0.18em; text-transform: uppercase; display: block; margin-top: var(--s-2); }
.tier-desc { margin-top: var(--s-4); color: var(--bone-2); font-size: var(--text-sm); line-height: 1.55; }
.tier-includes {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(212, 175, 110, 0.18);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.tier-includes + .tier-features { margin-top: var(--s-4); }
.tier-features { margin-top: var(--s-6); display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.tier-features li { display: flex; gap: var(--s-3); color: var(--bone-2); font-size: var(--text-sm); line-height: 1.5; }
.tier-features li::before {
  content: ""; flex: 0 0 16px; height: 16px; margin-top: 3px;
  background: var(--gold); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5l3 3 6-6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5l3 3 6-6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
}
.tier .btn { margin-top: var(--s-8); justify-content: center; width: 100%; }

/* ---- Case studies ---- */
.cases { background: var(--ink-1); }
.case-grid { display: grid; gap: var(--s-8); }
.case {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: var(--s-10) 0;
  border-top: 1px solid oklch(1 0 0 / 0.08);
}
.case:first-child { border-top: 0; padding-top: 0; }
.case.reverse { direction: rtl; }
.case.reverse > * { direction: ltr; }
@media (max-width: 880px) { .case, .case.reverse { grid-template-columns: 1fr; direction: ltr; } }
.case-image { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.case-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.case:hover .case-image img { transform: scale(1.03); }
.case-tag { font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--s-4); display: inline-block; }
.case-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--bone); line-height: 1.1; }
.case-body { margin-top: var(--s-5); color: var(--bone-2); font-size: var(--text-base); line-height: 1.65; }
.case-meta { display: flex; gap: var(--s-8); margin-top: var(--s-8); padding-top: var(--s-6); border-top: 1px solid oklch(1 0 0 / 0.08); }
.case-meta div { font-size: var(--text-xs); }
.case-meta .k { color: var(--bone-3); text-transform: uppercase; letter-spacing: 0.18em; }
.case-meta .v { color: var(--gold-2); font-family: 'Cormorant Garamond', serif; font-size: var(--text-lg); margin-top: 4px; }
.case-image-link { display: block; width: 100%; height: 100%; }
.case-image-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.case-title-link { color: inherit; text-decoration: none; transition: color 200ms var(--ease); }
.case-title-link:hover, .case-title-link:focus-visible { color: var(--gold); }
.case-title-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---- Testimonials ---- */
.testimonials { background: var(--ink-0); position: relative; overflow: hidden; }
.testimonials::before {
  content: ""; position: absolute; inset: -20%; pointer-events: none;
  background: radial-gradient(ellipse at 80% 0%, oklch(0.78 0.13 78 / 0.06), transparent 60%);
}
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
@media (max-width: 880px) { .quote-grid { grid-template-columns: 1fr; } }
.quote {
  background: var(--ink-2); border: 1px solid oklch(1 0 0 / 0.06);
  border-radius: var(--radius-lg); padding: var(--s-10);
  position: relative;
}
.quote::before {
  content: "\201C"; font-family: 'Cormorant Garamond', serif;
  font-size: 96px; line-height: 0.8; color: var(--gold);
  position: absolute; top: 24px; left: 24px; opacity: 0.5;
}
.quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
  line-height: 1.45; color: var(--bone);
  font-style: italic; padding-left: 48px;
}
.quote cite {
  display: block; margin-top: var(--s-6); padding-left: 48px;
  font-style: normal; font-size: var(--text-sm);
}
.quote cite strong { color: var(--gold-2); font-weight: 500; }
.quote cite span { color: var(--bone-3); display: block; margin-top: 2px; font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; }

/* ---- Editorial ---- */
.editorial { background: var(--ink-1); }
.ed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); align-items: stretch; }
@media (max-width: 1024px) { .ed-grid { grid-template-columns: 1fr; } }
.ed-card {
  background: var(--ink-2); border: 1px solid oklch(1 0 0 / 0.06);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 350ms var(--ease), border-color 350ms var(--ease);
}
.ed-card:hover { transform: translateY(-3px); border-color: oklch(0.78 0.13 78 / 0.3); }
.ed-image { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.ed-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.ed-card:hover .ed-image img { transform: scale(1.04); }
.ed-body { padding: var(--s-7) var(--s-7) var(--s-6); flex: 1; display: flex; flex-direction: column; gap: var(--s-3); }
.ed-meta { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.ed-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.25rem, 1.6vw, 1.6rem); line-height: 1.2; color: var(--bone); }
.ed-snippet { color: var(--bone-2); font-size: var(--text-sm); line-height: 1.55; margin-top: var(--s-2); }
.ed-link { margin-top: auto; padding-top: var(--s-5); color: var(--gold); font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase; display: inline-flex; align-items: center; gap: var(--s-2); }

/* ---- Inquiry / contact ---- */
.inquiry { background: var(--ink-0); position: relative; overflow: hidden; }
.inquiry::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 0% 100%, oklch(0.42 0.18 270 / 0.18), transparent 50%),
    radial-gradient(ellipse at 100% 0%, oklch(0.78 0.13 78 / 0.08), transparent 50%);
}
.inquiry-grid { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
@media (max-width: 920px) { .inquiry-grid { grid-template-columns: 1fr; } }
.inquiry-info p { color: var(--bone-2); font-size: var(--text-lg); line-height: 1.6; margin-top: var(--s-5); }
.contact-list { margin-top: var(--s-10); display: flex; flex-direction: column; gap: var(--s-5); }
.contact-list div { display: flex; gap: var(--s-4); align-items: center; }
.contact-list .k { font-size: var(--text-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-3); width: 80px; }
.contact-list .v { color: var(--bone); font-size: var(--text-base); }
.contact-list a:hover { color: var(--gold); }

.form {
  background: var(--ink-2);
  border: 1px solid oklch(1 0 0 / 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column; gap: var(--s-5);
}
.field { display: flex; flex-direction: column; gap: var(--s-2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.field label { font-size: var(--text-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-3); }
.field input, .field textarea, .field select {
  background: var(--ink-1);
  border: 1px solid oklch(1 0 0 / 0.1);
  color: var(--bone);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: var(--text-base);
  font-family: inherit;
  transition: border-color 200ms, background 200ms;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold); outline: none;
  background: oklch(0.14 0.018 250);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: var(--text-xs); color: var(--bone-3); }
.hp-field { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

/* ---- Sticky CTA bar (mobile) ---- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  padding: 12px var(--gutter);
  background: oklch(0.08 0.012 250 / 0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid oklch(1 0 0 / 0.08);
  display: none; gap: var(--s-3);
  transform: translateY(110%); transition: transform 400ms var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { flex: 1; justify-content: center; padding: 12px 16px; font-size: var(--text-xs); }
@media (max-width: 720px) { .sticky-cta { display: flex; } body { padding-bottom: 80px; } }

/* ---- Footer ---- */
footer {
  background: var(--ink-0);
  border-top: 1px solid oklch(1 0 0 / 0.08);
  padding: var(--s-16) 0 var(--s-8);
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-10); }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
.foot-brand p { color: var(--bone-3); margin-top: var(--s-4); font-size: var(--text-sm); line-height: 1.55; max-width: 38ch; }
.foot-col h4 { font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--s-5); }
.foot-col ul { display: flex; flex-direction: column; gap: var(--s-3); }
.foot-col a { color: var(--bone-2); font-size: var(--text-sm); transition: color 200ms; }
.foot-col a:hover { color: var(--gold); }
.foot-bottom {
  margin-top: var(--s-16); padding-top: var(--s-6);
  border-top: 1px solid oklch(1 0 0 / 0.06);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s-4);
  color: var(--bone-3); font-size: var(--text-xs);
}

/* =========================================================
   BLOG VIEW (shown when hash is #blog or #post/...)
   ========================================================= */
body.blog-view .site-main,
body.blog-view .sponsors-strip { display: none; }
body:not(.blog-view) #blogView { display: none; }

.blog-view-wrap { padding-top: clamp(120px, 16vh, 180px); padding-bottom: var(--s-24); }
.blog-view-wrap, .blog-view-wrap * { text-transform: none; }
.blog-view-wrap .crumbs, .blog-view-wrap .crumbs *,
.blog-view-wrap .chip,
.blog-view-wrap .post-card-meta, .blog-view-wrap .post-card-meta *,
.blog-view-wrap .post-card-link,
.blog-view-wrap .meta, .blog-view-wrap .meta *,
.blog-view-wrap .back-link,
.blog-view-wrap .post-loading,
.blog-view-wrap .post-footer-cta p { text-transform: uppercase; }
.blog-view-wrap .post-footer-cta p { text-transform: none; }
.blog-view-wrap .post-footer-cta h3 { text-transform: none; }
.blog-hero { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter) var(--s-16); }
.crumbs { display: flex; gap: var(--s-3); align-items: center; font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone-3); margin-bottom: var(--s-6); }
.crumbs a { color: var(--gold); }
.crumbs a:hover { color: var(--gold-2); }
.blog-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: var(--text-2xl); font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; color: var(--bone); max-width: 22ch; }
.blog-hero h1 em { font-style: italic; color: var(--gold-2); }
.blog-hero p.lede { margin-top: var(--s-5); color: var(--bone-2); font-size: var(--text-lg); line-height: 1.55; max-width: 60ch; }

.blog-filters { display: flex; gap: var(--s-3); flex-wrap: wrap; max-width: var(--max); margin: 0 auto var(--s-12); padding: 0 var(--gutter); }

/* ---- Logbook search bar ---- */
.blog-search {
  max-width: var(--max); margin: 0 auto var(--s-6); padding: 0 var(--gutter);
  position: relative;
}
.blog-search input[type="search"] {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid oklch(1 0 0 / 0.1);
  border-radius: var(--radius-md);
  padding: 14px 44px 14px 18px;
  color: var(--bone);
  font-family: inherit; font-size: var(--text-base); line-height: 1.4;
  transition: border-color 200ms, background 200ms;
  -webkit-appearance: none; appearance: none;
}
.blog-search input[type="search"]::placeholder { color: var(--bone-3); }
.blog-search input[type="search"]:focus {
  outline: none;
  border-color: oklch(0.78 0.13 78 / 0.55);
  background: var(--ink-1);
  box-shadow: 0 0 0 3px oklch(0.78 0.13 78 / 0.12);
}
.blog-search-clear {
  position: absolute;
  right: calc(var(--gutter) + 14px);
  top: 50%; transform: translateY(-50%);
  color: var(--bone-3);
  font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 8px;
  border-radius: 4px;
  transition: color 180ms, background 180ms;
}
.blog-search-clear:hover { color: var(--gold); background: oklch(1 0 0 / 0.04); }

.blog-result-count {
  max-width: var(--max); margin: 0 auto var(--s-6); padding: 0 var(--gutter);
  color: var(--bone-2); font-size: var(--text-sm);
}
.blog-result-count strong { color: var(--bone); font-weight: 500; }

.blog-grid mark, .post-card mark {
  background: oklch(0.78 0.13 78 / 0.22);
  color: var(--bone);
  padding: 0 2px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.chip {
  background: var(--ink-2); color: var(--bone-2);
  border: 1px solid oklch(1 0 0 / 0.08);
  padding: 8px 16px; border-radius: 999px;
  font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; transition: background 200ms, color 200ms, border-color 200ms;
}
.chip:hover { color: var(--gold); border-color: oklch(0.78 0.13 78 / 0.4); }
.chip.active { background: var(--gold); color: var(--ink-0); border-color: var(--gold); }

.blog-grid {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-8);
}
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.post-card {
  background: var(--ink-2); border: 1px solid oklch(1 0 0 / 0.06);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  text-align: left;
  transition: transform 350ms var(--ease), border-color 350ms var(--ease);
}
.post-card:hover { transform: translateY(-4px); border-color: oklch(0.78 0.13 78 / 0.3); }
.post-card-image { aspect-ratio: 16/10; overflow: hidden; }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.post-card:hover .post-card-image img { transform: scale(1.04); }
.post-card-body { padding: var(--s-8); display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.post-card-meta { display: flex; gap: var(--s-3); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.post-card-meta .dot { color: var(--bone-3); }
.post-card-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.25rem, 1.8vw, 1.6rem); line-height: 1.2; color: var(--bone); }
.post-card-excerpt { color: var(--bone-2); font-size: var(--text-sm); line-height: 1.55; }
.post-card-link { margin-top: auto; padding-top: var(--s-4); color: var(--gold); font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase; display: inline-flex; align-items: center; gap: var(--s-2); }

/* Single post view */
.post-article { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); text-align: left; }
.post-cover { max-width: var(--max); margin: 0 auto var(--s-10); padding: 0 var(--gutter); }
.post-cover-inner { aspect-ratio: 16/7; border-radius: var(--radius-lg); overflow: hidden; max-height: 480px; }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-article .meta { display: flex; gap: var(--s-4); flex-wrap: wrap; font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone-3); margin-bottom: var(--s-6); }
.post-article .meta .cat { color: var(--gold); }
.post-article h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-2xl); font-weight: 500;
  line-height: 1.05; letter-spacing: -0.01em; color: var(--bone);
  margin-bottom: var(--s-8); max-width: 65ch; text-align: left;
}
.post-article h1 em { font-style: italic; color: var(--gold-2); }
.post-content { font-size: var(--text-lg); line-height: 1.65; color: var(--bone-2); max-width: 65ch; text-align: left; }
.post-content > * + * { margin-top: var(--s-6); }
.post-content p { color: var(--bone-2); }
.post-content h2,
.post-content h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: normal;
  color: var(--bone);
  margin-top: var(--s-8);
  text-align: left;
}
.post-content h2 em,
.post-content h3 em { font-style: normal; color: inherit; }
.post-content a { color: var(--gold); border-bottom: 1px solid oklch(0.78 0.13 78 / 0.4); transition: border-color 200ms; }
.post-content a:hover { border-bottom-color: var(--gold); }
.post-content em { font-style: italic; color: var(--bone-2); }
.post-content strong { color: var(--bone); font-weight: 600; }
.post-content ul { padding-left: 1.2em; }
.post-content ul li { list-style: disc; color: var(--bone-2); margin-top: var(--s-2); }
.post-content ul li::marker { color: var(--gold); }
.post-content blockquote {
  border-left: 2px solid var(--gold);
  padding: var(--s-3) var(--s-6);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  color: var(--bone); line-height: 1.45;
  margin: var(--s-8) 0;
}
.post-figure {
  max-width: 65ch;
  margin: var(--s-10) 0;
}
.post-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.7);
}
.post-figure.portrait {
  max-width: 480px;
}
.post-figure figcaption {
  margin-top: var(--s-4);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--bone-2);
  font-style: italic;
}
.post-figure figcaption a { color: var(--bone); border-bottom: 1px solid oklch(1 0 0 / 0.24); }
.post-figure figcaption a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.post-video {
  max-width: 65ch;
  margin: var(--s-10) 0;
}
.post-video .video-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.7);
  isolation: isolate;
}
.post-video .video-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease, filter 600ms ease;
}
.post-video .video-frame:hover img,
.post-video .video-frame:focus-visible img {
  transform: scale(1.02);
  filter: brightness(1.05);
}
.post-video .play-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: oklch(0 0 0 / 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid oklch(1 0 0 / 0.2);
  color: var(--bone);
  transition: background 300ms ease, color 300ms ease, transform 300ms ease, border-color 300ms ease;
  pointer-events: none;
}
.post-video .play-badge svg {
  margin-left: 4px;
}
.post-video .video-frame:hover .play-badge,
.post-video .video-frame:focus-visible .play-badge {
  background: var(--gold);
  color: #0c0a07;
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.06);
}
.post-video .video-frame:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.post-video figcaption {
  margin-top: var(--s-4);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--bone-2);
}
.post-video figcaption a { color: var(--bone); border-bottom: 1px solid oklch(1 0 0 / 0.24); }
.post-video figcaption a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.post-footer-cta {
  max-width: 720px; margin: var(--s-20) auto 0; padding: var(--s-12) var(--gutter);
  border-top: 1px solid oklch(1 0 0 / 0.08);
  text-align: center;
}
.post-footer-cta h3 { font-family: 'Cormorant Garamond', serif; font-size: var(--text-xl); color: var(--bone); margin-bottom: var(--s-3); }
.post-footer-cta p { color: var(--bone-2); margin-bottom: var(--s-6); }
.back-link {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--s-8);
}
.back-link:hover { color: var(--gold-2); }

.post-loading { color: var(--bone-3); text-align: center; padding: var(--s-16); font-size: var(--text-sm); letter-spacing: 0.2em; text-transform: uppercase; }

/* ---- Reveal-on-scroll utility ---- */
/* Content is always visible by default. JS adds .reveal-on which hides it briefly until scrolled into view. */
html.js .reveal-on .reveal { opacity: 0; transform: translateY(24px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
html.js .reveal-on .reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal-on .reveal { opacity: 1; transform: none; }
}

/* Brief highlight when a select is auto-populated from a tier CTA */
.field-prefilled {
  animation: fieldPrefilledFlash 1.6s ease-out;
}
@keyframes fieldPrefilledFlash {
  0%   { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.55); }
  30%  { box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.35); }
  100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0); }
}

/* Inline link inside a section lede paragraph (subtle gold underline) */
.section-lede-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.section-lede-link:hover { color: var(--gold-2); }

/* ---- Nautical Data Center (Logbook page) ---- */
.ndc-wrap {
  max-width: var(--max);
  margin: 0 auto var(--s-12);
  padding: 0 var(--gutter);
}
.ndc-block {
  border-left: 1px solid oklch(0.78 0.13 78 / 0.55);
  padding: var(--s-3) 0 var(--s-3) var(--s-5);
}
.ndc-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-3);
  margin: 0 0 var(--s-3);
}
.ndc-line {
  color: var(--bone-2);
  font-size: var(--text-base);
  line-height: 1.6;
  margin: 0 0 var(--s-2);
  max-width: 70ch;
}
.ndc-line:last-child { margin-bottom: 0; }
.ndc-line strong {
  color: var(--gold-2);
  font-weight: 500;
  letter-spacing: 0.005em;
}
.ndc-line.ndc-loading {
  color: var(--bone-3);
  font-style: italic;
}
.ndc-line-alerts strong.ndc-alert {
  color: var(--gold-2);
  font-weight: 500;
}
@media (max-width: 640px) {
  .ndc-block { padding-left: var(--s-4); }
  .ndc-line { font-size: var(--text-sm); line-height: 1.55; }
}
.ndc-line .ndc-pickout {
  color: var(--gold-2);
  font-weight: 500;
  letter-spacing: 0.005em;
}
