/* =================================================================
   CONVO — Shared design system (base layer)
   Tenant theme overrides via inline <style> block with :root vars.
   ================================================================= */

/* ============ SELF-HOSTED FONTS ============ */

/* Plus Jakarta Sans — latin-ext */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/$/assets/fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Plus Jakarta Sans — latin */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/$/assets/fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Fraunces italic — latin-ext */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('/$/assets/fonts/fraunces-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Fraunces italic — latin */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('/$/assets/fonts/fraunces-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============ FALLBACK TOKENS ============ */
/* These are overridden per-tenant by the inline <style> block. */

:root {
  --brand: #2871e0;
  --brand-deep: #1a4ea8;
  --brand-bright: #5b9eff;
  --paper: #eef3fa;
  --paper-soft: #e2eaf4;
  --paper-warm: #f7faff;
  --ink: #0f1d2e;
  --ink-soft: #56697d;
  --warm: #ffd9a8;
  --rule: rgba(15,29,46,0.1);
  --rule-strong: rgba(15,29,46,0.18);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-accent: 'Fraunces', serif;
}

/* ============ RESET ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--paper); color: var(--ink); -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); overflow-x: hidden; font-feature-settings: 'ss01', 'cv11'; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; background: none; border: 0; outline: 0; width: 100%; }
::selection { background: var(--ink); color: var(--paper); }

/* ============ HERO (full-bleed photo) ============ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 28px clamp(20px, 4vw, 80px) clamp(60px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  color: white;
}
.hero.hero-tall { min-height: 88vh; }
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,30,60,0.45) 0%, rgba(10,30,60,0.05) 30%, rgba(10,30,60,0.55) 75%, rgba(10,30,60,0.85) 100%);
  z-index: 1;
}
.hero > *:not(.hero-img) { position: relative; z-index: 5; }

/* ============ NAV ============ */
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: flex; align-items: center;
}
.brand-logo {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
  font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
}
.nav-links a { opacity: 0.9; transition: opacity 0.2s; color: white; }
.nav-links a.active, .nav-links a:hover { opacity: 1; }
@media (max-width: 760px) { .nav-links { display: none; } }
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 8px 8px 20px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(14px); border-radius: 999px;
  font-size: 14px; font-weight: 500;
}
.nav-cta:hover { background: rgba(255,255,255,0.22); }
.nav-cta .arr {
  width: 28px; height: 28px; background: white; color: var(--ink);
  border-radius: 50%; display: grid; place-items: center; font-size: 14px;
}

.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 80px;
}
.crumbs {
  display: flex; gap: 10px; align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  font-weight: 400;
}
.crumbs a:hover { color: white; }

/* Display headline (used in hero + section heads) */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.92;
}
.display em {
  font-style: italic; font-family: var(--font-accent); font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--warm);
  font-size: 1.05em;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 9.5vw, 152px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic; font-family: var(--font-accent); font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--warm);
  font-size: 1.05em;
}
.hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255,255,255,0.88); max-width: 56ch;
  margin-bottom: 36px;
  line-height: 1.55;
  font-weight: 400;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.22);
  padding-top: 26px;
}
@media (max-width: 700px) { .hero-stats { grid-template-columns: 1fr 1fr; } }
.hero-stat .v {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat .v sup { font-size: 0.5em; color: var(--warm); font-weight: 400; }
.hero-stat .l {
  font-size: 13px;
  color: rgba(255,255,255,0.7); margin-top: 10px;
  font-weight: 400;
}

/* ============ SECTIONS ============ */
section.block {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 4vw, 80px);
}
.section-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule-strong);
}
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; gap: 24px; align-items: start; } }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.section-head h2 em {
  font-style: italic; font-family: var(--font-accent); font-weight: 300;
  color: var(--brand); letter-spacing: -0.025em;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-weight: 500;
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px; background: var(--ink-soft);
  vertical-align: middle; margin-right: 12px;
}
.section-head .lead {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-left: auto;
}

