/* ===========================================================
   Küçük Kaptan Mavi Tur — Aileye Özel
   Palet: krem + kehribar + deniz yeşili
   =========================================================== */

:root {
  --bg: #FFF8E7;
  --surface: #FFFFFF;
  --surface-2: #FDF1D9;
  --surface-3: #F7E7C6;
  --ink: #243A2E;
  --ink-soft: #4A5E52;
  --ink-mute: #6E7E73;
  --accent: #F2A03D;
  --accent-deep: #D9822B;
  --accent-2: #2E8B8B;
  --accent-2-deep: #1F6E6E;
  --line: rgba(36, 58, 46, 0.14);
  --line-strong: rgba(36, 58, 46, 0.28);
  --shadow-soft: 0 18px 40px -28px rgba(36, 58, 46, 0.42);
  --shadow-lift: 0 26px 54px -30px rgba(46, 139, 139, 0.5);
  --header-h: 76px;
  --maxw: 1080px;
  --radius: 18px;
  --radius-lg: 28px;
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Karla', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', Cambria, 'Times New Roman', serif;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.018em;
  font-optical-sizing: auto;
  overflow-wrap: break-word;
}
h1 em, h2 em, h3 em, h4 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-2-deep);
}

p { margin: 0 0 1.1em; }
a { color: var(--accent-2-deep); text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

.script {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  color: var(--accent-deep);
  font-size: 1.35em;
  line-height: 1;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

section { padding: clamp(48px, 8vw, 96px) 0; position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent-2-deep);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-head { max-width: 640px; margin-bottom: clamp(28px, 5vw, 48px); }
.section-head h2 { font-size: clamp(1.8rem, 4.6vw, 2.7rem); }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }

.word-safe { overflow-wrap: anywhere; word-break: break-word; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 220ms cubic-bezier(.2,.7,.2,1), background 220ms, color 220ms, box-shadow 220ms;
  line-height: 1;
  text-align: center;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #3a2408; box-shadow: 0 12px 26px -14px rgba(242,160,61,.8); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--accent-deep); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--surface); color: var(--ink); border-color: var(--accent-2); transform: translateY(-2px); }
.btn-sea { background: var(--accent-2); color: #fff; }
.btn-sea:hover, .btn-sea:focus-visible { background: var(--accent-2-deep); color: #fff; transform: translateY(-2px); }

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
  z-index: 2000;
}
.skip-link:focus { left: 0; }

/* ---------- 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(255, 248, 231, 0.92);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(255, 248, 231, 0.98);
  box-shadow: 0 8px 24px -16px rgba(36,58,46,.28);
  border-bottom-color: var(--line);
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand .mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--accent-2);
  color: #fff;
  border-radius: 10px 10px 10px 2px;
  flex: none;
}
.brand .mark svg { width: 20px; height: 20px; }
.brand small { display: block; font-family:'Karla',sans-serif; font-weight:600; font-size:.62rem; letter-spacing:.16em; text-transform:uppercase; color: var(--accent-2-deep); }

.nav-desktop { display: none; align-items: center; gap: 4px; }
.nav-desktop a {
  position: relative;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: color 200ms;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 3px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 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 { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--ink); }
.nav-desktop .nav-cta { color: #3a2408; background: var(--accent); margin-left: 8px; padding: 10px 20px; border-radius: 999px; }
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover, .nav-desktop .nav-cta:focus-visible { background: var(--accent-deep); color: #fff; }

/* hamburger */
.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 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) + 12px) 24px 32px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block;
  padding: 14px 4px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.drawer a.is-active { color: var(--accent-2-deep); }
.drawer .drawer-cta {
  margin-top: 22px;
  text-align: center;
  background: var(--accent);
  color: #3a2408 !important;
  border-radius: 999px;
  border-bottom: none;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
}
.drawer a.drawer-cta:hover { background: var(--accent-deep); color: #fff !important; }
.drawer-tag { margin-top: auto; font-size: .85rem; color: var(--ink-mute); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- Main ---------- */
main { padding-top: var(--header-h); }

/* ---------- Hero (cinematic full-bleed photo) ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(100px, 18vh, 220px) 0 clamp(52px, 9vw, 108px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: -2;
  transform-origin: center;
  animation: heroKen 20s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKen {
  from { transform: scale(1.06); }
  to   { transform: scale(1.16) translate3d(-1.4%, -1.6%, 0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(10,26,24,.88) 0%, rgba(10,26,24,.55) 32%, rgba(10,26,24,.18) 60%, rgba(10,26,24,.30) 100%),
    linear-gradient(102deg, rgba(10,26,24,.58) 0%, rgba(10,26,24,.10) 52%, rgba(10,26,24,0) 74%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: block;
}
.hero-copy { max-width: 660px; color: #FFF8E7; }
.hero .eyebrow { color: #FFD79A; }
.hero .eyebrow::before { background: var(--accent); }

.hero-copy h1 {
  font-size: clamp(2rem, 6.6vw, 3.9rem);
  font-weight: 600;
  line-height: 1.04;
  margin-bottom: 0.42em;
  color: #FFFDF6;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 34px rgba(0,0,0,.34);
}
.hero-copy h1 .word-span {
  display: inline-block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(22px);
  animation: heroWord .82s cubic-bezier(.2,.72,.2,1) forwards;
  animation-delay: calc(0.18s + var(--w, 0) * 0.085s);
}
.hero-copy h1 .accent {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}
@keyframes heroWord { to { opacity: 1; transform: none; } }

.hero-sub {
  font-size: clamp(1.02rem, 2.3vw, 1.28rem);
  color: rgba(255,248,231,.92);
  max-width: 46ch;
  margin-bottom: 1.7em;
  text-shadow: 0 1px 18px rgba(0,0,0,.32);
  opacity: 0;
  animation: heroUp .85s cubic-bezier(.2,.72,.2,1) .58s forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
  opacity: 0;
  animation: heroUp .85s cubic-bezier(.2,.72,.2,1) .70s forwards;
}
@keyframes heroUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.hero .btn-ghost {
  color: #FFF8E7;
  background: rgba(255,248,231,.08);
  border-color: rgba(255,248,231,.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.hero .btn-ghost:hover, .hero .btn-ghost:focus-visible {
  background: rgba(255,248,231,.18);
  color: #fff;
  border-color: #fff;
}

.hero-stats {
  list-style: none;
  margin: clamp(24px, 4vw, 38px) 0 0;
  padding: clamp(18px, 2.6vw, 24px) 0 0;
  border-top: 1px solid rgba(255,248,231,.22);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  opacity: 0;
  animation: heroUp .85s cubic-bezier(.2,.72,.2,1) .84s forwards;
}
.hero-stats li { display: flex; flex-direction: column; line-height: 1.15; }
.hero-stats b {
  font-family: 'Fraunces', Cambria, serif;
  font-size: clamp(1.35rem, 3.4vw, 1.95rem);
  font-weight: 600;
  color: #FFFDF6;
  letter-spacing: -0.01em;
}
.hero-stats span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,248,231,.78);
  margin-top: 3px;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255,248,231,.55);
  border-radius: 14px;
  display: block;
}
.hero-scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 3px;
  background: rgba(255,248,231,.85);
  animation: heroScroll 1.9s ease-in-out infinite;
}
@keyframes heroScroll { 0%{ opacity:0; transform: translateY(0);} 30%{opacity:1;} 70%{opacity:1; transform: translateY(12px);} 100%{opacity:0; transform: translateY(16px);} }

/* drifting family strip (moved below hero) */
.moments { padding-top: clamp(40px, 7vw, 72px); }
.moments-head { max-width: 640px; margin-bottom: clamp(20px, 3vw, 28px); }
.moments-head p { color: var(--ink-soft); font-size: 1.06rem; margin: 0; }
.hero-strip {
  overflow: hidden;
  border-radius: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.hero-strip-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: stripdrift 44s linear infinite;
}
.hero-strip-track img {
  width: clamp(160px, 24vw, 230px);
  height: clamp(112px, 16vw, 156px);
  object-fit: cover;
  border-radius: 14px;
  flex: none;
}
@keyframes stripdrift { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.hero-strip:hover .hero-strip-track { animation-play-state: paused; }

/* ---------- Reveal ---------- */
.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-bg, .hero-strip-track, .hero-scroll span { animation: none !important; }
  .hero-copy h1 .word-span,
  .hero-sub, .hero-actions, .hero-stats {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ---------- Feature cards (neden aileye uygun) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms;
  min-width: 0;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card .ico {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--surface-2);
  color: var(--accent-2-deep);
  margin-bottom: 16px;
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

/* ---------- Story (editorial longread timeline) ---------- */
.story { background: var(--surface-2); }
.story-flow { display: grid; gap: clamp(34px, 6vw, 64px); }
.story-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}
.story-block .story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.story-block .story-img img { width: 100%; aspect-ratio: 10/7; object-fit: cover; }
.story-block .story-time {
  display: inline-block;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.story-block h3 { font-size: clamp(1.35rem, 3vw, 1.9rem); }
.story-block p { color: var(--ink-soft); }
@media (min-width: 820px) {
  .story-block { grid-template-columns: 1fr 1fr; gap: 44px; }
  .story-block:nth-child(even) .story-img { order: 2; }
}

/* ---------- Safety band ---------- */
.band { background: var(--accent-2); color: #eafafa; }
.band .eyebrow { color: #cdeeee; }
.band .eyebrow::before { background: var(--accent); }
.band h2 { color: #fff; }
.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.band-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 22px 20px;
  min-width: 0;
}
.band-item .ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.14);
  color: #fff;
  margin-bottom: 14px;
}
.band-item .ico svg { width: 24px; height: 24px; }
.band-item h3 { color: #fff; font-size: 1.1rem; margin-bottom: 6px; }
.band-item p { color: rgba(234,250,250,.85); font-size: .95rem; margin: 0; }
.band-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 44px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.stat .num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #fff;
  line-height: 1;
}
.stat .lbl { font-size: .86rem; color: rgba(234,250,250,.82); margin-top: 6px; }

/* ---------- Menu & activities (asymmetric split) ---------- */
.menu-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: stretch;
}
.menu-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 260px;
}
.menu-photo img { width: 100%; height: 100%; object-fit: cover; }
.menu-list { display: grid; gap: 14px; }
.menu-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  transition: transform 220ms, box-shadow 220ms;
}
.menu-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.menu-row .ico {
  grid-row: 1 / span 2;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--surface-2);
  border-radius: 10px;
  color: var(--accent-deep);
}
.menu-row .ico svg { width: 22px; height: 22px; }
.menu-row h4 { font-size: 1.06rem; margin: 0 0 2px; }
.menu-row p { margin: 0; font-size: .94rem; color: var(--ink-soft); }
@media (min-width: 860px) {
  .menu-split { grid-template-columns: 0.9fr 1.1fr; }
}

/* ---------- Coves gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.gal-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-soft);
}
.gal-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.gal-tile:hover img { transform: scale(1.06); }
.gal-tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  background: linear-gradient(transparent, rgba(20,36,28,.78));
}
.gal-tile.big { grid-column: span 2; aspect-ratio: 16/9; }
@media (max-width: 560px) { .gal-tile.big { grid-column: span 1; aspect-ratio: 4/3; } }

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  transition: transform 260ms, box-shadow 260ms;
  min-width: 0;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.price-card.featured { border-color: var(--accent); box-shadow: 0 24px 50px -30px rgba(242,160,61,.7); }
.price-card .tag {
  position: absolute;
  top: -12px; left: 26px;
  background: var(--accent);
  color: #3a2408;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.price-card h3 { font-size: 1.35rem; margin-bottom: 4px; }
.price-card .who { color: var(--ink-mute); font-size: .9rem; margin-bottom: 18px; }
.price-card .amount {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.3rem;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-card .amount small { font-size: .95rem; font-weight: 500; color: var(--ink-mute); }
.price-card .per { font-size: .88rem; color: var(--ink-mute); margin-bottom: 20px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.price-card li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: .95rem; color: var(--ink-soft); align-items: start; }
.price-card li svg { width: 18px; height: 18px; margin-top: 3px; }
.price-card li.inc svg { color: var(--accent-2); }
.price-card li.exc { color: var(--ink-mute); }
.price-card li.exc svg { color: var(--line-strong); }
.price-card .btn { margin-top: auto; justify-content: center; }
.price-note {
  margin-top: 22px;
  font-size: .86rem;
  color: var(--ink-mute);
  text-align: center;
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  min-width: 0;
}
.testi .quote { font-size: 1.02rem; color: var(--ink); margin-bottom: 16px; }
.testi .quote::before { content: "“"; font-family:'Fraunces',serif; font-size:2.4rem; color: var(--accent); line-height:0; vertical-align:-.35em; margin-right: 4px; }
.testi .who { font-weight: 700; color: var(--ink); font-size: .95rem; }
.testi .meta { font-size: .84rem; color: var(--ink-mute); }
.testi .crit { font-size: .84rem; color: var(--ink-mute); margin-top: 10px; font-style: italic; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 800px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq-item > summary {
  cursor: pointer;
  list-style: none;
  padding: 18px clamp(16px, 3vw, 24px);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary .plus {
  width: 24px; height: 24px;
  flex: none;
  position: relative;
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
}
.faq-item > summary .plus::before,
.faq-item > summary .plus::after {
  content: "";
  position: absolute;
  background: var(--accent-2);
  border-radius: 2px;
}
.faq-item > summary .plus::before { top: 11px; left: 3px; right: 3px; height: 2px; }
.faq-item > summary .plus::after { left: 11px; top: 3px; bottom: 3px; width: 2px; }
.faq-item[open] > summary .plus { transform: rotate(135deg); }
.faq-item > .answer {
  height: 0;
  overflow: hidden;
  padding: 0 clamp(16px, 3vw, 24px);
  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: 22px; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, #2f5245 60%, var(--accent-2-deep) 100%);
  color: #eafaf6;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 4.5vw, 2.5rem); }
.cta-band p { color: rgba(234,250,246,.86); max-width: 52ch; margin-inline: auto; }
.cta-band .btn { margin-top: 12px; }

/* ---------- Forms ---------- */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-soft);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 200ms, box-shadow 200ms;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(46,139,139,.16);
}
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 10px; }
.field.kvkk label { font-weight: 400; font-size: .9rem; color: var(--ink-soft); }
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 3px 0 0;
  accent-color: var(--accent-2);
}
.form-wrap .btn { width: 100%; justify-content: center; margin-top: 4px; }
@media (min-width: 640px) { .form-wrap .btn.auto { width: auto; } }

