/* ==========================================================================
   Circus Castle Bali — public site
   Castle warm: cinematic dark hero, light editorial content pages.
   ========================================================================== */

:root {
  --ink: #1b1512;
  --ink-2: #3f342d;
  --ink-3: #6b5c52;
  --cream: #fbf7f2;
  --cream-2: #f4ece2;
  --line: #e4d8ca;
  --rose: #e86fa6;
  --rose-deep: #c33d7c;
  --rose-soft: #fbe9f2;
  --white: #fff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(27, 21, 18, .05), 0 10px 30px rgba(27, 21, 18, .07);
  --shadow-lg: 0 24px 60px rgba(27, 21, 18, .16);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --wrap: 1180px;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -.015em;
  margin: 0;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }
.container--mid { max-width: 940px; }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 .9rem;
}
.eyebrow--light { color: var(--rose); }

.lead { font-size: 1.12rem; color: var(--ink-2); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ===== Skip link ===== */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--white);
  padding: .7rem 1.1rem; border-radius: 0 0 10px 10px; font-size: .9rem;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-size: .95rem; font-weight: 600;
  padding: .82rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; }

.btn--primary { background: var(--rose); color: var(--ink); box-shadow: 0 8px 22px rgba(232, 111, 166, .34); }
.btn--primary:hover { background: #f186b5; }

.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: #2d241e; }

.btn--ghost { border-color: rgba(255, 255, 255, .55); color: var(--white); }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }

.btn--lg { padding: 1rem 2.1rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.site-header--solid {
  background: rgba(251, 247, 242, .94);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.site-header--static { position: sticky; }

.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; font-family: var(--serif); font-size: 1.08rem; font-weight: 600; letter-spacing: -.01em; }
.brand img { width: 34px; height: 34px; border-radius: 7px; }

.nav-links { display: flex; align-items: center; gap: 1.55rem; }
.nav-links a { text-decoration: none; font-size: .93rem; font-weight: 500; position: relative; padding: .3rem 0; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav-links a:not(.btn):hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--rose-deep); }
.nav-links .btn { padding: .62rem 1.35rem; font-size: .9rem; }

/* Header over dark hero */
.site-header--overlay:not(.site-header--solid) { color: var(--white); }
.site-header--overlay:not(.site-header--solid) .nav-links a[aria-current="page"] { color: var(--rose); }

