/* ============================================================
   Mavi Sükûn — Gökova Özel Mavi Yolculuk
   Design DNA: ivory + mürekkep + pirinç. Edebi, sakin.
   ============================================================ */

:root {
  --bg: #F5F1E8;
  --surface: #FFFFFF;
  --surface-2: #EFE9DA;
  --ink: #1C1B19;
  --ink-soft: #4A4740;
  --ink-mute: #7A756A;
  --accent: #0B4F6C;
  --accent-deep: #073b50;
  --accent-2: #C9A24B;
  --accent-2-soft: #E4CD93;
  --line: rgba(28, 27, 25, 0.14);
  --line-strong: rgba(28, 27, 25, 0.28);
  --gold-rule: linear-gradient(90deg, transparent, var(--accent-2), transparent);

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 72px);
  --header-h: 74px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Spectral", Georgia, serif;

  --shadow-accent: 0 26px 52px -34px rgba(11,79,108,0.55);

  interpolate-size: allow-keywords;
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  max-width: 100vw;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(1rem, 0.96rem + 0.3vw, 1.12rem);
  line-height: 1.72;
  letter-spacing: -0.01em;
  color: var(--ink);
  background:
    radial-gradient(120% 80% at 15% -10%, rgba(11,79,108,0.05), transparent 60%),
    radial-gradient(110% 70% at 100% 0%, rgba(201,162,75,0.06), transparent 55%),
    var(--bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 0.4em;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 28, "WONK" 0;
}
p { margin: 0 0 1.1em; }
.long-text, p, li { overflow-wrap: anywhere; word-break: break-word; }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
main { padding-top: var(--header-h); }
section { position: relative; }
.section {
  padding-block: clamp(56px, 9vw, 128px);
}
.section--tint { background: var(--surface-2); }
.section--ink { background: var(--ink); color: var(--bg); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--bg); }

/* eyebrow / kicker */
.eyebrow {
  font-family: var(--body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--accent-2);
}
.section--ink .eyebrow { color: var(--accent-2); }

/* gold rule */
.gold-rule {
  height: 1px;
  border: 0;
  background: var(--gold-rule);
  margin: clamp(28px, 5vw, 56px) 0;
}

/* marginalia numbering */
.marginalia {
  position: absolute;
  top: clamp(40px, 8vw, 96px);
  left: max(12px, calc((100vw - var(--maxw)) / 2 - 8px));
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--accent-2);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  opacity: 0.8;
  pointer-events: none;
}
@media (max-width: 1320px) {
  .marginalia { writing-mode: horizontal-tb; left: var(--pad); top: clamp(24px,5vw,40px); }
}

