:root {
  --black: #030303;
  --ink: #111111;
  --charcoal: #181818;
  --white: #ffffff;
  --soft: #f5f5f0;
  --muted: #a7a7a0;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--white);
  transform: translateY(-140%);
  transition: transform 0.3s var(--ease);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
  color: var(--white);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(3, 3, 3, 0.88) 0%,
    rgba(3, 3, 3, 0.68) 58%,
    rgba(3, 3, 3, 0.48) 100%
  );
  transition: padding 0.35s var(--ease);
  transform: translateZ(0);
}

.site-header.scrolled,
.site-header.menu-open {
  background: linear-gradient(
    180deg,
    rgba(3, 3, 3, 0.88) 0%,
    rgba(3, 3, 3, 0.68) 58%,
    rgba(3, 3, 3, 0.48) 100%
  );
}

.site-header.scrolled { padding-block: 0.75rem; }

.brand {
  display: inline-flex;
  align-items: center;
  width: 172px;
  height: 54px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  opacity: 0.74;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.site-nav a:hover,
.site-nav a.active { opacity: 1; transform: translateY(-1px); }

.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-book {
  padding: 0.8rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
}

.nav-book::after { display: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.full-bleed,
.page-hero,
.booking-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

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

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  animation: slowZoom 18s var(--ease) forwards;
}

.hero-overlay {
  background:
    radial-gradient(circle at 72% 36%, rgba(255, 255, 255, 0.16), transparent 22rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.48) 45%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 2rem));
  padding: clamp(8rem, 17vh, 13rem) 0 8rem;
  margin-inline: clamp(1rem, 7vw, 7rem);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.62;
}

h1, h2, h3, p { margin-top: 0; }

h1,
h2,
h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
}

h1 {
  max-width: 980px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.7rem, 9vw, 8rem);
}

h2 { font-size: clamp(2.3rem, 4vw, 6.3rem); }

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.03rem, 1.7vw, 1.3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.92rem 1.35rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

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

.button-light { color: var(--black); background: var(--white); border-color: var(--white); }
.button-light:hover { color: var(--white); background: transparent; }
.button-ghost { color: var(--white); background: transparent; border-color: rgba(255, 255, 255, 0.5); }
.button-ghost:hover { color: var(--black); background: var(--white); border-color: var(--white); }
.button-dark { color: var(--white); background: var(--black); border-color: var(--black); }
.button-dark:hover { color: var(--black); background: transparent; }

.hero-stats {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: clamp(1rem, 4vw, 3rem);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(720px, calc(100% - 2rem));
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-stats div { padding: 1.2rem; border-right: 1px solid var(--line); }
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong { display: block; font-size: 1.1rem; text-transform: uppercase; }
.hero-stats span { display: block; margin-top: 0.35rem; color: rgba(255, 255, 255, 0.62); font-size: 0.88rem; }

.section {
  padding: clamp(4.5rem, 9vw, 8.5rem) clamp(1rem, 5vw, 5rem);
}

.intro-grid,
.manifesto {
  display: grid;
  grid-template-columns: 0.7fr 1.6fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.intro-copy h2,
.manifesto-copy h2 { margin-bottom: 0; }

.intro-panel,
.principles,
.contact-card,
.contact-form,
.step {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.intro-panel { padding: 2rem; }

.intro-panel { border-color: var(--black); }

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: stretch;
}

.dark-card {
  color: var(--white);
  background: var(--black);
}

.split-media {
  min-height: 540px;
  border-radius: var(--radius);
  overflow: hidden;
}

.split-media img,
.image-card img,
.service-card img,
.team-card img,
.booking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.split-media:hover img,
.image-card:hover img,
.service-card:hover img,
.team-card:hover img { transform: scale(1.045); filter: grayscale(0.45) contrast(1.05); }

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.split-copy p:not(.eyebrow) { color: currentColor; opacity: 0.72; font-size: 1.04rem; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.image-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--black);
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.72));
}

