/* ============================================================
   POSTFORM MEDIA — dark theme modeled on Aerial Canvas.
   Poppins headings + Inter body, pill buttons, 8px card radius.
   ============================================================ */
:root {
  --bg: #f8f8f7;           /* page background — near-white with a hint of gray */
  --card: #ffffff;         /* card surface */
  --text: #171717;         /* primary text */
  --text-soft: rgba(23, 23, 23, 0.6);
  --hairline: rgba(23, 23, 23, 0.12);
  --radius: 8px;
  --pill: 999px;
  --heading: "Poppins", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Anchor targets stop clear of the fixed header instead of under it */
section[id], div[id] { scroll-margin-top: 104px; }
body {
  font-family: var(--body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--heading); font-weight: 400; }

/* ---------- Buttons (Aerial Canvas pills) ---------- */
.pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px 13px;
  border: 1px solid var(--text);
  border-radius: var(--pill);
  background: transparent;
  color: var(--text);
  font-family: var(--body); font-size: 15px; font-weight: 400;
  line-height: 1; cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.pill:hover { background: var(--text); color: var(--bg); }
.pill-solid {
  background: var(--text); color: var(--bg);
}
.pill-solid:hover { background: transparent; color: var(--text); }

/* ---------- Accent numeral (editorial italic serif against the sans) ---------- */
.accent-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.5em;
  line-height: 1;
  color: var(--text);
  padding: 0 0.04em;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--body);
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 20px;
}

/* ---------- Splash intro ---------- */
.splash {
  position: fixed; inset: 0; z-index: 100;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1.1s ease;
}
.splash.is-done { opacity: 0; pointer-events: none; }
body.splash-lock { overflow: hidden; }

/* POSTFORM STUDIO wordmark — one subtle fade-in (starts after fonts
   load via .is-ready, so it never renders in a fallback font). */