/* ============ PILLS / BUTTONS ============ */
.pill {
  padding: 10px 18px;
  border: 1px solid rgba(15,29,46,0.15);
  border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
  color: var(--ink-soft);
  background: white;
  transition: all 0.2s;
}
.pill:hover { border-color: var(--ink); color: var(--ink); }
.pill.active { background: var(--ink); color: var(--paper-warm); border-color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 8px 14px 24px;
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 15px; letter-spacing: -0.01em;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0,0,0,0.18); }
.btn .arr {
  width: 32px; height: 32px;
  border-radius: 50%; display: grid; place-items: center; font-size: 14px;
}
.btn-primary { background: var(--ink); color: white; }
.btn-primary .arr { background: white; color: var(--ink); }
.btn-light { background: white; color: var(--ink); }
.btn-light .arr { background: var(--ink); color: white; }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(15,29,46,0.2);
  padding: 14px 24px;
}
.btn-outline:hover { border-color: var(--ink); }

/* ============ FOOTER ============ */
.footer {
  padding: 60px clamp(20px, 4vw, 80px) 28px;
  background: var(--ink);
  color: white;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand {
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  letter-spacing: -0.02em; margin-bottom: 12px; color: white;
}
.footer-tag { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.55; }
.footer h4 {
  font-size: 13px; font-weight: 600; letter-spacing: -0.005em;
  color: rgba(255,255,255,0.5); margin-bottom: 14px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: white; }
.footer-bottom {
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.45);
}

/* ============ HELP / CTA BAND ============ */
.cta-wrap {
  padding: 0 clamp(20px, 4vw, 80px);
}
.help-band {
  margin: clamp(40px, 4vw, 64px) clamp(20px, 4vw, 80px);
  padding: clamp(36px, 5vw, 64px);
  background: var(--brand);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  color: white;
}
@media (max-width: 800px) { .help-band { grid-template-columns: 1fr; } }
.help-band h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.help-band h3 em {
  font-family: var(--font-accent); font-style: italic; font-weight: 300;
  color: var(--warm); letter-spacing: -0.02em;
}
.help-band p {
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  max-width: 50ch;
  font-size: 16px;
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============ INTRO (Home) ============ */
.intro { padding: clamp(70px, 9vw, 130px) clamp(20px, 4vw, 80px); background: var(--paper); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; } }
.intro-photo {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
}
.intro-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-photo .badge {
  position: absolute; left: 20px; bottom: 20px;
  padding: 8px 14px; background: rgba(255,255,255,0.95);
  border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--ink);
}
.intro-text h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5.5vw, 76px); line-height: 0.95;
  letter-spacing: -0.04em; margin-bottom: 24px;
}
.intro-text h2 em {
  font-style: italic; font-family: var(--font-accent); font-weight: 300;
  color: var(--brand); letter-spacing: -0.025em;
}
.intro-text .lead { font-size: 19px; color: var(--ink); margin-bottom: 18px; font-weight: 500; }
.intro-text p { color: var(--ink-soft); line-height: 1.65; margin-bottom: 14px; font-size: 16px; max-width: 52ch; }
.intro-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  color: var(--brand); font-weight: 600;
  border-bottom: 1px solid rgba(40,113,224,0.3);
  padding-bottom: 4px;
}
.intro-link:hover { border-bottom-color: var(--brand); }

/* ============ STATS STRIP (Home) ============ */
.stats-strip {
  background: var(--ink); color: white;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 4vw, 80px);
}
.stats-strip .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 700px) { .stats-strip .stats { grid-template-columns: 1fr 1fr; } }
.stats-strip .v {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(40px, 4.5vw, 64px); letter-spacing: -0.03em; line-height: 1;
}
.stats-strip .v sup { font-size: 0.5em; color: var(--warm); font-weight: 400; }
.stats-strip .l { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 12px; }

/* ============ OFFERS LIST (Home) ============ */
.offers-list { display: flex; flex-direction: column; }
.offer-row {
  display: grid;
  grid-template-columns: 80px 1.4fr 1.6fr 200px 36px;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(15,29,46,0.1);
  align-items: center;
  cursor: pointer;
  transition: padding 0.25s, background 0.25s;
  text-decoration: none;
}
.offer-row:hover { padding-left: 14px; background: rgba(40,113,224,0.05); }
.offer-row .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px; color: var(--brand);
  letter-spacing: -0.02em;
}
.offer-row h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(22px, 2vw, 30px); letter-spacing: -0.03em; line-height: 1.1;
  color: var(--ink);
}
.offer-row h3 em {
  font-family: var(--font-accent); font-style: italic; font-weight: 300;
  color: var(--brand); letter-spacing: -0.02em;
}
.offer-row p {
  color: var(--ink-soft); line-height: 1.55; font-size: 15px;
}
.offer-row .meta {
  text-align: right;
  font-family: var(--font-display); font-weight: 600;
  color: var(--ink); letter-spacing: -0.01em;
  font-size: 15px;
}
.offer-row .meta small {
  display: block; color: var(--ink-soft); font-weight: 400; font-size: 13px;
  margin-top: 4px;
}
.arrow-cell {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(15,29,46,0.2);
  display: grid; place-items: center;
  color: var(--ink); transition: all 0.2s;
}
.offer-row:hover .arrow-cell { background: var(--brand); color: white; border-color: var(--brand); }
@media (max-width: 900px) {
  .offer-row { grid-template-columns: 60px 1fr; gap: 12px; }
  .offer-row p, .offer-row .arrow-cell { display: none; }
  .offer-row .meta { grid-column: 2; text-align: left; }
}

