/* =========================================================
   Pop Up Photo Booth Co. — "In Focus"
   Tokens
========================================================= */
:root {
  --ink: #000000;
  --ink-soft: #141414;
  --paper: #FFFFFF;
  --paper-soft: #EDEDED;
  --amber: #E3B65C;
  --amber-soft: #EDCC85;

  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --font-body: "Archivo", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --container: 1180px;
  --section-pad: clamp(5rem, 9vw, 9.5rem);
  --edge-pad: clamp(1.5rem, 5vw, 4rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* =========================================================
   Reset
========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(ellipse at 50% 0%, #ffffff 0%, #f4f4f4 55%, #e9e9e9 100%) fixed;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.9rem;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; }

.section {
  padding: var(--section-pad) var(--edge-pad);
  max-width: var(--container);
  margin: 0 auto;
}
.section__intro { max-width: 640px; margin-bottom: 3.5rem; }
.section__intro h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); line-height: 1.15; }
.section__lede { margin-top: 1.1rem; font-size: 1.05rem; line-height: 1.6; color: #454545; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow .3s var(--ease);
}
.btn--solid { background: var(--amber); color: var(--ink); }
.btn--solid:hover { background: var(--amber-soft); transform: translateY(-2px); }
.btn--outline { border: 1.5px solid var(--ink-soft); color: var(--ink-soft); }
.btn--outline:hover { background: var(--ink-soft); color: var(--paper); transform: translateY(-2px); }
.btn--ghost { color: var(--paper); border-bottom: 1px solid rgba(255,255,255,0.4); border-radius: 0; padding: 0.4rem 0; }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn--full { width: 100%; justify-content: center; }

.btn--shutter { position: relative; background: var(--amber); color: var(--ink); padding-left: 3.2rem; }
.btn--shutter .btn__ring {
  position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%);
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  border: 2px solid var(--ink); box-shadow: inset 0 0 0 3px var(--amber);
}
.btn--shutter:hover { background: var(--amber-soft); transform: translateY(-2px); }

/* =========================================================
   Header
========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem var(--edge-pad);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(227,182,92,0.25);
  padding: 0.7rem var(--edge-pad);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-mark { display: flex; align-items: center; gap: 0.7rem; line-height: 1; color: var(--paper); }
.brand-mark__logo { height: 2.9rem; width: auto; transition: height 0.3s var(--ease); }
.site-header.is-scrolled .brand-mark__logo { height: 2.3rem; }
.brand-mark__text { display: flex; flex-direction: column; }
.brand-mark__name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: 0.02em; }
.brand-mark__sub { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); margin-top: 0.2rem; }

.primary-nav { display: flex; align-items: center; gap: 2.1rem; }
.primary-nav a { color: var(--paper); font-size: 0.92rem; position: relative; }
.primary-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px;
  background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.primary-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta { border: 1px solid var(--amber); color: var(--amber) !important; padding: 0.5rem 1.1rem; border-radius: 999px; }
.nav-cta:hover { background: var(--amber); color: var(--ink) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 26px; }
.nav-toggle span { display: block; height: 2px; background: var(--paper); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 20%, #161616 0%, var(--ink) 60%);
  overflow: hidden;
  padding: 7rem var(--edge-pad) 4rem;
}
.hero__viewfinder { position: absolute; inset: clamp(1.2rem, 5vw, 3rem); pointer-events: none; }
.corner {
  position: absolute; width: 34px; height: 34px; border-color: var(--amber);
  opacity: 0; animation: corner-in 0.9s var(--ease) 0.6s forwards;
}
.corner--tl { top: 0; left: 0; border-top: 2px solid var(--amber); border-left: 2px solid var(--amber); }
.corner--tr { top: 0; right: 0; border-top: 2px solid var(--amber); border-right: 2px solid var(--amber); }
.corner--bl { bottom: 0; left: 0; border-bottom: 2px solid var(--amber); border-left: 2px solid var(--amber); }
.corner--br { bottom: 0; right: 0; border-bottom: 2px solid var(--amber); border-right: 2px solid var(--amber); }

.hero__flash {
  position: absolute; inset: 0; background: #fff; opacity: 0; pointer-events: none;
  animation: flash-pop 0.7s var(--ease) 0.4s forwards;
}

.hero__content {
  position: relative; z-index: 2; max-width: 760px; text-align: center;
  opacity: 0; transform: translateY(14px);
  animation: content-in 1.2s var(--ease) 0.7s forwards;
}

.hero__headline { color: var(--paper); font-size: clamp(2.2rem, 5.4vw, 3.9rem); line-height: 1.2; font-weight: 400; }
.hero__headline-accent { color: var(--amber); font-style: italic; }
.hero__sub { color: #d0d0d0; font-size: 1.08rem; max-width: 520px; margin: 1.6rem auto 0; line-height: 1.6; }
.hero__actions { margin-top: 2.4rem; display: flex; gap: 1.6rem; align-items: center; justify-content: center; flex-wrap: wrap; }

.scroll-cue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); width: 22px; height: 36px; border: 1.5px solid rgba(255,255,255,0.4); border-radius: 12px; }
.scroll-cue span { position: absolute; top: 6px; left: 50%; width: 4px; height: 4px; margin-left: -2px; border-radius: 50%; background: var(--amber); animation: scroll-cue-move 1.8s ease-in-out infinite; }

@keyframes corner-in { to { opacity: 0.55; } }
@keyframes flash-pop { 0% { opacity: 0.9; } 100% { opacity: 0; } }
@keyframes content-in { to { opacity: 1; transform: translateY(0); } }
@keyframes scroll-cue-move { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(18px); opacity: 0; } }

/* =========================================================
   Packages
========================================================= */
.section--packages { }
.package-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