.splash-logo {
  text-align: center; color: #111111;
  opacity: 0;
  transform: translateY(6px);
}
.splash.is-ready .splash-logo {
  animation: logoFade 1.4s ease 0.15s forwards;
}
@keyframes logoFade {
  to { opacity: 1; transform: none; }
}
.splash-word {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 64px);
  letter-spacing: 0.02em;
  line-height: 1;
}
.splash-studio {
  margin-top: 0.9em;
  font-family: var(--heading);
  font-weight: 400;
  font-size: clamp(13px, 1.8vw, 19px);
  letter-spacing: 0.55em;
  padding-left: 0.55em;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  color: #fff; /* over the hero video */
  transition: background 0.4s ease, color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.site-header.is-solid {
  position: fixed;
  background: rgba(248, 248, 247, 0.9);
  backdrop-filter: blur(10px);
  color: var(--text);
  padding: 14px 40px;
  box-shadow: 0 1px 0 var(--hairline);
}
.subpage .site-header {
  position: sticky;
  background: var(--bg); color: var(--text);
  box-shadow: 0 1px 0 var(--hairline);
}
/* Book Now pill: white over the hero, dark once the header goes solid */
.site-header .pill-solid { background: #fff; color: #111; border-color: #fff; }
.site-header .pill-solid:hover { background: transparent; color: #fff; }
.site-header.is-solid .pill-solid,
.subpage .site-header .pill-solid {
  background: var(--text); color: var(--bg); border-color: var(--text);
}
.site-header.is-solid .pill-solid:hover,
.subpage .site-header .pill-solid:hover {
  background: transparent; color: var(--text);
}
.brand { font-family: var(--heading); font-size: 15px; letter-spacing: 0.26em; }
.brand-strong { font-weight: 500; }
.brand-light { font-weight: 300; opacity: 0.7; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-size: 14px; font-weight: 400; opacity: 0.85;
  transition: opacity 0.25s ease;
}
.site-nav a:hover { opacity: 1; }
.site-nav .nav-book { opacity: 1; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; overflow: hidden; background: #101010; }
.hero-video, .hero-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero-fallback {
  background:
    radial-gradient(120% 90% at 70% 20%, #3c4350 0%, transparent 60%),
    radial-gradient(100% 80% at 20% 85%, #2a2622 0%, transparent 55%),
    linear-gradient(180deg, #16181c 0%, #0c0d0f 100%);
  z-index: 0;
}
.hero-video { z-index: 1; }
.hero-shade {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 35%,
              rgba(0,0,0,0) 70%, rgba(0,0,0,0.3) 100%);
}

/* Hero overlay: brand statement + CTA, bottom-left (Aerial Canvas pattern) */
.hero-content {
  position: absolute; z-index: 3;
  left: 72px; right: 40px; bottom: 120px;
  max-width: 760px;
  color: #fff;
  text-align: left;
}
.hero-title {
  font-family: var(--heading);
  font-weight: 400;
  font-size: clamp(32px, 4.8vw, 60px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.hero-cta { background: #fff; color: #111; border-color: #fff; }
.hero-cta:hover { background: transparent; color: #fff; }

/* ---------- Fixed-hero scroll reveal ----------
   The hero pins to the viewport and the page body rises over it, so the
   video never appears to move. Desktop only — reverts to normal flow below
   992px, matching the reference implementation. */
.page-body { position: relative; z-index: 1; background: var(--bg); }

@media (min-width: 992px) {
  .hero {
    position: fixed; inset: 0;
    min-height: 0; height: 100vh;
    z-index: 0;
  }
  .page-body { margin-top: 100vh; }
  .site-footer { position: relative; z-index: 1; background: var(--bg); }
}

/* Animated scroll cue */
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,0.85);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.42em; padding-left: 0.42em;
}
.hero-scroll-word { animation: cueFade 2.6s ease-in-out infinite; }
.hero-scroll-track {
  position: relative; width: 1px; height: 56px; overflow: hidden;
  background: rgba(255,255,255,0.18);
}
.hero-scroll-runner {
  position: absolute; left: 0; top: -40%;
  width: 100%; height: 40%;
  background: linear-gradient(180deg, transparent, #fff);
  animation: cueRun 2.6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.hero-scroll-chevron {
  width: 8px; height: 8px;
  border-right: 1px solid rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.85);
  transform: rotate(45deg);
  animation: cueNudge 2.6s ease-in-out infinite;
}
@keyframes cueRun {
  0% { top: -40%; }
  60%, 100% { top: 110%; }
}
@keyframes cueFade {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
@keyframes cueNudge {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; }
  50% { transform: rotate(45deg) translate(3px, 3px); opacity: 1; }
}

/* ---------- Section shells ---------- */
/* Sections carry bottom padding only, so the gap above a heading is a single
   value (the previous section's padding-bottom) rather than two stacked ones.
   That gap then matches .section-head's margin-bottom exactly. */
:root { --section-gap: 92px; --showcase-top: 110px; }
.section { padding: 0 0 var(--section-gap); }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto var(--section-gap);
  padding: 0 40px;
}
.section-head h2 {
  font-size: clamp(30px, 3.6vw, 45px);
  line-height: 1.14;
}
.section-head .head-sub {
  margin-top: 18px; color: var(--text-soft);
  font-size: 17px; line-height: 1.6; max-width: 52ch;
}
/* Fully centered heading block — holds at every width */
.section-head.is-centered {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.section-head.is-centered > div { width: 100%; }
.section-head.is-centered .head-sub { margin-left: auto; margin-right: auto; }

/* ---------- Showcase strip ---------- */
/* Slightly more room coming off the hero — still balanced above/below */
.showcase { padding-top: var(--showcase-top); }
.showcase .section-head { margin-bottom: var(--showcase-top); }
.showcase-track {
  display: flex; gap: 18px; align-items: stretch;
  overflow-x: auto; overscroll-behavior-x: contain;
  padding: 0 40px;
  scrollbar-width: none;
  cursor: grab;
}
.showcase-track::-webkit-scrollbar { display: none; }
.showcase-track.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.showcase-cta { text-align: center; margin-top: 44px; }
.shot {
  position: relative; flex: 0 0 auto;
  height: min(460px, 58vh);
  border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, #2b2a2e 0%, #1c1b1e 100%);
  border: 1px solid rgba(248, 248, 248, 0.08);
  scroll-snap-align: center;
}
/* faint PF. watermark shows while a slot has no media yet */
.shot::before {
  content: "PF.";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-weight: 700; font-size: 38px;
  color: rgba(248, 248, 248, 0.08);
}
.shot video, .shot img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
}
/* Constant height, native aspect ratios — nothing gets cropped */
.shot-reel  { aspect-ratio: 9 / 16; }
.shot-32    { aspect-ratio: 3 / 2; }
.shot-43    { aspect-ratio: 4 / 3; }
.shot-wide  { aspect-ratio: 16 / 9; }

/* ---------- Carousels (services & packages) ---------- */
.carousel { position: relative; }
.car-track {
  display: flex; gap: 20px;
  /* overflow-x:auto forces overflow-y's computed value to auto too, even
     when overflow-y is explicitly "visible" (a real CSS spec rule — the two
     axes can't mix visible with a scrolling value). That was clipping the
     active card's top/bottom edge the instant it scaled up past the
     track's own box — hence "the top of the service section is cut off".
     Fixed by the vertical padding below giving it room to grow into. */
  overflow-x: auto; overflow-y: visible; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 20px max(40px, calc((100vw - 1280px) / 2));
  cursor: grab;
  scrollbar-width: none;
}
.car-track::-webkit-scrollbar { display: none; }
.car-track.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.car-track.is-dragging .car-card { pointer-events: none; }

.car-card {
  position: relative; flex: 0 0 min(440px, 84vw);
  height: 530px;
  border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, #2b2a2e 0%, #1c1b1e 100%);
  border: 1px solid rgba(248, 248, 248, 0.08);
  scroll-snap-align: center;
  /* Spotlight: the centered card grows slightly, neighbours sit at normal
     size — no opacity dimming, every card stays fully visible. */
  transform: scale(1);
  transition: transform 0.4s ease;
}
.car-card.is-active { transform: scale(1.05); z-index: 2; }
/* faint PF. watermark shows through while a card has no photo yet */
.car-card::after {
  content: "PF.";
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-weight: 700; font-size: 44px;
  color: rgba(248, 248, 248, 0.08);
}
.car-media {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center;
  transform: scale(1.01);
  transition: transform 0.9s ease;
}
.car-card:hover .car-media { transform: scale(1.06); }
video.car-media { width: 100%; height: 100%; object-fit: cover; }
.car-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.05) 40%,
              rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.55) 100%);
}
.car-title {
  position: absolute; top: 26px; left: 28px; right: 28px; z-index: 2;
  font-size: 28px; color: #fff;
}
.car-sub {
  position: absolute; top: 68px; left: 28px; right: 28px; z-index: 2;
  font-size: 13px; line-height: 1.7; color: rgba(248,248,248,0.75);
}
.car-cta {
  position: absolute; left: 28px; bottom: 26px; z-index: 2;
}
.car-badge {
  position: absolute; top: 26px; right: 26px; z-index: 3;
  font-size: 11px; letter-spacing: 0.14em;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--pill);
  padding: 8px 14px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
}
/* pills sitting on dark photo cards stay white */
.car-card .pill { border-color: #fff; color: #fff; }
.car-card .pill:hover, .car-card:hover .car-cta { background: #fff; color: #111; }

.car-controls {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 34px auto 0; padding: 0 40px;
}
.car-dots { display: flex; gap: 10px; }
.car-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 0; padding: 0; cursor: pointer;
  background: rgba(23,23,23,0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}
.car-dot.is-active { background: var(--text); transform: scale(1.2); }
.car-arrows { display: flex; gap: 12px; }
.car-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--hairline); background: transparent;
  color: var(--text); font-size: 16px; cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.car-arrow:hover { background: var(--text); border-color: var(--text); color: var(--bg); }

/* ---------- Homepage packages: centered spotlight carousel ----------
   Mirrors Aerial Canvas: cards at 60vw centered, the centered (or
   hovered) card at full opacity/scale, siblings at 0.3 / scale 0.95. */
.pkg-section { padding: 0 0 var(--section-gap); }
.pkg-carousel { position: relative; }
.pkg-track {
  display: flex; align-items: center;
  gap: 28px;
  overflow-x: auto; overflow-y: visible; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 40px calc(20vw - 14px);
  scrollbar-width: none;
  cursor: grab;
}
.pkg-track::-webkit-scrollbar { display: none; }
.pkg-track.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.pkg-track.is-dragging .pkg-card { pointer-events: none; }

.pkg-card {
  position: relative; display: block;
  flex: 0 0 60vw; max-width: 900px;
  height: min(62vh, 560px);
  border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, #2b2a2e 0%, #1c1b1e 100%);
  scroll-snap-align: center;
  /* Spotlight: the centered/hovered card grows slightly, neighbours sit at
     normal size — no opacity dimming, every card stays fully visible. */
  transform: scale(1);
  transition: transform 0.45s ease;
}
.pkg-card.is-active {
  transform: scale(1.035);
  z-index: 2;
}
.pkg-card::after {
  content: "PF.";
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-weight: 700; font-size: 44px;
  color: rgba(248, 248, 248, 0.08);
}
.pkg-media {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center;
  transform: scale(1.01);
  transition: transform 0.9s ease;
}
.pkg-card.is-active .pkg-media { transform: scale(1.04); }
.pkg-tint {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 35%,
              rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.78) 100%);
}
.pkg-body {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  padding: 28px; color: #fff;
}
.pkg-body { padding: 36px; }
.pkg-body h3 { font-size: 30px; }
.pkg-items {
  list-style: none;
  margin-top: auto; margin-bottom: 22px;
  max-width: 420px;
}
.pkg-items li {
  font-size: 14px; letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.pkg-items li:last-child { border-bottom: 0; }
.pkg-card .pill { align-self: flex-start; border-color: #fff; color: #fff; }
.pkg-card.is-active .pill:hover { background: #fff; color: #111; }

/* ---------- Contact ---------- */
.contact {
  text-align: center; border-top: 1px solid var(--hairline);
  padding-top: var(--section-gap);   /* border needs air above the heading */
}
.contact-inner { max-width: 660px; margin: 0 auto; padding: 0 24px; }
.contact h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.contact-sub { color: var(--text-soft); font-size: 15px; margin-bottom: 52px; }
.contact-form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form label {
  display: block; margin-bottom: 24px;
  font-size: 11px; letter-spacing: 0.18em; color: var(--text-soft);
  text-transform: uppercase;
}
.contact-form input, .contact-form select, .contact-form textarea {
  display: block; width: 100%; margin-top: 10px;
  padding: 12px 2px;
  font-family: var(--body); font-size: 15px; font-weight: 300;
  color: var(--text);
  background: transparent;
  border: 0; border-bottom: 1px solid var(--hairline);
  border-radius: 0; outline: none; resize: vertical;
  transition: border-color 0.3s ease;
}
.contact-form select { color-scheme: light; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--text);
}
.contact-form .pill { margin-top: 14px; }
.contact-form .pill:disabled { opacity: 0.5; cursor: default; }
.contact-success { padding: 70px 0; }
.contact-success h3 { font-family: var(--heading); font-weight: 400; font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; }
.contact-success p { color: var(--text-soft); font-size: 16px; }
.form-note { margin-top: 24px; font-size: 13px; color: var(--text-soft); }
.form-status { margin-top: 18px; font-size: 14px; }
.form-status.is-success { color: var(--text); }
.form-status.is-error { color: #b3261e; }
.contact-info { margin-top: 56px; font-size: 14px; color: var(--text-soft); }
.contact-info .dot { margin: 0 14px; }
.contact-info a:hover { color: var(--text); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 40px; text-align: center;
  border-top: 1px solid var(--hairline);
  font-family: var(--heading); font-size: 13px; letter-spacing: 0.26em;
}
.site-footer p {
  margin-top: 12px;
  font-family: var(--body); font-size: 12px; letter-spacing: 0.03em;
  color: var(--text-soft);
}
.footer-social {
  display: flex; gap: 20px; justify-content: center;
  margin-top: 18px;
}
.footer-social a {
  color: var(--text-soft);
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-social a:hover { color: var(--text); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; display: block; }

/* ---------- Pricing page ---------- */
.pricing-page { max-width: 1080px; margin: 0 auto; padding: 56px 40px 40px; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 44px;
  font-size: 14px; color: var(--text-soft);
  transition: color 0.3s ease;
}
.back-link:hover { color: var(--text); }
.pricing-hero { text-align: center; margin-bottom: 110px; }
.pricing-hero h1 { font-size: clamp(36px, 4.6vw, 54px); margin-bottom: 20px; line-height: 1.12; }
.pricing-hero p {
  max-width: 560px; margin: 0 auto; color: var(--text-soft);
  font-size: 17px; line-height: 1.65;
}

/* ---------- Portfolio page ---------- */
.portfolio-page { max-width: 1280px; margin: 0 auto; padding: 56px 40px 40px; }
.portfolio-hero { text-align: center; margin-bottom: 70px; }
.portfolio-hero h1 { font-size: clamp(36px, 4.6vw, 54px); margin-bottom: 20px; line-height: 1.12; }
.portfolio-hero p {
  max-width: 560px; margin: 0 auto; color: var(--text-soft);
  font-size: 17px; line-height: 1.65;
}
.portfolio-grid { position: relative; }
.portfolio-item {
  position: absolute;
  top: 0; left: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: linear-gradient(160deg, #2b2a2e 0%, #1c1b1e 100%);
}
.portfolio-item img, .portfolio-item video { width: 100%; display: block; }

.pricing-section-title { font-size: clamp(27px, 3.3vw, 39px); margin-bottom: 12px; line-height: 1.14; }
.pricing-section-sub {
  color: var(--text-soft); font-size: 17px; line-height: 1.6;
  margin-bottom: 56px;
}

.price-card {
  position: relative;
  display: grid; grid-template-columns: 340px 1fr 230px; gap: 40px;
  padding: 40px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--hairline);
  margin-bottom: 28px;
  transition: border-color 0.3s ease;
}
.price-card:hover { border-color: rgba(23,23,23,0.3); }
.price-card.is-featured { border-color: var(--text); }
.price-photo {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #2b2a2e 0%, #1c1b1e 100%);
  aspect-ratio: 1 / 1;      /* square — takes a listing photo with minimal crop */
  align-self: start;
}
.price-photo::after {
  content: "PF.";
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-weight: 700; font-size: 40px;
  color: rgba(248, 248, 248, 0.08);
}
.pp-media {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center;
}
.price-badge {
  position: absolute; top: -13px; left: 44px;
  background: var(--text); color: var(--bg);
  font-size: 11px; letter-spacing: 0.14em; font-weight: 400;
  border-radius: var(--pill);
  padding: 7px 16px;
}
.price-info h2 { font-size: 30px; margin-bottom: 14px; }
.price-desc { color: var(--text-soft); font-size: 16px; line-height: 1.7; max-width: 52ch; margin-bottom: 26px; }
.price-info ul { list-style: none; max-width: 560px; }
.price-info li {
  font-size: 15px; line-height: 1.5;
  padding: 9px 0; break-inside: avoid;
  border-bottom: 1px solid var(--hairline);
  color: rgba(23,23,23,0.85);
}
.li-note { color: var(--text-soft); font-size: 12px; }
.price-side {
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center; gap: 6px;
  border-left: 1px solid var(--hairline); padding-left: 44px;
}
.price-from { font-size: 11px; letter-spacing: 0.22em; color: var(--text-soft); }
.price-amount { font-family: var(--heading); font-size: 52px; line-height: 1.1; }
.price-amount sup { font-size: 20px; }
.price-note { font-size: 12px; color: var(--text-soft); margin-bottom: 18px; }

/* main products — image-free luxury list */
.service-list { display: flex; flex-direction: column; }
.service-row {
  display: grid; grid-template-columns: 1fr 230px; gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--hairline);
}
.service-row:first-child { padding-top: 0; }
.service-row:last-child { border-bottom: 0; padding-bottom: 0; }
.service-info h3 {
  font-family: var(--heading); font-weight: 400;
  font-size: clamp(22px, 2.4vw, 27px);
  margin-bottom: 12px;
}
.service-info > p { color: var(--text-soft); font-size: 16px; line-height: 1.7; max-width: 58ch; margin-bottom: 20px; }
.service-tiers {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px 28px;
}
.service-tiers li {
  display: flex; align-items: baseline; gap: 8px;
  font-size: 13px; color: var(--text-soft);
}
.service-tiers li span:last-child { font-family: var(--heading); color: var(--text); }
.service-tiers-flat li::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--text-soft); display: inline-block; margin-right: 2px;
}
.service-side {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 10px;
  border-left: 1px solid var(--hairline); padding-left: 48px;
}
.service-side .from { font-size: 11px; letter-spacing: 0.22em; color: var(--text-soft); text-transform: uppercase; }
.service-side .amt { font-family: var(--heading); font-size: 40px; line-height: 1.1; margin-bottom: 6px; }

/* add-on list */
.addon-list {
  border-radius: var(--radius); background: var(--card);
  border: 1px solid var(--hairline);
  padding: 12px 36px;
}
.addon-row {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--hairline);
}
.addon-row:last-child { border-bottom: 0; }
.addon-row .addon-price {
  margin-left: auto;
  font-family: var(--heading); font-size: 17px;
}
.addon-row .pill { padding: 10px 18px 9px; font-size: 13px; }

/* booking CTA (external link out to the Tonomo booking page) */
.booking-cta { margin-top: 90px; text-align: center; }
.section.booking-cta { margin-top: 0; }
.booking-cta-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 40px;
  display: flex; flex-direction: column; align-items: center; gap: 34px;
}
.booking-cta-inner p { color: var(--text-soft); font-size: clamp(20px, 2.4vw, 26px); }
.booking-cta-inner .pill { padding: 20px 42px 19px; font-size: 18px; }

/* Breathing room between pricing sections */
.pricing-block { margin-top: 150px; }

/* Pricing page entrance animations — softer curve, gentle stagger */
.pricing-page .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s cubic-bezier(0.22, 0.68, 0.24, 1),
              transform 0.85s cubic-bezier(0.22, 0.68, 0.24, 1);
}
.pricing-page .reveal.is-visible { opacity: 1; transform: none; }
.pricing-page .price-card.reveal { transform: translateY(44px) scale(0.985); }
.pricing-page .price-card.reveal.is-visible { transform: none; }
.pricing-page .alc-card.reveal { transform: translateY(30px); }
/* stagger the a-la-carte grid */
.alc-card.reveal:nth-child(2n) { transition-delay: 0.09s; }
.addon-row { transition: background 0.3s ease; }
.addon-row:hover { background: rgba(23, 23, 23, 0.03); }

