/* ═══════════════════════════════════════════════════
   CDECKER MEDIA — vintage poster edition
   ═══════════════════════════════════════════════════ */

:root {
  --paper: #e6d7b8;           /* aged paper */
  --paper-deep: #d9c69d;      /* darker paper */
  --cream: #efe3c4;           /* light cream (banners, type on green) */
  --ink: #2b1d12;             /* dark brown ink */
  --green: #3d6b4f;           /* poster green */
  --green-deep: #2c5140;      /* darker green */
  --orange: #d97b28;          /* burnt orange */
  --gold: #dca43c;
  --red: #b3392b;
  --maroon: #6e2233;
  --line: rgba(43, 29, 18, 0.25);
  --font-display: "Alfa Slab One", serif;
  --font-groovy: "Shrikhand", serif;
  --font-mono: "Courier Prime", monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-hard: 5px 5px 0 rgba(43, 29, 18, 0.85);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background:
    /* fold creases */
    linear-gradient(to bottom, transparent 33.2%, rgba(43,29,18,0.07) 33.35%, rgba(255,255,255,0.10) 33.5%, transparent 33.7%),
    linear-gradient(to bottom, transparent 66.2%, rgba(43,29,18,0.07) 66.35%, rgba(255,255,255,0.10) 66.5%, transparent 66.7%),
    linear-gradient(to right, transparent 49.8%, rgba(43,29,18,0.05) 49.95%, rgba(255,255,255,0.08) 50.1%, transparent 50.3%),
    /* subtle vignette */
    radial-gradient(ellipse 120% 100% at 50% 40%, transparent 60%, rgba(43,29,18,0.14) 100%),
    var(--paper);
  color: var(--ink);
  font-family: var(--font-mono);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--orange); color: var(--cream); }

.mono { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em; color: rgba(43,29,18,0.75); }
.accent { color: var(--orange); }

/* ── scrollbar ── */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--paper-deep); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 6px; border: 2px solid var(--paper-deep); }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ═══════════ GRAIN / PAPER NOISE ═══════════ */
.grain {
  position: fixed; inset: -100%; z-index: 955; pointer-events: none; opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.7s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ═══════════ LOADER — film leader countdown ═══════════ */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  background:
    radial-gradient(ellipse 100% 90% at 50% 45%, transparent 55%, rgba(43,29,18,0.25) 100%),
    var(--paper-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transition: transform 0.9s var(--ease), opacity 0.5s ease;
}
.loader.done { transform: translateY(-100%); opacity: 0.9; pointer-events: none; }
.loader-circle {
  position: relative; width: 210px; height: 210px; border-radius: 50%;
  border: 3px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.loader-sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(rgba(43, 29, 18, 0.22) var(--p, 0%), transparent 0);
}
.loader-cross-h, .loader-cross-v { position: absolute; background: rgba(43,29,18,0.45); }
.loader-cross-h { left: -10px; right: -10px; top: 50%; height: 2px; }
.loader-cross-v { top: -10px; bottom: -10px; left: 50%; width: 2px; }
.loader-ring {
  position: absolute; inset: 22px; border-radius: 50%;
  border: 2px solid rgba(43,29,18,0.45);
}
.loader-count {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-size: 5.2rem; color: var(--ink); line-height: 1;
}
.loader-text { letter-spacing: 0.4em; }

/* ═══════════ CURSOR ═══════════ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999;
  border-radius: 50%; transform: translate(-50%, -50%);
  opacity: 0;
}
body.cursor-active .cursor-dot, body.cursor-active .cursor-ring { opacity: 1; }
.cursor-dot { width: 7px; height: 7px; background: var(--orange); }
.cursor-ring {
  width: 38px; height: 38px; border: 2px solid rgba(217, 123, 40, 0.75);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  display: flex; align-items: center; justify-content: center;
}
.cursor-ring span {
  font-family: var(--font-mono); font-weight: 700; font-size: 0.55rem; letter-spacing: 0.15em;
  color: var(--cream); opacity: 0; transition: opacity 0.2s ease;
}
.cursor-ring.grow {
  width: 76px; height: 76px;
  background: var(--orange); border-color: var(--ink);
}
.cursor-ring.grow span { opacity: 1; }
@media (hover: none), (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ═══════════ NAV ═══════════ */
.nav {
  /* anchored flush to the top of the screen; the notch/safe area is
     absorbed as padding INSIDE the bar so content can never be seen
     scrolling in a gap above it */
  position: fixed; z-index: 900; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem clamp(1.2rem, 4vw, 2.6rem);
  padding-top: calc(0.9rem + env(safe-area-inset-top, 0px));
  padding-left: calc(clamp(1.2rem, 4vw, 2.6rem) + env(safe-area-inset-left, 0px));
  padding-right: calc(clamp(1.2rem, 4vw, 2.6rem) + env(safe-area-inset-right, 0px));
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  border-bottom: 3px solid transparent;
}
.nav.scrolled {
  background: rgba(230, 215, 184, 0.97);
  border-bottom-color: var(--ink);
  box-shadow: 0 4px 0 rgba(43,29,18,0.2);
  padding-top: calc(0.6rem + env(safe-area-inset-top, 0px));
  padding-bottom: 0.6rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ink); }
