﻿/* ============ PLS CAPTURE - styles ============ */
:root {
  --bg: #0b0f14;
  --bg-alt: #10161d;
  --ink: #eef2f5;
  --muted: #8b96a2;
  --accent: #ff4530;       /* cinema red */
  --accent-soft: rgba(255, 69, 48, .14);
  --line: rgba(238, 242, 245, .1);
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; }
a:hover { opacity: .85; }
::selection { background: var(--accent); color: #ffffff; }

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

/* ============ NAV ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 60px);
  transition: box-shadow .3s ease;
}
/* blur lives on a pseudo-element: backdrop-filter on .nav itself would turn it
   into the containing block for the fixed mobile menu */
.nav::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(11, 15, 20, .88); backdrop-filter: blur(12px);
  opacity: 0; transition: opacity .3s ease;
}
.nav.is-scrolled { box-shadow: 0 1px 0 var(--line); }
.nav.is-scrolled::before { opacity: 1; }
.nav__logo {
  font-family: var(--font-display); font-weight: 400; font-size: 20px;
  letter-spacing: .1em; color: var(--ink);
}
.nav__logo span { color: var(--accent); }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { color: var(--ink); font-size: 14px; font-weight: 500; letter-spacing: .02em; }
.nav__cta {
  padding: 9px 18px; border: 1px solid var(--accent); border-radius: 100px;
  color: var(--accent) !important; transition: background .25s, color .25s;
}
.nav__cta:hover { background: var(--accent); color: #ffffff !important; opacity: 1; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: .3s; }

/* ============ HERO ============ */
.hero {
  min-height: 100svh; display: flex; align-items: center; justify-content: center;
  position: relative; text-align: center; padding: 120px 20px 80px;
  overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.9);
}
.hero__shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(11,15,20,.55), rgba(11,15,20,.88) 90%),
    linear-gradient(to top, var(--bg) 0%, rgba(11,15,20,.35) 25%);
}
.hero__shade::after {  /* film grain */
  content: ''; position: absolute; inset: 0; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.hero__stats {
  list-style: none; display: flex; gap: clamp(24px, 6vw, 64px); justify-content: center;
  margin-top: 48px;
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats b { font-family: var(--font-display); font-size: 26px; color: var(--accent); }
.hero__stats span { font-size: 12.5px; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }
.hero__eyebrow {
  font-size: 13px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  font-size: clamp(44px, 9vw, 108px); line-height: 1.02; letter-spacing: .04em;
}
.hero__title span { display: block; }
.hero__title-accent {
  color: transparent; -webkit-text-stroke: 2px var(--accent);
  transition: color .4s ease;
}
.hero__title-accent:hover { color: var(--accent); }
.hero__sub { max-width: 560px; margin: 28px auto 0; color: var(--muted); font-size: 17px; }
.hero__actions { margin-top: 38px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%) rotate(90deg);
  font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: var(--muted);
  animation: floaty 2.2s ease-in-out infinite;
}
@keyframes floaty { 50% { transform: translateX(-50%) rotate(90deg) translateX(6px); } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 100px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px; letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s, background .25s, color .25s;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 30px rgba(255,69,48,.3); }
.btn--primary:hover { box-shadow: 0 12px 36px rgba(255,69,48,.45); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--big { padding: 17px 44px; font-size: 16px; }

/* ============ MARQUEE ============ */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 16px 0; background: var(--bg-alt); }
.marquee__track { display: flex; white-space: nowrap; animation: scroll-x 24s linear infinite; }
.marquee__track span {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  letter-spacing: .22em; color: var(--muted); padding-right: 12px;
}
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
.section { padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 80px); max-width: 1280px; margin: 0 auto; }
.section--alt { max-width: none; background: var(--bg-alt); }
.section--alt > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.section__head { margin-bottom: clamp(36px, 5vw, 60px); }
.section__title {
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  font-size: clamp(30px, 4.5vw, 52px); line-height: 1.08; letter-spacing: .04em;
}
.section__title em { font-style: normal; color: var(--accent); }
.section__sub { color: var(--muted); margin-top: 14px; max-width: 520px; }

