/* =========================================================
   Neşeli Gökler — Aile & Grup Balon Turları
   Cheerful, card-dense, family-themed
   ========================================================= */

:root {
  --bg: #FFFCF4;
  --surface: #FFFFFF;
  --surface-2: #FFF3E3;
  --surface-3: #E7F4FA;
  --ink: #21313B;
  --ink-soft: #566169;
  --accent: #EC5F14;
  --accent-deep: #C94B08;
  --accent-2: #2FA6CF;
  --accent-2-ink: #136981;
  --accent-3: #F7B32B;
  --pink: #F2799B;
  --green: #5FB86A;
  --line: rgba(33, 49, 59, 0.12);
  --line-strong: rgba(33, 49, 59, 0.22);
  --hair: rgba(33, 49, 59, 0.10);
  --shadow-soft: 0 18px 40px -26px rgba(33, 49, 59, 0.34);
  --shadow-lift: 0 34px 64px -28px rgba(236, 95, 20, 0.38);
  --dawn: linear-gradient(120deg, #FFF3E3 0%, #FDE7D2 42%, #E7F4FA 100%);
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-ui: 'Figtree', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 30px;
  --header-h: 76px;
  --maxw: 1240px;
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -0.014em;
  font-weight: 600;
  font-optical-sizing: auto;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--accent); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
}

section { position: relative; }

.section-pad { padding-block: clamp(56px, 8vw, 104px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--surface-2);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(242, 106, 27, .2);
}

.section-head { max-width: 680px; margin-bottom: clamp(28px, 4vw, 46px); }
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-top: .5em; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.06rem; }

.word-safe { overflow-wrap: anywhere; word-break: break-word; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Floating balloons (theme effect) ---------- */
.sky-balloons {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.sky-balloons b {
  position: absolute;
  bottom: -60px;
  font-size: 22px;
  line-height: 1;
  opacity: 0;
  animation: floatUp linear infinite;
  filter: drop-shadow(0 6px 10px rgba(32,48,58,.14));
}
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(-4deg); opacity: 0; }
  8%   { opacity: .9; }
  50%  { transform: translateY(-52vh) translateX(18px) rotate(4deg); }
  92%  { opacity: .8; }
  100% { transform: translateY(-108vh) translateX(-10px) rotate(-3deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sky-balloons { display: none; }
}

/* ---------- 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, 253, 245, 0.92);
  border-bottom: 1px solid transparent;
  transition: background .24s ease, box-shadow .24s ease, height .24s ease, border-color .24s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 253, 245, 0.98);
  box-shadow: 0 8px 24px -16px rgba(32, 48, 58, .28);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1.16rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand .brand-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  border-radius: 12px;
  box-shadow: 0 6px 14px -6px rgba(242,106,27,.6);
}
.brand .brand-mark svg { width: 20px; height: 20px; }
.brand small {
  display: block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-desktop a {
  position: relative;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  padding: 8px 13px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 3px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--accent); }

.nav-cta {
  margin-left: 8px;
  background: var(--ink);
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent); color: #fff !important; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .28s ease, opacity .18s ease, top .28s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ---------- Drawer ---------- */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 20px) 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: -20px 0 50px -30px rgba(32,48,58,.5);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 1.12rem;
  color: var(--ink);
  padding: 13px 8px;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 16px;
  background: var(--accent);
  color: #fff !important;
  text-align: center;
  border-radius: 999px;
  border: none;
  padding: 14px;
}
.drawer .drawer-cta:hover { background: var(--ink); color: #fff !important; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility .24s ease;
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

main { padding-top: var(--header-h); position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 16px 30px -16px rgba(242,106,27,.7); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink); color: #fff; transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(242,106,27,.55), 0 0 0 4px rgba(251,191,59,.22);
}
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--surface-2); color: var(--ink); transform: translateY(-2px); }
.btn-sky { background: var(--accent-2); color: #fff; }
.btn-sky:hover, .btn-sky:focus-visible { background: #2b93b6; color: #fff; transform: translateY(-2px); }

/* ---------- Hero (cinematic full-bleed photo) ---------- */
.hero-cinema {
  position: relative;
  min-height: 88vh;
  margin-top: calc(-1 * var(--header-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #12212a;
}
.hero-cinema__bg {
  position: absolute;
  inset: -2% -2% -4%;
  background: url("/assets/images/hero-cinema.jpg") center 40% / cover no-repeat;
  transform: scale(1.06);
  transform-origin: 60% 45%;
  animation: heroKenburns 20s ease-in-out infinite alternate;
  z-index: 0;
  will-change: transform;
}
.hero-cinema__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15,25,32,.58) 0%, rgba(15,25,32,.20) 34%, rgba(15,25,32,.55) 72%, rgba(15,25,32,.86) 100%),
    linear-gradient(96deg, rgba(15,25,32,.68) 0%, rgba(15,25,32,.30) 46%, rgba(15,25,32,0) 78%);
}
.hero-cinema__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--header-h) + clamp(48px, 12vh, 130px));
  padding-bottom: clamp(40px, 7vh, 84px);
}
.hero-cinema__copy { max-width: 660px; }
.hero-cinema__eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: clamp(16px, 2.4vw, 26px);
}
.hero-cinema__title {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.04;
  margin: 0 0 clamp(16px, 2.4vw, 26px);
  font-size: clamp(2.2rem, 7.4vw, 5rem);
  text-shadow: 0 2px 24px rgba(8,16,22,.45);
  text-wrap: balance;
}
.hero-cinema__title .word { display: inline-block; white-space: nowrap; }
.hero-cinema__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-3);
}
.hero-cinema__sub {
  font-family: var(--font-ui);
  font-size: clamp(1.02rem, 2.2vw, 1.3rem);
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  max-width: 46ch;
  margin: 0 0 clamp(22px, 3vw, 32px);
  text-shadow: 0 1px 14px rgba(8,16,22,.4);
}
.hero-cinema__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-cinema__ghost {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-cinema__ghost:hover, .hero-cinema__ghost:focus-visible {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: translateY(-2px);
}
.hero-cinema__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 5vw, 52px);
  margin-top: clamp(30px, 5vh, 52px);
  padding-top: clamp(20px, 3vw, 26px);
  border-top: 1px solid rgba(255,255,255,.22);
}
.hero-cinema__stats div { display: flex; flex-direction: column; }
.hero-cinema__stats b {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  color: #fff;
  line-height: 1;
}
.hero-cinema__stats span {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin-top: 7px;
}