.logo-mini { width: 40px; height: 40px; color: var(--ink); }
.nav-logo-text {
  font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.08em;
  color: var(--ink); text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.2rem); }
.nav-links a {
  color: var(--ink); text-decoration: none; font-family: var(--font-mono); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--red); }
.nav-num { font-size: 0.6rem; color: var(--orange); margin-right: 0.35rem; vertical-align: super; }
.nav-cta {
  background: var(--orange); color: var(--cream) !important;
  border: 2px solid var(--ink); border-radius: 6px;
  padding: 0.45rem 1.05rem; box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.nav-cta:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); color: var(--cream) !important; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-burger span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 6px 0; border-radius: 2px; transition: transform 0.3s ease; }
.nav-burger.open span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 890; background: var(--green-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  color: var(--cream); text-decoration: none; font-family: var(--font-display);
  font-size: 2.2rem; letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
}

/* ═══════════ HERO ═══════════ */
.hero { position: relative; }

.hero-green {
  position: relative;
  background:
    radial-gradient(ellipse 90% 70% at 50% 30%, rgba(239, 227, 196, 0.10), transparent 65%),
    linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 82%, 58% 82%, 50% 100%, 42% 82%, 0 82%);
  padding: clamp(9rem, 17vh, 12rem) 1.5rem clamp(9rem, 18vh, 13rem);
  text-align: center;
  overflow: hidden;
}

.hero-halftone {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(circle, rgba(20, 34, 26, 0.55) 1.4px, transparent 1.6px);
  background-size: 11px 11px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, transparent 45%, #000 100%);
  mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, transparent 45%, #000 100%);
}

.hero-meta {
  position: absolute; top: clamp(9rem, 17vh, 12rem);
  display: flex; flex-direction: column; gap: 0.45rem; text-align: left;
}
.hero-meta span { color: rgba(239, 227, 196, 0.75); }
.hero-meta-left { left: clamp(1.4rem, 4vw, 3.2rem); }
.hero-meta-right { right: clamp(1.4rem, 4vw, 3.2rem); text-align: right; }
.hero-meta-right span:first-child { color: var(--gold); }
@media (max-width: 900px) { .hero-meta { display: none; } }

.hero-content { position: relative; z-index: 2; }

.hero-logo {
  width: clamp(84px, 12vw, 130px); height: clamp(84px, 12vw, 130px);
  color: var(--cream);
  margin-bottom: 1.6rem;
  filter: drop-shadow(4px 4px 0 rgba(20, 34, 26, 0.5));
  opacity: 0; animation: fadeRise 0.9s var(--ease) 0.25s forwards;
}

