/* ===================================================
   The Cheeky Visuals — Award-style Photography Site
   =================================================== */

:root {
  --script: 'Playfair Display', Georgia, serif;
  --cream: #fcf9f2;
  --cream-dim: #f3eee5;
  --ink: #342d2d;
  --ink-soft: #67615f;
  --ink-faint: #9c9793;
  --line: rgba(52, 45, 45, 0.14);
  --line-light: rgba(252, 249, 242, 0.35);
  --display: "Big Shoulders Display", sans-serif;
  --sans: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 96px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: var(--header-h); }
.header-spacer { height: var(--header-h); }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select, textarea { font-family: inherit; }

.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

.index-label {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-weight: 600;
}
.index-label.light { color: var(--cream); opacity: 0.7; }

/* ===== Custom cursor (disabled — using native cursor) ===== */
.cursor { display: none; }
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px; margin: -3px 0 0 -3px;
  background: var(--ink); border-radius: 50%;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 44px; height: 44px; margin: -22px 0 0 -22px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  mix-blend-mode: difference;
  display: flex; align-items: center; justify-content: center;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), margin 0.3s var(--ease), background 0.3s var(--ease);
}
.cursor-ring em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.cursor-ring.hovering {
  width: 84px; height: 84px; margin: -42px 0 0 -42px;
  background: var(--ink);
}
.cursor-ring.hovering em { opacity: 1; }

/* ===== Scroll progress ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--ink);
  width: 0%;
  z-index: 9997;
}

/* ===== Loader ===== */
.loader {
  position: fixed; inset: 0; background: var(--ink); color: var(--cream);
  z-index: 10000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: transform 0.9s var(--ease);
}
.loader.hidden { transform: translateY(-100%); }
.loader-top {
  position: absolute; top: 40px; left: 48px; right: 48px;
  display: flex; justify-content: space-between;
  align-items: baseline;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
}
.loader-top span:first-child {
  font-family: var(--script);
  font-size: 22px;
  letter-spacing: 0.01em;
  text-transform: none;
}
.loader-logo { height: 34px; width: auto; display: block; }
.loader-count {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(4rem, 16vw, 9rem);
  line-height: 1;
  display: flex; align-items: flex-start;
}
.loader-count small { font-size: 0.3em; margin-top: 0.2em; opacity: 0.5; }
.loader-bar {
  width: 220px; height: 1px; background: rgba(252, 249, 242, 0.2);
  margin-top: 28px; overflow: hidden;
}
.loader-bar span { display: block; height: 100%; width: 0%; background: var(--cream); }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  padding: 0 48px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.brand { display: block; }
.brand img { height: 56px; width: auto; display: block; }

.header-nav { display: flex; align-items: center; justify-content: center; gap: 32px; }
.header-nav a {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  color: var(--ink); opacity: 0.7;
  transition: opacity 0.3s var(--ease);
}
.header-nav a:hover { opacity: 1; }
.header-nav a.current { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

.header-actions { grid-column: 3; display: flex; align-items: center; justify-self: end; gap: 24px; }
.quote-btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--ink);
  padding: 12px 26px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.quote-btn:hover { background: var(--ink); color: var(--cream); }
.social-icons { display: flex; gap: 18px; margin-top: 6px; }
.social-icons a { padding: 0; opacity: 0.8; display: flex; }
.social-icons a:hover { opacity: 1; }
.social-icons svg { width: 22px; height: 22px; display: block; }

.menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px; padding: 0; background: none; border: none; cursor: pointer;
}
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed; inset: 0; z-index: 890;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.nav-overlay.open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-overlay nav { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.nav-overlay nav a {
  font-family: var(--display); font-size: clamp(1.8rem, 7vw, 2.6rem); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.02em; color: var(--cream); opacity: 0.85;
  transition: opacity 0.3s var(--ease);
}
.nav-overlay nav a:hover, .nav-overlay nav a.current { opacity: 1; }

/* ===== Buttons / links ===== */
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--ink);
  padding: 16px 30px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.hero-cta:hover { background: var(--ink); color: var(--cream); }