/* ============ FILMS ============ */
.films { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px; align-items: start; }
.film {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-alt); display: block; margin: 0;
}
.film video, .film img { width: 100%; display: block; border-radius: var(--radius) var(--radius) 0 0; }
.film figcaption, .film--link figcaption {
  display: block; padding: 14px 16px 16px;
}
.film figcaption b { font-family: var(--font-display); font-size: 16px; display: block; }
.film figcaption span { color: var(--muted); font-size: 13.5px; }
.film--link { border: 1px solid var(--line); transition: border-color .3s; }
.film--link:hover { border-color: var(--accent); }
.film__play {
  position: absolute; top: calc(50% - 42px); left: 50%; transform: translate(-50%, -50%);
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: #ffffff; font-size: 22px;
  box-shadow: 0 8px 30px rgba(255,69,48,.4);
  transition: transform .25s;
}
.film--link:hover .film__play { transform: translate(-50%, -50%) scale(1.1); }

/* ============ FILTERS (horizontal carousel) ============ */
.filters {
  display: flex; flex-wrap: nowrap; gap: 10px; margin-bottom: 28px;
  overflow-x: auto; padding-bottom: 8px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}
.filters::-webkit-scrollbar { display: none; }
.filters .filter { flex: 0 0 auto; scroll-snap-align: start; white-space: nowrap; }
.filter {
  border: 1px solid var(--line); background: none; color: var(--ink);
  padding: 9px 20px; border-radius: 100px; cursor: pointer;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  transition: border-color .25s, background .25s, color .25s;
}
.filter:hover { border-color: var(--accent); color: var(--accent); }
.filter.is-active { background: var(--accent); border-color: var(--accent); color: #ffffff; }

/* ============ WORK MASONRY ============ */
.work-masonry { columns: 3 300px; column-gap: 18px; }
.work-item {
  position: relative; display: block; break-inside: avoid; margin-bottom: 18px;
  border-radius: var(--radius); overflow: hidden; background: var(--bg-alt);
}
.work-item img {
  width: 100%; display: block; transition: transform .5s ease;
}
.work-item:hover img { transform: scale(1.04); }
.work-item::after {  /* bottom gradient for caption readability */
  content: ''; position: absolute; inset: 55% 0 0 0; z-index: 1;
  background: linear-gradient(to top, rgba(11,15,20,.85), transparent);
  opacity: 0; transition: opacity .35s ease;
}
.work-item:hover::after { opacity: 1; }
.work-item__cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(11,15,20,.65); backdrop-filter: blur(8px); color: var(--ink);
  padding: 6px 12px; border-radius: 100px;
}
.work-item__badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  background: var(--accent); color: #ffffff;
  padding: 6px 13px; border-radius: 100px;
}
.work-item__cap {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2;
  font-size: 13px; line-height: 1.45; color: var(--ink);
  opacity: 0; transform: translateY(8px); transition: opacity .35s ease, transform .35s ease;
}
.work-item__cap b { display: block; font-family: var(--font-display); font-size: 15px; }
.work-item:hover .work-item__cap { opacity: 1; transform: none; }

