/* =========================================================
   Black White Coffee Co. — styles
   Distinct from Silver Service: true black / white / foam
   ========================================================= */

:root {
  --ink: #0a0a0a;
  --ink-soft: #161616;
  --ink-mid: #2a2a2a;
  --foam: #f4f1ec;
  --foam-dim: #e8e4dc;
  --paper: #ffffff;
  --muted: #8a8680;
  --muted-on-dark: #b8b4ae;
  --line: rgba(10, 10, 10, 0.12);
  --line-on-dark: rgba(244, 241, 236, 0.14);
  --font-display: "Syne", "Arial Narrow", sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --pad-x: clamp(1.25rem, 6vw, 5.5rem);
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--foam);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

/* --- Loader --- */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--ink);
  transition: opacity 0.85s var(--ease), visibility 0.85s;
}

.site-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader-brand {
  text-align: center;
}

.site-loader-logo {
  width: min(160px, 42vw);
  height: auto;
  margin: 0 auto 1rem;
  opacity: 0;
  transform: scale(0.92);
  animation: brandIn 1.1s var(--ease) 0.15s forwards;
}

.site-loader-tagline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  opacity: 0;
  animation: brandIn 0.9s var(--ease) 0.55s forwards;
}

@keyframes brandIn {
  to {
    opacity: 1;
    transform: none;
  }
}

body.is-home:not(.is-revealed) .hero-content {
  opacity: 0;
}

body.is-home.is-revealed .hero-content {
  animation: heroRise 1s var(--ease) forwards;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* --- Header --- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem var(--pad-x);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-on-dark);
  color: var(--foam);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}

.header-panel {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex: 1;
  justify-content: flex-end;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  align-items: center;
}

.site-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted-on-dark);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--foam);
}

.header-actions {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line-on-dark);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  background: var(--foam);
  position: relative;
  transition: transform 0.25s ease;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.site-header.is-open .nav-toggle-bars {
  background: transparent;
}

.site-header.is-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.45rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
    transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--foam);
  color: var(--ink);
  border-color: var(--foam);
}

.btn-primary:hover {
  background: var(--ink-mid);
  color: var(--foam);
  border-color: rgba(244, 241, 236, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--foam);
  border-color: var(--line-on-dark);
}

.btn-ghost:hover {
  background: var(--foam);
  color: var(--ink);
  border-color: var(--foam);
}

.btn-ink {
  background: var(--ink);
  color: var(--foam);
  border-color: var(--ink);
}

.btn-ink:hover {
  background: var(--foam);
  color: var(--ink);
  border-color: var(--foam);
}

.btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline-ink:hover {
  background: var(--ink);
  color: var(--foam);
  border-color: var(--ink);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: grid;
  align-items: end;
  color: var(--foam);
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050505;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Portrait source — show the full frame, not a crop */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  object-fit: contain;
  object-position: center center;
  background: #050505;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  object-fit: cover;
  opacity: 0.35;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0.25) 40%, rgba(10, 10, 10, 0.82) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.2) 42%, rgba(10, 10, 10, 0.2) 58%, rgba(10, 10, 10, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 10vh, 6rem) var(--pad-x) clamp(2.5rem, 6vh, 4rem);
  max-width: 52rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  margin-bottom: 1rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 9vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.hero-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.6vw, 1.65rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 22ch;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted-on-dark);
  max-width: 36ch;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: 2rem;
  z-index: 1;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  writing-mode: vertical-rl;
  opacity: 0.7;
}

/* --- Sections --- */
.section {
  padding: clamp(3.5rem, 9vw, 6.5rem) var(--pad-x);
}

.section-dark {
  background: var(--ink);
  color: var(--foam);
}

.section-split {
  background: var(--paper);
}

.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.section-dark .section-eyebrow {
  color: var(--muted-on-dark);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  max-width: 16ch;
}

.section-intro {
  max-width: 40rem;
  color: var(--muted);
  margin-bottom: 2.25rem;
}

.section-dark .section-intro {
  color: var(--muted-on-dark);
}

.section-head {
  margin-bottom: 2.5rem;
}

/* --- Trust strip --- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  justify-content: space-between;
  padding: 1.35rem var(--pad-x);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-strip span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--ink);
  border-radius: 50%;
}

/* --- Clients marquee --- */
.clients-band {
  background: var(--ink);
  color: var(--foam);
  padding: 1.75rem 0 1.35rem;
  border-bottom: 1px solid var(--line-on-dark);
  overflow: hidden;
}

