/* 3pic — Cinematic Editorial */
:root {
  --surface: #f9f7f2;
  --surface-alt: #f3f1ec;
  --surface-shift: #e5e1d8;
  --ink: #1a1a1a;
  --ink-soft: #2a2a2a;
  --muted: #8c8375;
  --muted-soft: rgba(140, 131, 117, 0.25);
  --gutter: 24px;
  --margin-desktop: 80px;
  --margin-mobile: 20px;
  --stack-lg: 120px;
  --stack-md: 64px;
  --stack-sm: 32px;
  --container-max: 1440px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--surface);
  color: var(--ink);
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.serif { font-family: 'Playfair Display', Georgia, serif; font-weight: 400; }
.caps {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--margin-desktop);
}
@media (max-width: 768px) {
  .container { padding: 0 var(--margin-mobile); }
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(249, 247, 242, 0);
  transition: background 400ms ease, padding 400ms ease, border-color 400ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(249, 247, 242, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--muted-soft);
}
.nav.over-hero { color: var(--surface); }
.nav.over-hero .nav-link { color: var(--surface); }
.nav.over-hero.scrolled { color: var(--ink); }
.nav.over-hero.scrolled .nav-link { color: var(--ink); }

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 22px var(--margin-desktop);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.nav.scrolled .nav-inner { padding: 14px var(--margin-desktop); }
@media (max-width: 768px) {
  .nav-inner { padding: 18px var(--margin-mobile); grid-template-columns: 1fr auto 1fr; }
  .nav.scrolled .nav-inner { padding: 12px var(--margin-mobile); }
}
.nav-links {
  display: flex; gap: 36px; align-items: center;
  list-style: none;
}
.nav-links.left { justify-content: flex-end; }
.nav-links.right { justify-content: flex-start; }
.nav-link {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  background: none; border: none;
  position: relative;
  padding: 6px 0;
  transition: opacity 200ms;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  font-weight: 500;
  display: flex; align-items: center; gap: 0;
  cursor: pointer;
  background: none; border: none;
  color: inherit;
  white-space: nowrap;
}
.nav-logo .e-mirror { display: inline-block; transform: scaleX(-1); }
.nav-mobile-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.right { justify-content: flex-end; }
  .nav-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none; border: none;
    cursor: pointer;
    padding: 8px;
    color: inherit;
    grid-column: 3;
    justify-self: end;
  }
  .nav-mobile-toggle span { display: block; width: 22px; height: 1px; background: currentColor; transition: transform 240ms, opacity 240ms; }
  .nav-mobile-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--surface);
  z-index: 90;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 36px;
  transform: translateY(-100%);
  transition: transform 480ms cubic-bezier(0.7, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu .nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--ink);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: all 240ms ease;
  border: 1px solid currentColor;
  background: none;
  color: inherit;
}
.btn-solid {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.btn-solid:hover { background: var(--surface); color: var(--ink); }
.btn-ghost-light { color: var(--surface); border-color: var(--surface); }
.btn-ghost-light:hover { background: var(--surface); color: var(--ink); }
.btn-ghost { color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--surface); }
.btn .arrow {
  display: inline-block;
  width: 18px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 240ms ease;
}
.btn .arrow::after {
  content: '';
  position: absolute; right: 0; top: 50%;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover .arrow { width: 26px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  color: var(--surface);
}
.hero-bg {
  position: absolute; inset: 0;
  background: #0a0a0a;
}
.hero-bg::before, .hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-still {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1600ms ease-in-out;
  background-size: cover;
  background-position: center;
  animation: kenburns 18s ease-in-out infinite alternate;
}
.hero-still.active { opacity: 1; }
@keyframes kenburns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.18) translate(-1.5%, -1.5%); }
}
.hero-still.s1 {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.55) 100%),
    repeating-linear-gradient(110deg, #3a342c 0, #3a342c 2px, #322c25 2px, #322c25 4px),
    radial-gradient(ellipse at 70% 30%, #6a5f4d 0%, #2a251e 60%);
  background-blend-mode: overlay, multiply, normal;
}
.hero-still.s2 {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 100%),
    repeating-linear-gradient(80deg, #2b2b30 0, #2b2b30 3px, #232328 3px, #232328 6px),
    radial-gradient(ellipse at 30% 70%, #4d4a55 0%, #1a1a20 60%);
  background-blend-mode: overlay, multiply, normal;
}
.hero-still.s3 {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%),
    repeating-linear-gradient(20deg, #423a36 0, #423a36 2px, #38302c 2px, #38302c 4px),
    radial-gradient(ellipse at 50% 40%, #8a7766 0%, #2b231f 65%);
  background-blend-mode: overlay, multiply, normal;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 50%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.18 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.5;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--margin-desktop) 80px;
  max-width: var(--container-max);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero-content { padding: 0 var(--margin-mobile) 60px; }
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  font-size: 11px;
  letter-spacing: 0.24em;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; background: currentColor; border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: 1100px;
  margin-bottom: 40px;
}
.hero-title em { font-style: italic; font-weight: 400; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.hero-meta {
  position: absolute;
  bottom: 40px; right: var(--margin-desktop);
  display: flex; align-items: center; gap: 18px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
}
.hero-meta .tick {
  width: 32px; height: 1px;
  background: currentColor;
  position: relative;
}
.hero-meta .tick::after {
  content: '';
  position: absolute; left: 0; top: 0;
  height: 100%;
  background: var(--surface);
  width: 33%;
  animation: tick 9s linear infinite;
}
@keyframes tick {
  0% { width: 0; }
  33% { width: 33%; }
  66% { width: 66%; }
  100% { width: 100%; }
}
@media (max-width: 768px) {
  .hero-meta { display: none; }
}
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  opacity: 0.7;
}
.hero-scroll .line {
  width: 1px; height: 36px;
  background: currentColor;
  position: relative;
  overflow: hidden;
}
.hero-scroll .line::after {
  content: '';
  position: absolute; left: 0; top: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.9);
  animation: scrollHint 2.4s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ============ SECTIONS ============ */
section { padding: var(--stack-lg) 0; }
@media (max-width: 768px) {
  section { padding: var(--stack-md) 0; }
}
.section-eyebrow {
  display: flex; align-items: center; gap: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}
.section-eyebrow .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.section-eyebrow .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.section-eyebrow .rule { flex: 1; height: 1px; background: var(--muted-soft); max-width: 120px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 920px;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; }
.section-intro {
  font-size: 18px;
  line-height: 1.7;
  max-width: 660px;
  color: var(--ink-soft);
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 80px;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.about-copy p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.about-copy p:first-of-type {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 32px;
}
.team-list {
  display: flex; flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--muted-soft);
  margin-top: 32px;
}
.team-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--muted-soft);
  align-items: baseline;
}
.team-row .num { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted); }
.team-row .role { font-family: 'Playfair Display', serif; font-size: 22px; }
.team-row .school { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 12px;
  position: sticky; top: 120px;
}
.bts-tile {
  position: relative;
  overflow: hidden;
}
.bts-tile.tall { grid-row: span 2; aspect-ratio: 3/4; }
.bts-tile.wide { aspect-ratio: 4/5; }
.bts-tile.full { grid-column: span 2; aspect-ratio: 16/9; }