/* about placeholder tile */
.ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 42px; color: rgba(242,237,228,.35);
}
.ph--about { background: linear-gradient(160deg, #2a2114, #14100a); aspect-ratio: 4 / 5; border-radius: var(--radius); }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6, 9, 12, .92); backdrop-filter: blur(6px);
  padding: 4vh 4vw; cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%; max-height: 100%; border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lightbox__close {
  position: absolute; top: 22px; right: 26px; z-index: 201;
  background: none; border: 0; color: var(--ink); font-size: 26px; cursor: pointer;
  opacity: .8;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 201;
  background: rgba(242,237,228,.08); border: 1px solid var(--line); color: var(--ink);
  width: 52px; height: 52px; border-radius: 50%; font-size: 28px; line-height: 1;
  cursor: pointer; transition: background .25s, border-color .25s;
}
.lightbox__nav:hover { background: rgba(255,69,48,.25); border-color: var(--accent); }
.lightbox__nav--prev { left: 22px; }
.lightbox__nav--next { right: 22px; }

/* ============ STICKY BOOK BAR (mobile) ============ */
.bookbar {
  display: none;
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 150;
  text-align: center; padding: 16px;
  background: var(--accent); color: #ffffff; border-radius: 100px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  box-shadow: 0 10px 34px rgba(0,0,0,.5);
}

/* ============ SERVICES ============ */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service {
  display: block; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; background: var(--bg);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.service:hover { opacity: 1; }
.service:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.service__num { font-family: var(--font-display); color: var(--accent); font-weight: 700; font-size: 14px; letter-spacing: .15em; margin-bottom: 14px; }
.service h3 { font-family: var(--font-display); font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.service p { color: var(--muted); font-size: 14.5px; }
.service__price {
  margin-top: 18px; display: inline-block; font-weight: 600; font-size: 14px;
  color: var(--accent); background: var(--accent-soft); padding: 6px 14px; border-radius: 100px;
}

/* ============ COVERAGE ============ */
.coverage { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.coverage__text > p { color: var(--muted); margin-top: 16px; max-width: 480px; }
.coverage__list {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px;
}
.coverage__list li {
  border: 1px solid var(--line); border-radius: 100px; padding: 8px 18px;
  font-size: 14px; transition: border-color .25s, color .25s;
}
.coverage__list li:hover { border-color: var(--accent); color: var(--accent); }
.coverage__badge { display: flex; justify-content: center; }
.badge-ring { position: relative; width: min(280px, 60vw); aspect-ratio: 1; }
.badge-ring svg { width: 100%; height: 100%; animation: spin 18s linear infinite; }
.badge-ring text {
  fill: var(--muted); font-family: var(--font-display); font-size: 12.5px;
  font-weight: 700; letter-spacing: .3em;
}
.badge-ring__center {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 44px; color: var(--accent);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ PROCESS ============ */
.process {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  counter-reset: step;
}
.process li {
  counter-increment: step;
  border-top: 1px solid var(--line); padding-top: 22px; position: relative;
}
.process li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--accent);
  display: block; margin-bottom: 12px;
}
.process b { font-family: var(--font-display); font-size: 18px; display: block; margin-bottom: 8px; }
.process span { color: var(--muted); font-size: 14.5px; }

/* ============ ABOUT ============ */
.about { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.about__media .ph { font-size: 56px; }
.about__text p { color: var(--muted); margin-top: 18px; max-width: 560px; }
.about__text .btn { margin-top: 28px; }

/* ============ CONTACT ============ */
.section--contact { text-align: center; }
.section--contact .section__sub { margin-inline: auto; }
.contact-form { max-width: 640px; margin: 0 auto; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: block; font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: var(--muted); margin-bottom: 16px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; margin-top: 7px; padding: 14px 16px;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 10px;
  color: var(--ink); font-family: var(--font-body); font-size: 15px;
  transition: border-color .25s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--accent);
}
.contact-form textarea { resize: vertical; }
.contact-form .btn--big { width: 100%; margin-top: 8px; border: 0; cursor: pointer; }
.contact-form__alt { text-align: center; margin-top: 22px; color: var(--muted); font-size: 14px; }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line); text-align: center;
  padding: 60px 20px 40px; color: var(--muted); font-size: 14px;
}
.footer__logo { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--ink); margin-bottom: 10px; }
.footer__logo span { color: var(--accent); }
.footer__links { display: flex; gap: 24px; justify-content: center; margin: 22px 0; }
.footer__copy { font-size: 12.5px; opacity: .7; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .services { grid-template-columns: 1fr 1fr; }
  .films { grid-template-columns: 1fr 1fr; }
  .films .film:first-child { grid-column: span 2; }
  .process { grid-template-columns: 1fr 1fr; gap: 28px; }
  .coverage { grid-template-columns: 1fr; gap: 40px; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 380px; }
}
@media (max-width: 640px) {
  .nav__links {
    position: fixed; inset: 0; background: rgba(11,15,20,.97);
    flex-direction: column; justify-content: center; gap: 34px;
    font-size: 20px; transform: translateY(-100%); transition: transform .35s ease;
  }
  .nav__links.is-open { transform: none; }
  .nav__links a { font-size: 19px; }
  .nav__burger { display: flex; z-index: 101; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .services { grid-template-columns: 1fr; }
  .work-masonry { columns: 2 160px; }
  .films { grid-template-columns: 1fr; }
  .films .film:first-child { grid-column: auto; }
  .hero__stats { gap: 22px; }
  .bookbar { display: block; }
  .footer { padding-bottom: 90px; }
  .lightbox__nav { width: 42px; height: 42px; font-size: 22px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .process { grid-template-columns: 1fr; }
}

/* ============ SUBPAGES ============ */
.page-hero {
  padding: 150px clamp(20px, 6vw, 80px) 60px;
  max-width: 1280px; margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  font-size: clamp(34px, 5.5vw, 62px); line-height: 1.06; letter-spacing: .04em;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { color: var(--muted); margin-top: 14px; max-width: 640px; font-size: 17px; }

/* ============ SERVICES PAGE ============ */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.svc {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; background: var(--bg-alt);
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .3s, transform .3s;
}
.svc:hover { border-color: var(--accent); transform: translateY(-3px); }
.svc h3 { font-family: var(--font-display); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; font-size: 20px; }
.svc p { color: var(--muted); font-size: 15px; }
.svc ul { list-style: none; color: var(--muted); font-size: 14px; display: flex; flex-direction: column; gap: 6px; }
.svc ul li::before { content: '+  '; color: var(--accent); font-weight: 700; }
.svc__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 14px; }
.svc__price { font-family: var(--font-display); font-size: 22px; color: var(--accent); letter-spacing: .03em; }
.svc__price small { font-family: var(--font-body); font-size: 12px; color: var(--muted); display: block; letter-spacing: .05em; }
.svc__book { font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; border: 1px solid var(--line); border-radius: 100px; padding: 10px 18px; color: var(--ink); transition: border-color .25s, background .25s, color .25s; }
.svc__book:hover { background: var(--accent); border-color: var(--accent); color: #fff; opacity: 1; }

/* ============ ABOUT PAGE ============ */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 40px 0; }
.stat { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-align: center; background: var(--bg-alt); }
.stat b { font-family: var(--font-display); font-size: 34px; color: var(--accent); display: block; letter-spacing: .03em; }
.stat span { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.bio { max-width: 820px; color: var(--muted); font-size: 16.5px; display: flex; flex-direction: column; gap: 18px; }
.bio strong { color: var(--ink); }
.timeline { list-style: none; margin-top: 30px; border-left: 2px solid var(--line); padding-left: 26px; display: flex; flex-direction: column; gap: 26px; max-width: 820px; }
.timeline li { position: relative; }
.timeline li::before { content: ''; position: absolute; left: -33px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }
.timeline b { font-family: var(--font-display); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; font-size: 17px; display: block; }
.timeline .tl-year { color: var(--accent); font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.timeline p { color: var(--muted); font-size: 14.5px; margin-top: 4px; }

/* ============ BOOKING PAGE ============ */
.book-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 34px; align-items: start; }
.pkg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pkg { position: relative; }
.pkg input { position: absolute; opacity: 0; pointer-events: none; }
.pkg label {
  display: block; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; cursor: pointer; background: var(--bg-alt); height: 100%;
  transition: border-color .25s, background .25s;
}
.pkg input:checked + label { border-color: var(--accent); background: var(--accent-soft); }
.pkg b { font-family: var(--font-display); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; font-size: 16px; display: block; }
.pkg .pkg-price { color: var(--accent); font-weight: 700; font-size: 15px; }
.pkg small { color: var(--muted); font-size: 12.5px; display: block; margin-top: 4px; }
.summary {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-alt);
  padding: 26px; position: sticky; top: 90px;
}
.summary h3 { font-family: var(--font-display); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; font-size: 18px; margin-bottom: 16px; }
.summary .sum-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; color: var(--muted); }
.summary .sum-row b { color: var(--ink); }
.summary .sum-row.total { font-size: 17px; }
.summary .sum-row.total b { color: var(--accent); font-family: var(--font-display); font-size: 22px; }
.paybox { margin-top: 18px; font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.paybox b { color: var(--ink); }
.paylist { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.paylist span { border: 1px solid var(--line); border-radius: 100px; padding: 6px 14px; font-size: 12.5px; color: var(--ink); }
.confirm-panel { border: 1px solid var(--accent); border-radius: var(--radius); background: var(--accent-soft); padding: 26px; margin-top: 26px; }
.confirm-panel h3 { font-family: var(--font-display); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.confirm-panel p { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
.confirm-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.confirm-actions .btn { font-size: 13px; padding: 12px 20px; }

/* ============ CTA BANNER (index) ============ */
.cta-banner {
  text-align: center; border: 1px solid var(--line); border-radius: 20px;
  background: linear-gradient(160deg, var(--bg-alt), rgba(255,69,48,.07));
  padding: clamp(44px, 7vw, 80px) 24px; max-width: 1280px; margin: 0 auto;
}
.cta-banner h2 { font-family: var(--font-display); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; font-size: clamp(28px, 4.5vw, 48px); }
.cta-banner p { color: var(--muted); margin: 12px auto 26px; max-width: 480px; }

@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .book-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
}
@media (max-width: 640px) {
  .pkg-grid { grid-template-columns: 1fr; }
}

/* ============ BOOKING WIZARD (single-screen, no page scroll) ============ */
.no-scroll-page { height: 100svh; overflow: hidden; }
.wizard {
  height: 100svh; max-width: 1100px; margin: 0 auto;
  padding: 86px clamp(16px, 4vw, 40px) 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.wizard__top { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.wizard__top h1 {
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  letter-spacing: .04em; font-size: clamp(22px, 3.2vw, 34px);
}
.wizard__top h1 em { font-style: normal; color: var(--accent); }
.wizard__steps { list-style: none; display: flex; gap: 18px; }
.wizard__steps li { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 600; }
.wizard__steps i {
  font-style: normal; width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); font-size: 12.5px;
  transition: background .25s, border-color .25s, color .25s;
}
.wizard__steps li.is-active { color: var(--ink); }
.wizard__steps li.is-active i { background: var(--accent); border-color: var(--accent); color: #fff; }
.wizard__steps li.is-done i { border-color: var(--accent); color: var(--accent); }
@media (max-width: 640px) { .wizard__steps span { display: none; } }

.wizard__body { flex: 1; min-height: 0; position: relative; }
.wizard .step {
  display: none; height: 100%; min-height: 0;
  flex-direction: column; gap: 12px;
  animation: stepIn .35s ease;
  overflow-y: auto;   /* safety valve on tiny screens: step scrolls, page never does */
}
.wizard .step.is-active { display: flex; }
@keyframes stepIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
.step__hint { color: var(--muted); font-size: 14px; max-width: 640px; }

/* packages: horizontal 2-row carousel, no vertical scroll */
.pkg-carousel {
  flex: 1; min-height: 0;
  display: grid; grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-auto-flow: column; grid-auto-columns: clamp(210px, 26vw, 270px);
  gap: 12px; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x proximity; padding-bottom: 6px;
  scrollbar-width: thin; scrollbar-color: var(--accent) transparent;
}
.pkg-carousel::-webkit-scrollbar { height: 6px; }
.pkg-carousel::-webkit-scrollbar-thumb { background: var(--accent-soft); border-radius: 3px; }
.pkg-carousel .pkg { scroll-snap-align: start; min-height: 0; }
.pkg-carousel .pkg label { display: flex; flex-direction: column; justify-content: center; }

/* step 2 form: compact */
.wizard__form { max-width: 720px; margin: 0; }
.wizard__form label { margin-bottom: 10px; }
.wizard__form input, .wizard__form select, .wizard__form textarea { padding: 11px 14px; }
.wizard__form textarea { resize: none; }

/* step 3 confirm */
.confirm-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 22px; align-items: start; max-width: 900px; }
.summary--wizard { position: static; }
@media (max-width: 800px) {
  .confirm-grid { grid-template-columns: 1fr; gap: 10px; }
  .summary--wizard { padding: 14px 16px; }
  .summary--wizard h3 { font-size: 15px; margin-bottom: 8px; }
  .summary--wizard .sum-row { padding: 6px 0; font-size: 13px; }
  .confirm-grid .paybox { margin-top: 0; font-size: 12px; }
  .confirm-grid .paylist span { padding: 4px 10px; font-size: 11px; }
}

/* step 4 done */
.done { margin: auto; text-align: center; max-width: 560px; }
.done h2 { font-family: var(--font-display); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; font-size: clamp(26px, 4vw, 40px); }
.done p { color: var(--muted); margin: 12px 0 22px; }
.done .confirm-actions { justify-content: center; }

.wizard__nav {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  border-top: 1px solid var(--line); padding-top: 14px;
}
.wizard__nav .btn { cursor: pointer; border-width: 1px; }
.wizard__err { color: var(--accent); font-size: 13.5px; font-weight: 600; margin-left: auto; }
#btnNext { margin-left: 0; }

/* small screens: tighten wizard vertical rhythm */
@media (max-width: 640px) {
  .wizard { padding-top: 74px; }
  .wizard__form .form-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .wizard__form label { font-size: 12px; margin-bottom: 8px; }
  .pkg-carousel { grid-auto-columns: 72vw; }
  .step__hint { font-size: 12.5px; }
}
@media (max-height: 640px) {
  .wizard__top h1 { font-size: 20px; }
  .step__hint { display: none; }
}

/* ============ BOOKING v2: photo package cards ============ */
.booking-bg {
  background:
    radial-gradient(ellipse 50% 35% at 85% 0%, rgba(255,69,48,.08), transparent 70%),
    radial-gradient(ellipse 40% 30% at 10% 100%, rgba(255,69,48,.05), transparent 70%),
    var(--bg);
}
.pkg-carousel {
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-auto-columns: clamp(168px, 19vw, 210px);
}
.pkg { display: flex; }
.pkg label { padding: 0; overflow: hidden; display: flex; flex-direction: column; width: 100%; }
.pkg label img {
  width: 100%; flex: 1; min-height: 64px; object-fit: cover; display: block;
  filter: saturate(.92);
  transition: transform .35s ease;
}
.pkg label:hover img { transform: scale(1.05); }
.pkg__body { display: flex; flex-direction: column; gap: 1px; padding: 9px 12px 11px; flex: 0 0 auto; }
.pkg b { font-size: 14.5px; }
.pkg .pkg-price { font-size: 13.5px; }
.pkg small { margin-top: 1px; font-size: 11.5px; }
.pkg input:checked + label { box-shadow: 0 0 0 2px var(--accent) inset; }
.pkg input:checked + label::after {
  content: '✓'; position: absolute; top: 8px; right: 8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.pkg label { position: relative; }

/* ============ BOOKING v2: schedule ============ */
.sched { display: flex; flex-direction: column; gap: 14px; height: 100%; min-height: 0; }
.sched__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
#monthLabel { color: var(--ink); font-weight: 700; }
.legend { display: flex; gap: 16px; }
.legend__item { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 12.5px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot--free { background: #2ecc71; }
.dot--busy { background: rgba(238,242,245,.22); }

.cal-strip {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; flex: 0 0 auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin; scrollbar-color: var(--accent-soft) transparent;
}
.cal-strip::-webkit-scrollbar { height: 5px; }
.cal-strip::-webkit-scrollbar-thumb { background: var(--accent-soft); border-radius: 3px; }
.day {
  flex: 0 0 auto; scroll-snap-align: start;
  width: 64px; padding: 9px 0 10px;
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 12px;
  color: var(--ink); cursor: pointer; font-family: var(--font-body);
  transition: border-color .2s, background .2s, transform .2s;
}
.day:hover { border-color: var(--accent); transform: translateY(-2px); }
.day__wd { font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.day__num { font-family: var(--font-display); font-size: 21px; font-weight: 500; line-height: 1.15; }
.day__mo { font-size: 10.5px; color: var(--muted); }
.day.is-selected { background: var(--accent); border-color: var(--accent); }
.day.is-selected .day__wd, .day.is-selected .day__mo { color: rgba(255,255,255,.8); }
.day.is-full { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.day.is-full:hover { border-color: var(--line); transform: none; }

.slots-wrap { flex: 1; min-height: 0; overflow-y: auto; }
.slots {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 9px;
}
.slots:empty::before {
  content: '← Pick a date above to see open hours';
  color: var(--muted); font-size: 14px; grid-column: 1 / -1; padding: 14px 2px;
}
.slot {
  padding: 12px 0; text-align: center; border-radius: 10px;
  background: var(--bg-alt); border: 1px solid var(--line); color: var(--ink);
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px; cursor: pointer;
  position: relative; transition: border-color .2s, background .2s;
}
.slot::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #2ecc71; display: inline-block; margin-right: 8px; }
.slot:hover { border-color: var(--accent); }
.slot.is-selected { background: var(--accent); border-color: var(--accent); color: #fff; }
.slot.is-selected::before { background: #fff; }
.slot.is-busy {
  color: var(--muted); text-decoration: line-through; cursor: not-allowed; opacity: .45;
}
.slot.is-busy::before { background: rgba(238,242,245,.25); }
.slot.is-busy:hover { border-color: var(--line); }

.confirm-grid--wide { grid-template-columns: 1.2fr 1fr; max-width: none; }
@media (max-width: 800px) {
  .confirm-grid--wide { grid-template-columns: 1fr; }
  .pkg-carousel { grid-auto-columns: 62vw; }
  .day { width: 56px; }
}

/* ============ PROGRESSIVE GALLERY LOADING ============ */
.gallery-more {
  max-width: 1280px; margin: 26px auto 0;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.gallery-more__count {
  color: var(--muted); font-size: 13px; letter-spacing: .08em; font-weight: 600;
}
.gallery-more__btn { cursor: pointer; }
.work-item.is-arriving { animation: itemIn .45s ease; }
@keyframes itemIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