/* drop cap */
.dropcap::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 4.6em;
  line-height: 0.72;
  float: left;
  margin: 0.06em 0.12em 0 0;
  color: var(--accent);
  text-shadow: 1px 2px 0 rgba(201,162,75,0.18);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.92em 1.6em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background 220ms cubic-bezier(.2,.7,.2,1),
              color 220ms cubic-bezier(.2,.7,.2,1),
              transform 220ms cubic-bezier(.2,.7,.2,1),
              box-shadow 220ms cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -18px rgba(11,79,108,0.9);
}
.btn-primary .arrow { transition: transform 220ms ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-gold { background: var(--accent-2); color: var(--ink); }
.btn-gold:hover, .btn-gold:focus-visible {
  background: #b8902f; color: #fff; transform: translateY(-2px);
}
.section--ink .btn-ghost { color: var(--bg); border-color: rgba(245,241,232,0.4); }
.section--ink .btn-ghost:hover { background: rgba(245,241,232,0.12); color: #fff; border-color: var(--accent-2); }

/* ---------- a11y ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--bg);
  padding: 12px 18px; z-index: 2000; border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.section--ink :focus-visible { outline-color: var(--accent-2); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease, border-color 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(245, 241, 232, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
  border-color: var(--line);
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand .brand-mark { color: var(--accent); }
.brand .brand-sub {
  font-family: var(--body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 480px) { .brand .brand-sub { display: none; } }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.1rem);
}
.nav-desktop a {
  position: relative;
  font-family: var(--body);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.3em 0;
  transition: color 200ms ease;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--accent-2);
  transition: width 240ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 0.6em 1.2em;
  border-radius: 2px;
  font-weight: 600;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent); color: #fff; }

@media (max-width: 1023px) { .nav-desktop { display: none; } }

/* hamburger */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  border: 1px solid rgba(28,27,25,0.42);
  background: rgba(255,255,255,0.92);
  border-radius: 3px;
  padding: 0;
  box-shadow: 0 4px 14px -8px rgba(3,42,58,0.55);
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 8px 20px -10px rgba(11,79,108,0.6);
}
.nav-toggle:hover span { background: var(--accent); }
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.6px;
  background: var(--ink);
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease, top 260ms ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
@media (max-width: 1023px) { .nav-toggle { display: block; } }

/* drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 20px) 28px 32px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer .drawer-eyebrow {
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.4rem;
}
.drawer a {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease, padding-left 200ms ease;
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); padding-left: 6px; }
.drawer a.is-active { color: var(--accent); }
.drawer a.drawer-cta {
  margin-top: 1.6rem;
  border: 0;
  background: var(--ink);
  color: var(--bg) !important;
  font-style: normal;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  padding: 0.9em 1.2em;
  border-radius: 2px;
}
.drawer a.drawer-cta:hover { background: var(--accent); color: #fff !important; padding-left: 1.2em; }

/* ============================================================
   HERO — cinematic full-bleed photo
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(600px, 88vh, 900px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #06222e;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  transform: scale(1.06);
  transform-origin: 60% 40%;
  animation: hero-kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-kenburns {
  0%   { transform: scale(1.06) translate3d(0, 0, 0); }
  100% { transform: scale(1.14) translate3d(-1.6%, -1.4%, 0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4,26,36,0.34) 0%, rgba(4,26,36,0.04) 26%, rgba(4,26,36,0.50) 72%, rgba(4,26,36,0.84) 100%),
    linear-gradient(90deg, rgba(4,26,36,0.60) 0%, rgba(4,26,36,0.16) 52%, rgba(4,26,36,0) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--pad) clamp(56px, 9vw, 116px);
}
.hero-content > * {
  animation: hero-fade-up 900ms cubic-bezier(.2,.7,.2,1) both;
}
.hero-content > .hero-eyebrow { animation-delay: 80ms; }
.hero-content > .hero-title   { animation-delay: 200ms; }
.hero-content > .hero-sub     { animation-delay: 380ms; }
.hero-content > .hero-cta-row { animation-delay: 520ms; }
.hero-content > .hero-stats   { animation-delay: 660ms; }
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: clamp(0.72rem, 0.68rem + 0.3vw, 0.86rem);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-2-soft);
  margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.7em;
  text-shadow: 0 2px 10px rgba(3,20,28,0.5);
}
.hero-eyebrow::before { content:""; width: 40px; height: 1px; background: var(--accent-2); flex: none; }

.hero-title {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2rem, 1.1rem + 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: #FFFFFF;
  max-width: 16ch;
  margin: 0 0 0.5em;
  text-shadow: 0 10px 34px rgba(3,20,28,0.5), 0 2px 10px rgba(3,20,28,0.4);
}
.hero-title .word { display: inline-block; white-space: nowrap; }
.hero-title em {
  font-style: italic;
  color: var(--accent-2-soft);
}
.hero-sub {
  font-size: clamp(1.02rem, 0.98rem + 0.5vw, 1.28rem);
  color: #eef6f7;
  max-width: 44ch;
  margin: 0 0 1.8em;
  text-shadow: 0 4px 16px rgba(3,20,28,0.55);
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero-ghost { color: #f4f1e8; border-color: rgba(245,241,232,0.55); }
.hero-ghost:hover, .hero-ghost:focus-visible {
  background: rgba(245,241,232,0.14);
  color: #fff;
  border-color: var(--accent-2);
}

/* thin stat strip over the photo */
.hero-stats {
  display: flex; flex-wrap: wrap;
  gap: 0.4rem 2.2rem;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(245,241,232,0.22);
  max-width: 640px;
}
.hstat { display: flex; flex-direction: column; line-height: 1.15; }
.hstat .hn {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.24rem, 1rem + 1vw, 1.7rem);
  color: #fff;
  text-shadow: 0 3px 14px rgba(3,20,28,0.5);
}
.hstat .hl {
  font-family: var(--body);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: rgba(238,246,247,0.86);
  text-shadow: 0 2px 8px rgba(3,20,28,0.5);
}