.image-card span {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 700;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--black);
  background: var(--white);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  border-radius: var(--radius);
  margin-inline: clamp(1rem, 5vw, 5rem);
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.page-hero {
  display: grid;
  place-items: end start;
  color: var(--white);
  background: var(--black);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.86), rgba(0,0,0,0.34)), linear-gradient(0deg, rgba(0,0,0,0.78), transparent 50%);
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  width: min(960px, calc(100% - 2rem));
  padding: clamp(9rem, 22vh, 15rem) 0 clamp(4rem, 10vh, 7rem);
  margin-left: clamp(1rem, 6vw, 6rem);
}

.page-hero-copy p:not(.eyebrow),
.page-title p { max-width: 660px; color: currentColor; opacity: 0.72; font-size: 1.08rem; }

.page-title {
  padding: clamp(9rem, 18vh, 12rem) clamp(1rem, 5vw, 5rem) clamp(3rem, 8vw, 5rem);
  color: var(--white);
  background: var(--black);
}

.page-title h1 { margin-bottom: 1.1rem; }

.principles {
  display: grid;
  gap: 0;
}

.principles div { padding: 1.6rem; border-bottom: 1px solid var(--line-dark); }
.principles div:last-child { border-bottom: 0; }
.principles span,
.service-card p,
.team-card span,
.step span,
dt {
  display: block;
  margin-bottom: 0.7rem;
  color: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
}
.principles strong { display: block; margin-bottom: 0.4rem; font-size: 1.05rem; }
.principles p { margin-bottom: 0; color: #555; }

.review-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.review-copy p:not(.eyebrow) { color: rgba(255,255,255,0.68); }

.review-window {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.review-track {
  position: relative;
  min-height: 430px;
}

.review-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  opacity: 0;
  transform: translateX(2rem) scale(0.98);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}

.review-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.review-slide img {
  width: min(100%, 760px);
  max-height: 390px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.55);
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.carousel-button:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-50%) scale(1.05); }
.carousel-button.prev { left: 1rem; }
.carousel-button.next { right: 1rem; }

.review-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.review-dot {
  width: 34px;
  height: 3px;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 0.25s var(--ease), width 0.25s var(--ease);
}

.review-dot.active { width: 52px; background: var(--white); }

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

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--black);
}

.service-card div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.6rem;
}

.service-card h2 { margin-bottom: 1rem; font-size: clamp(2rem, 3vw, 2.9rem); }
.service-card span { color: rgba(255,255,255,0.62); }
.service-card a { margin-top: 1.4rem; border-bottom: 1px solid currentColor; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }

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

.team-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--black);
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.86));
}

.team-card div {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
}

.team-card h2 { margin-bottom: 0.3rem; font-size: clamp(2.2rem, 3vw, 3.4rem); }
.team-card p { margin-bottom: 0; color: rgba(255,255,255,0.72); }

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.contact-card,
.contact-form { padding: clamp(1.4rem, 3vw, 2.4rem); }

.contact-card h2,
.contact-form h2 { font-size: clamp(2.4rem, 4.5vw, 4.5rem); }

dl { margin: 2rem 0; }
dl div { padding: 1rem 0; border-bottom: 1px solid var(--line-dark); }
dd { margin: 0; color: #555; }

.contact-form {
  color: var(--white);
  background: var(--black);
}

.contact-form label {
  display: block;
  margin: 1rem 0 0.35rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255,255,255,0.06);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--white); background: rgba(255,255,255,0.1); }
.contact-form .button { margin-top: 1.2rem; }
.contact-form .button:disabled { cursor: wait; opacity: 0.62; transform: none; }

.form-toast {
  position: fixed;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 4vw, 3rem);
  z-index: 200;
  display: grid;
  gap: 0.35rem;
  width: min(390px, calc(100vw - 2rem));
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(145deg, rgba(3, 3, 3, 0.96), rgba(28, 28, 28, 0.92));
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem) scale(0.98);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.form-toast.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.form-toast.success { border-color: rgba(255, 255, 255, 0.58); }
.form-toast.error { border-color: rgba(255, 255, 255, 0.28); }

