/* ── Design tokens ────────────────────────────── */
:root {
  --bg: #020202;
  --bg-2: #080808;
  --surface: rgba(11, 11, 12, 0.78);
  --surface-strong: rgba(7, 7, 8, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.045);
  --text: #f6f4ef;
  --muted: #b8b0a3;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #d7bd78;
  --accent-cool: #9fb1bf;
  --accent-warm: #8b6a34;
  --accent-ruby: #5d241d;
  --metal: #d6d8dc;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.68);
  --radius-xl: 0.75rem;
  --radius-lg: 0.6rem;
  --radius-md: 0.5rem;
  --site-width: 1180px;
}

/* ── Reset ────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #020202;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  /* Static ambient glow baked into the background — no animation, no repaint */
  background:
    radial-gradient(circle at 10% 10%, rgba(215, 189, 120, 0.12), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(159, 177, 191, 0.12), transparent 26%),
    radial-gradient(circle at 72% 78%, rgba(93, 36, 29, 0.15), transparent 34%),
    linear-gradient(180deg, #050504 0%, #000 45%, #070604 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/*
  Grain overlay — baked onto body::before as a GPU-composited layer.
  transform: translateZ(0) forces its own compositor layer so it
  doesn't repaint the body on scroll.
*/
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  transform: translateZ(0);
}

::selection {
  color: #050505;
  background: var(--accent);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Layout shell ─────────────────────────────── */
.page-shell {
  width: min(calc(100% - 2rem), var(--site-width));
  margin: 0 auto;
  padding: 1.2rem 0 4rem;
}

/* ── Topbar ───────────────────────────────────── */
.topbar {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  /* Reduced blur from 18px → 10px — much cheaper compositing */
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.topbar.is-scrolled {
  border-color: rgba(210, 189, 132, 0.32);
  background: rgba(5, 5, 5, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

.brand-logo {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: contain;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(210, 189, 132, 0.08), 0 10px 28px rgba(0, 0, 0, 0.45);
}

.brand-mark {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-cool));
  box-shadow: 0 0 24px rgba(210, 189, 132, 0.24);
}

.nav {
  display: inline-flex;
  justify-self: center;
  gap: 1.2rem;
  color: var(--muted);
}

.nav a {
  position: relative;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a,
.footer-links a {
  transition: color 180ms ease;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* ── Buttons ──────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #050505;
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #fff6df, var(--accent) 54%, #9d793c);
  box-shadow: 0 16px 44px rgba(215, 189, 120, 0.22);
}

.button-secondary,
.button-ghost {
  border-color: var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  color: var(--text);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(210, 189, 132, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(640px, 92vh, 880px);
  width: 100vw;
  margin: -1.1rem calc(50% - 50vw) 1.2rem;
  padding:
    clamp(7rem, 11vw, 9rem)
    max(1rem, calc((100vw - var(--site-width)) / 2))
    clamp(2.4rem, 6vw, 5rem);
  overflow: hidden;
  text-align: left;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background: #020202;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(0.86) contrast(1.12);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 37%, rgba(0, 0, 0, 0.28) 72%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, transparent 38%, rgba(0, 0, 0, 0.92) 100%),
    radial-gradient(circle at 18% 80%, rgba(215, 189, 120, 0.18), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(159, 177, 191, 0.16), transparent 32%);
}

.hero::after {
  content: "";
  position: absolute;
  left: max(1rem, calc((100vw - var(--site-width)) / 2));
  right: max(1rem, calc((100vw - var(--site-width)) / 2));
  bottom: 1.4rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 189, 120, 0.85), rgba(255, 255, 255, 0.12), transparent);
  opacity: 0.75;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-width: 760px;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.5rem;
}

/* Glass card treatment — shared across panels */
.hero-panel,
.showcase-card,
.reaction-card,
.service-card,
.process-card,
.booking-copy,
.booking-form,
.footer {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.78), rgba(3, 3, 3, 0.94));
  box-shadow: var(--shadow);
}

.hero-panel,
.booking-copy,
.booking-form {
  border-radius: var(--radius-xl);
  padding: 2rem;
}

/* Decorative glow on cards — cheap radial gradient, no blur filter */
.hero-panel::before,
.booking-copy::before,
.booking-form::before,
.showcase-card::before,
.reaction-card::before,
.service-card::before,
.process-card::before {
  content: "";
  position: absolute;
  inset: auto auto 75% 60%;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 189, 132, 0.12), transparent 72%);
  pointer-events: none;
}

/* ── Typography ───────────────────────────────── */
.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.booking-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.92;
}

.hero h1 {
  max-width: 12.5ch;
  font-size: clamp(4.4rem, 10vw, 8.8rem);
  color: #f4f1e8;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.72);
}

.hero h1 span {
  color: inherit;
}

.hero h1 .headline-line {
  display: block;
}