/* hero motion: fade-up, pure-CSS so it works without JS */
.hero-reveal {
  opacity: 0;
  transform: translateY(26px);
  animation: heroUp .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-cinema__title.hero-reveal { animation-delay: .08s; }
.hero-cinema__sub.hero-reveal { animation-delay: .20s; }
.hero-cinema__actions.hero-reveal { animation-delay: .32s; }
.hero-cinema__stats.hero-reveal { animation-delay: .44s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }
@keyframes heroKenburns {
  from { transform: scale(1.06) translate3d(0,0,0); }
  to   { transform: scale(1.18) translate3d(0,-1.6%,0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-cinema__bg { animation: none; transform: scale(1.02); }
  .hero-reveal { animation: none; opacity: 1; transform: none; }
}
html.no-js .hero-reveal { animation: none; opacity: 1; transform: none; }

/* ---------- Hero (legacy mosaic — unused on index) ---------- */
.hero { padding-top: clamp(28px, 5vw, 56px); padding-bottom: clamp(40px, 6vw, 80px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  margin-top: .3em;
}
.hero-copy h1 .hl { color: var(--accent); position: relative; }
.hero-sub {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  max-width: 44ch;
  color: var(--ink-soft);
  margin-bottom: 1.6em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 8px;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}
.trust-strip span svg { width: 18px; height: 18px; color: var(--green); flex: none; }

/* mosaic */
.hero-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 96px;
  gap: 12px;
}
.mtile {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  animation: bob 6s ease-in-out infinite;
}
.mtile img { width: 100%; height: 100%; object-fit: cover; }
.mtile:nth-child(1) { grid-column: span 2; grid-row: span 2; animation-delay: -1s; }
.mtile:nth-child(2) { grid-row: span 2; animation-delay: -2.4s; }
.mtile:nth-child(3) { animation-delay: -3.1s; }
.mtile:nth-child(4) { animation-delay: -0.6s; }
.mtile:nth-child(5) { grid-column: span 2; animation-delay: -1.8s; }
.mtile.tint-orange { background: var(--accent); }
.mtile.tint-sky { background: var(--accent-2); }
.mtile.chip {
  display: grid;
  place-items: center;
  color: #fff;
  padding: 14px;
  text-align: center;
}
.mtile.chip .num { font-family:var(--font-ui); font-weight: 800; font-size: 1.7rem; line-height: 1; }
.mtile.chip small { font-size: .74rem; font-weight: 700; letter-spacing: .04em; opacity: .95; }
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) { .mtile { animation: none; } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: clamp(16px, 2.4vw, 26px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 30px);
  box-shadow: var(--shadow-soft);
  transition: transform .26s cubic-bezier(.2,.7,.2,1), box-shadow .26s ease, border-color .26s ease;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow-lift);
  border-color: rgba(242,106,27,.28);
}
.card .icon-badge {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--surface-2);
  color: var(--accent);
  margin-bottom: 16px;
}
.card.sky .icon-badge { background: var(--surface-3); color: var(--accent-2); }
.card .icon-badge svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.24rem; margin-bottom: .4em; }
.card p { font-size: .98rem; margin-bottom: .8em; }
.card .card-foot { margin-top: auto; }