.hero-cta-light { border-color: var(--line-light); color: var(--cream); }
.hero-cta-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.text-link {
  display: inline-block;
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: opacity 0.3s var(--ease);
}
.text-link:hover { opacity: 0.55; }

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

/* ===== Hero (split diptych) ===== */
.hero { position: relative; margin-top: var(--header-h); height: calc(100vh - var(--header-h)); min-height: 560px; overflow: hidden; }
.hero-split { position: absolute; inset: 0; display: flex; }
.hero-panel { flex: 1; overflow: hidden; position: relative; }
.hero-panel img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.hero-panel:nth-child(2) img { animation-delay: -6s; }
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }

.hero-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}
.hero-overlay > * { pointer-events: auto; }
.hero-eyebrow {
  display: inline-block;
  color: var(--cream);
  font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 16px;
  padding: 8px 18px;
  background: rgba(0,0,0,0.35);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-title {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cream);
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 0.92;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
  margin-bottom: 34px;
}
.hero-title span { display: block; }
.hero-title .italic-ish { color: var(--cream); font-style: italic; opacity: 0.85; }
.hero-overlay .hero-cta { background: var(--cream); border-color: var(--cream); }

.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-indicator-ring { width: 84px; height: 84px; display: block; animation: spin 12s linear infinite; }
.scroll-indicator-ring svg { width: 100%; height: 100%; }
.scroll-indicator-ring text { font-size: 8px; letter-spacing: 0.06em; fill: var(--cream); text-transform: uppercase; }
@keyframes spin { to { transform: rotate(360deg); } }
.scroll-indicator-arrow { color: var(--cream); font-size: 18px; margin-top: -30px; animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ===== Ticker ===== */
.ticker { background: var(--ink); color: var(--cream); overflow: hidden; padding: 18px 0; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: tickerScroll 22s linear infinite; }
.ticker-track span {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: 1.6rem; padding: 0 28px; display: inline-flex; align-items: center; gap: 28px;
}
.ticker-track span::after { content: "✦"; color: var(--cream); opacity: 0.5; font-size: 0.9rem; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== About ===== */
.about { padding: 150px 0 100px; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 70px;
}
.index-label { grid-column: 1 / -1; }
.about-headline {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 0.96;
}
.about-left { display: block; }
.about-copy { align-self: start; }
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; font-size: 16px; max-width: 520px; }
.about-media { position: relative; max-width: 460px; margin: 40px 0 0; padding: 24px 24px 0 0; }
.about-media::before {
  content: ""; position: absolute; top: 0; right: 0; bottom: -24px; left: 24px;
  border: 1.5px solid var(--ink); z-index: -1;
}
.about-media img { width: 100%; height: auto; display: block; }

.stat-row {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--line);
}
.stat-num-row { display: flex; align-items: baseline; }
.stat-suffix { font-family: var(--display); font-weight: 700; font-size: 3rem; margin-left: 2px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--display); font-weight: 700; font-size: 3rem; }
.stat small { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-top: 4px; }

/* ===== Category showcase ===== */
.categories { padding: 110px 0 130px; background: var(--cream-dim); overflow: hidden; }
.cat-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}
.cat-grid-6 { display: block; column-count: 3; column-gap: 6px; max-width: none; margin: 0; padding: 0; }
.cat-tile { position: relative; display: block; overflow: hidden; }
.cat-tile-offset { margin-top: 90px; }
.cat-tile img { width: 100%; height: 380px; object-fit: cover; transition: transform 0.6s var(--ease); }
.cat-grid-6 .cat-tile { break-inside: avoid; margin-bottom: 6px; }
.cat-grid-6 .cat-tile img { width: 100%; height: auto; object-fit: contain; }
.cat-tile:hover img { transform: scale(1.05); }
.cat-tile h3 {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  position: absolute; top: -6px; left: -6px;
  color: var(--ink);
  -webkit-text-stroke: 1px var(--ink);
}
.cat-grid-6 .cat-tile h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); max-width: 85%; line-height: 1.1; }

