/* ─────────────────────────────────────────────────────────
   KASTELLORIZO BOATS — Design System
   Mediterranean warm, editorial-cinematic
   ───────────────────────────────────────────────────────── */

:root{
  /* Core palette — sea + sun-bleached paper + terracotta */
  --ink:          #0b2838;           /* deep navy ink */
  --ink-soft:     #243e51;
  --sea:          #0a5c6b;           /* deep teal, from logo */
  --sea-dark:     #083f4a;
  --sea-bright:   #1aa09a;           /* mid */
  --shallow:      #7fc7c0;           /* shallow water */

  --paper:        #f3ead8;           /* aged paper warm cream */
  --paper-light:  #f8f1e0;
  --paper-dark:   #e6d9b8;           /* dune */
  --sand:         #d9c79a;

  --sun:          #e8a447;           /* terracotta / sunset */
  --sun-deep:     #c4681f;           /* darker terracotta */
  --ember:        #9c3a1b;           /* deep red flag */

  --rule:         rgba(11, 40, 56, 0.18);
  --rule-strong:  rgba(11, 40, 56, 0.45);

  /* Typography scale */
  --display: "Fraunces", "EB Garamond", Georgia, serif;
  --serif:   "Fraunces", "EB Garamond", Georgia, serif;
  --sans:    "Inter", "Helvetica Neue", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  /* Layout */
  --maxw: 1440px;
  --gut: clamp(20px, 4vw, 48px);
}