/* continuous single-line wave under hero (theme signature) */
.wave-signature {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  line-height: 0;
}
.wave-signature svg {
  display: block;
  width: 200%;
  height: clamp(38px, 6vw, 70px);
  animation: wave-drift 18s linear infinite;
}
@keyframes wave-drift {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.manifesto-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.4rem);
  line-height: 1.28;
  color: var(--ink);
  max-width: 22ch;
}
.manifesto-body { max-width: 62ch; }
@media (min-width: 900px) {
  .manifesto-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(18px, 3vw, 30px);
  margin-top: clamp(40px, 6vw, 72px);
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 32px);
  border-radius: 3px;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -28px rgba(11,79,108,0.5);
}
.pillar .icon {
  width: 46px; height: 46px;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pillar h3 {
  font-size: 1.28rem;
  margin-bottom: 0.4em;
}
.pillar p { font-size: 0.98rem; color: var(--ink-soft); margin: 0; }
.pillar .num {
  font-family: var(--serif); font-style: italic;
  color: var(--accent-2); font-size: 0.85rem;
  letter-spacing: 0.1em;
  display: block; margin-bottom: 0.8rem;
}

/* ============================================================
   KOYLAR — seven coves literary
   ============================================================ */
.koy {
  display: grid;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  padding-block: clamp(30px, 5vw, 56px);
  border-top: 1px solid var(--line);
}
.koy:first-of-type { border-top: 0; }
@media (min-width: 820px) {
  .koy { grid-template-columns: 1fr 1fr; }
  .koy:nth-child(even) .koy-media { order: 2; }
}
.koy-media {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
}
.koy-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}
.koy:hover .koy-media img { transform: scale(1.05); }
.koy-media .koy-index {
  position: absolute;
  top: 14px; left: 16px;
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem;
  color: #fff;
  background: rgba(11,79,108,0.82);
  padding: 4px 12px;
  border-radius: 2px;
  letter-spacing: 0.08em;
}
.koy-body .koy-name {
  font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.4rem);
  margin-bottom: 0.3em;
}
.koy-body .koy-tag {
  font-family: var(--body); font-style: normal;
  font-size: 0.76rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent-2);
  display: block; margin-bottom: 0.7rem;
}
.koy-body p { color: var(--ink-soft); }

/* ============================================================
   GEMI — gulet portrait (asymmetric overlap)
   ============================================================ */
.gemi-wrap {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
@media (min-width: 900px) {
  .gemi-wrap { grid-template-columns: 1.15fr 0.85fr; }
}
.gemi-photo {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  box-shadow: 0 40px 80px -50px rgba(3,42,58,0.7);
}
.gemi-photo img { width: 100%; height: 100%; object-fit: cover; }
.gemi-specs {
  list-style: none;
  margin: 1.4rem 0 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,150px), 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.gemi-specs li {
  background: var(--surface);
  padding: 16px 18px;
}
.gemi-specs .k {
  display: block;
  font-family: var(--body); font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 4px;
}
.gemi-specs .v {
  font-family: var(--serif); font-style: italic;
  font-size: 1.3rem; color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* stats counters band */
.stats-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,180px), 1fr));
  gap: clamp(18px, 3vw, 40px);
  text-align: center;
}
.stat .num {
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: clamp(2.4rem, 1.6rem + 3vw, 4rem);
  line-height: 1; color: var(--accent-2);
  font-variant-numeric: tabular-nums;
}
.stat .label {
  font-family: var(--body); font-size: 0.86rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bg); opacity: 0.82; margin-top: 0.5rem;
  display: block;
}