/* ===== Featured stories ===== */
.stories-grid { padding: 60px 0 130px; background: var(--cream); }
.story-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 30px; }
.story-card-offset { margin-top: 70px; }
.story-img { overflow: hidden; margin-bottom: 20px; }
.story-img img { width: 100%; height: 340px; object-fit: cover; transition: transform 0.6s var(--ease); }
.story-card:hover .story-img img { transform: scale(1.06); }
.story-card h3 { font-family: var(--display); font-weight: 700; font-size: 1.5rem; margin-bottom: 10px; line-height: 1.15; }
.blog-meta { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 10px; display: block; }
.blog-excerpt { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.story-link { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; border-bottom: 1px solid var(--ink); padding-bottom: 2px; transition: opacity 0.3s var(--ease); }
.story-link:hover { opacity: 0.55; }

/* ===== Work index ===== */
.work { padding: 40px 0 140px; background: var(--cream); }
.work-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; }
.work-head .index-label { margin-bottom: 0; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  padding: 9px 18px; border: 1px solid var(--line); color: var(--ink-soft);
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.pricing-tab {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  padding: 9px 18px; border: 1px solid var(--line); color: var(--ink-soft);
  transition: all 0.3s var(--ease);
}
.pricing-tab:hover { border-color: var(--ink); color: var(--ink); }
.pricing-tab.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.work-list { border-top: 1px solid var(--line); }
.work-row {
  display: grid; grid-template-columns: 60px 1fr auto auto;
  align-items: center; gap: 24px;
  padding: 30px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}
[data-category].hide { display: none !important; }
.work-row:hover { padding-left: 20px; }
.work-index { font-size: 13px; color: var(--ink-faint); font-weight: 600; }
.work-title {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.6rem, 4vw, 3rem);
}
.work-cat { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.work-year { font-size: 13px; color: var(--ink-faint); }

/* ===== Gallery (mosaic grid) ===== */
.gallery-section { padding: 40px 0 0; background: var(--cream); }
.gallery-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 0; }
.gallery-head .index-label { margin-bottom: 0; }

.gallery-grid {
  column-count: 4;
  column-gap: 6px;
  margin-top: 40px;
}
.g-item { overflow: hidden; position: relative; display: block; break-inside: avoid; margin-bottom: 6px; }
.g-item img { width: 100%; height: auto; object-fit: contain; display: block; transition: transform 0.6s var(--ease), filter 0.6s var(--ease); }
.g-item:hover img { transform: scale(1.06); filter: brightness(0.88); }

.gallery-footer-strip {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 18px;
  padding: 18px 0;
  font-size: 12px; letter-spacing: 0.06em; color: var(--ink-soft);
}
.gallery-footer-strip a:hover { opacity: 0.6; }

/* ===== Film ===== */
.film { padding: 130px 0; background: var(--cream); }
.film-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; }
.film-head .index-label { margin-bottom: 0; }
.film-feature { display: block; position: relative; margin-bottom: 28px; overflow: hidden; }
.film-feature img { width: 100%; height: 520px; object-fit: cover; transition: transform 0.6s var(--ease); filter: grayscale(0.15); }
.film-feature:hover img { transform: scale(1.03); }
.film-feature::after { content: ""; position: absolute; inset: 0; background: rgba(52,45,45,0.32); }
.film-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 90px; height: 90px; border-radius: 50%; border: 1px solid var(--cream);
  z-index: 2;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.film-play::before {
  content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%);
  border-style: solid; border-width: 10px 0 10px 16px; border-color: transparent transparent transparent var(--cream);
  transition: border-color 0.3s var(--ease);
}
.film-feature:hover .film-play { background: var(--cream); border-color: var(--cream); }
.film-feature:hover .film-play::before { border-color: transparent transparent transparent var(--ink); }
.film-feature h3 {
  position: absolute; left: 28px; bottom: 24px; z-index: 2; color: var(--cream);
  font-family: var(--display); font-weight: 700; font-size: 1.6rem; text-transform: uppercase;
}
.film-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.film-thumb { display: block; position: relative; overflow: hidden; }
.film-thumb img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s var(--ease), filter 0.5s var(--ease); }
.film-thumb:hover img { transform: scale(1.08); filter: brightness(0.7); }
.film-thumb p {
  position: absolute; left: 18px; bottom: 16px; color: var(--cream);
  font-family: var(--display); font-weight: 700; font-size: 1.1rem; text-transform: uppercase;
}
.film-thumb p small { font-family: var(--sans); font-weight: 400; text-transform: none; opacity: 0.7; margin-left: 8px; font-size: 0.7rem; }