*{ box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

html, body{
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
}
body.sidebar-locked{ overflow: hidden; }

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

/* Paper texture — procedural, subtle */
body::before{
  content:"";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(196, 104, 31, 0.04) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(10, 92, 107, 0.03) 0, transparent 40%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.43  0 0 0 0 0.28  0 0 0 0 0.12  0 0 0 0.055 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.9;
}

a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ═══════════════════════════════════════════════════════════
   FIXED NAV BAR  ·  hamburger left  |  brand center  |  lang right
   ═══════════════════════════════════════════════════════════ */
.nav{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px clamp(12px, 3vw, 28px);
  min-height: 64px;
  color: var(--paper);
  background: linear-gradient(180deg, rgba(11, 40, 56, 0.55) 0%, rgba(11, 40, 56, 0) 100%);
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.nav.is-scrolled{
  background: rgba(243, 234, 216, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  border-bottom: 1px solid rgba(11, 40, 56, 0.12);
}

/* Hamburger (left column) */
.nav__hamburger{
  justify-self: start;
  width: 44px; height: 44px;
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  padding: 10px;
  background: transparent; border: 0; cursor: pointer;
  color: inherit;
  border-radius: 4px;
  transition: background 0.2s;
}
.nav__hamburger:hover{ background: rgba(255,255,255,0.08); }
.nav.is-scrolled .nav__hamburger:hover{ background: rgba(11, 40, 56, 0.06); }
.nav__hamburger span{
  width: 22px; height: 1.6px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.2s;
}
.nav__hamburger.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-active span:nth-child(2){ opacity: 0; }
.nav__hamburger.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Brand (center column) */
.nav__brand{
  justify-self: center;
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.nav__brand img{ width: 30px; height: 30px; flex: 0 0 30px; }
.nav__brand-text{ display: inline-flex; flex-direction: column; line-height: 1; min-width: 0; }
.nav__brand-name{
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.nav__brand-sub{
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  font-size: clamp(7px, 0.7vw, 9px);
  font-weight: 500;
  letter-spacing: 0.28em;
  margin-top: 3px;
  opacity: 0.85;
}

/* Lang switcher (right column) */
.nav__lang{
  justify-self: end;
  display: inline-flex; gap: 6px; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav__lang button{
  font: inherit; letter-spacing: inherit; color: inherit;
  opacity: 0.55;
  padding: 8px 4px;
  transition: opacity 0.3s;
}
.nav__lang button.is-active{ opacity: 1; }
.nav__lang button:hover{ opacity: 0.9; }
.nav__lang-sep{ opacity: 0.35; }

@media (max-width: 480px){
  .nav__brand img{ width: 26px; height: 26px; flex-basis: 26px; }
  .nav__brand-name{ font-size: 12px; letter-spacing: 0.04em; }
  .nav__brand-sub{ font-size: 7px; letter-spacing: 0.22em; }
}

/* ═══════════════════════════════════════════════════════════
   SIDEBAR DRAWER  ·  slides in from left
   ═══════════════════════════════════════════════════════════ */
.sidebar{
  position: fixed; top: 0; left: 0;
  width: min(380px, 86vw);
  height: 100vh;
  height: 100dvh;
  background: var(--ink);
  color: var(--paper);
  z-index: 60;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(.2, .7, .2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 4px 0 40px rgba(0,0,0,0.35);
}
.sidebar.is-open{ transform: translateX(0); }
.sidebar__inner{
  padding: 22px 26px 40px;
  display: flex; flex-direction: column;
  min-height: 100%;
}
.sidebar__header{
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(248, 240, 216, 0.14);
}
.sidebar__brand{
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
}
.sidebar__brand img{ width: 38px; height: 38px; flex: 0 0 38px; }
.sidebar__brand-text{ display: inline-flex; flex-direction: column; line-height: 1; }
.sidebar__brand-name{
  font-family: "Cinzel", "Trajan Pro", serif;
  font-size: 15px; font-weight: 600; letter-spacing: 0.05em;
  color: var(--paper);
}
.sidebar__brand-sub{
  font-family: "Cinzel", "Trajan Pro", serif;
  font-size: 8px; font-weight: 500; letter-spacing: 0.32em;
  color: var(--paper); opacity: 0.7; margin-top: 4px;
}
.sidebar__close{
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper);
  border-radius: 4px;
  transition: background 0.2s;
}
.sidebar__close:hover{ background: rgba(255,255,255,0.06); }

.sidebar__primary{
  display: flex; flex-direction: column;
  margin-top: 24px;
}
.sidebar__link{
  font-family: var(--display);
  font-size: 26px; font-weight: 300;
  letter-spacing: -0.005em;
  color: var(--paper);
  padding: 12px 0;
  border-bottom: 1px solid rgba(248, 240, 216, 0.08);
  transition: color 0.3s, padding 0.3s;
  position: relative;
}
.sidebar__link::after{
  content: "→";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%) translateX(-6px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  color: var(--sun);
}
.sidebar__link:hover{ color: var(--sun); padding-left: 6px; }
.sidebar__link:hover::after{ opacity: 1; transform: translateY(-50%) translateX(0); }
.sidebar__link.is-current{ color: var(--sun); }
.sidebar__link.is-current::before{
  content: "";
  position: absolute;
  left: -10px; top: 50%;
  width: 4px; height: 4px;
  background: var(--sun);
  border-radius: 50%;
  transform: translateY(-50%);
}

.sidebar__divider{
  margin: 24px 0;
  border-top: 1px solid rgba(248, 240, 216, 0.14);
}

.sidebar__group{
  display: flex; flex-direction: column; gap: 2px;
  margin-bottom: 24px;
}
.sidebar__group h5{
  font-family: var(--mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 10px;
}
.sidebar__group a{
  font-family: var(--serif);
  font-size: 15px; font-weight: 400;
  color: rgba(248, 240, 216, 0.88);
  padding: 6px 0;
  display: flex; align-items: baseline; gap: 10px;
  transition: color 0.25s, padding 0.25s;
}
.sidebar__group a:hover{ color: var(--sun); padding-left: 4px; }
.sidebar__group a span{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--sun);
  flex: 0 0 18px;
}
.sidebar__group a em{
  font-style: italic;
  font-size: 13px;
  color: rgba(248, 240, 216, 0.55);
}

.sidebar__cta{
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 8px;
}
.sidebar__cta .btn{
  text-align: center;
  width: 100%;
}

.sidebar__meta{
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(248, 240, 216, 0.12);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(248, 240, 216, 0.55);
  line-height: 2;
}

.sidebar-backdrop{
  position: fixed; inset: 0;
  z-index: 55;
  background: rgba(11, 40, 56, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.42s ease;
}
.sidebar-backdrop.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* ───────── HERO ───────── */
.hero{
  position: relative;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  background: var(--sea-dark);
  color: var(--paper);
}
.hero__img{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.72) saturate(1.05);
  transform: scale(1.08);
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns{
  from{ transform: scale(1.06) translate(0, 0); }
  to  { transform: scale(1.14) translate(-2%, -1%); }
}
.hero__veil{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 63, 74, 0.55) 0%, rgba(8, 63, 74, 0) 30%, rgba(8, 63, 74, 0) 60%, rgba(8, 63, 74, 0.85) 100%),
    radial-gradient(circle at 50% 60%, transparent 0%, rgba(8, 63, 74, 0.35) 70%);
}
.hero__grain{
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.hero__meta{
  position: absolute; top: 92px; left: var(--gut);
  right: var(--gut);
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
}
.hero__meta-right{ text-align: right; }

.hero__compose{
  position: absolute;
  left: var(--gut); right: var(--gut);
  bottom: 14vh;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.hero__kicker{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 14px;
}
.hero__kicker::before{
  content:""; width: 40px; height: 1px; background: currentColor; opacity: 0.5;
}
.hero__title{
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 9vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  max-width: 14ch;
}
.hero__title em{
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  color: var(--sun);
}
.hero__title .reveal-word{
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 1.2s 0.3s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__title .reveal-word:nth-child(2){ animation-delay: 0.5s; }
.hero__title .reveal-word:nth-child(3){ animation-delay: 0.75s; }
.hero__title .reveal-word:nth-child(4){ animation-delay: 1.0s; }
.hero__title .reveal-word:nth-child(5){ animation-delay: 1.25s; }
@keyframes heroReveal{
  to{ opacity: 1; transform: translateY(0); }
}

.hero__right{
  display: flex; flex-direction: column;
  gap: 20px; align-items: flex-end;
  text-align: right;
}
.hero__lede{
  max-width: 38ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.5;
  opacity: 0.88;
}
.hero__cta-row{
  display: flex; gap: 14px;
}
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--paper);
  transition: all 0.3s;
  white-space: nowrap;
}
.btn:hover{ background: var(--paper); color: var(--ink); }
.btn--filled{ background: var(--sun); color: var(--ink); border-color: var(--sun); }
.btn--filled:hover{ background: var(--sun-deep); border-color: var(--sun-deep); color: var(--paper); }
.btn--dark{ color: var(--ink); border-color: var(--ink); }
.btn--dark:hover{ background: var(--ink); color: var(--paper); }

.hero__scroll{
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  opacity: 0.7;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll::after{
  content:""; width: 1px; height: 32px;
  background: linear-gradient(180deg, currentColor, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine{
  0%,100%{ transform: scaleY(0.3); transform-origin: top; }
  50%{ transform: scaleY(1); }
}

@media (max-width: 900px){
  .hero__compose{ grid-template-columns: 1fr; gap: 24px; }
  .hero__right{ align-items: flex-start; text-align: left; }
}

/* ───────── SECTION LAYOUT ───────── */
.section{ position: relative; padding: clamp(60px, 10vw, 140px) 0; }
.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
}
.section__eyebrow{
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sun-deep);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.section__eyebrow::before{
  content:""; width: 32px; height: 1px; background: currentColor;
}
.section__title{
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  max-width: 18ch;
}
.section__title em{
  font-style: italic;
  color: var(--sea);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

/* ───────── CHART (the star) ───────── */
.chart{
  background: var(--paper-light);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.chart__inner{
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.chart__copy{ position: sticky; top: 140px; }
.chart__copy h2{ margin-bottom: 28px; }
.chart__copy p{
  font-family: var(--serif);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 18px;
}
.chart__canvas{
  aspect-ratio: 1200 / 900;
  position: relative;
  background: #efd9a3;
  border: 1px solid rgba(58, 36, 16, 0.45);
  box-shadow:
    0 30px 80px -30px rgba(11, 40, 56, 0.4),
    0 4px 16px rgba(58, 36, 16, 0.15);
  overflow: hidden;
}
.chart__map{
  position: absolute; inset: 0;
  display: block;
  width: 100%; height: 100%;
}
.chart__map img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.chart__overlay{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.chart__overlay svg, .chart__canvas > svg{ width: 100%; height: 100%; }
.chart-pin{
  filter: drop-shadow(0 2px 6px rgba(58, 36, 16, 0.35));
}
.chart-routes path{
  filter: drop-shadow(0 1px 0 rgba(245, 220, 175, 0.6));
}
.chart-badges text{
  font-family: var(--display);
}
.chart__legend{
  position: absolute;
  right: 14px; bottom: 14px;
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #3a2410;
  background: rgba(240, 217, 168, 0.92);
  padding: 9px 13px;
  border: 1px solid rgba(58, 36, 16, 0.4);
  line-height: 1.85;
  text-align: right;
  z-index: 2;
}
.chart__coords{
  position: absolute;
  left: 14px; top: 14px;
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #3a2410;
  background: rgba(240, 217, 168, 0.85);
  padding: 6px 10px;
  border: 1px solid rgba(58, 36, 16, 0.3);
  opacity: 0.92;
  z-index: 2;
}

@media (max-width: 1000px){
  .chart__inner{ grid-template-columns: 1fr; }
  .chart__copy{ position: relative; top: 0; }
}

/* ───────── FLEET RAIL ───────── */
.fleet{
  background: var(--sea-dark);
  color: var(--paper);
  padding: clamp(60px, 10vw, 140px) 0;
  overflow: hidden;
}
.fleet .section__eyebrow{ color: var(--sun); }
.fleet .section__title em{ color: var(--sun); }
.fleet__head{
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: end;
  padding: 0 var(--gut);
  margin-bottom: 60px;
}
.fleet__head p{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.2vw, 19px);
  opacity: 0.85;
  max-width: 46ch;
}
.fleet__rail{
  display: flex;
  gap: 24px;
  padding: 0 var(--gut) 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--sun) rgba(255,255,255,0.1);
}
.fleet__rail::-webkit-scrollbar{ height: 4px; }
.fleet__rail::-webkit-scrollbar-track{ background: rgba(255,255,255,0.08); }
.fleet__rail::-webkit-scrollbar-thumb{ background: var(--sun); }

.boat-card{
  flex: 0 0 clamp(300px, 34vw, 460px);
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s;
}
.boat-card:hover{ transform: translateY(-6px); }
.boat-card__media{
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--sea);
}
.boat-card__media img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1), filter 0.6s;
  filter: saturate(1.05) contrast(1.02);
}
.boat-card:hover .boat-card__media img{
  transform: scale(1.06);
}
.boat-card__num{
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  background: rgba(11, 40, 56, 0.6);
  color: var(--paper);
  padding: 6px 10px;
}
.boat-card__pill{
  position: absolute;
  bottom: 16px; right: 16px;
  background: var(--sun);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 7px 12px;
}
.boat-card__meta{
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(243, 234, 216, 0.6);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(243, 234, 216, 0.12);
}
.boat-card__meta b{
  display: block;
  color: var(--paper);
  font-weight: normal;
  margin-top: 2px;
}
.boat-card__name{
  margin-top: 18px;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.boat-card__name em{
  display: block;
  font-style: italic;
  color: var(--shallow);
  font-size: 0.55em;
  letter-spacing: 0;
  margin-top: 4px;
  font-variation-settings: "opsz" 40, "SOFT" 80;
}
.boat-card__tag{
  margin-top: 10px;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(243, 234, 216, 0.72);
  font-size: 15px;
}

/* ───────── JOURNEYS (editorial index) ───────── */
.journeys{
  background: var(--paper);
}
.journeys__head{
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.journeys__head p{
  font-family: var(--serif);
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--ink-soft);
  max-width: 46ch;
}
.journey{
  display: grid;
  grid-template-columns: 80px 1fr auto 24px;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: background 0.3s, padding 0.3s;
}
.journey:first-child{ border-top: 1px solid var(--rule); }
.journey:hover{
  background: linear-gradient(90deg, transparent 0%, rgba(232, 164, 71, 0.08) 50%, transparent 100%);
  padding-left: 12px;
}
.journey__num{
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--sun-deep);
}
.journey__title{
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.journey__title em{ font-style: italic; color: var(--sea); }
.journey__hook{
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 40ch;
  text-align: right;
}
.journey__arrow{
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  transition: transform 0.3s, background 0.3s, color 0.3s;
  font-size: 10px;
}
.journey:hover .journey__arrow{
  background: var(--sun);
  border-color: var(--sun);
  transform: rotate(-45deg);
}

.journey__drawer{
  display: none;
  grid-column: 1 / -1;
  padding: 28px 0 12px;
  gap: 40px;
  grid-template-columns: 1.3fr 1fr;
}
.journey.is-open .journey__drawer{ display: grid; }
.journey.is-open{ background: rgba(232, 164, 71, 0.06); }
.journey__body{
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.journey__body strong{ color: var(--ink); font-weight: 500; }
.journey__facts{
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
  line-height: 2;
}
.journey__facts b{ color: var(--sun-deep); font-weight: normal; }

@media (max-width: 900px){
  .journey{ grid-template-columns: 40px 1fr 20px; }
  .journey__hook{ display: none; }
  .journey__drawer{ grid-template-columns: 1fr; gap: 20px; }
  .journeys__head{ grid-template-columns: 1fr; }
  .fleet__head{ grid-template-columns: 1fr; }
}

/* ───────── TAILOR-MADE ───────── */
.tailor{
  background: var(--sun);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.tailor .section__eyebrow{ color: var(--ember); }
.tailor__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tailor__copy h2{ margin-bottom: 28px; }
.tailor__copy h2 em{ color: var(--ember); }
.tailor__copy p{
  font-family: var(--serif);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.55;
  max-width: 46ch;
  margin-bottom: 18px;
}
.tailor__aside{
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  line-height: 2;
  border-left: 1px solid var(--ink);
  padding-left: 24px;
}
.tailor__aside b{ font-weight: normal; color: var(--ember); }

@media (max-width: 900px){
  .tailor__inner{ grid-template-columns: 1fr; gap: 32px; }
}

/* ───────── WALKING ───────── */
.walking{ background: var(--paper); }
.walking__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.walk-card{
  position: relative;
  background: var(--paper-dark);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  color: var(--paper);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px;
  cursor: pointer;
}
.walk-card::before{
  content:"";
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.78) saturate(1.1);
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.walk-card:hover::before{ transform: scale(1.05); }
.walk-card::after{
  content:"";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,40,56,0) 40%, rgba(11,40,56,0.85) 100%);
}
.walk-card > *{ position: relative; z-index: 1; }
.walk-card__kicker{
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 10px;
}
.walk-card__title{
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  margin-bottom: 10px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.walk-card__title em{ font-style: italic; color: var(--sun); }
.walk-card__meta{
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.85;
}
.walk-1{ background-image: linear-gradient(135deg, #7a5a3a 0%, #c89f68 50%, #e8c890 100%); }
.walk-2{ background-image: linear-gradient(135deg, #c4681f 0%, #e8a447 40%, #f3c98f 100%); }

@media (max-width: 900px){
  .walking__grid{ grid-template-columns: 1fr; }
}

/* ───────── KEEPERS ───────── */
.keepers{
  background: var(--paper-light);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.keepers__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.keepers__quote{
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--ink);
  position: relative;
}
.keepers__quote::before{
  content:"\201C";
  position: absolute;
  top: -0.3em; left: -0.4em;
  font-size: 3em; line-height: 1;
  color: var(--sun); opacity: 0.55;
  font-style: normal;
}
.keepers__sign{
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft);
}
.keepers__sign b{ color: var(--sun-deep); font-weight: normal; }
.keepers__body{
  font-family: var(--serif);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
}
.keepers__body p{ margin-bottom: 18px; }
.keepers__stats{
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 28px 0;
}
.keepers__stat b{
  display: block;
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  color: var(--sun-deep);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  margin-bottom: 6px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.keepers__stat span{
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 900px){
  .keepers__inner{ grid-template-columns: 1fr; gap: 32px; }
}

/* ───────── CONTACT ───────── */
.contact{
  background: var(--ink);
  color: var(--paper);
  position: relative;
  z-index: 2;       /* keep contact text above the body paper-grain overlay */
  isolation: isolate;
}
.contact__inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact__title{ color: var(--paper); margin-bottom: 28px; }
.contact__title em{ color: var(--sun); }
.contact__lede{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: rgba(248, 240, 216, 0.9);
  max-width: 44ch;
  margin-bottom: 32px;
}
.contact__methods{
  display: flex; flex-direction: column;
  gap: 14px;
}
.contact-pill{
  display: flex; align-items: center; gap: 18px;
  padding: 20px 24px;
  background: rgba(243, 234, 216, 0.08);
  border: 1px solid rgba(243, 234, 216, 0.32);
  transition: background 0.3s, border-color 0.3s, transform 0.3s, color 0.3s;
  color: var(--paper);
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.contact-pill:hover{
  background: var(--sun);
  border-color: var(--sun);
  color: var(--ink);
  transform: translateX(6px);
}
.contact-pill__icon{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(232, 164, 71, 0.22);
  display: grid; place-items: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--sun);
}
.contact-pill:hover .contact-pill__icon{ background: var(--ink); color: var(--sun); }
.contact-pill__label{
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(248, 240, 216, 0.92);   /* explicit, no opacity-based fade */
  margin-bottom: 4px;
}
.contact-pill:hover .contact-pill__label{ color: rgba(11, 40, 56, 0.7); }
.contact-pill__value{
  font-family: var(--serif);
  font-size: 18px;
  color: var(--paper);
  font-weight: 400;
}
.contact-pill:hover .contact-pill__value{ color: var(--ink); }
@media (max-width: 600px){
  .contact-pill{ padding: 16px 18px; gap: 14px; }
  .contact-pill__value{ font-size: 16px; word-break: break-all; }
  .contact-pill__label{ font-size: 10px; letter-spacing: 0.18em; }
  .contact-pill__icon{ width: 36px; height: 36px; font-size: 16px; }
}

.contact__card{
  padding: 40px;
  background: rgba(243, 234, 216, 0.04);
  border: 1px solid rgba(243, 234, 216, 0.14);
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  line-height: 2;
}
.contact__card h4{
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: 28px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--sun);
  margin-bottom: 18px;
}
.contact__card b{ font-weight: normal; color: var(--sun); }
.contact__mini-map{
  margin-top: 20px;
  aspect-ratio: 3/2;
  background: rgba(243, 234, 216, 0.06);
  border: 1px dashed rgba(243, 234, 216, 0.3);
  position: relative;
}

@media (max-width: 900px){
  .contact__inner{ grid-template-columns: 1fr; }
}

/* ───────── FOOTER ───────── */
.footer{
  background: var(--ink);
  color: var(--paper);
  padding: 60px var(--gut) 32px;
  border-top: 1px solid rgba(243, 234, 216, 0.1);
}
.footer__top{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer__brand{
  display: flex; align-items: center; gap: 14px;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  margin-bottom: 14px;
}
.footer__brand img{ width: 42px; height: 42px; opacity: 0.9; }
.footer__tag{
  font-family: var(--serif);
  font-style: italic;
  opacity: 0.7;
  max-width: 34ch;
}
.footer h5{
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 16px;
  font-weight: normal;
}
.footer ul{ list-style: none; }
.footer li{
  font-family: var(--serif);
  font-size: 15px;
  padding: 4px 0;
  opacity: 0.78;
  transition: opacity 0.2s;
}
.footer li:hover{ opacity: 1; }
.footer__bottom{
  padding-top: 28px;
  border-top: 1px solid rgba(243, 234, 216, 0.1);
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.6;
}

@media (max-width: 900px){
  .footer__top{ grid-template-columns: 1fr 1fr; }
  .footer__bottom{ flex-direction: column; gap: 10px; }
}

/* ───────── FLOATING CTAs (WhatsApp + Reviews) ───────── */
.floats{
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.float-btn{
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.float-btn:hover{ transform: scale(1.08); }
.float-btn--wa{
  background: #25d366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}
.float-btn--review{
  width: 52px; height: 52px;
  background: var(--sun, #e8a447);
  box-shadow: 0 8px 24px rgba(232, 164, 71, 0.45);
}
@media (max-width: 600px){
  .floats{ bottom: 16px; right: 16px; gap: 10px; }
  .float-btn--wa{ width: 52px; height: 52px; }
  .float-btn--review{ width: 44px; height: 44px; }
}

/* Legacy alias for any sub-page still using .wa-float directly */
.wa-float{
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 40;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
}
.wa-float:hover{ transform: scale(1.08); }

/* ───────── NAV ACTIVE STATE ───────── */
.nav__link.is-current{
  color: var(--sun, #e8a447);
  font-weight: 500;
}
.nav__link.is-current::after{
  content: "";
  display: block;
  height: 1px;
  background: var(--sun, #e8a447);
  margin-top: 2px;
  width: 100%;
}

/* ───────── UTILS ───────── */
.reveal{ opacity: 0; transform: translateY(30px); transition: opacity 1s, transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in{ opacity: 1; transform: translateY(0); }

/* ───────── COORDINATE READOUT ───────── */
.coord-readout{
  position: fixed;
  top: 50%; right: 14px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  z-index: 30;
  transition: opacity 0.6s;
  white-space: nowrap;
}
.coord-readout.is-visible{ opacity: 0.55; }

/* ═══════════════════════════════════════════════════════════
   HERO VIDEO + OVERLAYS — cinematic upgrade
   ═══════════════════════════════════════════════════════════ */
.hero__video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  z-index: 0;
  filter: brightness(0.68) saturate(1.08) contrast(1.04);
  opacity: 0;
  transition: opacity 1.4s ease 0.3s;
  will-change: opacity;
  pointer-events: none;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.hero__video.is-ready{ opacity: 1; }
.hero__video.is-ready + .hero__img{ opacity: 0; }
.hero__img{ z-index: 0; transition: opacity 1.4s; }
@media (prefers-reduced-motion: reduce){
  .hero__video{ display: none; }
  .hero__img{ animation: none !important; }
}
.hero__veil{ z-index: 1; }
.hero__grain{ z-index: 2; }
.hero__vignette{
  position: absolute; inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 120%);
  pointer-events: none;
}
.hero__meta{ z-index: 3; display: grid; grid-template-columns: 1fr auto 1fr; }
.hero__meta-block{ display: flex; align-items: center; gap: 10px; }
.hero__meta-dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: #5efcb2;
  box-shadow: 0 0 12px #5efcb2;
  animation: heroDot 2.4s ease-in-out infinite;
}
@keyframes heroDot{
  0%,100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: 0.4; transform: scale(0.85); }
}
.hero__meta-center{ text-align: center; font-variant-numeric: tabular-nums; opacity: 0.6; }
.hero__now{ font-family: var(--mono); }

.hero__compose{ z-index: 3; }
.hero__scroll{ z-index: 3; }

/* vertical rails */
.hero__rail{
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex; flex-direction: column; gap: 14px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--paper);
  opacity: 0.55;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  animation: railFade 1.4s 1s both;
}
.hero__rail--l{ left: 14px; }
.hero__rail--r{ right: 14px; }
.hero__rail-tick{
  display: block;
  width: 1px; height: 46px;
  background: currentColor; opacity: 0.4;
  writing-mode: horizontal-tb;
  margin: 6px 0;
}
@keyframes railFade{
  from{ opacity: 0; letter-spacing: 0.5em; }
  to{ opacity: 0.55; }
}
@media (max-width: 900px){
  .hero__rail{ display: none; }
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE ticker strip
   ═══════════════════════════════════════════════════════════ */
.marquee{
  background: var(--ink);
  color: var(--paper);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(232, 164, 71, 0.18);
}
.marquee::before,
.marquee::after{
  content:"";
  position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 2; pointer-events: none;
}
.marquee::before{ left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after{ right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.marquee__track{
  display: flex; gap: 44px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  animation: marqueeSlide 60s linear infinite;
  width: max-content;
}
.marquee__track span{ flex-shrink: 0; opacity: 0.85; }
.marquee__star{ color: var(--sun); font-size: 9px; opacity: 0.9 !important; }
@keyframes marqueeSlide{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   EDGE INTRO — cinematic preface section
   ═══════════════════════════════════════════════════════════ */
.edge{
  position: relative;
  background: radial-gradient(ellipse at 30% 40%, #103845 0%, #051c26 60%, #020e14 100%);
  color: var(--paper);
  padding: clamp(100px, 14vw, 180px) 0 clamp(100px, 14vw, 180px);
  overflow: hidden;
  border-top: 1px solid rgba(232, 164, 71, 0.1);
}
.edge__bg{
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(232, 164, 71, 0.08), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(26, 160, 154, 0.06), transparent 50%);
  pointer-events: none;
}
.edge__grain{
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.5;
  pointer-events: none;
}
.edge__inner{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
  position: relative; z-index: 1;
}
.edge__eyebrow{
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--sun);
  opacity: 0.85;
  margin-bottom: 38px;
}
.edge__tick{ width: 32px; height: 1px; background: currentColor; opacity: 0.5; }

.edge__title{
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 108px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: clamp(60px, 8vw, 110px);
  text-wrap: balance;
}
.edge__title span{
  display: inline-block;
  margin: 0 6px;
  opacity: 0;
  transform: translateY(20px);
  animation: edgeTitleIn 1.2s cubic-bezier(.2,.7,.2,1) forwards;
}
.edge__title span:nth-child(1){ animation-delay: 0.2s; }
.edge__title span:nth-child(2){ animation-delay: 0.5s; }
.edge__title span:nth-child(3){ animation-delay: 0.8s; }
@keyframes edgeTitleIn{ to{ opacity: 1; transform: translateY(0); } }
.edge__emph{
  font-style: italic;
  color: var(--sun);
  font-variation-settings: "opsz" 144, "SOFT" 90;
}

/* the animated map */
.edge__map{
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 5 / 3;
}
.edge__map-svg{
  width: 100%; height: 100%;
  display: block;
}
.edge__europe{
  animation: edgeEuropeIn 2s 0.6s both;
  transform-origin: center;
}
@keyframes edgeEuropeIn{
  from{ opacity: 0; transform: scale(1.05); }
  to  { opacity: 0.15; transform: scale(1); }
}
.edge__line{
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: edgeLineDraw 2s 1.5s forwards;
}
@keyframes edgeLineDraw{
  to{ stroke-dashoffset: 0; }
}
.edge__pulse{
  transform-origin: 430px 260px;
  animation: edgePulse 3s ease-in-out 2s infinite;
}
@keyframes edgePulse{
  0%,100%{ opacity: 0.4; transform: scale(1); }
  50%{ opacity: 0.8; transform: scale(1.3); }
}
.edge__ring{
  transform-origin: 0 0;
  animation: edgeRingExpand 3s ease-out infinite;
}
.edge__ring--1{ animation-delay: 0s; }
.edge__ring--2{ animation-delay: 1.5s; }
@keyframes edgeRingExpand{
  0%{ transform: scale(0.5); opacity: 0.9; }
  100%{ transform: scale(2.5); opacity: 0; }
}
.edge__label{
  opacity: 0;
  animation: edgeLabelIn 1s 2.8s forwards;
}
@keyframes edgeLabelIn{ to{ opacity: 1; } }

/* Captions alongside map */
.edge__caption{
  position: absolute;
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--paper);
  opacity: 0;
  max-width: 200px;
  animation: edgeCaptionIn 1s cubic-bezier(.2,.7,.2,1) forwards;
}
.edge__caption--1{ top: 10%; left: 2%; animation-delay: 2.0s; }
.edge__caption--2{ top: 42%; left: -2%; animation-delay: 2.4s; }
.edge__caption--3{ bottom: 8%; right: 2%; max-width: 220px; text-align: right; animation-delay: 2.8s; }
.edge__caption--3{ flex-direction: row-reverse; }
.edge__caption-n{
  color: var(--sun);
  font-size: 10px;
  border-bottom: 1px solid var(--sun);
  padding-bottom: 2px;
  flex-shrink: 0;
}
@keyframes edgeCaptionIn{
  from{ opacity: 0; transform: translateY(8px); }
  to{ opacity: 0.85; transform: translateY(0); }
}

@media (max-width: 900px){
  .edge__caption{ position: static; opacity: 0.85; max-width: none; margin: 10px 0; }
  .edge__caption--3{ text-align: left; flex-direction: row; }
  .edge__map{ aspect-ratio: 4 / 3; }
}

.edge__closer{
  margin-top: clamp(40px, 6vw, 80px);
  text-align: center;
}
.edge__closer p{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 1.8vw, 28px);
  line-height: 1.4;
  color: var(--paper);
  opacity: 0.85;
  max-width: 32ch;
  margin: 0 auto;
  text-wrap: balance;
}

/* ═══════════════════════════════════════════════════════════
   BOAT CARD — video on hover
   ═══════════════════════════════════════════════════════════ */
.boat-card__video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
  pointer-events: none;
}
.boat-card:hover .boat-card__video.is-ready{ opacity: 1; }
.boat-card__play{
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(11, 40, 56, 0.55);
  backdrop-filter: blur(4px);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 6px 10px;
  display: flex; align-items: center; gap: 6px;
  opacity: 0; z-index: 2;
  transition: opacity 0.3s;
}
.boat-card:hover .boat-card__play{ opacity: 1; }
.boat-card[data-video] .boat-card__pill{ z-index: 2; }
.boat-card[data-video] .boat-card__num{ z-index: 2; }


/* ══════════════════════════════════════════════════════════
   PROTECTED WATERS — Caretta caretta section
   ══════════════════════════════════════════════════════════ */

.protected{
  position: relative;
  min-height: 100vh;
  padding: clamp(120px, 14vh, 180px) 0 clamp(140px, 16vh, 200px);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.protected__bg{
  position: absolute; inset: 0;
  z-index: -1;
  overflow: hidden;
}

.protected__water{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: water-shimmer 18s ease-in-out infinite alternate;
}

@keyframes water-shimmer {
  0%   { transform: scale(1) translateY(0); }
  100% { transform: scale(1.05) translateY(-12px); }
}

/* Bubbles field */
.protected__bubbles{
  position: absolute; inset: 0;
  pointer-events: none;
}

.bubble{
  position: absolute;
  width: var(--size, 5px);
  height: var(--size, 5px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(255,255,255,0.15) 60%, transparent);
  box-shadow: inset 0 0 2px rgba(255,255,255,0.5);
  animation: bubble-rise var(--dur, 5s) ease-in forwards;
  pointer-events: none;
}

@keyframes bubble-rise {
  0%   { transform: translate(0, 0) scale(0.5); opacity: 0; }
  15%  { opacity: 0.9; }
  50%  { transform: translate(calc(var(--drift) * 0.5), -160px) scale(1); }
  100% { transform: translate(var(--drift), -380px) scale(1.1); opacity: 0; }
}

.protected__inner{
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(60px, 10vh, 100px);
}

.protected__lede{
  max-width: 720px;
}

.protected__eyebrow{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--shallow);
  margin-bottom: 28px;
  position: relative;
  padding-left: 28px;
}
.protected__eyebrow::before{
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--shallow);
}

.protected__title{
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
  color: var(--paper);
}
.protected__title em{
  font-style: italic;
  font-weight: 400;
  color: var(--sun);
  display: inline-block;
  padding: 0 4px;
}

.protected__p{
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  color: rgba(248, 240, 216, 0.85);
  max-width: 640px;
  text-wrap: pretty;
}

/* Turtle stage — swims across */
.protected__stage{
  position: relative;
  height: 220px;
  pointer-events: none;
}

.protected__turtle{
  position: absolute;
  left: -140px;
  top: 50%;
  width: 240px;
  height: auto;
  /* SVG head is drawn on the -X side, so we mirror horizontally so she
     swims head-first in the direction of travel (left → right). */
  transform: translateY(-50%) scaleX(-1);
  animation: turtle-swim 42s linear infinite;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,0.4));
}

/* Keyframes keep scaleX(-1) on every step so the head stays leading;
   with the mirror in place, negative rotations on the original space
   read as a gentle upward body-roll — matches natural swim motion. */
@keyframes turtle-swim {
  0%   { transform: translate(0, -50%) scaleX(-1) rotate(0deg); }
  20%  { transform: translate(25vw, -60%) scaleX(-1) rotate(-3deg); }
  40%  { transform: translate(50vw, -45%) scaleX(-1) rotate(2deg); }
  60%  { transform: translate(75vw, -55%) scaleX(-1) rotate(-2deg); }
  80%  { transform: translate(95vw, -50%) scaleX(-1) rotate(1deg); }
  100% { transform: translate(calc(100vw + 300px), -50%) scaleX(-1) rotate(0deg); }
}

.protected__turtle .flipper{
  transform-origin: center;
  transform-box: fill-box;
}
.protected__turtle .flipper--fl,
.protected__turtle .flipper--fr{
  animation: flipper-front 1.4s ease-in-out infinite;
}
.protected__turtle .flipper--fr{
  animation-delay: -0.7s;
}
.protected__turtle .flipper--bl,
.protected__turtle .flipper--br{
  animation: flipper-back 1.4s ease-in-out infinite;
}
.protected__turtle .flipper--br{
  animation-delay: -0.7s;
}
.protected__turtle .turtle-head{
  transform-origin: -32px 0;
  transform-box: fill-box;
  animation: turtle-head 4s ease-in-out infinite;
}

@keyframes flipper-front {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(18deg); }
}
@keyframes flipper-back {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(-12deg); }
}
@keyframes turtle-head {
  0%, 100% { transform: rotate(0deg) translateX(0); }
  50%      { transform: rotate(-2deg) translateX(-1px); }
}

/* Facts grid */
.protected__facts{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(32px, 4vw, 56px);
  padding: 40px 0;
  border-top: 1px solid rgba(248, 240, 216, 0.15);
  border-bottom: 1px solid rgba(248, 240, 216, 0.15);
}

.protected__fact{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.protected__fact.is-in{
  opacity: 1;
  transform: translateY(0);
}

.protected__fact-num{
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--sun);
  margin-bottom: 12px;
}
.protected__fact-num span{
  font-size: 0.55em;
  font-weight: 400;
  margin-left: 2px;
  color: var(--shallow);
}

.protected__fact-label{
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 240, 216, 0.65);
  margin-bottom: 10px;
}

.protected__fact-hint{
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(248, 240, 216, 0.8);
  max-width: 240px;
}

/* Vow */
.protected__vow{
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.protected__vow-kicker{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 16px;
}
.protected__vow p{
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 1.8vw, 26px);
  line-height: 1.5;
  color: rgba(248, 240, 216, 0.9);
  text-wrap: balance;
}

/* ── Protected Waters: mobile fit ── */
@media (max-width: 800px){
  .protected{ padding: 80px 0 100px; min-height: auto; }
  .protected__inner{ gap: 44px; padding: 0 18px; }
  .protected__lede{ max-width: 100%; }
  .protected__title{ font-size: clamp(30px, 8vw, 44px); margin-bottom: 22px; word-wrap: break-word; }
  .protected__title em{ padding: 0 2px; }
  .protected__p{ font-size: 16px; max-width: 100%; }
  .protected__eyebrow{ font-size: 10px; letter-spacing: 0.22em; padding-left: 22px; margin-bottom: 18px; }
  .protected__stage{ height: 140px; }
  .protected__turtle{ width: 160px; }
  .protected__facts{
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 28px 0;
  }
  .protected__fact{ min-width: 0; }
  .protected__fact-num{
    font-size: clamp(28px, 8vw, 36px);
    overflow-wrap: anywhere;
    word-break: break-word;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
  }
  .protected__fact-num span{ font-size: 0.5em; }
  .protected__fact-label{ font-size: 9.5px; letter-spacing: 0.18em; line-height: 1.5; margin-bottom: 6px; }
  .protected__fact-hint{ font-size: 13px; max-width: 100%; }
  .protected__vow{ padding: 0 4px; }
  .protected__vow p{ font-size: 17px; line-height: 1.55; }
  .protected__cta{ margin-top: 32px; padding-top: 26px; }
  .protected__cta .btn{ font-size: 13px; padding: 12px 18px; line-height: 1.4; max-width: 100%; white-space: normal; text-align: center; }
  .protected__cta-note{ font-size: 10px; letter-spacing: 0.12em; line-height: 1.6; }
}
@media (max-width: 480px){
  .protected__facts{ grid-template-columns: 1fr; gap: 18px; padding: 22px 0; }
}

/* ══════════════════════════════════════════════════════════
   AMBIENT TURTLES — drifting through sections
   ══════════════════════════════════════════════════════════ */

.ambient-turtle{
  will-change: transform;
  transition: none;
}
.ambient-turtle .turtle-svg{
  display: block;
}

/* Subtle fin animation on ambient turtles too */
.ambient-turtle .turtle-fin{
  transform-origin: center;
  transform-box: fill-box;
  animation: ambient-fin 2.4s ease-in-out infinite;
}
.ambient-turtle .turtle-fin--fr{ animation-delay: -1.2s; }
.ambient-turtle .turtle-fin--bl{ animation-delay: -0.6s; }
.ambient-turtle .turtle-fin--br{ animation-delay: -1.8s; }

@keyframes ambient-fin {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(10deg); }
}

/* Cursor companion turtle — in chart */
.cursor-turtle{
  mix-blend-mode: multiply;
}
.cursor-turtle .turtle-fin{
  transform-origin: center;
  transform-box: fill-box;
  animation: ambient-fin 1.2s ease-in-out infinite;
}
.cursor-turtle .turtle-fin--fr{ animation-delay: -0.6s; }
.cursor-turtle .turtle-fin--bl{ animation-delay: -0.3s; }
.cursor-turtle .turtle-fin--br{ animation-delay: -0.9s; }

/* Ensure sections holding ambient turtles allow overflow without clipping too hard */
#chart, #fleet, #journeys, #walking {
  position: relative;
}

/* Responsive */
@media (max-width: 720px){
  .protected__turtle{ width: 160px; animation-duration: 28s; }
  .protected__facts{ grid-template-columns: 1fr 1fr; gap: 28px; }
  .protected__fact-num{ font-size: 34px; }
}


/* ══════════════════════════════════════════════════════════
   INNER PAGE — shared page chrome
   ══════════════════════════════════════════════════════════ */
.inner-page{
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
}

/* HERO for inner pages — large image + title overlay */
.page-hero{
  position: relative;
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
  color: var(--paper);
}
.page-hero__bg{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  filter: brightness(0.75) saturate(1.05);
}
.page-hero__veil{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,40,56,0.15) 0%, rgba(11,40,56,0) 40%, rgba(11,40,56,0.6) 100%);
}
.page-hero__inner{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0 var(--gut) clamp(40px, 6vh, 64px);
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}
.page-hero__kicker{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.page-hero__kicker::before{
  content: ""; width: 32px; height: 1px; background: var(--sun);
}
.page-hero__title{
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--paper);
  text-wrap: balance;
  max-width: 14ch;
}
.page-hero__title em{
  font-style: italic;
  font-weight: 400;
  color: var(--sun);
}
.page-hero__meta{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243, 234, 216, 0.8);
  text-align: right;
  line-height: 1.8;
}
.page-hero__crumbs{
  position: absolute;
  top: 28px;
  left: var(--gut);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(243, 234, 216, 0.6);
}
.page-hero__crumbs a{
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.page-hero__crumbs a:hover{ color: var(--sun); }
.page-hero__crumbs span{ margin: 0 10px; opacity: 0.5; }

/* PAGE BODY */
.page-body{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 10vh, 120px) var(--gut);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(80px, 10vh, 120px);
}

.page-block{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.page-block__eyebrow{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sea);
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.page-block__body h2{
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--ink);
  text-wrap: balance;
}
.page-block__body h2 em{
  font-style: italic;
  font-weight: 400;
  color: var(--sun-deep);
}
.page-block__body p{
  font-family: var(--serif);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 1.2em;
  text-wrap: pretty;
  max-width: 64ch;
}
.page-block__body p + p { margin-top: 0; }

/* Specs table (boats) */
.specs{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin: 32px 0 0;
}
.specs__cell{
  background: var(--paper);
  padding: 20px 22px;
}
.specs__label{
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 10px;
}
.specs__value{
  font-family: var(--display);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* Gallery */
.gallery{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.gallery > *{
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-dark);
}
.gallery > *:nth-child(1){ grid-row: span 2; aspect-ratio: auto; }
.gallery__caption{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sea);
  margin-top: 10px;
}

/* Key facts bar */
.keyfacts{
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 40px 0;
}
.keyfacts__item{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.keyfacts__label{
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sea);
}
.keyfacts__value{
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
}

/* Stops / itinerary */
.itinerary{
  counter-reset: stop;
  border-left: 1px solid var(--rule-strong);
  padding-left: 40px;
  margin-left: 12px;
}
.itinerary__stop{
  position: relative;
  padding: 18px 0;
  counter-increment: stop;
}
.itinerary__stop + .itinerary__stop{
  border-top: 1px solid var(--rule);
}
.itinerary__stop::before{
  content: counter(stop, upper-roman);
  position: absolute;
  left: -72px;
  top: 22px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--sea);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--sea);
  background: var(--paper);
}
.itinerary__name{
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}
.itinerary__name em{ font-style: italic; color: var(--sun-deep); }
.itinerary__desc{
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* CTA block */
.cta-block{
  background: var(--ink);
  color: var(--paper);
  padding: clamp(48px, 7vw, 80px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin: 0 auto;
  max-width: var(--maxw);
  width: calc(100% - 2 * var(--gut));
}
.cta-block h3{
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--paper);
  line-height: 1.1;
  max-width: 20ch;
}
.cta-block h3 em{ font-style: italic; color: var(--sun); }
.cta-block p{
  font-family: var(--serif);
  font-size: 16px;
  color: rgba(243,234,216,0.75);
  margin-top: 10px;
}
.cta-block__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--sun);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s;
}
.cta-block__btn:hover{ background: var(--paper); }

/* Related rail (other boats / journeys) */
.related{
  padding: clamp(64px, 9vh, 100px) var(--gut);
  background: var(--paper-light);
  border-top: 1px solid var(--rule);
}
.related__head{
  max-width: var(--maxw);
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.related__title{
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 300;
}
.related__title em{ font-style: italic; color: var(--sun-deep); }
.related__all{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sea);
  text-decoration: none;
}
.related__all:hover{ color: var(--sun-deep); }
.related__grid{
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.related-card{
  display: block;
  text-decoration: none;
  color: var(--ink);
}
.related-card__img{
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-dark);
  margin-bottom: 16px;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.related-card:hover .related-card__img{ transform: scale(1.02); }
.related-card__kicker{
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 8px;
}
.related-card__title{
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}
.related-card__title em{ font-style: italic; color: var(--sun-deep); }

/* Responsive */
@media (max-width: 820px){
  .page-block{ grid-template-columns: 1fr; gap: 16px; }
  .page-block__eyebrow{ padding-top: 0; border-top: none; }
  .gallery{ grid-template-columns: 1fr; }
  .gallery > *:nth-child(1){ aspect-ratio: 4/3; grid-row: auto; }
  .cta-block{ grid-template-columns: 1fr; }
  .itinerary{ padding-left: 28px; }
  .itinerary__stop::before{ left: -56px; }
}

/* ═══════════════════════════════════════════════════════════
   HERO BRAND MARK — overlay logo + Kastellorizo Boats wordmark
   ═══════════════════════════════════════════════════════════ */
.hero__brand{
  position: absolute;
  top: clamp(110px, 16vh, 170px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  pointer-events: none;
}
.hero__brand-logo{
  width: clamp(70px, 8vw, 110px);
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.45));
}
.hero__brand-text{
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-shadow:
    0 0 14px rgba(243, 234, 216, 0.55),
    0 2px 10px rgba(0, 0, 0, 0.35),
    0 0 1px rgba(255,255,255,0.6);
  line-height: 1;
}
.hero__brand-sub{
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  font-size: clamp(11px, 1.1vw, 15px);
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--ink);
  margin-top: 6px;
  text-shadow:
    0 0 10px rgba(243, 234, 216, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.35);
}
@media (max-width: 768px){
  .hero__brand{ top: 96px; gap: 8px; }
  .hero__brand-logo{ width: 56px; }
  .hero__brand-text{ font-size: 20px; letter-spacing: 0.05em; }
  .hero__brand-sub{ font-size: 10px; letter-spacing: 0.28em; margin-top: 3px; }
}

/* ─── FOOTER brand: stacked KASTELLORIZO + BOATS RENTAL ─── */
.footer__brand-text{
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.footer__brand-name{
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.footer__brand-sub{
  font-family: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  margin-top: 3px;
  opacity: 0.85;
}

/* Slightly tighter, more centered hero composition */
.hero__compose--centered{
  bottom: 10vh;
  align-items: center;
}
@media (max-width: 800px){
  .hero__compose--centered{
    grid-template-columns: 1fr;
    bottom: 6vh;
  }
  .hero__right{ align-items: flex-start; text-align: left; }
}

/* ═══════════════════════════════════════════════════════════
   NEW COMPONENTS (rebuild)
   ═══════════════════════════════════════════════════════════ */

/* Buttons additions */
.btn--gold{ background: var(--sun); color: var(--ink); border-color: var(--sun); }
.btn--gold:hover{ background: var(--sun-deep); color: var(--paper); border-color: var(--sun-deep); }
.btn--ghost{ background: transparent; color: inherit; border: 1px solid currentColor; }
.btn--ghost:hover{ background: rgba(255,255,255,0.08); }

/* Journey cards as direct links */
.journey--link{
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.4s ease, background 0.4s;
  position: relative;
}
.journey--link:hover{
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(232, 164, 71, 0.05) 0%, transparent 100%);
}
.journey--link:hover .journey__arrow{ transform: translateX(8px); color: var(--sun); }
.journey--link .journey__arrow{ transition: transform 0.4s, color 0.4s; font-size: 22px; color: var(--ink-soft); }
.journey__title{
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  font-weight: 400;
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.journey__hook{
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: clamp(14px, 1.3vw, 16px);
  margin-top: 4px;
}
.journey__pill{
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sun); border: 1px solid var(--sun);
  border-radius: 999px; padding: 3px 10px;
  font-style: normal; font-weight: 500;
}

/* Onboard (Picnic) section */
.onboard{
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 10vw, 140px) 0;
}
.onboard__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.onboard__visual picture, .onboard__visual img{
  display: block; width: 100%; height: auto;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(11, 40, 56, 0.35);
  aspect-ratio: 4/5; object-fit: cover;
}
.onboard__copy{ max-width: 540px; }
.onboard__copy p{
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  margin-bottom: 16px;
}
@media (max-width: 800px){ .onboard__inner{ grid-template-columns: 1fr; } }

/* Marine Life CTA in Protected Waters */
.protected__cta{
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(32px, 4vw, 56px);
  border-top: 1px solid rgba(248, 240, 216, 0.2);
  text-align: center;
}
.protected__cta-note{
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(248, 240, 216, 0.6);
}

/* Keepers portrait */
.keepers__portrait{ margin-bottom: 24px; max-width: 380px; }
.keepers__portrait picture, .keepers__portrait img{
  display: block; width: 100%; height: auto;
  border-radius: 4px;
  aspect-ratio: 4/5; object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

/* Stories grid (Journal teaser on homepage) */
.stories{
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 10vw, 140px) 0;
}
.stories__head{
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px; margin-bottom: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}
.stories__head .section__eyebrow{ color: var(--sun); }
.stories__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}
.story-card{
  position: relative; display: block;
  text-decoration: none; color: inherit;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(248, 240, 216, 0.12);
  border-radius: 4px; overflow: hidden;
  transition: transform 0.4s, border-color 0.4s, background 0.4s;
}
.story-card:hover{
  transform: translateY(-6px);
  border-color: var(--sun);
  background: rgba(232, 164, 71, 0.06);
}
.story-card__media{
  aspect-ratio: 16/10;
  overflow: hidden; background: var(--ink-soft);
}
.story-card__media img{
  display: block; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.8s ease;
}
.story-card:hover .story-card__media img{ transform: scale(1.05); }
.story-card__num{
  position: absolute; top: 12px; left: 14px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--sun);
  background: rgba(0,0,0,0.55);
  padding: 4px 8px; border-radius: 2px;
}
.story-card__title{
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.25;
  margin: 18px 20px 6px;
}
.story-card__hook{
  font-family: var(--serif); font-style: italic;
  color: rgba(248, 240, 216, 0.7);
  font-size: 14px; line-height: 1.5;
  margin: 0 20px 22px;
}