/* ============================================================
   MÜRETTEBAT — crew
   ============================================================ */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(22px, 4vw, 40px);
}
.crew-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease;
}
.crew-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -32px rgba(11,79,108,0.5); }
.crew-photo { aspect-ratio: 4 / 5; overflow: hidden; background: var(--surface-2); }
.crew-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms ease; }
.crew-card:hover .crew-photo img { transform: scale(1.04); }
.crew-info { padding: 22px 24px; }
.crew-info .role {
  font-family: var(--body); font-size: 0.74rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 0.4rem;
}
.crew-info h3 { font-size: 1.5rem; margin-bottom: 0.5em; }
.crew-info p { font-size: 0.96rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: clamp(26px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease, border-color 240ms ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 26px 52px -34px rgba(11,79,108,0.55); }
.price-card.is-featured { border-color: var(--accent-2); box-shadow: 0 0 0 1px var(--accent-2) inset; }
.price-card .tier {
  font-family: var(--body); font-size: 0.76rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
  display: flex; justify-content: space-between; align-items: center;
}
.price-card .tier .badge {
  background: var(--accent-2); color: var(--ink);
  font-size: 0.64rem; padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.12em;
}
.price-card .price {
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.7rem);
  color: var(--ink); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-card .price small {
  display: block; font-family: var(--body); font-style: normal;
  font-size: 0.82rem; color: var(--ink-mute); font-weight: 400;
  margin-top: 0.5rem; letter-spacing: 0.02em;
}
.price-card .incl {
  list-style: none; padding: 0; margin: 1.4rem 0;
  display: grid; gap: 0.7rem;
}
.price-card .incl li {
  font-size: 0.94rem; color: var(--ink-soft);
  padding-left: 1.5em; position: relative;
}
.price-card .incl li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-2);
}
.price-card .incl li.excl { color: var(--ink-mute); }
.price-card .incl li.excl::before { background: none; content: "–"; top: 0; color: var(--ink-mute); font-weight: 700; }
.price-card .btn { margin-top: auto; justify-content: center; }
.price-note {
  font-size: 0.82rem; color: var(--ink-mute);
  text-align: center; margin-top: 1.6rem; font-style: italic;
}

/* ============================================================
   FAQ — pure CSS accordion
   ============================================================ */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(18px, 2.6vw, 26px) 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.4rem;
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: clamp(1.1rem, 0.98rem + 0.6vw, 1.38rem);
  color: var(--ink);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary .mark {
  flex: none; width: 22px; height: 22px;
  position: relative; margin-top: 0.35em;
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item > summary .mark::before,
.faq-item > summary .mark::after {
  content: ""; position: absolute; background: var(--accent);
  left: 50%; top: 50%;
}
.faq-item > summary .mark::before { width: 2px; height: 16px; transform: translate(-50%,-50%); }
.faq-item > summary .mark::after { width: 16px; height: 2px; transform: translate(-50%,-50%); }
.faq-item[open] > summary .mark { transform: rotate(135deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 0 0;
  overflow: hidden;
  color: var(--ink-soft);
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 24px;
}
.faq-item > .answer p { margin: 0 0 0.8em; }
.faq-item > .answer p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(24px, 4vw, 48px);
}
.form-grid {
  display: grid;
  gap: 1.2rem 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
.field { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.field > span { font-family: var(--body); font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.02em; }
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 0;
  border-bottom: 2px solid var(--line-strong);
  padding: 0.7em 0.2em;
  border-radius: 0;
  transition: border-color 200ms ease, background 200ms ease;
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-2);
}
.field.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
}
.field.kvkk span { font-weight: 400; font-size: 0.86rem; }
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 4px 0 0;
  accent-color: var(--accent);
}
.form-submit { margin-top: 1.6rem; }
@media (max-width: 639px) { .form-submit .btn { width: 100%; justify-content: center; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-hero {
  padding-block: clamp(48px, 8vw, 96px);
  min-height: 240px;
  display: flex; align-items: center;
  background: var(--surface-2);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 20px 42px -30px rgba(11,79,108,0.5); }
.contact-card .ic {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(11,79,108,0.08);
  color: var(--accent); margin-bottom: 1rem;
}
.contact-card .ic svg { width: 22px; height: 22px; }
.contact-card .ch {
  font-family: var(--body); font-size: 0.74rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 0.4rem;
}
.contact-card .val {
  font-family: var(--serif); font-style: italic;
  font-size: 1.2rem; color: var(--ink);
  display: block; word-break: break-word;
}
.contact-card a.val:hover { color: var(--accent); }
.contact-card .sub { font-size: 0.84rem; color: var(--ink-mute); margin: 0.4rem 0 0; }

/* hours as mini grid */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.hours-grid .row {
  display: flex; justify-content: space-between;
  padding: 12px 18px;
  font-variant-numeric: tabular-nums;
  border-top: 1px solid var(--line);
}
.hours-grid .row:first-child { border-top: 0; }
.hours-grid .row.today { background: rgba(201,162,75,0.14); font-weight: 600; }
.hours-grid .row .d { color: var(--ink-soft); }

/* ============================================================
   TABLES
   ============================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}
table th {
  font-family: var(--body); font-weight: 600;
  background: var(--surface-2);
  letter-spacing: 0.04em;
}

/* ============================================================
   DOC PAGES (policies)
   ============================================================ */
.doc {
  max-width: 820px;
  margin-inline: auto;
}
.doc h2 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); margin-top: 2em; }
.doc h3 { font-size: 1.2rem; margin-top: 1.6em; font-style: normal; font-weight: 700; }
.doc ul, .doc ol { padding-left: 1.4em; }
.doc li { margin-bottom: 0.5em; }
.doc .updated { font-size: 0.86rem; color: var(--ink-mute); font-style: italic; }

