:root {
  --paper: #fbf8f1;
  --ink: #1d1d1a;
  --muted: #756f64;
  --line: #d6cfc1;
  --charcoal: #14110f;
  --accent: #a37a2b;
  --shadow: 0 20px 70px rgba(20, 20, 16, 0.16);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Times New Roman", serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 22px clamp(22px, 4vw, 56px);
}

.brand {
  width: max-content;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 0.9;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  color: #181816;
  font-size: 14px;
}

.nav-item {
  position: relative;
  padding: 18px 0;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  min-width: 210px;
  padding: 14px;
  background: rgba(251, 251, 244, 0.97);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(20, 20, 16, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown a {
  padding: 10px 12px;
  color: var(--muted);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.cart-link {
  justify-self: end;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.review-badge {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: kdiFadeIn 600ms ease both;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 88px);
  padding: 0 clamp(22px, 7vw, 96px) 44px;
  text-align: center;
}

.film-strip {
  position: relative;
  left: 50%;
  display: flex;
  width: min(1260px, 110vw);
  height: 150px;
  transform: translateX(-50%);
  overflow: hidden;
  opacity: 1;
  filter: grayscale(0.35) contrast(1.08) saturate(0.9);
  mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
}

.film-strip::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(251, 248, 241, 0.18), transparent 28%, transparent 62%, rgba(251, 248, 241, 0.9));
  pointer-events: none;
}

.strip-track {
  display: flex;
  min-width: max-content;
  animation: stripScroll 34s linear infinite;
}

.strip-track.reverse {
  animation-direction: reverse;
  animation-duration: 42s;
}

.film-strip img,
.image-marquee img {
  width: 640px;
  height: 100%;
  object-fit: cover;
}

.image-marquee {
  position: relative;
  overflow: hidden;
  height: 170px;
  background: var(--paper);
  filter: grayscale(0.35) contrast(1.08) saturate(0.9);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.image-marquee::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(251, 248, 241, 0.82), transparent 48%, rgba(20, 17, 15, 0.45));
}

.tracked {
  margin: 22px 0 14px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.55em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(50px, 5.8vw, 78px);
  line-height: 0.96;
}

em {
  color: var(--accent);
  font-style: italic;
}

.hero-copy {
  max-width: 420px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.button-light {
  border: 1px solid var(--line);
  color: var(--ink);
}

.press-band {
  background: var(--charcoal);
  color: var(--paper);
  padding: 38px clamp(24px, 7vw, 92px) 50px;
  text-align: center;
}

.press-band .tracked {
  margin: 0 0 34px;
  color: #c8c5bc;
}

.press-logos {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  flex-wrap: nowrap;
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 44px);
}

.text-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--paper);
}

.text-marquee div {
  display: flex;
  width: max-content;
  gap: 44px;
  animation: textScroll 28s linear infinite;
}

.text-marquee span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 48px);
  font-style: italic;
  white-space: nowrap;
}

.intro-section,
.portfolio-section,
.about-section,
.testimonial-section,
.cta-section {
  padding: 82px clamp(24px, 7vw, 96px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: end;
}

.section-heading.compact {
  align-items: start;
  margin-bottom: 34px;
}

.section-heading h2,
.about-section h2,
.cta-section h2 {
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
}

.section-heading p,
.about-section p,
.cta-section p {
  margin: 0;
  color: #504e48;
  font-size: clamp(17px, 2vw, 22px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  min-height: 270px;
  background: var(--paper);
  padding: 34px 30px;
}

.service-card span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 42px;
}

.service-card h3 {
  margin: 42px 0 16px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card a,
.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 32vw);
  grid-template-columns: none;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: -12px 0 18px;
}

.circle-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.project-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--charcoal);
  scroll-snap-align: start;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: grayscale(0.78) saturate(0.45);
  transform: scale(1.24);
}

.project-card:nth-child(2n) img {
  object-position: 100% 40%;
}