/* Journal page — article layout */
.journal-hero{
  position: relative;
  min-height: 56vh;
  display: grid; align-items: end;
  padding: clamp(120px, 14vw, 180px) var(--gut) clamp(60px, 7vw, 100px);
  color: var(--paper); background: var(--ink); overflow: hidden;
}
.journal-hero__bg{ position: absolute; inset: 0; z-index: 0; }
.journal-hero__bg img{ width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55); }
.journal-hero__inner{ position: relative; z-index: 1; max-width: 880px; }
.journal-hero__kicker{
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sun); margin-bottom: 18px;
}
.journal-hero__back{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243, 234, 216, 0.8);
  text-decoration: none;
  margin-bottom: 18px;
  padding: 6px 0;
  transition: color 0.25s, transform 0.25s;
  border-bottom: 1px solid rgba(243, 234, 216, 0);
}
.journal-hero__back:hover{
  color: var(--sun);
  transform: translateX(-3px);
}
.journal-hero__title{
  font-family: var(--display);
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05; font-weight: 300;
  letter-spacing: -0.01em;
}
.journal-hero__title em{ font-style: italic; color: var(--sun); }
.journal-hero__meta{
  margin-top: 22px;
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(248, 240, 216, 0.65);
}
.journal-hero__meta span + span::before{
  content: "·"; margin-right: 18px; color: var(--sun);
}
.article{
  max-width: 760px; margin: 0 auto;
  padding: clamp(60px, 7vw, 100px) var(--gut);
}
.article > * + * { margin-top: 1.6em; }
.article p{
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.75; color: var(--ink);
}
.article h2{
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.2; font-weight: 400;
  margin-top: 2em; color: var(--ink);
}
.article h3{
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500; color: var(--ink); margin-top: 1.6em;
}
.article blockquote{
  font-family: var(--display); font-style: italic;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.4; color: var(--ink-soft);
  border-left: 3px solid var(--sun);
  padding: 4px 0 4px 28px; margin: 2em 0;
}
.article figure{ margin: 2.4em 0; }
.article figure img, .article figure picture, .article figure video{
  display: block; width: 100%; height: auto;
  border-radius: 4px;
}
.article figcaption{
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 10px; text-align: center; opacity: 0.75;
}
.article ul{
  padding-left: 1.4em;
  font-family: var(--serif);
  font-size: clamp(17px,1.4vw,20px);
  line-height: 1.75;
}
.article ul li{ margin: 0.5em 0; }
.article a{ color: var(--sea); border-bottom: 1px solid var(--sea); }
.article a:hover{ color: var(--sun-deep); border-color: var(--sun-deep); }