/* page hero (inner) */
.page-hero {
  padding-block: clamp(48px, 8vw, 100px);
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem); }
.page-hero p { max-width: 56ch; color: var(--ink-soft); margin: 0.6em 0 0; }

/* section head helper */
.section-head { max-width: 60ch; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.2rem); }
.section-head p { color: var(--ink-soft); margin-top: 0.4em; }
.section--ink .section-head p { color: rgba(245,241,232,0.82); }

/* notes list (atölye notları) */
.notes {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1rem;
}
.notes li {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem;
  align-items: baseline;
  padding-bottom: 1rem; border-bottom: 1px solid var(--line);
}
.notes .date {
  font-family: var(--body); font-size: 0.78rem;
  color: var(--accent-2); letter-spacing: 0.08em; white-space: nowrap;
}
.notes .txt { color: var(--ink-soft); font-size: 0.98rem; }

/* testimonials */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.tst {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: clamp(24px, 3vw, 34px);
  display: flex; flex-direction: column;
}
.tst .quote {
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; line-height: 1.5;
  color: var(--ink); margin: 0 0 1.2rem;
}
.tst .who {
  margin-top: auto;
  font-family: var(--body); font-size: 0.86rem;
  color: var(--accent); font-weight: 600;
}
.tst .meta { font-size: 0.8rem; color: var(--ink-mute); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(245,241,232,0.86);
  padding-block: clamp(48px, 7vw, 88px) 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
}
@media (min-width: 720px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand .brand { color: var(--bg); font-size: 1.5rem; margin-bottom: 0.8rem; }
.footer-brand .brand .brand-mark { color: var(--accent-2); }
.footer-brand p { color: rgba(245,241,232,0.7); max-width: 40ch; font-size: 0.94rem; }
.footer-col h4 {
  font-family: var(--body); font-style: normal; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer-col a, .footer-col address {
  color: rgba(245,241,232,0.8);
  font-size: 0.94rem; font-style: normal;
  transition: color 200ms ease;
}
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 24px;
  border-top: 1px solid rgba(245,241,232,0.14);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem;
  justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(245,241,232,0.6);
}
.footer-bottom a { color: rgba(245,241,232,0.6); }
.footer-bottom a:hover { color: var(--accent-2); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; }

/* ============================================================
   COOKIE
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.5);
  padding: 20px 22px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 720px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h4 { font-size: 1.15rem; margin-bottom: 0.4em; }
.cookie-banner p { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 1rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 0.6em 1em;
  border-radius: 3px;
  font-family: var(--body); font-weight: 600; font-size: 0.9rem;
  border: 1px solid var(--line-strong);
  background: var(--surface); color: var(--ink);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.cookie-actions button[data-consent="accept"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cookie-actions button[data-consent="accept"]:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
/* reject given equal visual weight to accept (GDPR parity) — solid fill, not a faint outline */
.cookie-actions button[data-consent="reject"] { background: var(--surface-2); color: var(--ink); border-color: var(--line-strong); }
.cookie-actions button[data-consent="reject"]:hover,
.cookie-actions button[data-consent="settings"]:hover { border-color: var(--accent); color: var(--accent); }

/* cookie settings modal */
.cookie-modal {
  position: fixed; inset: 0;
  z-index: 10000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.55);
}
.cookie-modal.is-open { display: flex; }
.cookie-modal .panel {
  background: var(--surface);
  border-radius: 10px;
  max-width: 480px; width: 100%;
  padding: clamp(24px, 4vw, 36px);
  max-height: 90vh; overflow-y: auto;
}
.cookie-modal h3 { font-size: 1.5rem; margin-bottom: 0.6em; }
.toggle-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; padding: 14px 0; border-top: 1px solid var(--line);
}
.toggle-row:first-of-type { border-top: 0; }
.toggle-row .tt { font-weight: 600; font-family: var(--body); }
.toggle-row .td { font-size: 0.84rem; color: var(--ink-mute); margin: 0.2rem 0 0; }
.toggle-row input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 20px; height: 20px; margin-top: 3px; accent-color: var(--accent);
}
.cookie-modal .save-row { margin-top: 1.4rem; display: flex; justify-content: flex-end; }