/* Packages teaser (homepage condensed version — full detail lives on packages.html) */
.teaser-grid { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.teaser-price {
  position: relative;
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  box-shadow: 0 20px 40px -28px rgba(0,0,0,0.18);
  padding: 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.teaser-price--premium { border-color: var(--amber); }
.teaser-price__flag {
  position: absolute; top: -12px; left: 1.5rem;
  background: var(--amber); color: var(--ink);
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.28rem 0.7rem; border-radius: 999px;
}
.teaser-price__name { font-family: var(--font-display); font-size: 1.15rem; }
.teaser-price__amount { font-family: var(--font-mono); font-size: 1.6rem; color: var(--ink); }
.teaser-price__amount small { font-size: 0.82rem; color: #7d7d7d; font-weight: 400; }
.teaser-actions { margin-top: 2.2rem; display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }

.strip-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 28px 56px -30px rgba(0,0,0,0.32);
}
.strip-card--premium { border-color: var(--amber); }
.strip-card__perf {
  height: 3px;
  background: var(--amber);
}
.strip-card__flag {
  position: absolute; top: -13px; left: 1.8rem;
  background: var(--amber); color: var(--ink);
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 999px;
}
.strip-card__body { padding: 2.4rem 2.2rem 2.6rem; }
.strip-card__title { font-size: 1.5rem; }
.strip-card__price { font-family: var(--font-mono); margin-top: 0.8rem; display: flex; align-items: baseline; gap: 0.5rem; }
.strip-card__amount { font-size: 2.1rem; color: var(--ink); }
.strip-card__unit { font-size: 0.85rem; color: #7d7d7d; }
.strip-card__features { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.75rem; }
.strip-card__features li { padding-left: 1.4rem; position: relative; font-size: 0.96rem; color: #333333; }
.strip-card__features li::before { content: "\2022"; position: absolute; left: 0; color: var(--amber); font-size: 1.2rem; line-height: 1; }
.strip-card .btn { margin-top: 2rem; }

.package-addon {
  margin-top: 2.4rem; font-family: var(--font-mono); font-size: 0.88rem; color: #5e5e5e;
  border-top: 1px solid rgba(0,0,0,0.14); padding-top: 1.4rem;
}
.package-addon span { color: var(--ink-soft); font-weight: 600; }
.package-addon a { color: var(--ink-soft); font-weight: 600; }
.package-addon a:hover { color: var(--amber); }

.addon-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 28px 56px -30px rgba(0,0,0,0.32);
  max-width: 900px; margin: 0 auto;
}
.addon-card__perf { height: 3px; background: var(--amber); }
.addon-card__body { display: flex; gap: 2.2rem; padding: 2.4rem 2.2rem 2.6rem; }
.addon-card__media {
  flex: 0 0 320px; aspect-ratio: 3/2; align-self: flex-start;
  background: var(--paper-soft);
  border-radius: 8px; overflow: hidden;
}
.addon-card__media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.addon-card__media p {
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.04em;
  color: #7d7d7d; text-transform: uppercase; text-align: center; padding: 0 1rem;
  border: 1px dashed rgba(0,0,0,0.2);
}
.addon-card__info { flex: 1 1 auto; }
.addon-card__heading { display: flex; align-items: baseline; gap: 0.9rem; flex-wrap: wrap; }
.addon-card__title { font-size: 1.5rem; }
.addon-card__from { font-family: var(--font-mono); font-size: 0.85rem; color: var(--amber); }
.addon-card__desc { margin-top: 0.7rem; color: #333333; line-height: 1.6; max-width: 46ch; }
.addon-card__perks { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.6rem; max-width: 46ch; }
.addon-card__perks li { padding-left: 1.4rem; position: relative; font-size: 0.94rem; color: #333333; line-height: 1.5; }
.addon-card__perks li::before { content: "\2022"; position: absolute; left: 0; color: var(--amber); font-size: 1.2rem; line-height: 1.3; }
.addon-card__pricing { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; max-width: 320px; }
.addon-card__pricing li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  font-family: var(--font-mono); font-size: 0.95rem;
}
.addon-card__pricing li span { color: #5e5e5e; }
.addon-card__pricing li strong { color: var(--ink); font-size: 1.05rem; }
.addon-card__note { margin-top: 0.9rem; font-family: var(--font-mono); font-size: 0.85rem; color: #7d7d7d; }
.addon-card .btn { margin-top: 1.6rem; }

@media (max-width: 640px) {
  .addon-card__body { flex-direction: column; }
  .addon-card__media { flex-basis: auto; width: 100%; max-width: 100%; }
}

/* =========================================================
   How it works
========================================================= */
.section--how { background: var(--ink); color: var(--paper); max-width: none; padding-left: var(--edge-pad); padding-right: var(--edge-pad); }
.how-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.how-step__num { font-family: var(--font-mono); color: var(--amber); font-size: 0.85rem; letter-spacing: 0.1em; }
.how-step h3 { margin-top: 0.9rem; font-size: 1.3rem; color: var(--paper); }
.how-step p { margin-top: 0.8rem; color: #b0b0b0; font-size: 0.96rem; line-height: 1.6; }

/* =========================================================
   Gallery v2 (masonry category walls)
========================================================= */
.gallery-v2 { --gallery-gold: #C8A46A; }
.gallery-v2__intro { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.gallery-v2__intro h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); line-height: 1.15; }

.gallery-v2-category { margin-top: 4.5rem; }
.gallery-v2-category:first-child { margin-top: 0; }
.gallery-v2-category__title {
  text-align: center; font-family: var(--font-display); font-weight: 600;
  font-size: 1.35rem; letter-spacing: 0.01em; margin-bottom: 2rem;
}

.gallery-v2-masonry {
  column-count: 3; column-gap: 1.5rem;
}

.gallery-v2-item {
  display: block; width: 100%; margin: 0 0 1.5rem;
  break-inside: avoid;
  position: relative; border-radius: 16px; overflow: hidden;
  padding: 0; border: none; cursor: pointer; background: none;
  box-shadow: 0 18px 36px -26px rgba(0,0,0,0.28);
}
.gallery-v2-item img { display: block; width: 100%; height: auto; transition: transform 0.5s var(--ease); }
.gallery-v2-item:hover img { transform: scale(1.045); }
.gallery-v2-item:focus-visible { outline: 2px solid var(--gallery-gold); outline-offset: 2px; }

@media (max-width: 980px) {
  .gallery-v2-masonry { column-count: 2; }
}
@media (max-width: 640px) {
  .gallery-v2-masonry { column-count: 1; }
}

/* =========================================================
   Instagram CTA
========================================================= */
.instagram-cta { --gallery-gold: #C8A46A; text-align: center; }
.instagram-cta__inner { max-width: 640px; margin: 0 auto; }
.instagram-cta__inner h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); line-height: 1.15; }
.instagram-cta__inner .section__lede { text-align: center; margin-bottom: 2.2rem; }
.instagram-cta__inner .btn--outline:hover { background: var(--gallery-gold); border-color: var(--gallery-gold); color: var(--ink); }

/* =========================================================
   Gallery v2 lightbox (fullscreen)
========================================================= */
.gallery-v2-lightbox {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.94);
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.gallery-v2-lightbox[hidden] { display: none; }
.gallery-v2-lightbox.is-open { opacity: 1; }
.gallery-v2-lightbox__img {
  max-width: min(96vw, 1300px); max-height: 92vh;
  width: auto; height: auto; object-fit: contain;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
  transform: scale(0.97);
  transition: transform 0.3s var(--ease);
}
.gallery-v2-lightbox.is-open .gallery-v2-lightbox__img { transform: scale(1); }

/* =========================================================
   The Booth
========================================================= */
.booth-intro { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.booth-intro h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 1.2; }

.booth-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; max-width: 1000px; margin: 0 auto; }
.booth-gallery__item {
  position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 12px;
  box-shadow: 0 22px 44px -28px rgba(0,0,0,0.32);
}
.booth-gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) blur(6px);
  transform: scale(1.06);
  opacity: 0.5;
  transition: filter 1.3s var(--ease), transform 1.3s var(--ease), opacity 1.3s var(--ease);
}
.booth-gallery__item.develop.is-visible img {
  filter: grayscale(0) blur(0); transform: scale(1); opacity: 1;
}

@media (max-width: 760px) {
  .booth-gallery { grid-template-columns: 1fr; max-width: 360px; }
}

/* =========================================================
   Backdrops
========================================================= */
.backdrop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.2rem 1.6rem; }
.backdrop-card__frame {
  display: block; width: 100%; padding: 0; border: none; background: none; cursor: pointer;
  position: relative; aspect-ratio: 4/3.2; border-radius: 3px; overflow: hidden;
  box-shadow: 0 20px 40px -28px rgba(0,0,0,0.22);
}
.backdrop-card__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.backdrop-card__frame:hover img { transform: scale(1.05); }
.backdrop-card__frame:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }
.backdrop-card figcaption { margin-top: 0.9rem; display: flex; flex-direction: column; gap: 0.35rem; }
.backdrop-card__name {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; letter-spacing: 0.01em;
  position: relative; padding-bottom: 0.5rem;
}
.backdrop-card__name::after { content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 2px; background: var(--amber); }
.backdrop-card__desc { font-size: 0.85rem; color: #5e5e5e; line-height: 1.45; }

.backdrop-features { background: var(--ink); color: var(--paper); max-width: none; padding: clamp(3rem, 6vw, 4rem) var(--edge-pad); }
.backdrop-features__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.2rem;
}
.backdrop-feature { text-align: center; }
.backdrop-feature svg { width: 26px; height: 26px; margin: 0 auto; color: var(--amber); }
.backdrop-feature h4 { margin-top: 0.9rem; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--paper); }
.backdrop-feature p { margin-top: 0.5rem; font-size: 0.85rem; color: #b0b0b0; line-height: 1.5; }

/* =========================================================
   Lightbox (backdrop viewer)
========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__figure {
  margin: 0; display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
  max-width: min(96vw, 1200px);
  transform: scale(0.97);
  transition: transform 0.3s var(--ease);
}
.lightbox.is-open .lightbox__figure { transform: scale(1); }
.lightbox__img {
  max-width: 100%; max-height: 86vh; width: auto; height: auto;
  object-fit: contain;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
}
.lightbox__figure figcaption {
  color: var(--paper); font-family: var(--font-mono); font-size: 0.82rem;
  letter-spacing: 0.04em; text-align: center;
}
.lightbox__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;
  color: var(--paper); font-size: 1.6rem; line-height: 1;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.lightbox__close:hover { border-color: var(--amber); color: var(--amber); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;
  color: var(--paper); font-size: 2rem; line-height: 1;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.lightbox__nav:hover { border-color: var(--amber); color: var(--amber); }
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

@media (max-width: 640px) {
  .lightbox__close { top: 1rem; right: 1rem; width: 38px; height: 38px; font-size: 1.3rem; }
  .lightbox__nav { width: 42px; height: 42px; font-size: 1.5rem; }
  .lightbox__nav--prev { left: 0.6rem; }
  .lightbox__nav--next { right: 0.6rem; }
}

/* =========================================================
   Testimonials
========================================================= */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.testimonial-feature {
  background: #fff; padding: clamp(2rem, 4vw, 2.6rem) clamp(1.6rem, 4vw, 2.2rem);
  border-top: 3px solid var(--amber);
  box-shadow: 0 24px 48px -28px rgba(0,0,0,0.26);
}
.testimonial-feature p { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; line-height: 1.6; color: var(--ink-soft); }
.testimonial-feature footer { margin-top: 1.4rem; font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: #5e5e5e; }
.testimonial-feature__source { color: var(--amber); }

.testimonial-more { text-align: center; margin-top: 2.6rem; font-family: var(--font-mono); font-size: 0.88rem; }
.testimonial-more a { color: var(--ink-soft); font-weight: 600; }
.testimonial-more a:hover { color: var(--amber); }

/* =========================================================
   Service area
========================================================= */
.section--service-area { background: var(--paper-soft); max-width: none; padding-left: var(--edge-pad); padding-right: var(--edge-pad); }
.service-area__inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.service-tags li {
  font-family: var(--font-mono); font-size: 0.82rem; padding: 0.55rem 1.1rem;
  border: 1px solid rgba(0,0,0,0.2); border-radius: 999px; color: var(--ink-soft);
}

/* =========================================================
   FAQ
========================================================= */
.faq-list { display: flex; flex-direction: column; gap: 0.9rem; max-width: 760px; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.14); padding-bottom: 0.9rem; }
.faq-item summary {
  cursor: pointer; font-family: var(--font-display); font-size: 1.1rem; padding: 0.6rem 0;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-mono); color: var(--amber); font-size: 1.3rem; flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding: 0.3rem 0 0.6rem; color: #454545; line-height: 1.6; max-width: 60ch; }

/* =========================================================
   About
========================================================= */
.section--about { background: var(--ink); color: var(--paper); max-width: none; padding-left: var(--edge-pad); padding-right: var(--edge-pad); }
.about__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.about__inner h2 { color: var(--paper); font-size: clamp(1.7rem, 3.2vw, 2.3rem); line-height: 1.3; margin-top: 0.6rem; }
.about__inner .section__lede { color: #d0d0d0; margin-top: 1.4rem; }
.section--about .eyebrow { text-align: center; }

/* =========================================================
   Contact
========================================================= */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; }
.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-details__label { display: block; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: #7d7d7d; margin-bottom: 0.2rem; }
.contact-details a:hover { color: var(--amber); }

.booking-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row label { display: block; font-size: 0.82rem; margin-bottom: 0.4rem; color: #5e5e5e; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 0.8rem 1rem; background: #fff;
  border: 1px solid rgba(0,0,0,0.2); border-radius: 6px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--amber); box-shadow: 0 0 0 3px rgba(227,182,92,0.18); outline: none;
}
.form-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.honeypot-field { position: absolute; left: -9999px; }

.form-row--checkboxes {
  border: 1px solid rgba(0,0,0,0.2); border-radius: 6px;
  padding: 0.9rem 1rem 1.05rem; margin: 0;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.form-row--checkboxes legend {
  padding: 0 0.3rem; margin-left: -0.3rem;
  font-size: 0.82rem; color: #5e5e5e;
}
.checkbox-option { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; color: #333333; cursor: pointer; }
.checkbox-option input { width: 16px; height: 16px; accent-color: var(--amber); flex: 0 0 auto; }
.checkbox-option small { display: block; color: #7d7d7d; font-family: var(--font-mono); font-size: 0.76rem; margin-top: 0.15rem; }

/* =========================================================
   Page banner (packages.html and other sub-pages)
========================================================= */
.page-banner {
  background: var(--ink);
  color: var(--paper);
  max-width: none;
  padding: clamp(7.5rem, 14vw, 9.5rem) var(--edge-pad) clamp(3rem, 6vw, 4rem);
}
.page-banner__inner { max-width: var(--container); margin: 0 auto; }
.page-banner .eyebrow { color: var(--amber); }
.page-banner h1 { color: var(--paper); font-family: var(--font-display); font-weight: 500; font-size: clamp(2.1rem, 4.2vw, 3.2rem); line-height: 1.15; margin-top: 0.6rem; }
.page-banner .section__lede { color: #d0d0d0; max-width: 640px; margin-top: 1.1rem; }
.page-banner__actions { margin-top: 2rem; display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* =========================================================
   Included list (packages.html)
========================================================= */
.included-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 2rem; max-width: 760px; }
.included-list li { padding-left: 1.7rem; position: relative; font-size: 1rem; color: #333333; line-height: 1.5; }
.included-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--amber); font-weight: 700; }

/* =========================================================
   CTA band (packages.html)
========================================================= */
.section--cta { text-align: center; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner .btn { margin-top: 1.8rem; }

/* =========================================================
   Footer
========================================================= */
.site-footer { background: var(--ink); color: #949494; padding: 1.6rem var(--edge-pad); }
.site-footer__inner { max-width: var(--container); margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; font-size: 0.82rem; }
.site-footer__brand { display: flex; align-items: center; gap: 0.6rem; }
.site-footer__logo { height: 1.6rem; width: auto; }
.site-footer__links { display: flex; gap: 1.4rem; }
.site-footer__links a:hover { color: var(--amber); }
.site-footer__ig { display: inline-flex; align-items: center; gap: 0.4rem; }

/* =========================================================
   Reveal-on-scroll (generic)
========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 980px) {
  .primary-nav { position: fixed; inset: 0; top: 0; background: var(--ink); flex-direction: column; justify-content: center; align-items: center; gap: 2.2rem; transform: translateX(100%); transition: transform 0.4s var(--ease); }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav a { font-size: 1.3rem; }
  .nav-toggle { display: flex; z-index: 200; }

  .package-grid, .how-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .service-area__inner, .contact-grid { grid-template-columns: 1fr; }
  .included-list { grid-template-columns: 1fr; }
  .form-row--split { grid-template-columns: 1fr; }
  .backdrop-grid { grid-template-columns: repeat(2, 1fr); }
  .backdrop-features__inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 640px) {
  .backdrop-features__inner { grid-template-columns: 1fr; }
}