.journal-end{
  border-top: 1px solid var(--rule);
  padding: clamp(48px, 6vw, 80px) var(--gut);
  background: var(--paper-light);
  text-align: center;
}
.journal-end h3{
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 12px; color: var(--ink);
}
.journal-end p{
  font-family: var(--serif); font-style: italic;
  color: var(--ink-soft); margin-bottom: 24px;
}
.journal-related{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
  max-width: 1100px; margin: 0 auto;
  text-align: left;
}
.journal-related .story-card{
  background: white; border-color: var(--rule); color: var(--ink);
}
.journal-related .story-card:hover{ background: var(--paper-light); border-color: var(--sun); }
.journal-related .story-card__title{ color: var(--ink); }
.journal-related .story-card__hook{ color: var(--ink-soft); }

/* Journal index (article grid landing) */
.journal-index{
  padding: clamp(140px, 16vw, 200px) var(--gut) clamp(60px, 7vw, 100px);
  background: var(--paper); color: var(--ink);
}
.journal-index__head{
  max-width: 880px; margin: 0 auto clamp(40px, 5vw, 70px);
  text-align: center;
}
.journal-index__kicker{
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sun); margin-bottom: 14px;
}
.journal-index__title{
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1; font-weight: 300; letter-spacing: -0.01em;
}
.journal-index__title em{ font-style: italic; color: var(--sun); }
.journal-index__lede{
  font-family: var(--serif); font-style: italic;
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink-soft);
  max-width: 620px; margin: 22px auto 0;
  line-height: 1.6;
}
.journal-index__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  max-width: 1200px; margin: 0 auto;
}
.journal-index .story-card{
  background: var(--paper-light);
  border: 1px solid var(--rule);
  color: var(--ink);
}
.journal-index .story-card:hover{
  background: white;
  border-color: var(--sun);
}
.journal-index .story-card__title{ color: var(--ink); }
.journal-index .story-card__hook{ color: var(--ink-soft); }

