:root {
  color-scheme: light;
  --ink: #0a0908;
  --ink-soft: #1c1a18;
  --muted: #5a5550;
  --line: #ccc8bf;
  --line-strong: #0a0908;
  --paper: #f4f1ea;
  --paper-warm: #ede9e0;
  --surface: #faf8f3;
  --surface-alt: #e8e3d8;
  --red: #b22a1e;
  --red-deep: #8f1f15;
  --graphite: #2a2724;
  --warm-gray: #8a8278;
  --focus: rgba(178, 42, 30, 0.3);
  --max: 1320px;
}

/* ─── Reset & base ─────────────────────────────────────────────────────── */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, "Neue Haas Grotesk", Arial, ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

main {
  overflow: hidden;
}

main:focus {
  outline: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 12px;
  width: auto;
  height: auto;
  overflow: visible;
  z-index: 100;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

/* ─── Navigation ────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line-strong);
  background: rgba(244, 241, 234, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 68px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--ink);
  display: grid;
  place-items: center;
  color: var(--surface);
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.brand span:last-child {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 100ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--ink);
}

.nav-links a[aria-current="page"] {
  border-color: var(--red);
  color: var(--red);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
}

/* ─── Layout primitives ─────────────────────────────────────────────────── */

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-inline: 48px;
}

.section {
  padding: 120px 0;
}

.hero {
  padding: 0;
}

.page-hero,
.article-hero {
  padding: 100px 0 88px;
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */

.hero-outer {
  border-bottom: 1px solid var(--line-strong);
  background: var(--paper);
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: stretch;
  min-height: calc(100vh - 68px);
}

.hero-content {
  padding: 100px 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line-strong);
  padding-right: 72px;
}

.hero-right {
  padding: 80px 0 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 0;
  color: var(--ink);
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: none;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.hero-rule {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 44px 0;
  flex-shrink: 0;
}

.hero .lede {
  max-width: 480px;
  margin: 0 0 48px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-meta {
  margin-top: auto;
  padding-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line);
}

.hero-meta-item {
  padding: 16px 24px 16px 0;
  margin-right: 24px;
  border-right: 1px solid var(--line);
}

.hero-meta-item:last-child {
  border-right: none;
}

.hero-meta-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 4px;
}

.hero-meta-value {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1.5px solid var(--ink);
  background: transparent;
  font-family: inherit;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--ink);
  color: var(--surface);
}

.button-primary {
  color: var(--surface);
  background: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--graphite);
  border-color: var(--graphite);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
}

.button-light {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--surface);
}

.button-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
  font-size: 0.72rem;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--surface);
}

/* ─── Product card / visual ─────────────────────────────────────────────── */

.hero-visual,
.product-visual {
  position: relative;
}

.mock-window {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(10, 9, 8, 0.16), 0 2px 8px rgba(10, 9, 8, 0.08);
}

.mock-toolbar {
  min-height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--paper-warm);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}

.itinerary-ui {
  padding: 16px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.trip-panel,
.map-panel,
.notes-panel {
  border: 1px solid var(--line);
  background: var(--surface);
}

.trip-panel {
  padding: 16px;
}

.panel-kicker {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trip-title {
  margin-bottom: 14px;
  font-size: 1.1rem;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.timeline {
  display: grid;
  gap: 8px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.time {
  color: var(--warm-gray);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.timeline-item strong {
  display: block;
  line-height: 1.22;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
}

.timeline-item span:last-child {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
}

.map-panel {
  min-height: 270px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(10, 9, 8, 0.06) 1px, transparent 1px),
    #ddd9cf;
  background-size: 32px 32px;
}

.route-line {
  position: absolute;
  inset: 52px 36px 82px 44px;
  border: 3px solid transparent;
  border-left-color: var(--red);
  border-bottom-color: var(--red);
  border-radius: 0;
}

.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 4px 12px rgba(10, 9, 8, 0.24);
}

.pin-one {
  top: 48px;
  left: 42px;
}

.pin-two {
  right: 50px;
  bottom: 76px;
  background: var(--graphite);
}

.collab-stack {
  position: absolute;
  right: 14px;
  top: 14px;
  display: flex;
}

.avatar {
  width: 28px;
  height: 28px;
  margin-left: -6px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--surface);
  background: var(--ink);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0;
}

.avatar:nth-child(2) {
  background: var(--graphite);
}

.avatar:nth-child(3) {
  background: var(--red);
}

/* ─── Section structure ─────────────────────────────────────────────────── */

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
}

.section-header h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section-header p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.section-index {
  display: block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line-strong);
  background: var(--line-strong);
}