/* ============================================================
   REVEAL / MOTION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-photo { animation: none !important; transform: none !important; }
  .hero-content > * { animation: none !important; opacity: 1 !important; transform: none !important; }
  .wave-signature svg { animation: none !important; }
}

/* line-by-line stagger for prose reveal */
.line-reveal > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity 640ms cubic-bezier(.2,.7,.2,1), transform 640ms cubic-bezier(.2,.7,.2,1);
}
.line-reveal.is-in > * { opacity: 1; transform: none; }
.line-reveal.is-in > *:nth-child(1) { transition-delay: 0ms; }
.line-reveal.is-in > *:nth-child(2) { transition-delay: 110ms; }
.line-reveal.is-in > *:nth-child(3) { transition-delay: 220ms; }
.line-reveal.is-in > *:nth-child(4) { transition-delay: 330ms; }
.line-reveal.is-in > *:nth-child(5) { transition-delay: 440ms; }
html.no-js .line-reveal > * { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .line-reveal > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* CTA band */
.cta-band {
  text-align: center;
}
.cta-band h2 { font-size: clamp(2.2rem, 1.6rem + 3vw, 3.6rem); max-width: 18ch; margin-inline: auto; }
.cta-band p { max-width: 48ch; margin: 0.6em auto 2em; color: rgba(245,241,232,0.82); }

/* small responsive helpers */
@media (max-width: 640px) {
  .pillar .icon { width: 38px; height: 38px; }
  .hero { min-height: clamp(520px, 88vh, 760px); }
  .marginalia { display: none; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:linear-gradient(90deg,var(--accent),var(--accent-2));z-index:9998;transition:width 80ms linear;pointer-events:none}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* ============================================================
   PREMIUM POLISH v2 — Fraunces editorial, brass hairlines,
   maritime detailing. Motion-safe & no-js safe.
   ============================================================ */

/* --- brand & marginalia refined for Fraunces --- */
.brand { font-variation-settings: "SOFT" 40, "WONK" 0; }
.marginalia { font-variation-settings: "SOFT" 60, "WONK" 1; opacity: 0.9; }

/* --- eyebrow: brass tick that breathes --- */
.eyebrow::before { transition: width 400ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-in .eyebrow::before, .is-in.eyebrow::before { width: 46px; }

/* --- section heads: a hanging brass initial rule under the h2 --- */
.section-head h2 { position: relative; }
.section-head { position: relative; }
.section-head::after {
  content: "";
  display: block;
  width: 54px; height: 2px;
  margin-top: clamp(16px, 2vw, 24px);
  background: linear-gradient(90deg, var(--accent-2), transparent);
}
.section-head[style*="center"]::after { margin-inline: auto; background: var(--gold-rule); width: 90px; }

/* --- tinted sections get a whisper-thin brass seam at the top --- */
.section--tint { position: relative; }
.section--tint::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gold-rule); opacity: 0.5;
}

/* ============================================================
   MANIFESTO — pillars as a numbered ledger
   ============================================================ */
.manifesto-lead { position: relative; padding-left: clamp(0px, 1vw, 4px); }
.manifesto-lead::before {
  content: "“";
  position: absolute;
  left: -0.5em; top: -0.35em;
  font-family: var(--serif); font-style: italic;
  font-size: 2.4em; line-height: 1;
  color: var(--accent-2); opacity: 0.34;
}
@media (max-width: 600px){ .manifesto-lead::before { display:none; } }

.pillar {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.6), var(--surface));
}
.pillar::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform 420ms cubic-bezier(.2,.7,.2,1);
}
.pillar:hover::before, .pillar:focus-within::before { transform: scaleX(1); }
.pillar:hover { box-shadow: 0 24px 46px -30px rgba(11,79,108,0.55); }
.pillar .icon {
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(11,79,108,0.05);
  box-sizing: content-box;
  width: 26px; height: 26px;
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
}
.pillar:hover .icon { background: rgba(201,162,75,0.14); border-color: var(--accent-2-soft); transform: rotate(-4deg); }
.pillar .num {
  font-size: 0.95rem;
  font-variation-settings: "SOFT" 50, "WONK" 1;
}