.hero-title { line-height: 0.95; }
.hero-line { display: block; overflow: hidden; padding: 0.06em 0; }
.hero-word {
  display: inline-block;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  color: var(--cream);
  text-shadow: 0.05em 0.05em 0 rgba(20, 34, 26, 0.55);
  transform: translateY(115%);
  animation: riseUp 1.1s var(--ease) forwards;
}
.hero-line:nth-child(2) .hero-word { animation-delay: 0.12s; }
.hero-word-alt {
  font-family: var(--font-groovy);
  color: var(--gold);
  font-size: clamp(2.6rem, 9vw, 7rem);
}
@keyframes riseUp { to { transform: translateY(0); } }
@keyframes fadeRise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.hero-kicker {
  margin-top: 1.6rem; color: rgba(239, 227, 196, 0.85); letter-spacing: 0.35em;
  opacity: 0; animation: fadeRise 0.9s var(--ease) 0.5s forwards;
}

/* torn tape banner */
.hero-tape {
  position: relative; z-index: 3;
  width: min(680px, 88vw);
  margin: clamp(-4.5rem, -9vh, -6.5rem) auto 0;
  background: var(--cream);
  border: 2px solid rgba(43,29,18,0.55);
  box-shadow: var(--shadow-hard);
  transform: rotate(-2deg);
  padding: 1.05rem 1.4rem;
  text-align: center;
  clip-path: polygon(0.8% 12%, 2% 0, 98.2% 4%, 100% 18%, 99.4% 88%, 97.6% 100%, 1.6% 96%, 0 82%);
  opacity: 0; animation: fadeRiseTape 0.9s var(--ease) 0.65s forwards;
}
@keyframes fadeRiseTape {
  from { opacity: 0; transform: rotate(-2deg) translateY(24px); }
  to { opacity: 1; transform: rotate(-2deg) translateY(0); }
}
.hero-tape span {
  font-family: var(--font-groovy); font-size: clamp(1rem, 2.6vw, 1.45rem);
  color: var(--green-deep); letter-spacing: 0.02em;
}
.hero-tape em { font-style: normal; color: var(--orange); }

.hero-actions {
  display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2.4rem; position: relative; z-index: 2;
  opacity: 0; animation: fadeRise 0.9s var(--ease) 0.8s forwards;
}