/* ============ REVIERE GRID (Home) ============ */
.reviere-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.revier { position: relative; border-radius: 22px; overflow: hidden; display: block; }
.revier img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
.revier:hover img { transform: scale(1.04); }
.revier::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
}
.revier-label {
  position: absolute; left: 22px; right: 22px; bottom: 22px; color: white; z-index: 2;
}
.revier-label .num {
  font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 6px;
  font-feature-settings: 'tnum';
}
.revier-label h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 24px; letter-spacing: -0.025em; line-height: 1;
  margin-bottom: 4px;
}
.revier-label .sub { font-size: 13px; color: rgba(255,255,255,0.85); }
.revier-large { grid-column: span 3; grid-row: span 2; }
.revier-large .revier-label h3 { font-size: 36px; }
.revier:nth-child(2) { grid-column: span 3; }
.revier:nth-child(3), .revier:nth-child(4),
.revier:nth-child(5), .revier:nth-child(6) { grid-column: span 3; }
@media (min-width: 1100px) {
  .revier:nth-child(2) { grid-column: span 3; }
  .revier:nth-child(3), .revier:nth-child(4) { grid-column: span 3; grid-row: span 1; }
  .revier:nth-child(5), .revier:nth-child(6) { grid-column: span 3; grid-row: span 1; }
}
@media (max-width: 900px) {
  .reviere-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .revier-large, .revier:nth-child(2),
  .revier:nth-child(3), .revier:nth-child(4),
  .revier:nth-child(5), .revier:nth-child(6) { grid-column: span 1; grid-row: auto; }
}

/* ============ YACHT (Home) ============ */
.yacht { padding: clamp(70px, 9vw, 130px) clamp(20px, 4vw, 80px); background: var(--paper-soft); }
.yacht-card {
  border-radius: 28px; overflow: hidden;
  background: white;
  display: grid; grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
}
@media (max-width: 900px) { .yacht-card { grid-template-columns: 1fr; } }
.yacht-card img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; display: block; }
.yacht-content { padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; gap: 24px; justify-content: center; }
.yacht-content h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4vw, 56px); letter-spacing: -0.04em; line-height: 0.95;
}
.yacht-content h2 em {
  font-family: var(--font-accent); font-style: italic; font-weight: 300;
  color: var(--brand); letter-spacing: -0.025em;
}
.yacht-content p { color: var(--ink-soft); line-height: 1.6; max-width: 44ch; font-size: 16px; }
.yacht-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px;
  border-top: 1px solid var(--rule); padding-top: 24px;
}
.yacht-specs .v {
  font-family: var(--font-display); font-weight: 600;
  font-size: 28px; letter-spacing: -0.025em; line-height: 1; color: var(--ink);
}
.yacht-specs .l { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }

/* ============ CONTACT (Home) ============ */
.contact { padding: clamp(70px, 9vw, 130px) clamp(20px, 4vw, 80px); background: var(--paper); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-intro h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4.5vw, 64px); letter-spacing: -0.04em; line-height: 0.95;
  margin-bottom: 20px;
}
.contact-intro h2 em {
  font-family: var(--font-accent); font-style: italic; font-weight: 300;
  color: var(--brand); letter-spacing: -0.025em;
}
.contact-intro p { color: var(--ink-soft); line-height: 1.6; max-width: 42ch; font-size: 16px; margin-bottom: 36px; }
.contact-info {
  display: flex; flex-direction: column; gap: 20px;
  padding-top: 28px; border-top: 1px solid var(--rule);
}
.contact-info .item .l {
  font-size: 12px; color: var(--ink-soft); margin-bottom: 4px;
}
.contact-info .item .v {
  font-family: var(--font-display); font-weight: 600;
  font-size: 17px; color: var(--ink); letter-spacing: -0.015em;
}
.contact-form {
  background: white; border-radius: 26px;
  padding: clamp(28px, 3.5vw, 48px);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 22px;
}
.form-eyebrow {
  font-size: 12px; color: var(--ink-soft); margin-bottom: 6px;
}
.contact-form h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px; letter-spacing: -0.03em; line-height: 1.05;
  margin-bottom: 8px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.field {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 12px 16px;
  transition: border 0.2s;
}
.field:focus-within { border-color: var(--brand); }
.field .l { font-size: 11px; color: var(--ink-soft); margin-bottom: 4px; }
.field input, .field textarea { font-size: 15px; color: var(--ink); }
.field textarea { resize: vertical; min-height: 90px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.chip {
  padding: 7px 14px; background: white;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px; color: var(--ink-soft);
  cursor: pointer; transition: all 0.2s;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--brand); color: white; border-color: var(--brand); }
.submit-row {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 4px;
}
.submit-note { font-size: 12px; color: var(--ink-soft); max-width: 28ch; }
.submit-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 8px 14px 22px;
  background: var(--ink); color: white;
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 15px; letter-spacing: -0.01em;
  cursor: pointer;
}
.submit-btn .arr {
  width: 30px; height: 30px; background: white; color: var(--ink);
  border-radius: 50%; display: grid; place-items: center; font-size: 14px;
}

/* ============ MANIFESTO (About) ============ */
.manifesto { padding: clamp(70px, 9vw, 130px) clamp(20px, 4vw, 80px); background: var(--paper); }
.manifesto-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 96px); align-items: start;
}
@media (max-width: 900px) { .manifesto-grid { grid-template-columns: 1fr; } }
.manifesto h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5.5vw, 76px); line-height: 0.95;
  letter-spacing: -0.04em;
}
.manifesto h2 em {
  font-family: var(--font-accent); font-style: italic; font-weight: 300;
  color: var(--brand); letter-spacing: -0.025em;
}
.principles { display: flex; flex-direction: column; }
.principle {
  display: grid; grid-template-columns: 60px 1fr; gap: 28px;
  padding: 28px 0; border-bottom: 1px solid var(--rule);
}
.principle:first-child { border-top: 1px solid var(--rule); }
.principle .n {
  font-family: var(--font-display); font-weight: 600;
  color: var(--brand); font-size: 22px; letter-spacing: -0.02em;
}
.principle h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(22px, 2vw, 30px); letter-spacing: -0.025em;
  line-height: 1.15; margin-bottom: 10px; color: var(--ink);
}
.principle p { color: var(--ink-soft); line-height: 1.6; font-size: 15px; max-width: 60ch; }

/* ============ CREW (About) ============ */
.crew { padding: clamp(70px, 9vw, 130px) clamp(20px, 4vw, 80px); background: var(--paper-soft); }
.crew-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  max-width: 1100px;
}
@media (max-width: 900px) { .crew-grid { grid-template-columns: 1fr; } }
.crew-card {
  background: white; border-radius: 24px; overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--rule);
}
.crew-img {
  aspect-ratio: 4 / 3; background: linear-gradient(160deg, var(--paper) 0%, var(--paper-soft) 100%);
  display: grid; place-items: center; color: var(--ink-soft); position: relative;
  overflow: hidden;
}
.crew-img.sea { background: linear-gradient(160deg, #b9d4f6 0%, #6e9ed3 100%); }
.crew-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.crew-img .ph-tag {
  font-size: 12px; color: rgba(15,29,46,0.55);
  border: 1px dashed rgba(15,29,46,0.3);
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.5);
}
.crew-card .body { padding: 30px 32px 34px; display: flex; flex-direction: column; gap: 14px; }
.crew-card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px; letter-spacing: -0.025em; line-height: 1;
}
.role { font-size: 13px; color: var(--brand); font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; }
.crew-card p { color: var(--ink-soft); line-height: 1.6; font-size: 15px; }
.creds { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.creds span {
  font-size: 11px; color: var(--ink-soft);
  border: 1px solid var(--rule); padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.04em;
}

/* ============ APPROACH (About) ============ */
.approach { padding: clamp(70px, 9vw, 130px) clamp(20px, 4vw, 80px); background: var(--ink); color: white; }
.approach .section-head h2 { color: white; }
.approach .section-head { border-bottom-color: rgba(255,255,255,0.16); }
.approach .eyebrow { color: rgba(255,255,255,0.6); }
.approach .eyebrow::before { background: rgba(255,255,255,0.4); }
.approach .section-head .lead { color: rgba(255,255,255,0.7); }
.ap-rows { display: flex; flex-direction: column; }
.ap-row {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 32px; padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}
.ap-row .n {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 2.6vw, 38px);
  color: var(--warm); letter-spacing: -0.02em; line-height: 1;
}
.ap-row h4 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(22px, 2vw, 30px); letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 10px;
}
.ap-row p { color: rgba(255,255,255,0.78); line-height: 1.65; font-size: 15px; max-width: 65ch; }