.form-toast strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}

.form-toast span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.map-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1rem;
  margin-inline: clamp(1rem, 5vw, 5rem);
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding: 0;
}

.map-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  min-height: 520px;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius);
  color: var(--white);
  background: radial-gradient(circle at top right, rgba(255,255,255,0.14), transparent 18rem), var(--black);
}

.map-copy span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.56;
}

.map-copy h2 {
  margin: auto 0 0;
  font-size: clamp(2.7rem, 5vw, 5.6rem);
}

.map-frame {
  min-height: 520px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.booking-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  padding: clamp(7rem, 14vh, 10rem) clamp(1rem, 5vw, 5rem) clamp(3rem, 7vw, 5rem);
  color: var(--white);
  background: var(--black);
}

.booking-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding: clamp(1rem, 4vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  overflow: hidden;
}

.booking-panel-top,
.booking-panel-bottom {
  width: 100%;
}

.booking-panel-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.booking-panel p:not(.eyebrow) { color: rgba(255,255,255,0.7); font-size: 1.1rem; }

.booking-image { min-height: 620px; border-radius: var(--radius); overflow: hidden; }

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

.step { padding: 2rem; }
.step h2 { margin-bottom: 1rem; font-size: clamp(2.4rem, 4vw, 4rem); }
.step p { color: #555; }

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
  color: var(--white);
  background: var(--black);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 240px;
  height: 94px;
  object-fit: cover;
  margin-bottom: 1.2rem;
  transform: translateX(-51px)
}

.site-footer p,
.footer-meta { color: rgba(255,255,255,0.62); }

.footer-links,
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a { width: fit-content; color: rgba(255,255,255,0.82); border-bottom: 1px solid transparent; }
.footer-meta a,
.footer-links a:hover { border-color: currentColor; }
.footer-meta a { color: rgba(255,255,255,0.86); border-bottom: 1px solid rgba(255,255,255,0.34); }
.footer-meta a:hover { color: var(--white); border-color: var(--white); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

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

@media (max-width: 1100px) {
  .intro-grid,
  .manifesto,
  .review-section,
  .contact-layout,
  .map-section,
  .booking-hero { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 1rem;
    color: var(--white);
    background: rgba(3, 3, 3, 0.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.38s var(--ease), opacity 0.38s var(--ease);
  }

  .site-header.menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav a::after { display: none; }
  .nav-book { border: 0; border-radius: 0; }

  .brand { width: 144px; height: 46px; }
  .hero-content { margin-inline: 1rem; }
  .hero-stats { position: relative; right: auto; bottom: auto; z-index: 4; grid-template-columns: 1fr; margin: -7rem 1rem 1rem; }
  .hero-stats div { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-stats div:last-child { border-bottom: 0; }
  .section { padding-inline: 1rem; }
  .split-section { grid-template-columns: 1fr; }
  .split-media { min-height: 380px; }
  .card-grid.three { grid-template-columns: 1fr; }
  .image-card { min-height: 420px; }
  .cta-band { display: block; }
  .cta-band .button { margin-top: 1.5rem; }
  .service-card { grid-template-columns: 1fr; }
  .service-card img { height: 340px; min-height: 0; }
  .service-card div { min-height: 220px; background: var(--black); position: relative; z-index: 1; }
  .booking-steps { grid-template-columns: 1fr; }
  .booking-image { min-height: 400px; }
  .review-track { min-height: 360px; }
  .carousel-button { top: auto; bottom: 1rem; transform: none; }
  .carousel-button:hover { transform: scale(1.05); }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(3.4rem, 18vw, 5rem); }
  h2 { font-size: clamp(2.3rem, 12vw, 3.8rem); }
  .button { width: 100%; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { min-height: 560px; }
  .page-title,
  .booking-hero { padding-top: 8rem; }
  .review-slide img { max-height: 300px; }
}