.hero-scroll { text-align: center; margin: 2.6rem 0 3rem; letter-spacing: 0.35em; }
.hero-scroll span { animation: bob 1.8s ease-in-out infinite; display: inline-block; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-block; text-decoration: none;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 1.7rem; border-radius: 8px;
  border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.btn-solid { background: var(--orange); color: var(--cream); }
.btn-solid:hover { background: var(--red); color: var(--cream); }
.btn-ghost { background: var(--cream); color: var(--ink); }
.btn-ghost:hover { background: var(--gold); }

/* ═══════════ RETRO STRIPES ═══════════ */
.stripes {
  height: 42px;
  background: linear-gradient(to bottom,
    var(--gold) 0 20%,
    var(--orange) 20% 40%,
    var(--red) 40% 60%,
    var(--maroon) 60% 80%,
    #431722 80% 100%);
  border-top: 2px solid rgba(43,29,18,0.5);
  border-bottom: 2px solid rgba(43,29,18,0.5);
}
.stripes-thin { height: 26px; }

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  overflow: hidden; padding: 0.85rem 0;
  background: var(--orange);
  border-bottom: 2px solid rgba(43,29,18,0.5);
}
.marquee-track { display: flex; white-space: nowrap; animation: marquee 26s linear infinite; }
.marquee-track span {
  font-family: var(--font-groovy); font-size: 1.05rem; letter-spacing: 0.06em;
  color: var(--green-deep); flex-shrink: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════ SECTIONS ═══════════ */
.section { padding: clamp(4.5rem, 9vw, 8rem) clamp(1.4rem, 5vw, 4rem); max-width: 1440px; margin: 0 auto; }
.section-head { margin-bottom: clamp(2.2rem, 5vw, 4rem); }
.section-index {
  display: inline-block; color: var(--cream); background: var(--green);
  border: 2px solid var(--ink); border-radius: 6px;
  padding: 0.35rem 0.8rem; margin-bottom: 1.2rem;
  box-shadow: 3px 3px 0 rgba(43,29,18,0.6);
}
.section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1;
  color: var(--green-deep);
  text-shadow: 0.06em 0.06em 0 var(--orange);
}
.section-desc { margin-top: 1.2rem; color: rgba(43,29,18,0.8); max-width: 480px; line-height: 1.7; font-size: 0.95rem; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ═══════════ VIDEO GRID — filmstrip cards ═══════════ */
.video-grid {
  display: grid; gap: clamp(1.4rem, 3vw, 2.4rem);
  grid-template-columns: repeat(auto-fill, minmax(min(420px, 100%), 1fr));
}
.video-card {
  position: relative; cursor: pointer;
  background: #241812;
  border: 2px solid var(--ink); border-radius: 12px;
  box-shadow: 6px 6px 0 rgba(43,29,18,0.7);
  padding: 12px 30px;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), box-shadow 0.25s ease;
}
.video-card.in { opacity: 1; transform: translateY(0); }
.video-card:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 rgba(43,29,18,0.7); }
.video-card.in:hover { transform: translate(3px, 3px); }
/* sprocket holes */
.video-card::before, .video-card::after {
  content: ""; position: absolute; top: 10px; bottom: 10px; width: 12px;
  background-image: repeating-linear-gradient(to bottom,
    transparent 0 5px, var(--paper-deep) 5px 15px, transparent 15px 20px);
  border-radius: 3px;
}
.video-card::before { left: 9px; }
.video-card::after { right: 9px; }

/* featured cards: bigger, orange glow, stamped */
.video-card.featured { border-color: var(--orange); box-shadow: 7px 7px 0 rgba(217, 123, 40, 0.75); }
.video-card.featured:hover { box-shadow: 2px 2px 0 rgba(217, 123, 40, 0.75); }
@media (min-width: 920px) { .video-card.featured { grid-column: span 2; } }
.featured-stamp {
  position: absolute; top: -15px; left: 20px; z-index: 4;
  background: var(--orange); color: var(--cream);
  font-family: var(--font-mono); font-weight: 700; font-size: 0.62rem; letter-spacing: 0.2em;
  border: 2px solid var(--ink); border-radius: 6px; padding: 0.32rem 0.7rem;
  transform: rotate(-3deg);
  box-shadow: 3px 3px 0 rgba(43, 29, 18, 0.6);
}