/* ============================================================
   KOYLAR — literary plates with brass index & framed photo
   ============================================================ */
.koy-media { box-shadow: 0 30px 60px -44px rgba(3,42,58,0.75); }
.koy-media::after {
  content: "";
  position: absolute; inset: 10px;
  border: 1px solid rgba(245,241,232,0.34);
  border-radius: 2px;
  pointer-events: none;
  transition: inset 500ms cubic-bezier(.2,.7,.2,1);
}
.koy:hover .koy-media::after { inset: 16px; }
.koy-media .koy-index {
  font-size: 1.05rem;
  background: rgba(11,79,108,0.88);
  border: 1px solid rgba(201,162,75,0.5);
  box-shadow: 0 6px 18px -8px rgba(3,42,58,0.7);
}
.koy-body { position: relative; }
.koy-body .koy-tag { display: inline-flex; align-items: center; gap: 0.6em; }
.koy-body .koy-tag::before {
  content: ""; width: 22px; height: 1px; background: var(--accent-2);
}
.koy-body .koy-name { font-variation-settings: "SOFT" 30, "WONK" 0; }
.koy-body p::first-letter { margin-left: 0.02em; }

/* ============================================================
   GEMI — spec ledger with brass keyline
   ============================================================ */
.gemi-photo::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(245,241,232,0.14);
  box-shadow: inset 0 0 0 1px rgba(201,162,75,0.16);
  pointer-events: none;
}
.gemi-specs li { position: relative; transition: background 240ms ease; }
.gemi-specs li:hover { background: var(--surface-2); }

/* ============================================================
   STATS BAND — hairline separators between figures
   ============================================================ */
.stats-band .stat { position: relative; padding-inline: clamp(8px, 2vw, 20px); }
.stats-band .stat + .stat::before {
  content: "";
  position: absolute; left: 0; top: 12%; bottom: 12%;
  width: 1px; background: rgba(201,162,75,0.28);
}
@media (max-width: 640px){ .stats-band .stat + .stat::before { display: none; } }

/* ============================================================
   CREW — role plate & brass frame on photo
   ============================================================ */