/* Návlakas dedicated section in round.html */
.navlakas{
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}
.navlakas__inner{
  position: relative; z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
}
.navlakas__head{
  max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px);
}
.navlakas__kicker{
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--sun); margin-bottom: 16px;
}
.navlakas__title{
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05; font-weight: 300;
  letter-spacing: -0.005em;
}
.navlakas__title em{ font-style: italic; color: var(--sun); }
.navlakas__lede{
  font-family: var(--serif); font-style: italic;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.6;
  color: rgba(248, 240, 216, 0.85);
  margin-top: 22px; max-width: 640px;
}
.navlakas__list{
  margin-top: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 980px;
}
.navlakas__list li{
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  color: rgba(248, 240, 216, 0.9);
  padding-left: 24px;
  position: relative;
}
.navlakas__list li::before{
  content: "★";
  position: absolute; left: 0; top: 0;
  color: var(--sun); font-size: 12px;
}
.navlakas__gallery{
  margin-top: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
}
.navlakas__gallery img, .navlakas__gallery picture{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  aspect-ratio: 4/3;
}
.navlakas__gallery > *:first-child{ grid-row: span 2; aspect-ratio: 4/5; }
@media (max-width: 700px){
  .navlakas__gallery{ grid-template-columns: 1fr 1fr; }
  .navlakas__gallery > *:first-child{ grid-column: span 2; grid-row: auto; aspect-ratio: 16/10; }
}