/* ===== Reels ===== */
.reels-section { padding: 40px 0 130px; background: var(--cream); }
.reels-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; }
.reels-head .index-label { margin-bottom: 0; }
.reel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.reel-grid-full { grid-template-columns: repeat(7, 1fr); gap: 6px; }
.reel-item {
  display: block; position: relative; overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--ink);
}
.reel-item img, .reel-item video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease), filter 0.5s var(--ease); pointer-events: none; }
.reel-item:hover img, .reel-item:hover video { transform: scale(1.06); filter: brightness(0.75); }
.reel-item { cursor: pointer; }
.reel-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.reel-play::before {
  content: ""; border-style: solid; border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent var(--cream);
  margin-left: 3px;
  transition: border-color 0.3s var(--ease);
}
.reel-item:hover .reel-play { background: var(--cream); }
.reel-item:hover .reel-play::before { border-color: transparent transparent transparent var(--ink); }
.reel-item p {
  position: absolute; left: 12px; bottom: 12px; right: 12px; color: var(--cream);
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ===== Pricing ===== */
.pricing-section { padding: 40px 0 130px; background: var(--cream); }
.pricing-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 40px; }
.pricing-head .index-label { margin-bottom: 0; }
.pricing-group { display: none; }
.pricing-group.active { display: block; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pricing-grid-4 { grid-template-columns: repeat(4, 1fr); }
.pricing-grid-1 { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
.pricing-card { border: 1px solid var(--line); padding: 40px 32px; display: flex; flex-direction: column; }
.pricing-card.featured { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.pricing-card-name { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 16px; }
.pricing-card.featured .pricing-card-name { color: rgba(252,249,242,0.6); }
.pricing-card-price { font-family: var(--display); font-weight: 700; font-size: 3rem; margin-bottom: 6px; }
.pricing-card-note { font-size: 13px; color: var(--ink-faint); margin-bottom: 28px; }
.pricing-card.featured .pricing-card-note { color: rgba(252,249,242,0.6); }
.pricing-card ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex-grow: 1; }
.pricing-card li { font-size: 14px; color: var(--ink-soft); padding-left: 18px; position: relative; }
.pricing-card.featured li { color: rgba(252,249,242,0.85); }
.pricing-card li::before { content: "—"; position: absolute; left: 0; color: var(--ink-faint); }
.pricing-card.featured li::before { color: rgba(252,249,242,0.5); }
.pricing-card .hero-cta { align-self: flex-start; }
.pricing-card.featured .hero-cta { border-color: var(--cream); color: var(--cream); }
.pricing-card.featured .hero-cta:hover { background: var(--cream); color: var(--ink); }
.pricing-note { margin-top: 40px; font-size: 14px; color: var(--ink-faint); max-width: 560px; }

/* ===== Legal pages (Privacy Policy) ===== */
.legal-page { padding: 150px 0 130px; }
.legal-inner { max-width: 760px; }
.legal-updated { font-size: 13px; color: var(--ink-faint); margin: -8px 0 60px; }
.legal-block { margin-bottom: 48px; }
.legal-block h2 {
  font-family: var(--script); font-weight: 500; font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}
.legal-block p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin-bottom: 10px; }
.legal-block a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal-block a:hover { opacity: 0.7; }

/* ===== Quotes marquee ===== */
.quotes { padding: 100px 0; background: var(--cream-dim); overflow: hidden; }
.quotes-track { display: flex; width: max-content; animation: quotesScroll 34s linear infinite; }
.quotes-track:hover { animation-play-state: paused; }
.quotes-inner { display: flex; }
.quotes blockquote {
  width: 420px; margin-right: 32px; padding: 34px; background: var(--cream);
  border: 1px solid var(--line);
  font-size: 1.15rem; line-height: 1.5;
}
.quotes blockquote cite { display: block; margin-top: 16px; font-style: normal; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); font-weight: 600; }
@keyframes quotesScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.clients-strip { margin-top: 60px; overflow: hidden; }
.clients-track { display: flex; width: max-content; animation: clientsScroll 42s linear infinite; }
.clients-track:hover { animation-play-state: paused; }
.clients-inner { display: flex; align-items: center; }
.clients-inner img {
  height: 42px; width: auto; max-width: 130px; object-fit: contain;
  margin-right: 64px;
  filter: grayscale(1);
  opacity: 0.5;
  transition: opacity 0.3s var(--ease), filter 0.3s var(--ease);
}
.clients-inner img:hover { filter: grayscale(0); opacity: 1; }
@keyframes clientsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Contact ===== */
.contact { position: relative; padding: 150px 0 120px; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; }
.contact-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(52,45,45,0.75), rgba(52,45,45,0.9)); }
.contact-inner { position: relative; z-index: 2; color: var(--cream); }
.contact-headline {
  font-family: var(--script); font-weight: 400; font-style: italic;
  font-size: clamp(2.8rem, 6.6vw, 5.2rem); line-height: 1.02; margin-bottom: 20px;
}
.contact-lede { color: rgba(252,249,242,0.75); max-width: 440px; margin-bottom: 60px; font-size: 16px; }