/* ============ CONTACT CARD (About) ============ */
.contact-card { padding: clamp(70px, 9vw, 130px) clamp(20px, 4vw, 80px); background: var(--paper); }
.cc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--rule); border-radius: 24px; overflow: hidden;
  background: white;
}
@media (max-width: 800px) { .cc-grid { grid-template-columns: 1fr; } }
.cc-side { padding: clamp(36px, 5vw, 56px); }
.cc-side.dark { background: var(--ink); color: white; }
.cc-side h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3vw, 42px); line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.cc-side h3 em {
  font-family: var(--font-accent); font-style: italic; font-weight: 300;
  color: var(--warm); letter-spacing: -0.025em;
}
.cc-side p { line-height: 1.65; color: rgba(255,255,255,0.78); margin-bottom: 28px; max-width: 42ch; }
.cc-list { display: flex; flex-direction: column; gap: 18px; }
.cc-list .item .l {
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px;
}
.cc-list .item .v {
  font-family: var(--font-display); font-weight: 500;
  font-size: 18px; letter-spacing: -0.01em; color: white;
}
.cc-side.light h3 { color: var(--ink); }
.cc-side.light h3 em { color: var(--brand); }
.cc-side.light p { color: var(--ink-soft); }
.cc-side.light .cc-list .item .l { color: var(--ink-soft); }
.cc-side.light .cc-list .item .v { color: var(--ink); }

/* ============ HERO VARIANTS ============ */
.hero-about { min-height: 70vh; }
.hero-about .hero-body { padding-top: 60px; }
.hero-faq { min-height: 60vh; }
.hero-faq .hero-body { padding-top: 60px; }

/* ============ FAQ SEARCH ============ */
.faq-search {
  background: var(--paper-warm);
  padding: 32px clamp(20px, 4vw, 80px);
  border-bottom: 1px solid var(--rule);
}
.faq-search-inner {
  display: flex; align-items: center; gap: 16px;
  max-width: 720px; margin: 0 auto;
  background: white; border: 1px solid var(--rule);
  border-radius: 999px; padding: 8px 8px 8px 24px;
}
.faq-search input {
  flex: 1; font-size: 16px; color: var(--ink);
}
.faq-search input::placeholder { color: var(--ink-soft); }
.faq-search button {
  padding: 12px 22px; background: var(--brand); color: white;
  border-radius: 999px; font-weight: 600; font-size: 14px;
}

/* ============ FAQ CATEGORIES ============ */
.faq-cats {
  padding: 32px clamp(20px, 4vw, 80px) 0;
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
}
.faq-cats .pill {
  padding: 9px 18px; border-radius: 999px;
  background: white; border: 1px solid var(--rule);
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  cursor: pointer; transition: all 0.2s;
}
.faq-cats .pill:hover { border-color: var(--rule-strong); color: var(--ink); }
.faq-cats .pill.active {
  background: var(--ink); color: white; border-color: var(--ink);
}