.project-card:nth-child(3n) img {
  object-position: 0 100%;
}

.project-card span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-family: var(--serif);
  font-size: 31px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.7);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.portrait-card {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #222;
  box-shadow: var(--shadow);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 50%;
  filter: grayscale(0.75) saturate(0.45);
  transform: scale(1.35);
}

.about-section .tracked {
  margin-top: 0;
}

.about-section p:last-child {
  margin-top: 30px;
  max-width: 660px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.stat-row strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1;
}

.stat-row span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-section {
  background: #f3f1e8;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 14px;
}

.audio-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  min-height: 188px;
  border: 1px solid #2b2a27;
  background: var(--charcoal);
  color: var(--paper);
  padding: 22px;
}

.play-dot {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.play-dot.is-playing {
  background: var(--paper);
  transform: scale(0.86);
}

.audio-card h3 {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.08;
}

cite {
  display: block;
  margin-top: 18px;
  color: #c9c5bc;
  font-style: normal;
  white-space: nowrap;
}

.faq-section {
  padding: 82px clamp(24px, 7vw, 96px);
  background: var(--paper);
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 46px);
  list-style: none;
}

.faq-item summary::after {
  float: right;
  color: var(--accent);
  content: "+";
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
}

.cta-section {
  text-align: center;
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 54px clamp(24px, 7vw, 96px);
  background: #eee6d8;
}

.booking-band h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
}

.booking-band p {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--muted);
}

.cta-section p {
  max-width: 680px;
  margin: 24px auto 34px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 28px clamp(24px, 7vw, 96px);
  color: var(--muted);
  font-size: 13px;
}

.page-hero {
  padding: 46px clamp(24px, 7vw, 96px) 76px;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(70px, 9vw, 132px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1fr;
  gap: clamp(28px, 7vw, 92px);
  padding: 82px clamp(24px, 7vw, 96px);
  border-top: 1px solid var(--line);
}

.split-section h2 {
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1;
}

.split-section p,
.split-section li {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fffefa;
  color: var(--ink);
  font-family: var(--sans);
}

.contact-form textarea {
  min-height: 150px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes stripScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

@keyframes textScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes kdiFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.admin-body {
  min-height: 100vh;
  padding: 38px clamp(18px, 5vw, 64px);
}

.admin-shell {
  max-width: 1160px;
  margin: 0 auto;
}

.admin-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}

.admin-top h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 84px);
}

.editor-panel {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 620px;
  border: 1px solid var(--line);
  background: #fffefa;
}

.editor-sidebar {
  border-right: 1px solid var(--line);
  padding: 22px;
}

.editor-sidebar label,
.json-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editor-sidebar input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: 14px/1.45 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.editor-sidebar input {
  height: 42px;
  padding: 0 12px;
  margin-bottom: 18px;
}

textarea {
  min-height: 560px;
  resize: vertical;
  padding: 18px;
}

.editor-main {
  padding: 22px;
}

.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.status {
  min-height: 22px;
  margin-top: 16px;
  color: var(--accent);
  font-size: 14px;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 94px;
  }

  .review-badge {
    right: 14px;
    bottom: 14px;
    padding: 0 14px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: space-between;
    order: 3;
    width: 100%;
    margin-top: 20px;
    gap: 10px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 8px;
  }

  .film-strip {
    height: 156px;
  }

  h1 {
    font-size: clamp(54px, 17vw, 88px);
  }

  .tracked {
    letter-spacing: 0.32em;
  }

  .section-heading,
  .about-section,
  .editor-panel,
  .audio-card,
  .split-section,
  .booking-band {
    grid-template-columns: 1fr;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .press-logos,
  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .press-logos {
    flex-wrap: wrap;
  }

  .project-grid {
    grid-auto-columns: minmax(280px, 82vw);
  }

  .dropdown {
    display: none;
  }

  .editor-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  cite {
    white-space: normal;
  }
}