.clients-eyebrow {
  padding: 0 var(--pad-x);
  margin-bottom: 1.1rem;
  color: var(--muted-on-dark);
}

.clients-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.clients-track {
  display: flex;
  width: max-content;
  gap: 0;
  --clients-shift: 0px;
  --clients-duration: 42s;
  animation: clients-scroll var(--clients-duration) linear infinite;
}

.clients-track.is-ready {
  animation-name: clients-scroll-px;
}

.clients-group {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  list-style: none;
  padding: 0 clamp(1.5rem, 4vw, 2.5rem);
  margin: 0;
  flex-shrink: 0;
}

.clients-group li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--foam);
  opacity: 0.78;
}

.clients-group li::after {
  content: "·";
  margin-left: clamp(2rem, 5vw, 3.5rem);
  opacity: 0.35;
  font-weight: 400;
}

@keyframes clients-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes clients-scroll-px {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--clients-shift, 0px)), 0, 0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .clients-marquee:hover .clients-track {
    animation-play-state: paused;
  }
}

/* --- Event types --- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.event-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.event-item p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* --- How it works --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line-on-dark);
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--muted-on-dark);
  margin-bottom: 1rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.step-text {
  color: var(--muted-on-dark);
  font-size: 0.98rem;
}

/* --- Packages --- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.package-card {
  background: var(--paper);
  padding: 1.75rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
}

.package-card.is-featured {
  background: var(--ink);
  color: var(--foam);
}

.package-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  background: var(--foam);
  color: var(--ink);
  font-weight: 600;
}

.package-price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.package-cups {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.package-per {
  font-size: 0.85rem;
  color: var(--muted);
}

.package-card.is-featured .package-per {
  color: var(--muted-on-dark);
}

.package-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}

.package-card.is-featured .package-list {
  color: var(--muted-on-dark);
}

.package-list li {
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.5;
}

.package-note {
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 48rem;
}

.package-includes {
  margin: 2rem 0 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.package-includes h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.package-includes p {
  color: var(--muted);
  max-width: 50rem;
}

.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.extras-block h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
}

.extras-block dl {
  display: grid;
  gap: 0.45rem;
}

.extras-block div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.45rem;
}

.extras-block dt {
  color: var(--ink-mid);
}

.extras-block dd {
  font-weight: 600;
  text-align: right;
}

/* --- About split --- */
.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.about-split img {
  width: 100%;
  height: min(70vh, 560px);
  object-fit: cover;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-copy p {
  color: var(--muted);
  max-width: 38rem;
}

/* --- Video reels --- */
.reel-scroll {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.reel-scroll:focus-visible {
  outline: 1px solid var(--foam);
  outline-offset: 4px;
}

.reel-card {
  flex: 0 0 min(42vw, 220px);
  margin: 0;
  scroll-snap-align: start;
  position: relative;
  background: var(--ink-soft);
  overflow: hidden;
}

.reel-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: #111;
}

.featured-video {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-on-dark);
}

.featured-video-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.85rem;
}

.featured-video-copy p {
  color: var(--muted-on-dark);
  margin-bottom: 1.25rem;
  max-width: 32ch;
}

.featured-video-frame {
  background: #000;
  overflow: hidden;
}

.featured-video-frame video {
  width: 100%;
  max-height: min(70vh, 640px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .featured-video {
    grid-template-columns: 1fr;
  }

  .reel-card {
    flex-basis: min(58vw, 200px);
  }

  .featured-video-frame video {
    max-height: 70vh;
  }
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.65rem;
}

.gallery-grid a,
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-grid a:hover img {
  transform: scale(1.04);
}

.gallery-grid .g1 {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 420px;
}

.gallery-grid .g2 {
  grid-column: span 5;
  min-height: 200px;
}

.gallery-grid .g3 {
  grid-column: span 5;
  min-height: 200px;
}

.gallery-grid .g4,
.gallery-grid .g5,
.gallery-grid .g6 {
  grid-column: span 4;
  min-height: 220px;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-page-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.gallery-page-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-page-grid figure:hover img {
  transform: scale(1.03);
}

.gallery-page-grid figure:first-child {
  grid-column: 1 / -1;
}

.gallery-page-grid figure:first-child img {
  aspect-ratio: 21 / 9;
}

/* --- Client list (about) --- */
.client-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.client-list li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: -0.015em;
  text-transform: uppercase;
  padding: 1.15rem 1rem 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 980px) {
  .client-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .client-list {
    grid-template-columns: 1fr;
  }
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.testimonial {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}

.testimonial-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.testimonial-meta cite {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  display: block;
}

/* --- Final CTA --- */
.final-cta {
  text-align: center;
  padding: clamp(4rem, 12vw, 7rem) var(--pad-x);
  background: var(--ink);
  color: var(--foam);
}

.final-cta .section-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 14ch;
}

.final-cta .section-intro {
  margin-left: auto;
  margin-right: auto;
  color: var(--muted-on-dark);
}

.final-cta .hero-actions {
  justify-content: center;
}

/* --- Page shell --- */
.page-hero {
  padding: clamp(3rem, 8vw, 5rem) var(--pad-x) 2rem;
  background: var(--ink);
  color: var(--foam);
}

.page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.page-intro {
  max-width: 38rem;
  color: var(--muted-on-dark);
}

/* --- FAQ --- */
.faq-list {
  max-width: 44rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 2rem 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  position: relative;
  color: var(--ink);
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--muted);
}