/* ============ FAQ ACCORDION ============ */
.faq-section {
  padding: clamp(40px, 5vw, 80px) clamp(20px, 4vw, 80px) clamp(60px, 7vw, 100px);
}
.faq-group {
  max-width: 920px; margin: 0 auto 56px;
}
.faq-group-head {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.faq-group-head .num {
  font-family: var(--font-display); font-weight: 600;
  color: var(--brand); font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.faq-group-head h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.03em; line-height: 1.05;
}
.faq-group-head h2 em {
  font-family: var(--font-accent); font-style: italic; font-weight: 300;
  color: var(--brand); letter-spacing: -0.02em;
}
details.qa {
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
  transition: padding 0.3s;
}
details.qa[open] { padding: 28px 0 32px; }
details.qa summary {
  list-style: none; cursor: pointer;
  display: grid; grid-template-columns: 1fr 32px; gap: 24px;
  align-items: center;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.015em; line-height: 1.3;
  color: var(--ink);
}
details.qa summary .toggle {
  width: 32px; height: 32px;
  border-radius: 50%; border: 1px solid var(--rule-strong);
  display: grid; place-items: center;
  font-size: 16px; color: var(--ink-soft);
  transition: all 0.2s;
}
details.qa[open] summary .toggle {
  background: var(--brand); color: white; border-color: var(--brand);
  transform: rotate(45deg);
}
details.qa:hover summary .toggle { border-color: var(--ink); color: var(--ink); }
details.qa .answer {
  margin-top: 18px;
  padding-right: 56px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 16px;
  max-width: 70ch;
}
details.qa .answer p + p { margin-top: 14px; }
details.qa .answer strong { color: var(--ink); font-weight: 600; }
details.qa .answer a { color: var(--brand); border-bottom: 1px solid currentColor; }

/* ============ TRIP CALENDAR ============ */
.calendar { padding: clamp(60px, 8vw, 120px) clamp(20px, 4vw, 80px); background: var(--paper); }
.calendar .toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  padding-bottom: 24px; margin-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.calendar .filter-row { display: flex; gap: 8px; flex-wrap: wrap; }
.calendar .view-toggle {
  display: flex; border: 1px solid rgba(15,29,46,0.15);
  border-radius: 999px; overflow: hidden; background: white;
}
.calendar .view-toggle button {
  padding: 10px 20px; font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
  color: var(--ink-soft);
}
.calendar .view-toggle button.active { background: var(--ink); color: var(--paper-warm); }
.calendar .info-note {
  margin: 24px 0 40px; padding: 18px 22px;
  background: rgba(20,32,44,0.04); border-left: 3px solid var(--brand);
  font-size: 14px; line-height: 1.6; color: var(--ink-soft);
}

.month { margin-bottom: 56px; }
.month-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(20,32,44,0.22);
}
.month-head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.03em;
  color: var(--ink);
}
.month-head h3 .yr {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  color: var(--brand);
  margin-left: 4px;
}

.toern-row {
  display: grid;
  grid-template-columns: 130px 1.4fr 1fr 1fr 110px 130px 36px;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(20,32,44,0.1);
  align-items: center;
  cursor: pointer;
  transition: padding 0.25s, background 0.25s;
  font-size: 14px;
  color: var(--ink);
}
.toern-row:hover { padding-left: 14px; background: rgba(40,113,224,0.05); }
.toern-row .num {
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  font-feature-settings: 'tnum';
}
.toern-row .dates .d {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px; letter-spacing: -0.01em;
  color: var(--ink);
  font-feature-settings: 'tnum';
}
.toern-row .dates .small {
  font-size: 12px; color: var(--ink-soft); margin-top: 4px; font-weight: 400;
}
.toern-row .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.55vw, 22px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
}
.toern-row .name small {
  display: block;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400;
  color: var(--ink-soft);
  margin-top: 6px;
}
.toern-row .col { font-size: 13px; color: var(--ink-soft); font-weight: 400; }
.toern-row .col strong {
  display: block; color: var(--ink); font-weight: 600; margin-bottom: 2px;
  font-size: 14px; letter-spacing: -0.01em;
}
.toern-row .price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.03em;
  text-align: right;
  color: var(--ink);
  font-feature-settings: 'tnum';
}
.toern-row .status {
  font-size: 12px; letter-spacing: -0.005em;
  padding: 8px 14px; text-align: center; white-space: nowrap;
  border-radius: 999px;
  font-weight: 600;
}
.toern-row .status.free { background: var(--brand); color: white; }
.toern-row .status.few { background: #fff3e0; color: #b25600; border: 1px solid #ffd6a3; }
.toern-row .status.full { background: rgba(20,32,44,0.05); color: rgba(20,32,44,0.4); text-decoration: line-through; }
.toern-row .arrow-cell {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(20,32,44,0.2);
  display: grid; place-items: center;
  font-size: 14px;
  color: var(--ink);
  transition: all 0.2s;
}
.toern-row:hover .arrow-cell { background: var(--brand); color: white; border-color: var(--brand); }

@media (max-width: 1100px) {
  .toern-row { grid-template-columns: 1fr 1fr; gap: 12px; padding: 18px 0; }
  .toern-row .num, .toern-row .arrow-cell, .toern-row .col:nth-of-type(2) { display: none; }
  .toern-row .name { grid-column: span 2; }
  .toern-row .dates { grid-column: span 2; }
  .toern-row .price { text-align: left; }
}

/* ============ BLOG / AKTUELLES ============ */
.featured { padding: clamp(40px, 5vw, 80px) clamp(20px, 4vw, 80px) clamp(28px, 4vw, 60px); }
.featured-card {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; min-height: 420px;
  border-radius: 28px; overflow: hidden; background: var(--ink);
}
@media (max-width: 900px) { .featured-card { grid-template-columns: 1fr; } }
.featured-img { position: relative; min-height: 220px; }
.featured-img .badge {
  position: absolute; top: 24px; left: 24px;
  background: rgba(255,255,255,0.95); color: var(--ink);
  padding: 8px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.featured-body {
  padding: clamp(32px, 4vw, 56px); color: white;
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.featured-body .meta { display: flex; gap: 14px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.6); }
.featured-body .meta .cat { color: var(--brand-bright); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 11px; }
.featured-body h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3.2vw, 42px); letter-spacing: -0.025em; line-height: 1.06; }
.featured-body p { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.78); max-width: 50ch; }
.featured-body .read-more {
  display: inline-flex; align-items: center; gap: 10px; color: white; font-weight: 600; font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.4); width: fit-content; padding-bottom: 4px; margin-top: 6px;
}
.featured-body .read-more:hover { border-color: white; }