/* ---------- Contact cards ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 18px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px;
  transition: transform 240ms, box-shadow 240ms;
  min-width: 0;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.contact-card .ico {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--accent-2-deep);
  margin-bottom: 14px;
}
.contact-card .ico svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.contact-card a, .contact-card .val { font-weight: 700; color: var(--ink); word-break: break-word; }
.contact-card a:hover { color: var(--accent-2-deep); }
.contact-card .sub { font-size: .86rem; color: var(--ink-mute); margin-top: 4px; }

/* hours */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.hours-day {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-variant-numeric: tabular-nums;
}
.hours-day.today { border-color: var(--accent); background: var(--surface-2); }
.hours-day .d { font-weight: 700; font-size: .9rem; }
.hours-day .t { font-size: .88rem; color: var(--ink-soft); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
}
.team-card .ph { aspect-ratio: 1; overflow: hidden; }
.team-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.team-card .body { padding: 20px 22px; }
.team-card h3 { font-size: 1.18rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent-2-deep); font-weight: 700; font-size: .88rem; margin-bottom: 10px; }
.team-card p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ---------- Table ---------- */
.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: 12px;
}
.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-scroll th, .table-scroll td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.table-scroll th { background: var(--surface-2); font-family: 'Fraunces', serif; font-weight: 600; }
.table-scroll tr:last-child td { border-bottom: none; }