.video-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 8px; border: 2px solid rgba(230,215,184,0.25); }
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s var(--ease);
}
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(36,24,18,0.55), transparent 45%);
}
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9);
  width: 66px; height: 66px; border-radius: 50%;
  background: rgba(230, 215, 184, 0.92);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 rgba(43,29,18,0.6);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s var(--ease), background 0.25s ease;
  z-index: 2;
}
.video-play svg { width: 20px; height: 20px; fill: var(--ink); margin-left: 3px; }
.video-card:hover .video-play { transform: translate(-50%, -50%) scale(1); background: var(--orange); }
.video-card:hover .video-play svg { fill: var(--cream); }
.video-info { padding: 0.9rem 0.4rem 0.6rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.video-title { font-family: var(--font-mono); font-weight: 700; font-size: 0.92rem; color: var(--cream); letter-spacing: 0.02em; }
.video-cat {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.15em;
  color: var(--gold); white-space: nowrap; text-transform: uppercase;
}
.video-duration {
  position: absolute; top: 1.4rem; right: 2.6rem; z-index: 2;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.62rem; letter-spacing: 0.1em;
  background: var(--cream); color: var(--ink); border: 1px solid var(--ink);
  padding: 0.22rem 0.5rem; border-radius: 4px;
}

/* ═══════════ PHOTO STYLE SECTIONS ═══════════ */
.style-nav {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  margin: -0.6rem 0 1rem;
}
.style-chip {
  font-family: var(--font-mono); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  background: var(--cream);
  border: 2px solid var(--ink); border-radius: 100px;
  padding: 0.5rem 1.15rem;
  box-shadow: 3px 3px 0 rgba(43, 29, 18, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.style-chip:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 rgba(43, 29, 18, 0.6);
  background: var(--gold);
}
.pricing-nav {
  max-width: 1440px; margin: 2.4rem auto 0;
  padding: 0 clamp(1.4rem, 5vw, 4rem);
  justify-content: center;
}
.photo-style { scroll-margin-top: 110px; }
.style-head {
  display: flex; align-items: baseline; gap: 1.2rem; flex-wrap: wrap;
  margin: 2.6rem 0 1.6rem;
  padding-bottom: 0.9rem;
  border-bottom: 2px dashed rgba(43, 29, 18, 0.35);
}
.style-title {
  font-family: var(--font-groovy); font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem); line-height: 1;
  color: var(--green-deep);
}
.style-desc { letter-spacing: 0.1em; }

/* ═══════════ PHOTO GRID — taped prints ═══════════ */
.photo-grid { columns: 3; column-gap: clamp(1.2rem, 2.4vw, 2rem); }
@media (max-width: 1000px) { .photo-grid { columns: 2; } }
@media (max-width: 560px) { .photo-grid { columns: 1; } }
.photo-card {
  position: relative; margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
  break-inside: avoid; cursor: pointer;
  background: var(--cream);
  border: 2px solid var(--ink); border-radius: 10px;
  box-shadow: 5px 5px 0 rgba(43,29,18,0.65);
  padding: 10px 10px 14px;
  opacity: 0; transform: translateY(40px) rotate(0deg);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), box-shadow 0.25s ease;
}
.photo-card:nth-child(odd) { rotate: -1deg; }
.photo-card:nth-child(even) { rotate: 1.2deg; }
.photo-card.in { opacity: 1; transform: translateY(0); }
.photo-card:hover { transform: translate(2px, 2px) !important; box-shadow: 2px 2px 0 rgba(43,29,18,0.65); rotate: 0deg; }
/* tape strip */
.photo-card .tape, .headshot .tape {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 96px; height: 26px;
  background: rgba(220, 164, 60, 0.65);
  border-left: 1px dashed rgba(43,29,18,0.3);
  border-right: 1px dashed rgba(43,29,18,0.3);
  box-shadow: 0 1px 2px rgba(43,29,18,0.25);
  z-index: 3;
}
.photo-card img {
  width: 100%; display: block; border-radius: 6px;
  border: 1px solid rgba(43,29,18,0.35);
}
.photo-overlay {
  display: flex; justify-content: space-between; align-items: baseline; gap: 0.8rem;
  padding: 0.75rem 0.3rem 0;
}
.photo-overlay .photo-title { font-family: var(--font-groovy); font-size: 0.98rem; color: var(--green-deep); }
.photo-overlay .photo-cat {
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.15em;
  color: var(--orange); text-transform: uppercase; white-space: nowrap;
}

/* ═══════════ PRICING PAGE ═══════════ */
.nav-links a.active { color: var(--red); }
.nav-links a.active .nav-num { color: var(--red); }

.page-hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 70% at 50% 30%, rgba(239, 227, 196, 0.10), transparent 65%),
    linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 74%, 57% 74%, 50% 100%, 43% 74%, 0 74%);
  padding: clamp(8rem, 15vh, 11rem) 1.5rem clamp(7rem, 13vh, 10rem);
  text-align: center; overflow: hidden;
}
.page-hero-content { position: relative; z-index: 2; }
.page-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(3rem, 9vw, 6.5rem); line-height: 1;
  color: var(--cream);
  text-shadow: 0.05em 0.05em 0 rgba(20, 34, 26, 0.55);
}
.page-sub { margin-top: 1.2rem; color: rgba(239, 227, 196, 0.85); letter-spacing: 0.3em; }