/* package cards */
.pkg-card { position: relative; overflow: hidden; }
.pkg-card .pkg-media {
  height: 168px;
  margin: calc(-1 * clamp(20px,2.4vw,30px)) calc(-1 * clamp(20px,2.4vw,30px)) 18px;
  overflow: hidden;
  position: relative;
}
.pkg-card .pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pkg-card:hover .pkg-media img { transform: scale(1.06); }
.pkg-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--surface);
  color: var(--ink);
  font-family:var(--font-ui); font-weight: 700; font-size: .74rem;
  padding: 5px 12px; border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.pkg-tag.hot { background: var(--accent); color: #fff; }
.pkg-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.pkg-meta li {
  list-style: none;
  font-size: .82rem; font-weight: 700;
  background: var(--surface-2);
  color: var(--ink);
  padding: 4px 11px; border-radius: 999px;
}
.pkg-card .price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin: 6px 0 4px;
}
.pkg-card .price-row .amt { font-family:var(--font-ui); font-weight: 800; font-size: 1.7rem; color: var(--accent); }
.pkg-card .price-row .per { font-size: .86rem; color: var(--ink-soft); }
.price-note { font-size: .78rem; color: var(--ink-soft); margin-bottom: 14px; }
ul.checks { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 8px; }
ul.checks li { position: relative; padding-left: 26px; font-size: .95rem; color: var(--ink); }
ul.checks li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--surface);
}
ul.checks li.no::before { background: var(--line-strong); }

/* notes (kid-friendly) */
.note-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .24s ease, box-shadow .24s ease;
}
.note-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.note-card .icon-badge { grid-row: span 2; margin: 0; }
.note-card h3 { font-size: 1.1rem; margin: 0 0 4px; }
.note-card p { margin: 0; font-size: .94rem; }

/* band */
.band {
  background: linear-gradient(135deg, #26404c, #20303A);
  color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.band h2, .band h3 { color: #fff; }
.band h2 em, .band h3 em { color: #fff; font-style: italic; font-weight: 500; }
.band p { color: rgba(255,255,255,.82); }
.band-sun {
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
}
.band-sun p { color: rgba(255,255,255,.92); }

/* celebration cards */
.celebrate-card {
  border-radius: var(--radius);
  padding: 26px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .26s ease, box-shadow .26s ease;
  box-shadow: var(--shadow-soft);
}
.celebrate-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: var(--shadow-lift); }
.celebrate-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.6));
  z-index: 0;
}
.celebrate-card > * { position: relative; z-index: 1; }
.celebrate-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.celebrate-card .tagline { font-size: .8rem; font-weight: 700; letter-spacing: .04em; opacity: .95; }
.celebrate-card h3 { font-size: 1.3rem; margin: 4px 0 0; }

/* stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.stat .num { font-family:var(--font-ui); font-weight: 800; font-size: clamp(1.8rem,4vw,2.6rem); color: var(--accent); line-height: 1; }
.stat .lbl { font-size: .9rem; color: var(--ink-soft); margin-top: 6px; font-weight: 600; }

/* ---------- 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: var(--radius-sm);
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
/* Legal/prose tables are narrow (2 cols) — let them wrap and fit small screens instead of clipping */
.prose .table-scroll > table { min-width: 340px; }
.prose .table-scroll td { overflow-wrap: anywhere; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table { font-size: .96rem; background: var(--surface); }
thead th {
  background: var(--surface-2);
  text-align: left;
  font-family:var(--font-ui); font-weight: 700;
  padding: 14px 16px;
  color: var(--ink);
  border-bottom: 2px solid var(--line);
}
tbody td { padding: 13px 16px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-variant-numeric: tabular-nums; }
tbody tr:last-child td { border-bottom: none; }
tbody td:first-child { color: var(--ink); font-weight: 700; }
.price-cell { color: var(--accent) !important; font-weight: 800 !important; font-family:var(--font-ui); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; max-width: 860px; }
details.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
details.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px clamp(18px,3vw,26px);
  font-family:var(--font-ui); font-weight: 600; font-size: 1.04rem;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary .chev {
  flex: none; width: 22px; height: 22px;
  transition: transform .3s ease;
  color: var(--accent);
}
details.faq-item[open] summary .chev { transform: rotate(180deg); }
details.faq-item > .body {
  height: 0;
  padding: 0 clamp(18px,3vw,26px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
details.faq-item[open] > .body { height: auto; padding-block-end: 22px; }
details.faq-item > .body p { margin: 0; }
@media (prefers-reduced-motion: reduce) {
  details.faq-item > .body { transition: none; }
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 36px);
  box-shadow: var(--shadow-soft);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family:var(--font-ui); font-weight: 600; font-size: .92rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s 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);
  box-shadow: 0 0 0 3px rgba(242,106,27,.16);
}
.field.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field.kvkk label { font-weight: 400; font-family:var(--font-ui); 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);
}
.form-card button[type="submit"] { width: 100%; margin-top: 4px; }

/* ---------- Contact cards ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
  transition: transform .24s ease, box-shadow .24s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.contact-card .icon-badge {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--surface-2); color: var(--accent);
  margin-bottom: 14px;
}
.contact-card.sky .icon-badge { background: var(--surface-3); color: var(--accent-2); }
.contact-card h3 { font-size: 1.06rem; margin-bottom: 4px; }
.contact-card a, .contact-card p { font-size: .98rem; overflow-wrap: anywhere; }
.contact-card a { color: var(--accent); font-weight: 700; }
.contact-card small { color: var(--ink-soft); display: block; margin-top: 4px; }

/* hours card grid */
.hours-grid { display: grid; gap: 8px; }
.hours-grid .row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 14px; border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.hours-grid .row.today { background: var(--surface-2); border-color: rgba(242,106,27,.3); }
.hours-grid .row span:first-child { font-weight: 700; font-family:var(--font-ui); }

/* ---------- 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;
  box-shadow: var(--shadow-soft);
  transition: transform .26s cubic-bezier(.2,.7,.2,1), box-shadow .26s ease, border-color .26s ease;
}
.testi:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(242,106,27,.24);
}
.testi .quote { font-size: 1rem; color: var(--ink); margin: 0 0 16px; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .who .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  color: #fff; display: grid; place-items: center;
  font-family:var(--font-ui); font-weight: 800;
}
.testi .who b { display: block; font-family:var(--font-ui); font-size: .96rem; }
.testi .who small { color: var(--ink-soft); }
.stars { color: var(--accent-3); font-size: .9rem; letter-spacing: 2px; margin-bottom: 10px; }

/* process timeline */
.timeline { display: grid; gap: 0; max-width: 780px; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding-bottom: 30px;
  position: relative;
}
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px; top: 48px; bottom: 0;
  width: 2px; background: var(--line);
}
.step .num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-family:var(--font-ui); font-weight: 800; font-size: 1.15rem;
  z-index: 1;
}
.step h3 { font-size: 1.14rem; margin-bottom: 4px; }
.step .when { font-size: .8rem; font-weight: 700; color: var(--accent-2); text-transform: uppercase; letter-spacing: .06em; }
.step p { margin: 6px 0 0; font-size: .96rem; }