/* ---------- Prose (legal pages) ---------- */
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(1.4rem, 3.4vw, 1.9rem); margin-top: 1.6em; }
.prose h3 { font-size: 1.18rem; margin-top: 1.3em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.page-hero {
  background: linear-gradient(160deg, var(--surface-2), var(--bg));
  padding: clamp(48px, 8vw, 90px) 0 clamp(32px, 5vw, 54px);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2rem, 6vw, 3.2rem); }
.page-hero p { color: var(--ink-soft); font-size: 1.08rem; max-width: 60ch; }

/* ---------- Notes / activity block ---------- */
.notes { display: grid; gap: 14px; }
.note-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
}
.note-item time {
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  color: var(--accent-deep);
  white-space: nowrap;
}
.note-item p { margin: 0; font-size: .95rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(234,250,246,.78);
  padding: clamp(44px, 7vw, 72px) 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-grid h4 { color: #fff; font-size: 1.05rem; margin-bottom: 12px; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand small { color: #9fd4d0; }
.footer-brand p { font-size: .93rem; max-width: 34ch; }
.footer-col a { display: block; color: rgba(234,250,246,.78); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--accent); }
.footer-meta {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(234,250,246,.6);
}
.footer-meta a { color: rgba(234,250,246,.6); }
.footer-meta a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; color: #fff; }
.footer-social a:hover { background: var(--accent-2); border-color: var(--accent-2); }
.footer-social svg { width: 18px; height: 18px; }

/* ---------- 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: 16px;
  padding: 20px 22px;
  box-shadow: 0 24px 60px -24px rgba(20,36,28,.6);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { font-size: 1.05rem; margin-bottom: 6px; }
.cookie-banner p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 14px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions .btn { padding: 11px 18px; font-size: .9rem; flex: 1 1 auto; min-height: 44px; }
@media (min-width: 720px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* cookie modal */
.cookie-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(20,36,28,.6);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  z-index: 10000;
}
.cookie-modal-backdrop.is-open { display: flex; }
.cookie-modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 34px);
  max-width: 460px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
}
.cookie-modal h3 { font-size: 1.35rem; margin-bottom: 8px; }
.cookie-modal > p { font-size: .92rem; color: var(--ink-soft); }
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.toggle-row .tt { font-weight: 700; font-size: .98rem; }
.toggle-row .td { font-size: .85rem; color: var(--ink-mute); }
.switch { position: relative; width: 46px; height: 26px; flex: none; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .slider {
  position: absolute; inset: 0;
  background: var(--line-strong);
  border-radius: 999px;
  transition: background 200ms;
}
.switch .slider::before {
  content: ""; position: absolute;
  width: 20px; height: 20px;
  left: 3px; top: 3px;
  background: #fff; border-radius: 50%;
  transition: transform 200ms;
}
.switch input:checked + .slider { background: var(--accent-2); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:disabled + .slider { background: var(--accent-2); opacity: .5; }
.cookie-modal .btn { width: 100%; justify-content: center; margin-top: 20px; }

/* ---------- Utility ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.pill svg { width: 15px; height: 15px; color: var(--accent-2); }
.lead-p { font-size: 1.15rem; color: var(--ink-soft); }

.center { text-align: center; }
.mt-s { margin-top: 22px; }

.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 ELEVATION LAYER — Aegean editorial
   Fraunces display + italic accents · nautical wave signature ·
   bespoke cards · generous rhythm · accent-tinted motion.
   Layered last; purely additive, hero & functionality untouched.
   =========================================================== */

:root {
  --sand: #FBEFD6;
  --shadow-teal: 0 34px 66px -34px rgba(31, 110, 110, 0.55);
  --shadow-amber: 0 30px 60px -30px rgba(217, 130, 43, 0.55);
  --ring-sea: inset 0 0 0 1px rgba(46, 139, 139, 0.18);
}

/* ---- Display typography rhythm ---- */
.section-head { max-width: 700px; margin-bottom: clamp(30px, 5vw, 54px); }
.section-head h2 {
  font-size: clamp(1.95rem, 5.2vw, 3.05rem);
  line-height: 1.05;
  letter-spacing: -0.024em;
}
.section-head p { font-size: clamp(1.02rem, 1.4vw, 1.14rem); color: var(--ink-soft); max-width: 58ch; }
section { padding: clamp(56px, 9vw, 116px) 0; }

/* darker sea headings keep amber italics for contrast */
.band h2 em, .cta-band h2 em, .hero-copy h1 em { color: var(--accent); }

/* ---- Nautical wave signature (replaces plain eyebrow dash) ---- */
.eyebrow { letter-spacing: 0.2em; font-size: 0.73rem; }
.eyebrow::before {
  width: 26px; height: 8px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='8' viewBox='0 0 26 8' fill='none' stroke='%23F2A03D' stroke-width='1.6' stroke-linecap='round'><path d='M1 5c1.4 1.5 2.8 1.5 4.2 0S8 3.5 9.4 5s2.8 1.5 4.2 0S16.4 3.5 17.8 5s2.8 1.5 4.2 0 2.8-1.5 4.2 0'/></svg>") no-repeat center / contain;
  border-radius: 0;
}

/* ---- Feature cards: bespoke, with accent crown + tilting chip ---- */
.card {
  padding: 30px 26px 28px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff, var(--surface)) padding-box;
}
.card::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 460ms cubic-bezier(.2,.7,.2,1);
}
.card:hover::before { transform: scaleX(1); }
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-teal); border-color: rgba(46,139,139,.26); }
.card .ico {
  background: linear-gradient(150deg, var(--surface-2), #fff);
  box-shadow: var(--ring-sea);
  border-radius: 15px;
  transition: transform 380ms cubic-bezier(.2,.7,.2,1);
}
.card:hover .ico { transform: translateY(-2px) rotate(-5deg); }

/* ---- Story: framed imagery + refined time badge ---- */
.story-block .story-img { box-shadow: var(--shadow-teal); }
.story-block .story-img::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.42), inset 0 0 60px -30px rgba(20,36,28,.6);
  pointer-events: none;
}
.story-block .story-time {
  background: linear-gradient(#fff, var(--bg));
  box-shadow: 0 6px 16px -12px rgba(36,58,46,.6);
}

/* ---- Safety band: deep sea gradient + light bloom ---- */
.band {
  background: linear-gradient(158deg, var(--accent-2) 0%, var(--accent-2-deep) 100%);
  position: relative;
  overflow: hidden;
}
.band::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 88% -12%, rgba(255,255,255,.16), transparent 58%),
    radial-gradient(90% 70% at 6% 108%, rgba(0,0,0,.18), transparent 60%);
  pointer-events: none;
}
.band .container { position: relative; z-index: 1; }
.band-item { transition: transform 300ms cubic-bezier(.2,.7,.2,1), background 300ms; }
.band-item:hover { transform: translateY(-5px); background: rgba(255,255,255,.15); }
.band-item .ico { box-shadow: inset 0 0 0 1px rgba(255,255,255,.26); transition: transform 360ms cubic-bezier(.2,.7,.2,1); }
.band-item:hover .ico { transform: rotate(-5deg); }
.stat .num { font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }

/* ---- Menu rows & contact cards: matching chip treatment ---- */
.menu-row { border-radius: 16px; transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms, border-color 260ms; }
.menu-row:hover { box-shadow: var(--shadow-teal); border-color: rgba(46,139,139,.24); }
.menu-row .ico, .contact-card .ico {
  background: linear-gradient(150deg, var(--surface-2), #fff);
  box-shadow: var(--ring-sea);
}
.contact-card { border-radius: 20px; }
.contact-card:hover { box-shadow: var(--shadow-teal); border-color: rgba(46,139,139,.24); }

/* ---- Coves gallery: crisper captions, framed tiles ---- */
.gal-tile { box-shadow: var(--shadow-soft); }
.gal-tile::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
  pointer-events: none;
  z-index: 1;
}
.gal-tile figcaption {
  font-size: 1.06rem;
  letter-spacing: -0.01em;
  padding: 34px 18px 14px;
  z-index: 2;
}
.gal-tile figcaption::before {
  content: "";
  display: inline-block;
  width: 18px; height: 6px;
  margin-right: 8px;
  vertical-align: middle;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='6' viewBox='0 0 18 6' fill='none' stroke='%23F2A03D' stroke-width='1.5' stroke-linecap='round'><path d='M1 4c1.1 1.1 2.2 1.1 3.3 0S6.6 2.9 7.7 4s2.2 1.1 3.3 0S13.3 2.9 14.4 4s2.2 1.1 3.3 0'/></svg>") no-repeat center / contain;
}