.hero h1 .headline-accent {
  color: #e6d2a0;
}

.gs-reveal,
[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: transform, opacity;
}

.gs-reveal.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-text,
.section-head p,
.service-card p,
.process-card p,
.showcase-copy p,
.booking-copy p,
.footer p,
.hero-notes p,
.mini-list li,
.stat-card p,
.form-status {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 39rem;
  margin: 1.4rem 0 0;
  color: #ddd6c8;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  max-width: 42rem;
}

.hero-notes > div {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-notes a,
.email-display a {
  color: var(--text);
}

.hero-notes a:hover,
.email-display a:hover {
  color: var(--accent-cool);
}

.note-label,
.panel-kicker,
.card-label,
.callout-title {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Hero panel (stats sidebar) ───────────────── */
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.panel-card {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(210, 189, 132, 0.08), transparent 55%);
}

.panel-card-large h2 {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  line-height: 1.05;
}

.mini-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.mini-list li {
  position: relative;
  padding-left: 1.1rem;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-cool));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat-card {
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.stat-card span,
.service-card span,
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 0.9rem;
  color: #070707;
  background: linear-gradient(135deg, #f2eee4, var(--metal));
  font-weight: 800;
}

/* ── Marquee ──────────────────────────────────── */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(90deg, rgba(215, 189, 120, 0.08), rgba(159, 177, 191, 0.055), rgba(93, 36, 29, 0.07));
  border-top: 1px solid rgba(215, 189, 120, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 0;
  border-right: 0;
  padding: 1.4rem 0;
  margin: 1rem 0 4.5rem;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  animation: marquee-scroll 32s linear infinite;
  will-change: transform;
}

.marquee-content span:not(.dot) {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

.marquee-content .dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(210, 189, 132, 0.34);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Intro stats ──────────────────────────────── */
.intro-stats-section {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 4.5rem;
}

/* ── Section headings ─────────────────────────── */
.section-head {
  max-width: 52rem;
  margin-bottom: 1.35rem;
}

section[id] {
  scroll-margin-top: 7rem;
}

.section-head h2,
.booking-copy h2 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
}

.section-head p {
  margin: 0.75rem 0 0;
}

/* ── Grid layouts ─────────────────────────────── */
.showcase-grid,
.reaction-grid,
.services-grid,
.process-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 4.5rem;
}

.showcase-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.showcase-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.reaction-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ── Bento system ─────────────────────────────── */
.bento-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 4.5rem;
}

.bento-tall {
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
}

/* ── Card hover ───────────────────────────────── */
.showcase-card,
.reaction-card,
.service-card,
.process-card,
.bento-item {
  border-radius: var(--radius-xl);
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 350ms ease, border-color 350ms ease;
}

.showcase-card:hover,
.reaction-card:hover,
.service-card:hover,
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.78), 0 0 0 1px rgba(210, 189, 132, 0.24);
  border-color: rgba(210, 189, 132, 0.22);
}

/* ── Showcase cards ───────────────────────────── */
.showcase-card {
  display: flex;
  flex-direction: column;
  --card-accent: rgba(215, 189, 120, 0.13);
  background:
    radial-gradient(circle at 20% 0%, var(--card-accent), transparent 42%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.88), rgba(3, 3, 3, 0.98));
}

.showcase-card:nth-child(3n + 2) {
  --card-accent: rgba(159, 177, 191, 0.13);
}

.showcase-card:nth-child(3n + 3) {
  --card-accent: rgba(93, 36, 29, 0.18);
}

.showcase-card-featured {
  border-color: rgba(215, 189, 120, 0.35);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.76), 0 0 0 1px rgba(215, 189, 120, 0.18);
}

.showcase-card-featured .video-trigger {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.88)),
    linear-gradient(135deg, rgba(215, 189, 120, 0.18), rgba(159, 177, 191, 0.08)),
    #050505;
}

.video-shell {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #020406;
  overflow: hidden;
}

.video-shell video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #020406;
}

.portfolio-video {
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.showcase-card.is-previewing .portfolio-video {
  opacity: 0.4;
}

.showcase-card.is-loaded .portfolio-video {
  opacity: 1;
  pointer-events: auto;
}

.video-trigger {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 1.25rem;
  border: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.92)),
    linear-gradient(135deg, rgba(210, 189, 132, 0.12), rgba(255, 255, 255, 0.02)),
    #050505;
  text-align: left;
  cursor: pointer;
  transition: background 300ms ease, opacity 220ms ease;
}

.video-trigger:hover {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)),
    linear-gradient(135deg, rgba(210, 189, 132, 0.18), rgba(255, 255, 255, 0.04)),
    #050505;
}

.showcase-card.is-loaded .video-trigger {
  opacity: 0;
  pointer-events: none;
}

