:root {
  --white: #ffffff;
  --charcoal: #1a1a1a;
  --bg: #dedacf;
  --gray-50: #efece4;
  --gray-100: #ebe7dd;
  --gray-200: #cbc7bb;
  --gray-400: #8a8676;
  --gray-500: #6b6859;
  --brand: #3b9fe7;
  --font-display: "Cormorant", "Georgia", serif;
  --font-body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --max-w: 1280px;
  --px: clamp(24px, 5vw, 80px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
}

/* ─── LOGO ─────────────────────────────────────────── */
.logo {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
}

.logo-accent {
  color: var(--brand);
}

/* ─── LABELS ────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.section-label--light {
  color: rgba(255, 255, 255, 0.55);
}

/* ─── TYPOGRAPHY ────────────────────────────────────── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
}

/* ─── HEADER ────────────────────────────────────────── */
.site-header {
  position: absolute;
  inset-x: 0;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: var(--bg);
  border-color: var(--gray-200);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header .logo {
  color: var(--white);
  transition: color 0.35s ease;
}

.site-header.scrolled .logo {
  color: var(--charcoal);
}

.site-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.site-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-header.scrolled .site-nav a {
  color: var(--gray-500);
}

.site-header.scrolled .site-nav a:hover {
  color: var(--charcoal);
}

.btn-book {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn-book:hover {
  background: var(--white);
  color: var(--charcoal);
}

.site-header.scrolled .btn-book {
  border-color: rgba(59, 159, 231, 0.45);
  color: var(--brand);
}

.site-header.scrolled .btn-book:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

/* ─── HAMBURGER ─────────────────────────────────────── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.35s ease;
}

.site-header.scrolled .menu-toggle span {
  background: var(--charcoal);
}

/* ─── MOBILE OVERLAY ────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.menu-close {
  position: absolute;
  top: 24px;
  right: var(--px);
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--charcoal);
  padding: 8px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 300;
  text-decoration: none;
  color: var(--charcoal);
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: var(--brand);
}

.mobile-cta {
  font-family: var(--font-body) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--brand) !important;
  border: 1px solid rgba(59, 159, 231, 0.4) !important;
  padding: 12px 30px !important;
  margin-top: 8px !important;
  transition: background 0.25s ease, color 0.25s ease !important;
}

.mobile-cta:hover {
  background: var(--brand) !important;
  color: var(--white) !important;
}

/* ─── BUTTONS ───────────────────────────────────────── */
.btn-white-outline {
  display: inline-block;
  padding: 13px 30px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-white-outline:hover {
  background: var(--white);
  color: var(--charcoal);
}

.btn-white-ghost {
  display: inline-block;
  padding: 13px 30px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-white-ghost:hover {
  color: var(--white);
}

.btn-blue-outline {
  display: inline-block;
  padding: 13px 30px;
  border: 1px solid rgba(59, 159, 231, 0.4);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-blue-outline:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 840px;
  padding: 0 var(--px);
  display: grid;
  gap: 26px;
  justify-items: center;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

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

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
}

.scroll-cue span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.35);
  transform-origin: top;
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── TAGLINE ───────────────────────────────────────── */
.tagline-section {
  padding: clamp(80px, 10vw, 140px) var(--px);
  background: var(--bg);
  text-align: center;
}

.tagline-inner {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  justify-items: center;
}

.tagline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--charcoal);
}

.tagline-sub {
  font-size: 0.96rem;
  color: var(--gray-500);
  max-width: 50ch;
  line-height: 1.75;
}

/* ─── REELS ─────────────────────────────────────────── */
.reels-section {
  padding: clamp(60px, 8vw, 120px) 0;
  background: var(--bg);
}

.reels-header {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--px);
  margin-bottom: 40px;
}

.reels-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  max-width: 26ch;
  margin-top: 6px;
}

.reels-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.reel-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.reel-arrow:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.reel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.reel-arrow svg {
  width: 18px;
  height: 18px;
}

.reels-track-wrap {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--px);
  overflow: hidden;
}

.reels-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.reel-item {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}