/* ---- Pricing: featured lifted, glowing tag ---- */
.price-card { border-radius: 22px; }
.price-card.featured { transform: translateY(-8px); }
.price-card.featured:hover { transform: translateY(-14px); }
@media (max-width: 640px) { .price-card.featured, .price-card.featured:hover { transform: none; } }
.price-card.featured .tag { box-shadow: 0 10px 24px -8px rgba(242,160,61,.9); }
.price-card .amount { letter-spacing: -0.02em; }
.price-card:hover { box-shadow: var(--shadow-teal); }

/* ---- Testimonials: editorial cards ---- */
.testi { border-radius: 20px; transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms, border-color 260ms; }
.testi:hover { transform: translateY(-5px); box-shadow: var(--shadow-teal); border-color: rgba(46,139,139,.22); }
.testi .quote { font-size: 1.06rem; line-height: 1.62; }

/* ---- FAQ: warmer interaction ---- */
.faq-item { transition: border-color 220ms, box-shadow 220ms; }
.faq-item:hover { border-color: rgba(46,139,139,.28); }
.faq-item[open] { box-shadow: var(--shadow-soft); border-color: rgba(46,139,139,.28); }

/* ---- Team cards ---- */
.team-card { border-radius: 20px; transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-teal); }
.team-card .ph { position: relative; }
.team-card .ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,36,28,.28), transparent 40%);
}