/* news notes */
.notes-list { display: grid; gap: 14px; max-width: 760px; }
.note-line {
  display: flex; gap: 14px; align-items: baseline;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.note-line time { font-size: .82rem; font-weight: 700; color: var(--accent-2); white-space: nowrap; font-variant-numeric: tabular-nums; }
.note-line span { color: var(--ink); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding: clamp(48px, 6vw, 74px) 0 28px;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
}
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: #fff; }
.site-footer .brand { color: #fff; margin-bottom: 12px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; font-size: .95rem; }
.footer-contact { font-size: .95rem; display: grid; gap: 8px; }
.footer-contact a { overflow-wrap: anywhere; }
.footer-bottom {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .84rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
}
.socials a:hover { background: var(--accent); }
.socials svg { width: 18px; height: 18px; color: #fff; }
.legal-note { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 10px; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: 0 24px 60px -20px rgba(32,48,58,.5);
  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: .9rem; margin-bottom: 14px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family:var(--font-ui); font-weight: 600; font-size: .92rem;
  border-radius: 12px; cursor: pointer;
  border: 1px solid var(--line-strong);
  padding: 10px 14px;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
/* Accept & Reject share equal visual weight (no dark-pattern nudging);
   Settings stays the subtle tertiary action. */
.cookie-actions [data-consent="accept"] { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-actions [data-consent="accept"]:hover { background: #d95a10; color: #fff; transform: translateY(-1px); }
.cookie-actions [data-consent="reject"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.cookie-actions [data-consent="reject"]:hover { background: #12212a; color: #fff; transform: translateY(-1px); }
.cookie-actions [data-consent="accept"]:active,
.cookie-actions [data-consent="reject"]:active { transform: translateY(0); }
.cookie-actions [data-consent="settings"] {
  background: transparent; color: var(--ink-soft);
  border-color: transparent; text-decoration: underline;
  text-underline-offset: 3px; font-weight: 600;
}
.cookie-actions [data-consent="settings"]:hover { background: var(--surface-2); color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  .cookie-actions [data-consent="accept"]:hover,
  .cookie-actions [data-consent="reject"]:hover { transform: none; }
}
@media (min-width: 720px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* cookie modal */
.cookie-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 10000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.cookie-modal-backdrop.is-open { display: flex; }
.cookie-modal {
  background: var(--surface);
  border-radius: var(--radius);
  max-width: 480px; width: 100%;
  padding: 28px;
  max-height: 90vh; overflow-y: auto;
}
.cookie-modal h3 { font-size: 1.3rem; margin-bottom: 6px; }
.toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.toggle-row:last-of-type { border-bottom: none; }
.toggle-row .t-text b { display: block; font-family:var(--font-ui); font-size: .98rem; }
.toggle-row .t-text small { color: var(--ink-soft); font-size: .84rem; }
.switch { position: relative; width: 46px; height: 26px; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider {
  position: absolute; inset: 0; cursor: pointer;
  background: var(--line-strong); border-radius: 999px;
  transition: background .2s ease;
}
.switch .slider::before {
  content: ""; position: absolute;
  height: 20px; width: 20px; left: 3px; top: 3px;
  background: #fff; border-radius: 50%; transition: transform .2s ease;
}
.switch input:checked + .slider { background: var(--accent); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:disabled + .slider { opacity: .55; cursor: not-allowed; }
.cookie-modal .modal-actions { margin-top: 20px; display: flex; gap: 10px; }
.cookie-modal .modal-actions button { flex: 1; }

/* ---------- Reveal ---------- */
/* Reveal uses the individual `translate` property (not `transform`) so the
   resting state never clobbers the `transform`-based :hover lift on cards. */
.reveal {
  opacity: 0;
  translate: 0 28px;
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), translate 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; translate: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; translate: none !important; transition: none !important; }
  .mtile, .sky-balloons b, .card, .celebrate-card { animation: none !important; }
}
html.no-js .reveal { opacity: 1; translate: none; }

/* ---------- Page hero (inner) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
  padding: clamp(40px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--line);
  min-height: 240px;
  display: flex; align-items: center;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
.page-hero p { font-size: 1.1rem; max-width: 60ch; }
.breadcrumb { font-size: .86rem; color: var(--ink-soft); margin-bottom: 14px; }
.breadcrumb a { color: var(--accent); }

/* prose (legal) */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.5rem; margin-top: 1.8em; }
.prose h3 { font-size: 1.18rem; margin-top: 1.4em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 20px; display: grid; gap: 8px; }
.prose a { font-weight: 700; }

/* team */
.team-card { text-align: left; }
.team-card .av-lg {
  width: 72px; height: 72px; border-radius: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #fff; display: grid; place-items: center;
  font-family:var(--font-ui); font-weight: 800; font-size: 1.5rem;
  margin-bottom: 16px;
}
.team-card.sky .av-lg { background: linear-gradient(135deg, var(--accent-2), #6fd0ef); }
.team-card .role { font-size: .84rem; font-weight: 700; color: var(--accent-2); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }

/* thank you */
.thanks-wrap { text-align: center; padding: clamp(60px,10vw,120px) 0; max-width: 620px; margin: 0 auto; }
.thanks-wrap .big-icon {
  width: 92px; height: 92px; border-radius: 28px; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  display: grid; place-items: center; color: #fff;
}
.thanks-wrap .big-icon svg { width: 46px; height: 46px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-mosaic { grid-auto-rows: 84px; }
  .card { padding: 20px; }
  .card .icon-badge, .contact-card .icon-badge { width: 44px; height: 44px; }
  .note-card { padding: 18px; gap: 12px; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 600px) {
  .hero-cinema { min-height: 86vh; }
  .hero-cinema__actions .btn { flex: 1 1 auto; }
  .hero-cinema__stats { gap: 16px 22px; }
  .hero-cinema__stats div { flex: 1 1 40%; min-width: 0; }
}
@media (max-width: 400px) {
  .hero-mosaic { grid-auto-rows: 72px; gap: 9px; }
  .cookie-actions button { flex: 1 1 100%; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);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;
}

/* drawer-cta-color-guard v1 */
.drawer a.nav-cta, .drawer .nav-cta, .mobile-menu a.nav-cta, nav[class*=mobile] a.nav-cta {
  color: #fff !important;
}

/* table-scroll ancestor guard v1 */
.table-scroll{max-width:100%;overflow-x:auto}
:where(*:has(> .table-scroll),*:has(> * > .table-scroll),*:has(> * > * > .table-scroll)){min-width:0}
table{max-width:100%}


/* =========================================================
   PREMIUM ART DIRECTION v2 — Kapadokya dawn · aile & grup
   Warm terracotta + dawn-teal, Fraunces display / Figtree UI.
   Layered on top; animations use only transform/opacity/filter.
   ========================================================= */

body { letter-spacing: .002em; text-rendering: optimizeLegibility; }

/* ---- Display type: optical, editorial, italic accents ---- */
.section-head h2 { line-height: 1.02; letter-spacing: -0.022em; text-wrap: balance; }
.section-head h2 em { display: inline; }

/* ---- Eyebrow: refined pill with a leading flight-tick ---- */
.eyebrow {
  gap: 10px;
  font-size: .74rem;
  letter-spacing: .2em;
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
  border-color: color-mix(in srgb, var(--accent) 26%, transparent);
  color: var(--accent-deep);
}
.eyebrow::before {
  content: "";
  width: 16px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  flex: none;
}
.band .eyebrow::before,
.hero-cinema__eyebrow::before { display: none; }

/* ---- Section head: more air ---- */
.section-head { max-width: 720px; }
.section-head p { color: var(--ink-soft); max-width: 60ch; }
@media (min-width: 900px) { .section-head.center { max-width: 760px; } }

/* ---- Flight-path hairline divider (theme motif) ---- */
.flightpath {
  height: 1px; border: 0; margin: 0;
  background-image: linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 18px);
  background-size: 18px 1px; background-repeat: repeat-x; background-position: left center;
  position: relative; opacity: .85;
}
.flightpath::after {
  content: ""; position: absolute; top: 50%; right: 3%;
  width: 13px; height: 16px; transform: translateY(-50%);
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 30' fill='none' stroke='%23EC5F14' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M12 2c5.5 0 9 4 9 9.5 0 5-4 9-7 11.5H10C7 20.5 3 16.5 3 11.5 3 6 6.5 2 12 2z'/%3E%3Cpath d='M9.5 23h5l-.7 3.6a1.2 1.2 0 0 1-1.2 1h-1.2a1.2 1.2 0 0 1-1.2-1z'/%3E%3C/svg%3E");
}

/* ---- Cards: premium lift with accent-tinted glow ---- */
.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lift);
  border-color: color-mix(in srgb, var(--accent) 30%, transparent);
}
.card .icon-badge {
  border: 1px solid color-mix(in srgb, var(--accent) 16%, transparent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.card.sky .icon-badge { border-color: color-mix(in srgb, var(--accent-2) 22%, transparent); }
.card h3 { letter-spacing: -0.01em; }

/* ---- Package cards: editorial price + ribbon polish ---- */
.pkg-card { border-radius: var(--radius-lg); }
.pkg-card .pkg-media { height: 184px; }
.pkg-card .pkg-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,28,34,0) 55%, rgba(20,28,34,.28));
}
.pkg-tag { top: 16px; left: 16px; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.5); }
.pkg-card .price-row .amt {
  font-family: var(--font-display); font-weight: 600; font-size: 2rem;
  letter-spacing: -0.02em; color: var(--accent-deep);
}
.pkg-meta li { border: 1px solid color-mix(in srgb, var(--accent) 12%, transparent); }
ul.checks li::before {
  box-shadow: inset 0 0 0 2px var(--surface), 0 0 0 1px color-mix(in srgb, var(--green) 40%, transparent);
}

/* ---- Note cards (kid-friendly) ---- */
.note-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-soft);
  border-color: color-mix(in srgb, var(--accent) 24%, transparent);
}
.note-card .icon-badge { border: 1px solid color-mix(in srgb, var(--accent) 16%, transparent); }

/* ---- Stats: editorial serif numerals ---- */
.stat { transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: color-mix(in srgb, var(--accent) 22%, transparent); }
.stat .num { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; color: var(--accent-deep); }
.hero-cinema__stats b { letter-spacing: -0.015em; }

/* ---- Celebration gallery ---- */
.celebrate-card { border-radius: var(--radius-lg); min-height: 240px; }
.celebrate-card img { transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.celebrate-card:hover img { transform: scale(1.07); }
.celebrate-card::before { background: linear-gradient(180deg, rgba(15,23,29,0) 34%, rgba(15,23,29,.72)); }
.celebrate-card .tagline {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px; border-radius: 999px; width: fit-content;
  background: rgba(255,255,255,.16); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.28); text-transform: none; letter-spacing: .01em;
}
.celebrate-card h3 { font-size: 1.42rem; letter-spacing: -0.015em; text-shadow: 0 2px 14px rgba(8,16,22,.4); }

/* ---- Table ---- */
.table-scroll { border-radius: var(--radius); box-shadow: var(--shadow-soft); }
tbody tr { transition: background .2s ease; }
tbody tr:hover { background: color-mix(in srgb, var(--accent) 5%, var(--surface)); }
.price-cell { font-family: var(--font-display) !important; font-weight: 600 !important; letter-spacing: -0.01em; }

/* ---- Process timeline ---- */
.timeline { max-width: 820px; }
.step .num {
  background: linear-gradient(140deg, var(--accent), var(--accent-deep));
  box-shadow: 0 10px 22px -12px rgba(236,95,20,.7);
  font-family: var(--font-ui); transition: transform .3s ease, box-shadow .3s ease;
}
.step:not(:last-child)::before { background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 40%, transparent), var(--line)); }
.step.is-lit .num { transform: scale(1.06); box-shadow: 0 14px 28px -12px rgba(236,95,20,.8); }
@media (prefers-reduced-motion: reduce) { .step.is-lit .num { transform: none; } }

/* ---- Testimonials ---- */
.testi { position: relative; }
.testi::before {
  content: "\201C"; position: absolute; top: 6px; right: 22px;
  font-family: var(--font-display); font-size: 4.4rem; line-height: 1;
  color: color-mix(in srgb, var(--accent) 16%, transparent); pointer-events: none;
}
.testi .quote { font-size: 1.04rem; line-height: 1.6; position: relative; }
.testi .who .av { font-family: var(--font-ui); }

/* ---- FAQ ---- */
details.faq-item { transition: border-color .2s ease, box-shadow .2s ease; }
details.faq-item:hover { border-color: color-mix(in srgb, var(--accent) 24%, transparent); }
details.faq-item[open] { box-shadow: var(--shadow-soft); border-color: color-mix(in srgb, var(--accent) 22%, transparent); }
details.faq-item summary { letter-spacing: -0.005em; }

/* ---- Band CTA: dawn texture ---- */
.band-sun { background: linear-gradient(135deg, var(--accent-deep), var(--accent) 46%, var(--accent-3)); }
.band-sun::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 15% -20%, rgba(255,255,255,.28), transparent 55%),
    radial-gradient(90% 80% at 100% 120%, rgba(15,23,29,.22), transparent 60%);
}
.band-sun > * { position: relative; z-index: 1; }
.band-sun .btn-ghost { color: var(--accent-deep); font-weight: 700; box-shadow: 0 14px 30px -14px rgba(15,23,29,.5); }
.band-sun .btn-ghost:hover { background: var(--ink) !important; color: #fff; }

/* ---- Buttons ---- */
.btn { letter-spacing: .005em; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--ink); }