.faq-question[aria-expanded="true"]::after {
  content: "–";
}

.faq-answer {
  padding: 0 0 1.25rem;
  color: var(--muted);
}

.faq-answer[hidden] {
  display: none;
}

.section-dark .faq-question {
  color: var(--foam);
}

.section-dark .faq-item {
  border-color: var(--line-on-dark);
}

.section-dark .faq-answer {
  color: var(--muted-on-dark);
}

/* --- Forms --- */
.quote-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.quote-aside h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.quote-aside p,
.quote-aside li {
  color: var(--muted);
  font-size: 0.98rem;
}

.quote-aside ul {
  list-style: none;
  margin: 1.25rem 0;
}

.quote-aside li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
}

.quote-contact a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.15rem;
  background: var(--paper);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--line);
}

.quote-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.quote-field-wide {
  grid-column: 1 / -1;
}

.quote-field span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  background: var(--foam);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  border-color: var(--ink);
}

.quote-botcheck {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.quote-form .btn {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0.35rem;
}

.quote-status {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 1.25em;
}

.quote-status.is-error {
  color: #8b1e1e;
}

.quote-status.is-ok {
  color: #1e5c3a;
}

.quote-done {
  max-width: 40rem;
  padding: clamp(3rem, 8vw, 5rem) var(--pad-x) clamp(4rem, 10vw, 6rem);
  background: var(--foam);
  color: var(--ink);
}

.quote-done .page-title {
  color: var(--ink);
}

.quote-done .page-intro,
.quote-done .page-intro a {
  color: var(--muted);
}

.quote-alt {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
}

.contact-card a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-lines {
  list-style: none;
  margin-top: 1.25rem;
}

.contact-lines li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-lines span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-lines a,
.contact-lines strong {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

/* --- Footer --- */
.site-footer {
  background: var(--ink);
  color: var(--foam);
  padding: 3rem var(--pad-x) 2rem;
  border-top: 1px solid var(--line-on-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--muted-on-dark);
  max-width: 28ch;
  font-size: 0.95rem;
}

.footer-col h3 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--foam);
  font-size: 0.95rem;
  padding: 0.25rem 0;
  opacity: 0.85;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-on-dark);
  font-size: 0.8rem;
  color: var(--muted-on-dark);
}

/* --- WhatsApp sticky --- */
.wa-sticky {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 40;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.wa-sticky:hover {
  transform: scale(1.06);
}

.wa-sticky svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

/* --- Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --- 404 --- */
.not-found {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem var(--pad-x);
  background: var(--ink);
  color: var(--foam);
}

.not-found h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: -0.04em;
}

/* --- Mobile --- */
@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .header-panel {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(10, 10, 10, 0.96);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem var(--pad-x) 1.75rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--line-on-dark);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s ease;
  }

  .site-header.is-open .header-panel {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions .btn {
    width: 100%;
  }

  .event-grid,
  .steps,
  .package-grid,
  .testimonial-grid,
  .about-split,
  .quote-layout,
  .contact-grid,
  .extras-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .package-grid {
    gap: 0;
    border: none;
    background: transparent;
  }

  .package-card {
    border: 1px solid var(--line);
    margin-bottom: 0.65rem;
  }

  .gallery-grid .g1,
  .gallery-grid .g2,
  .gallery-grid .g3,
  .gallery-grid .g4,
  .gallery-grid .g5,
  .gallery-grid .g6 {
    grid-column: span 12;
    min-height: 240px;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page-grid figure:first-child img {
    aspect-ratio: 16 / 10;
  }

  .hero-scroll {
    display: none;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-field-wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    height: 44px;
  }

  .trust-strip {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