.page-tape { margin-top: clamp(-3.5rem, -7vh, -5rem); animation-delay: 0.15s; }

.pricing-section { padding-bottom: clamp(2rem, 4vw, 3rem); scroll-margin-top: 96px; }
.pricing-section:last-of-type { padding-bottom: clamp(4rem, 8vw, 6rem); }
.pricing-grid {
  display: grid; gap: clamp(1.4rem, 2.5vw, 2rem); align-items: stretch;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
}
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--cream);
  border: 2px solid var(--ink); border-radius: 12px;
  box-shadow: 6px 6px 0 rgba(43, 29, 18, 0.65);
  padding: 1.9rem 1.7rem 1.7rem;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), box-shadow 0.25s ease;
}
.price-card.in { opacity: 1; transform: translateY(0); }
.price-card:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(43, 29, 18, 0.65); }
.price-card.popular { border-color: var(--orange); box-shadow: 6px 6px 0 rgba(217, 123, 40, 0.75); }
.price-card.popular:hover { box-shadow: 2px 2px 0 rgba(217, 123, 40, 0.75); }
.price-title { font-family: var(--font-groovy); font-weight: 400; font-size: 1.35rem; color: var(--green-deep); }
.price-amount {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 2.9rem); line-height: 1;
  color: var(--orange); text-shadow: 2px 2px 0 rgba(43, 29, 18, 0.35);
  margin: 0.7rem 0 0.4rem;
}
.price-unit { font-family: var(--font-mono); font-size: 0.45em; letter-spacing: 0.1em; color: rgba(43,29,18,0.65); margin-left: 0.3rem; }
.price-desc { font-family: var(--font-mono); font-size: 0.82rem; line-height: 1.65; color: rgba(43, 29, 18, 0.8); margin-top: 0.5rem; }
.price-includes {
  list-style: none; margin-top: 1.1rem; padding-top: 1.1rem;
  border-top: 2px dashed rgba(43, 29, 18, 0.35);
}
.price-includes li {
  font-family: var(--font-mono); font-size: 0.8rem; line-height: 1.5;
  color: rgba(43, 29, 18, 0.85);
  padding-left: 1.3rem; position: relative; margin-bottom: 0.45rem;
}
.price-includes li::before { content: "✦"; position: absolute; left: 0; color: var(--orange); }
.price-includes { margin-bottom: 1.5rem; }
.price-cta { margin-top: auto; align-self: flex-start; }

/* ═══════════ ABOUT ═══════════ */
.about { padding-bottom: clamp(2rem, 4vw, 3.5rem); }
.about-card {
  background: var(--cream);
  border: 2px solid var(--ink); border-radius: 14px;
  box-shadow: 7px 7px 0 rgba(43,29,18,0.7);
  padding: clamp(2rem, 5vw, 4rem);
}
.about-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.12;
  color: var(--green-deep); margin: 1.2rem 0 1.4rem;
}
.about-name { font-family: var(--font-groovy); color: var(--orange); }
.about-text p { color: rgba(43,29,18,0.85); line-height: 1.8; margin-bottom: 1.4rem; max-width: 540px; font-size: 0.95rem; }
.about-text strong { color: var(--ink); }
.about-tagline { color: var(--red); font-weight: 700; letter-spacing: 0.28em; margin-bottom: 2rem !important; }
.about-photo { display: flex; justify-content: center; }
.headshot {
  position: relative; width: min(380px, 100%);
  background: var(--paper);
  border: 2px solid var(--ink); border-radius: 10px;
  box-shadow: 7px 7px 0 rgba(43,29,18,0.65);
  padding: 12px 12px 16px;
  rotate: 2deg;
  transition: rotate 0.3s var(--ease);
}
.headshot:hover { rotate: 0deg; }
.headshot img {
  width: 100%; display: block; border-radius: 6px;
  border: 1px solid rgba(43,29,18,0.35);
}
.headshot figcaption {
  display: flex; justify-content: space-between; align-items: baseline; gap: 0.8rem;
  padding: 0.75rem 0.3rem 0;
}
.headshot .photo-title { font-family: var(--font-groovy); font-size: 1.05rem; color: var(--green-deep); }
.headshot .photo-cat {
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.15em;
  color: var(--orange); text-transform: uppercase; white-space: nowrap;
}