.reel-embed-shell {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 6px;
  background: var(--gray-100);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.reel-embed-shell .instagram-media {
  position: absolute !important;
  inset: 0 !important;
  margin: 0 !important;
  min-width: 100% !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  border: 0 !important;
  border-radius: 6px !important;
}

.reel-embed-shell iframe,
.reel-embed-shell .instagram-media-rendered {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  border-radius: 6px !important;
}

.reel-item figcaption {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  text-align: center;
}

/* ─── WORK ──────────────────────────────────────────── */
.work-section {
  padding: clamp(60px, 8vw, 120px) var(--px);
  background: var(--bg);
}

.work-header {
  margin-bottom: 64px;
}

.work-list {
  display: grid;
  gap: 96px;
}

.work-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.work-item--flip .work-image {
  order: -1;
}

.work-text {
  display: grid;
  gap: 16px;
  align-content: start;
}

.work-type {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
}

.work-text p {
  color: var(--gray-500);
  font-size: 0.96rem;
  line-height: 1.75;
  max-width: 44ch;
}

.work-image {
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.work-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.work-item:hover .work-image img {
  transform: scale(1.04);
}

.work-image video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.work-item:hover .work-image video {
  transform: scale(1.04);
}

/* ─── STATS ─────────────────────────────────────────── */
.stats-section {
  padding: clamp(60px, 8vw, 100px) var(--px);
  background: var(--bg);
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  display: grid;
  gap: 10px;
  min-width: 160px;
}

.stat-item strong {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-item span {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.stat-sep {
  width: 1px;
  height: 64px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ─── TESTIMONIALS ──────────────────────────────────── */
.testimonials-section {
  padding: clamp(80px, 10vw, 140px) var(--px);
  background: var(--charcoal);
  color: var(--white);
}

.testimonials-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 36px;
}

.quote {
  display: none;
}

.quote.active {
  display: block;
}

.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  font-weight: 300;
  line-height: 1.45;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
}

.quote cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.quote-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.quote-dots button {
  width: 28px;
  height: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
  border-radius: 1px;
  padding: 0;
}

.quote-dots button.active {
  background: var(--brand);
  width: 42px;
}

/* ─── CAPABILITIES ──────────────────────────────────── */
.caps-section {
  padding: clamp(60px, 8vw, 120px) var(--px);
  background: var(--bg);
}

.caps-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.caps-header {
  display: grid;
  gap: 14px;
  max-width: 600px;
  margin-bottom: 56px;
}

.caps-header p {
  color: var(--gray-500);
  font-size: 0.96rem;
  line-height: 1.75;
}

.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  margin-bottom: 40px;
}

.cap-item {
  padding: 34px;
  background: var(--white);
  display: grid;
  gap: 12px;
  align-content: start;
}

.cap-item h3 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.cap-item p {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.7;
}

.platforms-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platforms-row span {
  padding: 8px 16px;
  border: 1px solid var(--gray-200);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ─── FAQ ───────────────────────────────────────────── */
.faq-section {
  padding: clamp(60px, 8vw, 120px) var(--px);
  background: var(--bg);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 48px;
}

.faq-list {
  border-top: 1px solid var(--gray-200);
}

details {
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
  overflow: hidden;
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.96rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gray-400);
  transition: color 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
}

details[open] > summary::after {
  content: "\2212";
  color: var(--brand);
}

details > p {
  margin-top: 14px;
  color: var(--gray-500);
  font-size: 0.94rem;
  line-height: 1.75;
  max-width: 58ch;
}

details[open] > p {
  animation: faqReveal 0.28s ease;
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── CONTACT ───────────────────────────────────────── */
.contact-section {
  padding: clamp(60px, 8vw, 120px) var(--px);
  background: var(--charcoal);
  color: var(--white);
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 20px;
  align-content: start;
}

.contact-copy h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.96rem;
  line-height: 1.75;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.contact-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.contact-links a:hover {
  color: var(--white);
}

/* Form */
.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: 3px;
}

.form-label {
  display: block;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 22px;
  line-height: 1.55;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--charcoal);
  font: inherit;
  font-size: 0.9rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  min-height: 48px;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  background: var(--white);
}

input::placeholder,
textarea::placeholder {
  color: var(--gray-400);
}

select {
  appearance: none;
  cursor: pointer;
}

textarea {
  min-height: 120px;
  resize: vertical;
  grid-column: 1 / -1;
}

.form-grid input[type="text"],
.form-grid input[type="email"],
.form-grid select {
  /* individual inputs take one column each */
}

.form-grid input:nth-child(3),
.form-grid select {
  grid-column: 1 / -1;
}

.btn-submit {
  grid-column: 1 / -1;
  width: 100%;
  padding: 15px 28px;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease;
  border-radius: 2px;
}

.btn-submit:hover {
  background: var(--brand);
}

.form-feedback {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--brand);
  min-height: 1.2em;
}

/* ─── FOOTER ────────────────────────────────────────── */
.site-footer {
  padding: clamp(48px, 6vw, 80px) var(--px);
  background: var(--bg);
  border-top: 1px solid var(--gray-200);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--gray-500);
  max-width: 26ch;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  align-self: center;
}

.footer-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray-500);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--charcoal);
}

.footer-right {
  display: grid;
  gap: 12px;
  text-align: right;
}

.footer-email {
  font-size: 0.85rem;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: var(--charcoal);
}

.social-links {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.social-links a {
  color: var(--gray-500);
  transition: color 0.2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.social-links a:hover {
  color: var(--charcoal);
}

.social-links svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-copy {
  font-size: 0.76rem;
  color: var(--gray-400);
  margin: 0;
}

/* ─── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

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

/* ─── FOCUS ─────────────────────────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .work-item,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .work-item--flip .work-image {
    order: 0;
  }

  .work-image img,
  .work-image video {
    height: 320px;
  }

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

  .stat-sep {
    display: none;
  }

  .stats-inner {
    gap: 48px;
  }

  .contact-form {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .site-nav,
  .btn-book {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .reels-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .reels-nav {
    align-self: flex-end;
  }

  .reel-item {
    flex: 0 0 min(280px, 78vw);
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-right {
    text-align: left;
  }

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .form-grid input:nth-child(3),
  .form-grid select {
    grid-column: auto;
  }

  .work-image img,
  .work-image video {
    height: 260px;
  }

  .scroll-cue {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .scroll-line {
    animation: none;
    opacity: 0.5;
  }

  .work-item:hover .work-image img,
  .work-item:hover .work-image video {
    transform: none;
  }
}