/* ---- Inner page hero: dawn wash + balloon line-art motif ---- */
.page-hero { background: var(--dawn); position: relative; overflow: hidden; isolation: isolate; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero::after {
  content: ""; position: absolute; z-index: 0; right: clamp(-60px, 2vw, 40px); top: 50%;
  width: clamp(200px, 30vw, 360px); aspect-ratio: 200 / 260; transform: translateY(-50%);
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 260' fill='none' stroke='%23EC5F14' stroke-width='2.2' stroke-linejoin='round'%3E%3Cpath d='M100 8c42 0 72 30 72 72 0 42-32 68-54 88H82C60 148 28 122 28 80 28 38 58 8 100 8z'/%3E%3Cpath d='M78 168h44l-6 26a11 11 0 0 1-11 9h-10a11 11 0 0 1-11-9z'/%3E%3Cpath d='M100 8c-22 0-33 34-33 80s11 80 33 80 33-34 33-80S122 8 100 8z'/%3E%3Cpath d='M67 60h66M62 90h76M64 120h72'/%3E%3C/svg%3E");
  opacity: .12; pointer-events: none;
}
@media (max-width: 640px) { .page-hero::after { opacity: .08; width: 200px; } }
.page-hero h1 { font-weight: 600; letter-spacing: -0.02em; }
.breadcrumb a { font-weight: 600; }

/* ---- Prose (legal) ---- */
.prose h2 { letter-spacing: -0.015em; }
.prose { font-size: 1.02rem; }

/* ---- Team & thanks ---- */
.team-card .av-lg { font-family: var(--font-ui); }
.thanks-wrap .big-icon { box-shadow: 0 20px 40px -18px rgba(236,95,20,.6); }

/* ---- Floating balloons: SVG (no emoji) ---- */
.sky-balloons b { font-size: 0; filter: drop-shadow(0 8px 14px rgba(33,49,59,.16)); }
.sky-balloons b svg { display: block; width: 100%; height: 100%; }

/* ---- Contact cards ---- */
.contact-card:hover { border-color: color-mix(in srgb, var(--accent) 22%, transparent); box-shadow: var(--shadow-lift); }
.contact-card .icon-badge { border: 1px solid color-mix(in srgb, var(--accent) 16%, transparent); }

/* ---- Hours rows ---- */
.hours-grid .row.today { border-color: color-mix(in srgb, var(--accent) 34%, transparent); }

/* ---- Form focus ---- */
.field input:focus, .field select:focus, .field textarea:focus {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

/* ---- Reveal safety ---- */
.reveal { will-change: opacity; }
@media (prefers-reduced-motion: reduce) {
  .celebrate-card img, .pkg-card .pkg-media img, .testi::before { transition: none !important; }
}

/* ---- Contrast fix: teal label text meets AA (>=4.5:1 on light) ---- */
.brand small,
.step .when,
.team-card .role,
.note-line time { color: var(--accent-2-ink); }