.pricing-cta { text-align: center; padding: 90px 0 50px; }
.pricing-cta h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.pricing-cta p { color: var(--text-soft); margin-bottom: 32px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .site-header, .site-header.is-solid { padding-left: 20px; padding-right: 20px; }
  :root { --section-gap: 64px; --showcase-top: 76px; }
  .hero-content { left: 20px; right: 20px; bottom: 132px; }
  .hero-scroll { bottom: 18px; gap: 8px; font-size: 8px; }
  .hero-scroll-track { height: 32px; }
  .hero-scroll-chevron { width: 6px; height: 6px; }
  .section-head .head-sub { font-size: 16px; }
  .pricing-section-sub, .pricing-hero p { font-size: 16px; }
  .section-head:not(.is-centered) { flex-direction: column; align-items: flex-start; }
  .section-head { padding: 0 20px; }
  .showcase-track { padding: 0 20px; }
  #work .section-head h2 { font-size: 26px; }
  /* Vertical padding here isn't decorative — it's headroom so the active
     card's scale-up transform (see .car-card.is-active) has room to grow
     without its top/bottom edge clipping against the track's own box. */
  .car-track { padding: 20px; }
  .shot { height: min(300px, 42vh); }
  .car-card { height: 460px; }
  .car-controls { padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .pricing-page { padding: 36px 20px 20px; }
  .portfolio-page { padding: 36px 20px 20px; }
  .portfolio-hero { margin-bottom: 46px; }
  .price-card { grid-template-columns: 1fr; gap: 30px; padding: 26px; }
  .price-photo { min-height: 240px; }
  .price-badge { left: 26px; }
  .price-side { border-left: 0; border-top: 1px solid var(--hairline); padding-left: 0; padding-top: 26px; }
  .price-info ul { columns: 1; }
  .service-row { grid-template-columns: 1fr; gap: 20px; padding: 34px 0; }
  .service-side { border-left: 0; border-top: 1px solid var(--hairline); padding-left: 0; padding-top: 22px; flex-direction: row; align-items: baseline; gap: 12px; }
  .service-side .amt { margin-bottom: 0; }
  .pricing-block { margin-top: 100px; }
  .pkg-track { padding: 30px calc(50vw - 42vw); gap: 16px; }
  .pkg-card { flex-basis: 84vw; height: 460px; }
  .pkg-body { padding: 24px; }
  .pkg-body h3 { font-size: 24px; }
}
@media (max-width: 560px) {
  .site-nav { gap: 16px; }
  .site-nav a:not(.nav-book) { display: none; }
}