/* ============ PLACEHOLDER FILM STILLS ============ */
.placeholder {
  position: relative;
  width: 100%; height: 100%;
  background-color: var(--surface-shift);
  overflow: hidden;
  transition: opacity 320ms ease, transform 600ms ease;
}
.placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(var(--ph-angle, 35deg),
      var(--ph-c1, #d9d3c5) 0px,
      var(--ph-c1, #d9d3c5) 1px,
      var(--ph-c2, #e5e1d8) 1px,
      var(--ph-c2, #e5e1d8) 8px);
  opacity: 0.85;
}
.placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at var(--ph-x, 50%) var(--ph-y, 40%),
      var(--ph-glow, rgba(255,250,238,0.5)) 0%,
      transparent 60%);
}
.placeholder .ph-label {
  position: absolute;
  inset: auto auto 12px 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: var(--surface);
  padding: 4px 8px;
  z-index: 3;
}
.placeholder .ph-corners {
  position: absolute; inset: 8px;
  pointer-events: none;
}
.placeholder .ph-corners::before,
.placeholder .ph-corners::after {
  content: ''; position: absolute;
  width: 12px; height: 12px;
  border: 1px solid rgba(26,26,26,0.35);
}
.placeholder .ph-corners::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.placeholder .ph-corners::after { bottom: 0; right: 0; border-left: none; border-top: none; }

/* video placeholder gets a play affordance */
.placeholder.video::before {
  background-image:
    repeating-linear-gradient(var(--ph-angle, 0deg),
      #2a2520 0,
      #2a2520 1px,
      #1a1612 1px,
      #1a1612 6px);
  opacity: 0.95;
}
.placeholder.video::after {
  background:
    radial-gradient(ellipse at var(--ph-x, 50%) var(--ph-y, 50%),
      var(--ph-glow, rgba(220,200,160,0.35)) 0%,
      transparent 65%);
}
.placeholder.video .ph-label { color: var(--surface); background: rgba(0,0,0,0.7); }
.placeholder.video .ph-corners::before,
.placeholder.video .ph-corners::after { border-color: rgba(255,255,255,0.4); }
.placeholder.video .play {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.placeholder.video .play .ring {
  width: 72px; height: 72px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(2px);
  transition: transform 320ms ease, background 320ms ease;
}
.placeholder.video .play .triangle {
  width: 0; height: 0;
  border-left: 14px solid var(--surface);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.placeholder.video:hover .play .ring { transform: scale(1.08); background: rgba(0,0,0,0.35); }
.placeholder.video .duration {
  position: absolute;
  top: 12px; right: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--surface);
  background: rgba(0,0,0,0.6);
  padding: 4px 8px;
}

/* ============ PORTFOLIO ============ */
.portfolio-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.portfolio-filters {
  display: flex; gap: 4px;
  flex-wrap: wrap;
}
.filter-btn {
  background: none; border: none;
  padding: 10px 18px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 220ms ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.filter-btn .count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.7;
}
.filter-btn:hover { color: var(--ink); }
.filter-btn.active {
  color: var(--ink);
  border-color: var(--ink);
}
.masonry {
  column-count: 3;
  column-gap: var(--gutter);
}
@media (max-width: 980px) { .masonry { column-count: 2; } }
@media (max-width: 560px) { .masonry { column-count: 1; } }
.masonry-item {
  break-inside: avoid;
  margin-bottom: var(--gutter);
  cursor: pointer;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 700ms ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.masonry-item .meta-bar {
  display: flex; justify-content: space-between;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.masonry-item .meta-bar .title { color: var(--ink); }
.masonry-item:hover .placeholder { opacity: 0.92; transform: scale(1.01); }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10, 10, 8, 0.94);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-content {
  position: relative;
  max-width: 1200px; width: 100%;
  max-height: 90vh;
  aspect-ratio: 16/9;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: 1px solid var(--surface);
  color: var(--surface);
  width: 42px; height: 42px;
  cursor: pointer;
  font-size: 18px;
  display: grid; place-items: center;
  transition: background 220ms;
}
.lightbox-close:hover { background: var(--surface); color: var(--ink); }
.lightbox-meta {
  position: absolute;
  top: 24px; left: 24px;
  color: var(--surface);
  display: flex; flex-direction: column; gap: 6px;
}
.lightbox-meta .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; opacity: 0.7; }
.lightbox-meta .title { font-family: 'Playfair Display', serif; font-size: 22px; }

/* ============ SERVICES ============ */
.services-intro {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 64px;
}
.packages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--muted-soft);
  border: 1px solid var(--muted-soft);
}
@media (max-width: 760px) { .packages { grid-template-columns: 1fr; } }
.package {
  background: var(--surface);
  padding: 40px 36px;
  display: flex; flex-direction: column;
  gap: 24px;
  position: relative;
  transition: background 280ms ease;
  min-height: 460px;
}
.package:hover { background: var(--surface-alt); }
.package.featured {
  background: var(--ink);
  color: var(--surface);
}
.package.featured .pkg-feature li::before { background: var(--surface); }
.package.featured .pkg-divider { background: rgba(249,247,242,0.2); }
.package.featured .price-label { color: rgba(249,247,242,0.6); }
.package.featured .pkg-cta { color: var(--surface); border-color: var(--surface); }
.package.featured .pkg-cta:hover { background: var(--surface); color: var(--ink); }
.package.full-width { grid-column: span 2; }
@media (max-width: 760px) { .package.full-width { grid-column: span 1; } }

.pkg-head { display: flex; justify-content: space-between; align-items: start; }
.pkg-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; opacity: 0.5; }
.pkg-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--surface);
  color: var(--ink);
  padding: 5px 10px;
}
.pkg-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.pkg-feature {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 12px;
}
.pkg-feature li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
}
.pkg-feature li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 12px; height: 1px;
  background: var(--ink);
}
.pkg-divider { height: 1px; background: var(--muted-soft); margin: auto 0 0; }
.pkg-footer { display: flex; flex-direction: column; gap: 16px; }
.pkg-price { display: flex; align-items: baseline; gap: 10px; }
.price-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  letter-spacing: -0.01em;
}
.pkg-extra { font-size: 13px; color: var(--muted); }
.pkg-extra strong { color: inherit; font-weight: 600; }
.pkg-cta {
  background: none; border: 1px solid currentColor;
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
  align-self: start;
  display: inline-flex; align-items: center; gap: 12px;
  transition: all 220ms;
}
.pkg-cta:hover { background: var(--ink); color: var(--surface); }
.pkg-cta .arrow {
  display: inline-block; width: 16px; height: 1px;
  background: currentColor; position: relative;
}
.pkg-cta .arrow::after {
  content: '';
  position: absolute; right: 0; top: 50%;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* ============ EXTRAS ============ */
.extras {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--muted-soft);
  border: 1px solid var(--muted-soft);
}
@media (max-width: 760px) { .extras { grid-template-columns: 1fr; } }
.extra {
  background: var(--surface);
  padding: 32px 32px;
  display: flex; flex-direction: column;
  gap: 12px;
}
.extra-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
}
.extra-title { font-family: 'Playfair Display', serif; font-size: 22px; }
.extra-price { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--muted); }
.extra-body { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.extra-body a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
}
.field {
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.field.full { grid-column: span 2; }
.field label {
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; justify-content: space-between;
}
.field label .req { color: var(--ink); }
.field input,
.field textarea,
.field select {
  background: none;
  border: none;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 10px 0;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 200ms;
  width: 100%;
  resize: none;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--muted); }