/* ═══════════ CONTACT ═══════════ */
.contact {
  position: relative; margin-top: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(165deg, var(--green) 0%, var(--green-deep) 90%);
  border-top: 3px solid var(--ink);
  overflow: hidden;
}
.contact-halftone {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.45;
  background-image: radial-gradient(circle, rgba(20, 34, 26, 0.55) 1.4px, transparent 1.6px);
  background-size: 11px 11px;
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, transparent 40%, #000 100%);
  mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, transparent 40%, #000 100%);
}
.contact-inner { position: relative; z-index: 2; text-align: center; padding: clamp(4.5rem, 9vw, 7.5rem) 1.5rem 0; }
.contact-logo { width: 74px; height: 74px; color: var(--cream); margin-bottom: 1.6rem; filter: drop-shadow(3px 3px 0 rgba(20,34,26,0.5)); }
.contact-kicker { color: var(--gold); letter-spacing: 0.35em; margin-bottom: 1.4rem; }
.contact-big {
  display: inline-block; text-decoration: none;
  font-family: var(--font-groovy);
  font-size: clamp(2.8rem, 9vw, 7rem); line-height: 1.02;
  color: var(--cream);
  text-shadow: 0.05em 0.05em 0 rgba(20, 34, 26, 0.55);
  transition: color 0.3s ease, transform 0.4s var(--ease);
}
.contact-big:hover { color: var(--gold); transform: rotate(-1.5deg) scale(1.02); }
/* booking form (Netlify Forms) */
.contact-form {
  width: min(620px, 100%); margin: 2.8rem auto 0; text-align: left;
  background: var(--cream);
  border: 2px solid var(--ink); border-radius: 12px;
  box-shadow: 6px 6px 0 rgba(20, 34, 26, 0.55);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.form-package {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--green); color: rgba(239, 227, 196, 0.9);
  border: 2px solid var(--ink); border-radius: 8px;
  padding: 0.65rem 0.9rem; margin-bottom: 1.2rem;
  letter-spacing: 0.12em;
}
.form-package strong { color: var(--gold); }
.form-package button {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.85rem;
  color: rgba(239, 227, 196, 0.8); transition: color 0.2s ease;
}
.form-package button:hover { color: var(--orange); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; gap: 0; } }
.form-field { display: block; margin-bottom: 1.1rem; }
.form-field > span { display: block; margin-bottom: 0.45rem; color: rgba(43, 29, 18, 0.7); }
.form-field input, .form-field select, .form-field textarea {
  /* 16px minimum — anything smaller makes iOS Safari auto-zoom on focus,
     which knocks the fixed nav/frame out of place */
  width: 100%; font-family: var(--font-mono); font-size: 1rem; color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink); border-radius: 8px;
  padding: 0.7rem 0.85rem; outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(43, 29, 18, 0.4); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--orange); box-shadow: 3px 3px 0 rgba(217, 123, 40, 0.5);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%232b1d12' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px 8px;
}
.form-submit { width: 100%; cursor: pointer; font-size: 0.95rem; margin-top: 0.2rem; }