.crew-card { position: relative; }
.crew-photo { position: relative; }
.crew-photo::after {
  content: "";
  position: absolute; inset: 10px;
  border: 1px solid rgba(245,241,232,0.3);
  pointer-events: none;
  transition: inset 460ms cubic-bezier(.2,.7,.2,1);
}
.crew-card:hover .crew-photo::after { inset: 15px; }
.crew-info .role { display: inline-flex; align-items: center; gap: 0.55em; }
.crew-info .role::before { content: ""; width: 18px; height: 1px; background: var(--accent-2); }

/* ============================================================
   PRICING — featured tier lifted, brass ribbon
   ============================================================ */
.price-card.is-featured {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px var(--accent-2) inset, 0 34px 60px -40px rgba(11,79,108,0.6);
}
.price-card.is-featured:hover { transform: translateY(-12px); }
@media (max-width: 860px){ .price-card.is-featured, .price-card.is-featured:hover { transform: none; } }
.price-card .tier .badge {
  box-shadow: 0 4px 12px -6px rgba(201,162,75,0.9);
  font-weight: 600;
}
.price-card .price { position: relative; }

/* ============================================================
   TESTIMONIALS — open quote glyph, brass foot
   ============================================================ */
.tst { position: relative; overflow: hidden; transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease; }
.tst:hover { transform: translateY(-5px); box-shadow: var(--shadow-accent); }
.tst::before {
  content: "“";
  position: absolute; top: -0.18em; right: 0.24em;
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: 5.4rem; line-height: 1;
  color: var(--accent-2); opacity: 0.16;
  pointer-events: none;
}
.tst .who { display: inline-flex; align-items: center; gap: 0.6em; }
.tst .who::before { content: ""; width: 20px; height: 1px; background: var(--accent-2); }

/* ============================================================
   SEYIR DEFTERI (notes) — logbook markers
   ============================================================ */
.notes li { position: relative; padding-left: 1.4rem; }
.notes li::before {
  content: "";
  position: absolute; left: 2px; top: 0.62em;
  width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid var(--accent-2); background: var(--bg);
}
.notes .date { font-variation-settings: "SOFT" 40; }

/* ============================================================
   FAQ — hover warmth
   ============================================================ */
.faq-item > summary { transition: color 200ms ease, padding-left 260ms cubic-bezier(.2,.7,.2,1); }
.faq-item > summary:hover { color: var(--accent); padding-left: 6px; }
.faq-item[open] > summary { color: var(--accent); }

/* ============================================================
   CONTACT cards — brass medallion + lift
   ============================================================ */
.contact-card .ic { transition: background 260ms ease, transform 260ms ease; }
.contact-card:hover .ic { background: rgba(201,162,75,0.16); color: var(--accent-deep); transform: translateY(-2px); }

/* ============================================================
   FORM — brass focus underline glow
   ============================================================ */
.field input:focus, .field select:focus, .field textarea:focus {
  box-shadow: 0 2px 0 0 var(--accent-2);
}

/* ============================================================
   REZERVASYON form-card — framed invitation
   ============================================================ */
#rezervasyon .form-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.65), var(--surface));
  box-shadow: 0 40px 80px -56px rgba(3,42,58,0.6);
}
#rezervasyon .form-card::before {
  content: "";
  position: absolute; inset: 10px;
  border: 1px solid var(--line);
  border-radius: 3px; pointer-events: none;
}

/* --- footer brand optical --- */
.footer-brand .brand { font-variation-settings: "SOFT" 40; }

/* ============================================================
   REVEAL — richer easing already set; add media inner ease
   (does NOT hide content: image stays visible when no .is-in)
   ============================================================ */
.reveal .koy-media img,
.reveal .gemi-photo img,
.reveal .crew-photo img { transition: transform 900ms cubic-bezier(.2,.7,.2,1); }

/* --- brass rule shimmer (decorative only) --- */
@keyframes brass-drift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.gold-rule {
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  background-size: 200% 100%;
  animation: brass-drift 9s linear infinite;
}

/* ============================================================
   MOTION SAFETY — disable every decorative animation added above
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .gold-rule { animation: none !important; }
  .pillar::before, .koy-media::after, .crew-photo::after,
  .eyebrow::before, .pillar .icon { transition: none !important; }
  body { background-attachment: scroll; }
}