/* ---- CTA band: sea texture ---- */
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 120% at 15% -20%, rgba(242,160,61,.22), transparent 55%),
    radial-gradient(70% 100% at 100% 120%, rgba(46,139,139,.35), transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }

/* ---- Moments strip: framed drifting tiles ---- */
.hero-strip-track img { box-shadow: inset 0 0 0 1px rgba(255,255,255,.5); }

/* ---- Page hero (inner pages): warmer, framed ---- */
.page-hero {
  background: linear-gradient(160deg, var(--sand), var(--bg) 70%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; right: -6%; top: -30%;
  width: 380px; height: 380px; max-width: 60vw;
  background: radial-gradient(circle, rgba(46,139,139,.14), transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { letter-spacing: -0.024em; }

/* ---- Refined reveal easing + gentle scale ---- */
.reveal {
  transform: translateY(26px) scale(.992);
  transition: opacity 760ms cubic-bezier(.2,.7,.2,1), transform 760ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transform: none !important; }
  .card::before { transition: none; }
}

/* ---- Buttons: subtle depth ---- */
.btn-primary { box-shadow: 0 14px 30px -14px rgba(242,160,61,.85); }
.btn-primary:hover, .btn-primary:focus-visible { box-shadow: 0 18px 34px -14px rgba(217,130,43,.9); }

/* ---- Brand mark: soft depth ---- */
.brand .mark { box-shadow: 0 8px 18px -10px rgba(31,110,110,.8); }