.news-grid {
  padding: clamp(32px, 5vw, 64px) clamp(20px, 4vw, 80px) clamp(48px, 6vw, 90px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 28px;
}
.post {
  background: white; border-radius: 20px; overflow: hidden; border: 1px solid var(--rule);
  display: flex; flex-direction: column; transition: transform 0.4s, box-shadow 0.4s;
}
.post:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -24px rgba(15,29,46,0.18); }
.post-img { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.post-img .cat {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.95); color: var(--ink);
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; z-index: 2;
}
.tile-meilen { background: linear-gradient(160deg, #1a4ea8, #5b9eff); }
.tile-saison { background: linear-gradient(160deg, #2871e0, #0f1d2e); }
.tile-ausbildung { background: linear-gradient(160deg, #ffd9a8, #2871e0); }
.tile-team { background: linear-gradient(160deg, #5b9eff, #1a4ea8); }
.tile-revier { background: linear-gradient(160deg, #0f1d2e, #2871e0); }
.tile-tipp { background: linear-gradient(160deg, #56697d, #0f1d2e); }
.post-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-body .meta { display: flex; gap: 12px; align-items: center; font-size: 12px; color: var(--ink-soft); }
.post-body .meta .dot { width: 3px; height: 3px; background: var(--ink-soft); border-radius: 50%; opacity: 0.6; }
.post-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.018em; line-height: 1.18; color: var(--ink); }
.post-body p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); max-width: 40ch; }
.post-body .more { margin-top: auto; color: var(--brand); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 8px; }
.post-img img, .featured-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured-img .badge, .post-img .cat { z-index: 2; }

/* ============ BLOG ARTICLE (detail) ============ */
.article { max-width: 760px; margin: 0 auto; padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 32px); }
.article-meta { display: flex; gap: 12px; align-items: center; font-size: 13px; color: var(--ink-soft); margin-bottom: 28px; }
.article-meta .cat { color: var(--brand); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 11px; }
.article-body { font-size: 17px; line-height: 1.7; color: var(--ink); }
.article-body p { margin: 0 0 18px; }
.article-body p.lead { font-size: 19px; color: var(--ink-soft); }
.article-body h2 { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; margin: 36px 0 14px; }
.article-body h3 { font-weight: 700; font-size: 20px; margin: 28px 0 10px; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body a { color: var(--brand); border-bottom: 1px solid currentColor; }
.article-body img { max-width: 100%; border-radius: 14px; margin: 24px 0; }
.article .back { display: inline-flex; margin-top: 40px; color: var(--brand); font-weight: 600; font-size: 14px; }