.nav-toggle {
  display: none; width: 42px; height: 42px; border: 0; background: none; cursor: pointer;
  padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 1.8px; background: currentColor; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* ===== Hero (home) ===== */
.hero {
  position: relative; min-height: min(92vh, 820px);
  display: flex; align-items: center;
  background: #1b1512 center/cover no-repeat;
  color: var(--white); padding: calc(var(--nav-h) + 3rem) 0 5rem;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,21,18,.72) 0%, rgba(27,21,18,.42) 38%, rgba(27,21,18,.86) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 730px; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero__sub { margin-top: 1.35rem; font-size: 1.14rem; color: rgba(255,255,255,.9); max-width: 560px; }
.hero__actions { margin-top: 2.1rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__meta {
  position: relative; z-index: 1; margin-top: 3.2rem;
  display: flex; flex-wrap: wrap; gap: 1.9rem;
  font-size: .87rem; color: rgba(255,255,255,.78);
}
.hero__meta strong { display: block; font-family: var(--serif); font-size: 1.5rem; color: #fff; font-weight: 500; }

/* ===== Page hero (inner pages) ===== */
.page-hero {
  padding: calc(var(--nav-h) + 3.4rem) 0 2.8rem;
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
  border-bottom: 1px solid var(--line);
}
.page-hero__inner { max-width: 780px; }
.page-hero p { color: var(--ink-2); font-size: 1.1rem; margin-top: 1rem; }

/* ===== Sections ===== */
.section { padding: clamp(3.4rem, 7vw, 6rem) 0; }
.section--alt { background: var(--cream-2); }
.section--dark { background: var(--ink); color: var(--cream); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .eyebrow { color: var(--rose); }
.section--tight { padding: clamp(2.4rem, 4vw, 3.4rem) 0; }

.section-head { max-width: 700px; margin-bottom: 2.6rem; }
.section-head p { color: var(--ink-3); margin-top: .9rem; }
.section--dark .section-head p { color: rgba(251, 247, 242, .74); }

/* ===== Grids & cards ===== */
.grid { display: grid; gap: 1.4rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card__body { padding: 1.5rem 1.5rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.card__body p { color: var(--ink-2); font-size: .97rem; margin-top: .6rem; }
.card__price { margin-top: 1rem; font-family: var(--serif); font-size: 1.28rem; }
.card__price small { font-family: var(--sans); font-size: .82rem; color: var(--ink-3); font-weight: 500; }
.card__link { margin-top: auto; padding-top: 1.2rem; font-size: .92rem; font-weight: 600; color: var(--rose-deep); text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; }
.card__link::after { content: "→"; transition: transform .2s ease; }
a.card { text-decoration: none; }
a.card:hover, .card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
a.card:hover .card__media img { transform: scale(1.05); }
a.card:hover .card__link::after { transform: translateX(4px); }

/* Feature list */
.features { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.6rem; grid-template-columns: repeat(4, 1fr); }
.feature__icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--rose-soft); color: var(--rose-deep); margin-bottom: .9rem; }
.section--dark .feature__icon { background: rgba(232, 111, 166, .18); color: var(--rose); }
.feature__icon svg { width: 21px; height: 21px; }
.feature h3 { font-size: 1.06rem; }
.feature p { font-size: .93rem; color: var(--ink-3); margin-top: .45rem; }
.section--dark .feature p { color: rgba(251, 247, 242, .7); }

/* ===== Split (text + photo) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; margin: 0; }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split__body h2 { margin-bottom: 1rem; }

/* ===== Price tables ===== */
.price-table { width: 100%; border-collapse: collapse; font-size: .98rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.price-table caption { caption-side: top; text-align: left; font-family: var(--serif); font-size: 1.25rem; padding-bottom: .85rem; }
.price-table th, .price-table td { padding: .92rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th {
  font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3); background: var(--cream-2);
}
.price-table tbody tr:last-child th, .price-table tbody tr:last-child td { border-bottom: 0; }
.price-table td.num, .price-table th.num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-table tbody th { font-weight: 600; font-family: var(--sans); font-size: .97rem; }
.price-table .muted { color: var(--ink-3); font-size: .88rem; font-weight: 400; display: block; }
.price-table tr.is-featured { background: var(--rose-soft); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-note { font-size: .88rem; color: var(--ink-3); margin-top: .9rem; }

/* ===== Plans (room / package cards) ===== */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; align-items: start; }
.plan {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem; position: relative; display: flex; flex-direction: column; height: 100%;
}
.plan--featured { border-color: var(--rose); box-shadow: 0 16px 40px rgba(232, 111, 166, .16); }
.plan__badge {
  position: absolute; top: -12px; left: 1.6rem; background: var(--rose); color: var(--ink);
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .34rem .8rem; border-radius: 999px;
}
.plan__name { font-size: 1.2rem; }
.plan__note { font-size: .87rem; color: var(--ink-3); margin-top: .35rem; }
.plan__price { font-family: var(--serif); font-size: 1.85rem; margin: 1rem 0 .2rem; line-height: 1.1; }
.plan__price s { display: block; color: var(--ink-3); font-size: 1rem; font-family: var(--sans); margin-bottom: .15rem; }
.plan__usd { font-size: .88rem; color: var(--ink-3); }
.plan__list { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: .55rem; font-size: .94rem; }
.plan__list li { padding-left: 1.4rem; position: relative; color: var(--ink-2); }
.plan__list li::before { content: ""; position: absolute; left: 0; top: .58em; width: 7px; height: 7px; border-radius: 50%; background: var(--rose); }
.plan .btn { margin-top: 1.6rem; }
.plan__cta-wrap { margin-top: auto; padding-top: 1.4rem; }

/* ===== Includes list ===== */
.includes { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.includes li { position: relative; padding-left: 2rem; color: var(--ink-2); }
.includes li::before {
  content: ""; position: absolute; left: 0; top: .34em; width: 20px; height: 20px; border-radius: 50%;
  background: var(--rose-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c33d7c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}
.includes strong { color: var(--ink); }

/* ===== Steps ===== */
.steps { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; gap: 1.2rem; }
.step {
  counter-increment: step; position: relative; padding: 1.5rem 1.6rem 1.5rem 4.4rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
}
.step::before {
  content: counter(step); position: absolute; left: 1.5rem; top: 1.5rem;
  width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: var(--cream);
  display: grid; place-items: center; font-size: .95rem; font-weight: 600; font-family: var(--serif);
}
.step h3 { font-size: 1.08rem; }
.step p { font-size: .96rem; color: var(--ink-2); margin-top: .4rem; }

/* ===== Schedule ===== */
.schedule { display: grid; gap: .7rem; }
.schedule__row {
  display: grid; grid-template-columns: 150px 1fr; gap: 1.2rem; align-items: baseline;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.schedule__row:last-child { border-bottom: 0; }
.schedule__time { font-family: var(--serif); font-size: 1.05rem; }
.schedule__what { color: var(--ink-2); font-size: .96rem; }

/* ===== Coaches ===== */
.coach { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem; }
.coach__name { font-size: 1.3rem; }
.coach__role { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--rose-deep); font-weight: 600; margin-top: .4rem; }
.coach ul { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: .5rem; font-size: .94rem; color: var(--ink-2); }
.coach ul li { padding-left: 1.3rem; position: relative; }
.coach ul li::before { content: "◆"; position: absolute; left: 0; color: var(--rose); font-size: .6rem; top: .45em; }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.gallery-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; cursor: zoom-in; aspect-ratio: 1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }

/* ===== Shoot locations with video ===== */
.shoot-locations {
  display: grid; grid-template-columns: minmax(0, 320px) 1fr;
  gap: clamp(1.6rem, 4vw, 3rem); align-items: start; margin-top: 2.6rem;
}
.shoot-video { margin: 0; }
.shoot-video video {
  width: 100%; display: block; border-radius: var(--radius-lg);
  background: var(--ink); box-shadow: var(--shadow);
}
.shoot-video figcaption { font-size: .86rem; color: var(--ink-3); margin-top: .7rem; }
.shoot-locations__text h3 { margin-bottom: .5rem; }
.shoot-locations__text h3 + p { margin-bottom: 1.6rem; }
.shoot-locations__text p { color: var(--ink-2); font-size: .99rem; }
.shoot-locations__text a { color: var(--rose-deep); }

/* ===== Instagram ===== */
.ig-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 2.2rem; flex-wrap: wrap; }
.ig-head > div { max-width: 620px; }
.ig-lead { color: rgba(251, 247, 242, .74); margin-top: .9rem; }
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.ig-tile { display: block; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; position: relative; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .3s ease; }
.ig-tile:hover img { transform: scale(1.06); opacity: .82; }

/* ===== Schedule grid ===== */
.timetable { width: 100%; border-collapse: separate; border-spacing: 4px; font-size: .84rem; }
.timetable th { font-family: var(--sans); font-weight: 600; }
.timetable thead th {
  background: #3b1f2e; color: #fff; padding: .7rem .5rem; border-radius: 8px;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
}
.timetable thead th:first-child { background: transparent; }
.timetable tbody th {
  text-align: right; padding: .5rem .7rem; white-space: nowrap; width: 88px;
  font-size: .82rem; color: var(--ink); vertical-align: top;
}
.timetable tbody th span { display: block; color: var(--ink-3); font-weight: 400; font-size: .78rem; }
.timetable td { padding: 0; vertical-align: top; }
.slot {
  display: block; border-radius: 9px; padding: .6rem .55rem; text-align: center;
  font-weight: 600; line-height: 1.25; color: var(--ink); min-height: 100%;
}
.slot + .slot { margin-top: 4px; }
.slot--trampoline-adult { background: #f0a05a; }
.slot--trampoline-kids { background: #e8785a; }
.slot--aerial-adult { background: #ddc3e0; }
.slot--aerial-kids { background: #f094b8; }
.slot--aerial-kids-adv { background: #c9337b; color: #fff; }
.timetable-note { font-size: .88rem; color: var(--ink-3); margin-top: 1rem; text-align: center; }
.timetable-legend { display: flex; flex-wrap: wrap; gap: .55rem 1.2rem; margin-top: 1.4rem; font-size: .86rem; color: var(--ink-2); }
.timetable-legend span { display: inline-flex; align-items: center; gap: .45rem; }
.timetable-legend i { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }

/* ===== FAQ ===== */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  padding: 1.35rem 2.6rem 1.35rem 0; position: relative;
  font-family: var(--serif); font-size: 1.1rem; color: var(--ink); line-height: 1.4;
}
.faq-q::after {
  content: ""; position: absolute; right: .3rem; top: 50%; width: 13px; height: 13px;
  border-right: 2px solid var(--rose-deep); border-bottom: 2px solid var(--rose-deep);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s ease;
}
.faq-q[aria-expanded="true"]::after { transform: translateY(-20%) rotate(-135deg); }
.faq-a { display: none; padding: 0 2.6rem 1.5rem 0; color: var(--ink-2); font-size: .99rem; }
.faq-q[aria-expanded="true"] + .faq-a { display: block; }

/* ===== Callout / notice ===== */
.notice {
  background: var(--rose-soft); border: 1px solid #f3cfe1; border-radius: var(--radius);
  padding: 1.35rem 1.5rem; font-size: .97rem; color: var(--ink-2);
}
.notice strong { color: var(--ink); }
.notice--plain { background: var(--white); border-color: var(--line); }

/* ===== Legal / prose ===== */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin-top: 2.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.13rem; margin-top: 1.8rem; }
.prose p, .prose li { color: var(--ink-2); }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.1em; }
.prose li { margin-bottom: .45em; }
.prose a { color: var(--rose-deep); }
.prose__meta { font-size: .87rem; color: var(--ink-3); margin-bottom: 2rem; }

/* ===== Contact ===== */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; }
.contact-list dt, .contact-item__label { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.contact-item__value { font-size: 1.08rem; margin-top: .3rem; }
.contact-item__value a { color: var(--rose-deep); text-decoration: none; }
.contact-item__value a:hover { text-decoration: underline; }

/* ===== CTA band ===== */
.cta-band { background: var(--ink); color: var(--cream); text-align: center; padding: clamp(3.2rem, 6vw, 5rem) 0; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(251, 247, 242, .76); max-width: 540px; margin: 1rem auto 2rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* ===== Footer ===== */
.site-footer { background: #17120f; color: rgba(251, 247, 242, .72); padding: 4rem 0 2.2rem; font-size: .93rem; }
.site-footer a { color: rgba(251, 247, 242, .72); text-decoration: none; }
.site-footer a:hover { color: var(--rose); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.4rem; }
.footer-brand { display: flex; align-items: center; gap: .6rem; color: var(--white); font-family: var(--serif); font-size: 1.1rem; text-decoration: none; }
.footer-brand img { width: 34px; height: 34px; border-radius: 7px; }
.footer-col h4 { font-family: var(--sans); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(251,247,242,.5); font-weight: 600; margin-bottom: .9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-legal {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(251, 247, 242, .12);
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; justify-content: space-between;
  font-size: .84rem; color: rgba(251, 247, 242, .5);
}
.footer-about { margin-top: 1rem; line-height: 1.6; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(15, 11, 9, .93);
  display: none; align-items: center; justify-content: center; padding: 4vmin;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; object-fit: contain; }
.lightbox__close {
  position: absolute; top: 18px; right: 22px; width: 46px; height: 46px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.12); color: #fff; font-size: 1.9rem; line-height: 1; cursor: pointer;
}
.lightbox__close:hover { background: rgba(255,255,255,.22); }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .grid--4, .features, .plans, .gallery-grid, .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .6rem 24px 1.4rem; color: var(--ink);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .22s ease, transform .22s ease;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a:not(.btn) { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-links .btn { margin-top: 1rem; justify-content: center; }
  .site-header--overlay:not(.site-header--solid) .nav-links a { color: var(--ink); }

  .split, .grid--2 { grid-template-columns: 1fr; }
  .shoot-locations { grid-template-columns: 1fr; }
  .shoot-video { max-width: 320px; margin-inline: auto; }
  .split--reverse .split__media { order: 0; }
  .hero { min-height: auto; padding: calc(var(--nav-h) + 4rem) 0 4rem; }
  .hero__meta { gap: 1.4rem 2rem; margin-top: 2.4rem; }
  .schedule__row { grid-template-columns: 1fr; gap: .25rem; }
}

@media (max-width: 620px) {
  .grid--3, .grid--4, .features, .plans { grid-template-columns: 1fr; }
  .gallery-grid, .ig-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .ig-head .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .hero__actions .btn, .cta-band__actions .btn { flex: 1 1 100%; }
  .price-table th, .price-table td { padding: .78rem .8rem; font-size: .92rem; }
  .step { padding: 1.3rem 1.2rem 1.3rem 1.2rem; }
  .step::before { position: static; margin-bottom: .7rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .cta-band, .nav-toggle, .lightbox { display: none !important; }
  body { background: #fff; }
}