.field input::placeholder, .field textarea::placeholder { color: rgba(26,26,26,0.3); }
.field textarea { min-height: 110px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%231a1a1a' fill='none' stroke-width='1.2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.field .error-msg {
  position: absolute;
  bottom: -18px; left: 0;
  font-size: 11px;
  color: #ba1a1a;
  letter-spacing: 0.05em;
}
.field.invalid input, .field.invalid textarea, .field.invalid select { border-bottom-color: #ba1a1a; }
.contact-submit { grid-column: span 2; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.contact-submit .small { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }

.contact-side {
  display: flex; flex-direction: column; gap: 0;
  position: sticky; top: 120px;
  border-top: 1px solid var(--muted-soft);
}
.contact-side .row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--muted-soft);
  gap: 16px;
}
.contact-side .row .lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-side .row .val {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  text-decoration: none;
  color: var(--ink);
}
.contact-side .row .val a { color: inherit; text-decoration: none; }
.contact-side .row .val a:hover { font-style: italic; }
.contact-promise {
  margin-top: 32px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.success {
  padding: 48px;
  background: var(--surface-alt);
  text-align: center;
  display: flex; flex-direction: column; gap: 18px; align-items: center;
}
.success .check {
  width: 64px; height: 64px;
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
}
.success h3 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 400; }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--muted-soft);
  padding: 64px 0 32px;
  margin-top: var(--stack-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer .col h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--muted);
}
.footer .col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer .col a { color: var(--ink); text-decoration: none; font-size: 14px; }
.footer .col a:hover { font-style: italic; }
.footer-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 14px;
}
.footer-mark .e-mirror { display: inline-block; transform: scaleX(-1); }
.footer-tag { font-size: 14px; line-height: 1.6; color: var(--ink-soft); max-width: 320px; }
.footer-base {
  border-top: 1px solid var(--muted-soft);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap;
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--muted-soft);
  border-bottom: 1px solid var(--muted-soft);
  padding: 28px 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}
.marquee-track {
  display: flex; gap: 64px;
  animation: marquee 38s linear infinite;
  flex-shrink: 0;
  padding-right: 64px;
}
.marquee span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 36px;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 64px;
}
.marquee span::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* utility */
.spacer-sm { height: 32px; }
.spacer-md { height: 64px; }