.grid > * {
  background: var(--surface);
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ─── Cards ─────────────────────────────────────────────────────────────── */

.card,
.feature-card,
.contact-card,
.product-overview,
.content-block,
.sidebar-note {
  background: var(--surface);
  padding: 32px;
}

.article-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background: var(--surface);
  padding: 0;
  overflow: hidden;
}

.card h3,
.feature-card h3,
.contact-card h3,
.contact-card h2 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.card p,
.feature-card p,
.contact-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.card-label {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-band {
  height: 3px;
  background: var(--ink);
}

.article-card:nth-child(2) .article-band {
  background: var(--warm-gray);
}

.article-card:nth-child(3) .article-band {
  background: var(--red);
}

.article-card-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.article-card p {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.55;
}

.read-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: color 100ms, border-color 100ms;
}

.read-link:hover,
.read-link:focus-visible {
  color: var(--red);
  border-color: var(--red);
}

/* ─── Product / dark section ────────────────────────────────────────────── */

.product-section {
  color: var(--surface);
  background: var(--ink);
}

.product-section .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.product-section h2,
.product-section h3 {
  color: var(--surface);
}

.product-section p,
.product-section li {
  color: rgba(255, 255, 255, 0.68);
}

.product-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 80px;
  align-items: center;
}

.product-shell h2 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.feature-list li {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.01em;
}

/* ─── Statement / overview band ─────────────────────────────────────────── */

.overview-band {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--paper-warm);
  padding: 96px 0;
}

.overview-copy {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: 48px;
}

.overview-copy p {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 900px;
}

.overview-copy p em {
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}

/* ─── Spec / tag elements ───────────────────────────────────────────────── */

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

.signal {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.device {
  padding: 7px 12px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ─── Page interior ─────────────────────────────────────────────────────── */

.page-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
  align-items: start;
}

.sidebar-note {
  position: sticky;
  top: 96px;
  padding: 32px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.content-stack {
  display: grid;
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.content-block {
  background: var(--surface);
  padding: 32px;
}

.content-block h2 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.product-overview {
  background: var(--surface);
  padding: 32px;
  border: 1px solid var(--line-strong);
}

.product-overview h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
}

/* ─── Contact ───────────────────────────────────────────────────────────── */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(340px, 1fr);
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.form-status.success {
  color: #2d5a3d;
}

.form-status.error {
  color: var(--red);
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-strong);
  padding: 12px 14px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

/* ─── Focus states ──────────────────────────────────────────────────────── */

input:focus,
textarea:focus,
select:focus,
.button:focus-visible,
.nav-toggle:focus-visible,
.nav-links a:focus-visible,
.read-link:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

/* ─── Article / journal ─────────────────────────────────────────────────── */

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 1fr);
  gap: 64px;
  align-items: start;
}

.article-body {
  font-size: 1.02rem;
  line-height: 1.7;
}

.article-body p {
  color: var(--ink-soft);
}

.article-body h2 {
  margin-top: 52px;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.article-meta {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-panel {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--ink);
  background: var(--paper-warm);
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 500;
}

/* ─── Legal ─────────────────────────────────────────────────────────────── */

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  margin-top: 40px;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ─── Page hero (inner pages) ───────────────────────────────────────────── */

.page-hero,
.article-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line-strong);
}

.page-hero h1,
.article-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.page-hero .lede,
.article-hero .lede {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ─── Footer ────────────────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--line-strong);
  background: var(--ink);
  color: var(--surface);
}

.footer-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 48px;
  align-items: start;
}

.footer-grid p {
  color: rgba(250, 248, 243, 0.52);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-top: 12px;
  margin-bottom: 0;
}

.footer-grid a {
  color: rgba(250, 248, 243, 0.52);
  transition: color 100ms;
}

.footer-grid a:hover {
  color: var(--surface);
}

.footer-brand {
  color: var(--surface);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  align-items: start;
}