.contact-links { margin: 2.6rem 0 3.5rem; display: flex; gap: clamp(1.5rem, 4vw, 3rem); justify-content: center; flex-wrap: wrap; }
.contact-links a {
  color: rgba(239, 227, 196, 0.85); text-decoration: none;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.contact-links a:hover { color: var(--cream); border-color: var(--orange); }

.footer {
  position: relative; z-index: 2;
  padding: 1.4rem clamp(1.2rem, 4vw, 3rem);
  background: #241812;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.footer .mono, .footer a { color: rgba(230, 215, 184, 0.7); }
.footer a { text-decoration: none; transition: color 0.25s ease; }
.footer a:hover { color: var(--gold); }

/* ═══════════ MODALS ═══════════ */
.modal {
  position: fixed; inset: 0; z-index: 970;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.modal.open { opacity: 1; pointer-events: auto; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(30, 20, 12, 0.92); }
.modal-body {
  position: relative; z-index: 2; width: min(1100px, 92vw);
  transform: scale(0.94) translateY(16px); transition: transform 0.4s var(--ease);
}
.modal.open .modal-body { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: -2.8rem; right: 0;
  background: var(--cream); border: 2px solid var(--ink); border-radius: 6px;
  cursor: pointer; padding: 0.35rem 0.7rem;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.12em; color: var(--ink);
  box-shadow: 3px 3px 0 rgba(43,29,18,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.modal-close:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(43,29,18,0.6); background: var(--gold); }
.modal-player {
  aspect-ratio: 16 / 9; background: #000; border-radius: 10px; overflow: hidden;
  border: 3px solid var(--cream); box-shadow: 8px 8px 0 rgba(217, 123, 40, 0.55);
}
.modal-player iframe { width: 100%; height: 100%; border: 0; display: block; }
.modal-caption { margin-top: 1.1rem; text-align: center; color: rgba(230, 215, 184, 0.85); }

.modal-body-photo { display: flex; flex-direction: column; align-items: center; }
#lightboxImg {
  max-width: 100%; max-height: 78vh; border-radius: 8px;
  border: 8px solid var(--cream);
  box-shadow: 10px 10px 0 rgba(217, 123, 40, 0.55);
}
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--cream); border: 2px solid var(--ink); color: var(--ink);
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer; font-size: 1.15rem;
  box-shadow: 3px 3px 0 rgba(43,29,18,0.6);
  transition: background 0.25s ease, transform 0.2s ease;
  z-index: 3;
}
.lb-arrow:hover { background: var(--orange); color: var(--cream); }
.lb-prev { left: -70px; }
.lb-next { right: -70px; }
@media (max-width: 1260px) {
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}

/* ═══════════ THANKS PAGE ═══════════ */
.thanks {
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 2rem 1.5rem; gap: 1.3rem;
}
.thanks-logo { width: 90px; height: 90px; color: var(--green-deep); }
.thanks-kicker { color: var(--orange); letter-spacing: 0.35em; font-weight: 700; }
.thanks-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 5.5rem); line-height: 1;
  color: var(--green-deep); text-shadow: 0.05em 0.05em 0 var(--orange);
}
.thanks-sub { font-family: var(--font-mono); font-size: 0.95rem; line-height: 1.8; color: rgba(43, 29, 18, 0.8); }

/* ═══════════ BACK TO TOP ═══════════ */
.to-top {
  position: fixed; z-index: 945;
  right: calc(22px + env(safe-area-inset-right, 0px));
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); color: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 rgba(43, 29, 18, 0.6);
  font-family: var(--font-display); font-size: 1.25rem; line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.to-top:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 rgba(43, 29, 18, 0.6);
  background: var(--red);
}

/* ═══════════ MOBILE: photos as swipeable carousel ═══════════ */
@media (max-width: 768px) {
  .photo-grid {
    columns: unset;
    display: flex; gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.6rem 0.2rem 1.4rem;
    scrollbar-width: none;
  }
  .photo-grid::-webkit-scrollbar { display: none; }
  .photo-grid .photo-card {
    flex: 0 0 min(76%, 300px);
    margin-bottom: 0;
    scroll-snap-align: center;
  }
  .photo-grid .photo-card img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