.contact-grid { display: grid; grid-template-columns: 1.3fr 0.8fr; gap: 70px; }
.inquiry-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field label {
  display: block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(252,249,242,0.55); margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: transparent; border: 1px solid var(--line-light); color: var(--cream);
  padding: 14px 16px; font-size: 15px; transition: border-color 0.3s var(--ease);
}
.form-field select option { background: var(--ink); color: var(--cream); }
.form-field textarea { resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(252,249,242,0.35); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--cream); }
.form-field.error input, .form-field.error select, .form-field.error textarea { border-color: #ff8a70; }
.field-error { display: block; font-size: 11.5px; color: #ff8a70; margin-top: 6px; min-height: 14px; }
.form-note { font-size: 13px; color: var(--cream); min-height: 18px; }

.contact-details { display: flex; flex-direction: column; gap: 0; align-self: start; }
.contact-details li { display: flex; flex-direction: column; gap: 4px; padding: 18px 0; border-bottom: 1px solid var(--line-light); }
.contact-details li:first-child { padding-top: 0; }
.contact-details span { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); opacity: 0.55; }
.contact-details a { color: var(--cream); font-size: 15px; transition: opacity 0.3s var(--ease); }
.contact-details a:hover { opacity: 0.6; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: var(--cream); }
.footer-ticker { display: block; overflow: hidden; border-bottom: 1px solid rgba(252,249,242,0.12); padding: 22px 0; }
.footer-ticker .ticker-track { animation-duration: 16s; }
.footer-ticker .ticker-track span { color: var(--cream); font-size: 1.4rem; }
.footer-main { display: flex; justify-content: flex-start; gap: 80px; flex-wrap: wrap; padding: 48px 48px 0; }
.footer-brand-large { display: flex; justify-content: center; align-items: center; padding: 56px 24px; }
.footer-brand-large img { width: min(70%, 640px); height: auto; display: block; opacity: 0.95; transition: opacity 0.3s var(--ease); }
.footer-brand-large:hover img { opacity: 1; }
.footer-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); opacity: 0.55; margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: var(--cream); opacity: 0.8; padding: 3px 0; }
.footer-col a:hover { opacity: 1; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 28px 48px; font-size: 13px; color: rgba(252,249,242,0.6); border-top: 1px solid rgba(252,249,242,0.12); margin-top: 28px; }
.footer-legal { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-legal a { color: rgba(252,249,242,0.6); text-decoration: underline; text-underline-offset: 3px; transition: color 0.3s var(--ease); }
.footer-legal a:hover { color: var(--cream); }
.back-top { color: var(--cream); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; transition: opacity 0.3s var(--ease); }
.back-top:hover { opacity: 0.6; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; background: rgba(52,45,45,0.97); z-index: 5000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure { max-width: 88vw; max-height: 86vh; }
.lightbox img { max-width: 88vw; max-height: 80vh; object-fit: contain; }
.lightbox video { max-width: 88vw; max-height: 80vh; }
.lightbox figcaption { color: var(--cream); text-align: center; margin-top: 16px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; }
.lightbox-close { position: absolute; top: 28px; right: 36px; font-size: 34px; color: var(--cream); line-height: 1; transition: transform 0.3s var(--ease); }
.lightbox-close:hover { transform: rotate(90deg); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 20px; color: var(--cream); opacity: 0.6; padding: 14px; transition: opacity 0.3s var(--ease); }
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ===== Video modal ===== */
.video-modal {
  position: fixed; inset: 0; background: rgba(52,45,45,0.97); z-index: 5000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.video-modal.open { opacity: 1; visibility: visible; }
.video-modal-frame { width: min(1000px, 88vw); aspect-ratio: 16/9; background: #000; }
.video-modal-frame iframe { width: 100%; height: 100%; }

/* ===================================================
   Responsive
   =================================================== */
@media (max-width: 1080px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-copy { align-self: start; }
  .cat-grid, .story-cards { grid-template-columns: repeat(2, 1fr); }
  .cat-grid-6 { column-count: 2; }
  .cat-tile-offset, .story-card-offset { margin-top: 0; }
  .gallery-grid { column-count: 3; }
  .reel-grid { grid-template-columns: repeat(3, 1fr); }
  .reel-grid-full { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid, .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-details { order: -1; flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .contact-details li { border-bottom: none; padding: 0; flex: 1 1 200px; }
  .work-row { grid-template-columns: 40px 1fr auto; }
  .work-year { display: none; }
}

@media (max-width: 760px) {
  .site-header { padding: 0 20px; height: 76px; }
  .brand img { height: 40px; }
  .header-actions .quote-btn {
    display: inline-flex;
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    padding: 9px 16px; font-size: 10px;
  }
  .header-nav { display: none; }
  .menu-toggle { display: flex; }
  .section-inner { padding: 0 24px; }
  .hero-split { flex-direction: row; }
  .hero-title { font-size: clamp(2.4rem, 12vw, 4rem); }
  .about, .categories, .stories-grid, .work, .film, .quotes, .contact { padding: 90px 0; }
  .cat-grid, .story-cards, .form-row, .stat-row { grid-template-columns: 1fr; }
  .cat-tile img { height: 300px; }
  .cat-grid-6 { column-count: 1; }
  .film-grid { grid-template-columns: 1fr; }
  .work-row { grid-template-columns: 32px 1fr; row-gap: 6px; }
  .work-cat { grid-column: 2; }
  .cat-grid { padding: 0 24px; }
  .gallery-grid { column-count: 2; }
  .reel-grid { grid-template-columns: repeat(2, 1fr); }
  .reel-grid-full { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .pricing-grid, .pricing-grid-4 { grid-template-columns: 1fr; }
  .footer-main { padding: 40px 24px 0; gap: 32px; flex-direction: column; }
  .footer-bottom { padding: 24px; flex-direction: column; gap: 14px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-panel img, .ticker-track, .quotes-track, .clients-track, .scroll-indicator-ring, .scroll-indicator-arrow { animation: none !important; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