.video-trigger-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-trigger-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: 0.05em;
  line-height: 1;
}

.video-trigger::after {
  content: "Play showcase";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2.5rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ── Service & process cards ──────────────────── */
.showcase-copy,
.reaction-card,
.service-card,
.process-card {
  padding: 1.35rem;
}

.showcase-copy h3,
.service-card h3,
.process-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.3rem;
  line-height: 1.2;
}

.showcase-copy p,
.reaction-card p,
.service-card p,
.process-card p,
.footer-copy {
  margin: 0;
}

.reaction-card {
  display: grid;
  min-height: 15rem;
  align-content: space-between;
  gap: 1.8rem;
  background:
    radial-gradient(circle at 14% 12%, rgba(215, 189, 120, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.88), rgba(3, 3, 3, 0.98));
}

.reaction-card:nth-child(2) {
  background:
    radial-gradient(circle at 14% 12%, rgba(159, 177, 191, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.88), rgba(3, 3, 3, 0.98));
}

.reaction-card:nth-child(3) {
  background:
    radial-gradient(circle at 14% 12%, rgba(93, 36, 29, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.88), rgba(3, 3, 3, 0.98));
}

.reaction-quote {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: 0.035em;
}

.reaction-project {
  position: relative;
  z-index: 1;
  width: fit-content;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

a.reaction-project:hover {
  color: var(--metal);
}

.service-card,
.process-card {
  min-height: 100%;
}

.service-card {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.9), rgba(4, 4, 4, 0.98)),
    linear-gradient(120deg, rgba(210, 189, 132, 0.08), transparent 60%);
}

.service-card:nth-child(2),
.process-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.9), rgba(4, 4, 4, 0.98)),
    linear-gradient(120deg, rgba(159, 177, 191, 0.08), transparent 60%);
}

.service-card:nth-child(3),
.process-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.9), rgba(4, 4, 4, 0.98)),
    linear-gradient(120deg, rgba(93, 36, 29, 0.12), transparent 60%);
}

.process-card {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.9), rgba(4, 4, 4, 0.98)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 60%);
}

.process-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.9), rgba(4, 4, 4, 0.98)),
    linear-gradient(120deg, rgba(159, 177, 191, 0.08), transparent 60%);
}

.process-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.9), rgba(4, 4, 4, 0.98)),
    linear-gradient(120deg, rgba(93, 36, 29, 0.12), transparent 60%);
}

/* ── Contact / Booking ────────────────────────── */
.booking-section {
  margin-bottom: 4rem;
}

.booking-callout,
.email-display {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
}

.booking-callout p,
.email-display span,
.email-display strong {
  margin: 0;
}

.email-display {
  display: grid;
  gap: 0.25rem;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.contact-stack {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.contact-checklist {
  display: grid;
  gap: 0.55rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-checklist li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.55;
}

.contact-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.contact-detail-list {
  display: grid;
  gap: 0.9rem;
}

.contact-detail-list > div {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.contact-detail-list span {
  color: var(--muted);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.booking-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #8390a0;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(210, 189, 132, 0.42);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(210, 189, 132, 0.08);
}

.booking-form textarea {
  resize: vertical;
  min-height: 9rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.form-status {
  margin: 0;
  min-height: 1.7rem;
}

/* ── Footer ───────────────────────────────────── */
.footer {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 1rem 2rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--text);
}

.footer-brand-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
  flex: 0 0 auto;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(210, 189, 132, 0.08), 0 14px 34px rgba(0, 0, 0, 0.45);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1rem 1.2rem;
  color: var(--muted);
}

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1080px) and (min-width: 769px) {
  .bento-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-self: start;
    width: 100%;
    overflow-x: auto;
    padding-top: 0.1rem;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

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

  .booking-section,
  .bento-layout {
    grid-template-columns: 1fr;
  }

  .bento-tall,
  .bento-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .reaction-grid,
  .showcase-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1 {
    max-width: none;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--site-width));
    padding-top: 0.8rem;
  }

  .topbar {
    top: 0.55rem;
    grid-template-columns: 1fr;
    justify-items: start;
    border-radius: var(--radius-xl);
  }

  .nav {
    gap: 1rem;
  }

  .nav a {
    flex: 0 0 auto;
  }

  .topbar-cta {
    width: 100%;
  }

  .hero {
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    min-height: 720px;
    padding-top: 6.2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 2.8rem;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-panel,
  .booking-copy,
  .booking-form {
    padding: 1.25rem;
  }

  .hero-notes,
  .stats-grid,
  .field-row,
  .reaction-grid,
  .showcase-grid-three {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
  }

  .footer-brand-group {
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 12.5vw, 4rem);
    line-height: 0.96;
  }

  .section-head h2,
  .booking-copy h2 {
    font-size: clamp(2.15rem, 13vw, 3.4rem);
  }
}