/* Sub-page hero treatment for sunset / fishing (text-driven, no photos) */
.text-hero{
  min-height: 88vh;
  display: grid; place-items: center;
  padding: clamp(120px, 14vw, 180px) var(--gut) clamp(60px, 7vw, 100px);
  position: relative;
  overflow: hidden;
}
.text-hero--sunset{
  background:
    radial-gradient(120% 80% at 50% 100%, #c4681f 0%, #9c3a1b 30%, #4a1a14 60%, #0a2832 100%);
  color: var(--paper);
}
.text-hero--fishing{
  background:
    linear-gradient(180deg, #0a2832 0%, #083f4a 50%, #0a5c6b 100%);
  color: var(--paper);
}
.text-hero__inner{
  max-width: 920px; text-align: center;
}
.text-hero__kicker{
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 20px;
}
.text-hero__title{
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.98; font-weight: 200;
  letter-spacing: -0.02em;
}
.text-hero__title em{ font-style: italic; color: var(--sun); }
.text-hero__lede{
  font-family: var(--serif); font-style: italic;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.5;
  margin-top: 30px;
  color: rgba(248, 240, 216, 0.85);
  max-width: 680px;
  margin-left: auto; margin-right: auto;
}
.text-hero__cta{
  margin-top: clamp(36px, 4vw, 56px);
  display: inline-flex;
  gap: 16px; flex-wrap: wrap; justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE COVERAGE — components added in the rebuild
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 800px){
  /* Stories grid: tighten gaps, full-width cards */
  .stories{ padding: 60px 0; }
  .stories__head{ margin-bottom: 28px; }
  .stories__grid{ grid-template-columns: 1fr; gap: 18px; }
  .story-card__title{ margin: 16px 16px 6px; font-size: 19px; }
  .story-card__hook{ margin: 0 16px 18px; font-size: 13px; }

  /* Onboard picnic: stack + photo first */
  .onboard{ padding: 60px 0; }
  .onboard__inner{ gap: 28px; }
  .onboard__visual{ order: -1; }
  .onboard__visual picture, .onboard__visual img{ aspect-ratio: 4/3; }

  /* Návlakas dedicated section */
  .navlakas{ padding: 60px 0; }
  .navlakas__title{ font-size: clamp(28px, 7vw, 38px); }
  .navlakas__lede{ font-size: 16px; }
  .navlakas__list{ grid-template-columns: 1fr; gap: 16px; }

  /* Journal article hero */
  .journal-hero{ min-height: 50vh; padding-top: clamp(96px, 14vw, 130px); padding-bottom: 36px; }
  .journal-hero__title{ font-size: clamp(30px, 9vw, 42px); }
  .journal-hero__meta{ gap: 12px; font-size: 11px; }
  .journal-hero__meta span + span::before{ display: none; }
  .article{ padding: 40px var(--gut); }
  .article p, .article ul{ font-size: 17px; line-height: 1.7; }
  .article blockquote{ font-size: 19px; padding-left: 18px; margin: 1.5em 0; }
  .journal-end{ padding: 40px var(--gut); }
  .journal-related{ grid-template-columns: 1fr; gap: 14px; }
  .journal-index{ padding: 100px var(--gut) 60px; }
  .journal-index__title{ font-size: clamp(34px, 10vw, 48px); }
  .journal-index__grid{ grid-template-columns: 1fr; gap: 18px; }

  /* Pirate chart: image is wider than tall, mobile must keep aspect */
  .chart__inner{ gap: 24px; }
  .chart__canvas{ aspect-ratio: 1200 / 900; }
  .chart__legend{ font-size: 8px; padding: 7px 9px; bottom: 8px; right: 8px; line-height: 1.6; }
  .chart__coords{ font-size: 8px; padding: 5px 7px; top: 8px; left: 8px; }
  /* The pin label can crowd the island on tiny screens — scale the SVG group */
  .chart-pin{ transform-origin: center; }

  /* Boat card name should still be readable */
  .boat-card__name{ font-size: 18px !important; }

  /* Sub-page page-hero: tighter padding */
  .page-hero{ min-height: 60vh; }
}

@media (max-width: 480px){
  /* Story cards even tighter */
  .story-card__media{ aspect-ratio: 16/9; }
  /* Pirate-chart pin: shrink to avoid covering the island */
  .chart-pin text{ font-size: 28px !important; }
  /* Hero brand text smaller */
  .hero__brand-text{ font-size: 16px; letter-spacing: 0.06em; }
}

/* Safety: every img inside common picture/figure containers should cover-fit centered */
.story-card__media img,
.related-card__img,
.onboard__visual img,
.keepers__portrait img,
.navlakas__gallery img,
.chart__map img,
.journal-hero__bg img{
  object-fit: cover;
  object-position: center center;
}