.footer-nav a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 248, 243, 0.1);
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom-left {
  color: rgba(250, 248, 243, 0.4);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom-right {
  color: rgba(250, 248, 243, 0.4);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Light list ────────────────────────────────────────────────────────── */

.light-list {
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.light-list li {
  padding-left: 16px;
  position: relative;
  color: var(--muted);
  font-size: 0.88rem;
}

.light-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 1.5px;
  background: var(--red);
}

/* ─── Responsive ────────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 80px 0 60px;
    border-right: none;
    border-bottom: 1px solid var(--line-strong);
    padding-right: 0;
  }

  .hero-right {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 9vw, 7rem);
  }

  .product-shell,
  .page-grid,
  .article-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebar-note {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav {
    min-height: 60px;
    padding: 0 24px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--line-strong);
    background: var(--surface);
    box-shadow: 0 8px 24px rgba(10, 9, 8, 0.08);
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.85rem;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .container,
  .overview-copy,
  .footer-grid {
    padding-inline: 24px;
  }

  .hero-inner {
    padding: 0 24px;
  }

  .hero-content {
    padding: 64px 0 48px;
  }

  .hero-right {
    padding: 40px 0 56px;
  }

  .hero h1 {
    font-size: clamp(3rem, 11vw, 5rem);
  }

  .section {
    padding: 72px 0;
  }

  .overview-band {
    padding: 64px 0;
  }

  .page-hero,
  .article-hero {
    padding: 64px 0 56px;
  }

  .page-hero h1,
  .article-hero h1 {
    font-size: clamp(2.4rem, 9vw, 4rem);
  }

  .section-header h2 {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
  }

  .product-shell h2 {
    font-size: clamp(2.4rem, 8vw, 3.8rem);
  }

  .overview-copy p {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .itinerary-ui {
    grid-template-columns: 1fr;
  }

  .map-panel {
    min-height: 200px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-bottom: 48px;
  }

  .footer-bottom {
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 0;
  }

  .hero-meta-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    margin-right: 0;
  }

  .hero-meta-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 420px) {
  .page-hero h1,
  .article-hero h1 {
    font-size: 2.2rem;
  }

  .card,
  .feature-card,
  .contact-card,
  .content-block,
  .sidebar-note,
  .product-overview,
  .article-card-content {
    padding: 24px;
  }
}

/* ─── Cookie Consent System ──────────────────────────────────────────────── */

.hs-cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  max-width: 380px;
  padding: 24px;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  box-shadow: 0 10px 30px rgba(10, 9, 8, 0.08);
  font-family: inherit;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 300ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  display: none;
}

.hs-cookie-banner.is-visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.hs-cookie-banner p {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
  margin-bottom: 18px;
}

.hs-cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hs-cookie-banner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hs-btn {
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  cursor: pointer;
  text-align: center;
  transition: all 100ms ease;
  border: 1.5px solid var(--ink);
}

.hs-btn-primary {
  background: var(--ink);
  color: var(--surface);
}

.hs-btn-primary:hover,
.hs-btn-primary:focus-visible {
  background: var(--muted);
  border-color: var(--muted);
}

.hs-btn-secondary {
  background: transparent;
  color: var(--ink);
}

.hs-btn-secondary:hover,
.hs-btn-secondary:focus-visible {
  background: rgba(10, 9, 8, 0.05);
}

.hs-btn-link {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 0;
  cursor: pointer;
  border-bottom: 1.5px solid transparent;
}

.hs-btn-link:hover,
.hs-btn-link:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--ink);
  outline: none;
}

/* Modal / Dialog */
.hs-dialog {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.hs-dialog[open] {
  display: flex;
}

.hs-dialog::backdrop {
  background: rgba(10, 9, 8, 0.4);
  backdrop-filter: blur(4px);
}

.hs-dialog-box {
  background: var(--surface);
  border: 1.5px solid var(--ink);
  width: min(100% - 32px, 480px);
  padding: 32px;
  box-shadow: 0 20px 40px rgba(10, 9, 8, 0.15);
  transform: scale(0.95);
  opacity: 0;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), opacity 300ms ease;
}

.hs-dialog[open] .hs-dialog-box {
  transform: scale(1);
  opacity: 1;
}

.hs-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hs-dialog-header h2 {
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  color: var(--ink);
}

.hs-dialog-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 100ms ease;
}

.hs-dialog-close:hover,
.hs-dialog-close:focus-visible {
  color: var(--ink);
  outline: none;
}

.hs-dialog-close svg {
  width: 14px;
  height: 14px;
  display: block;
}

.hs-dialog-description {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.hs-consent-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.hs-category-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.hs-category-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hs-category-info h3 {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  color: var(--ink);
}

.hs-category-info p {
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
}

/* Custom Switch Toggle styling */
.hs-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
}

.hs-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.hs-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--line);
  transition: 150ms ease;
  border: 1.5px solid var(--ink);
}

.hs-slider::before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 2px;
  bottom: 2px;
  background-color: var(--ink);
  transition: 150ms ease;
}

input:checked + .hs-slider {
  background-color: var(--ink);
}

input:checked + .hs-slider::before {
  transform: translateX(16px);
  background-color: var(--surface);
}

input:disabled + .hs-slider {
  cursor: not-allowed;
  opacity: 0.6;
}

/* Keyboard focus styling */
.hs-btn:focus-visible,
.hs-switch input:focus-visible + .hs-slider {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .hs-cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: calc(100vw - 32px);
    padding: 18px;
  }

  .hs-dialog-box {
    padding: 24px;
  }
}

