:root {
  --black: #050505;
  --near-black: #0a0a0a;
  --charcoal: #111111;
  --charcoal-2: #181818;
  --cream: #f4f0e8;
  --white: #ffffff;
  --muted: #a8a8a8;
  --dark-muted: #5d5d5d;
  --line: rgba(255, 255, 255, 0.12);
  --dark-line: rgba(0, 0, 0, 0.1);
  --gold: #c9a86a;
  --gold-soft: rgba(201, 168, 106, 0.18);
  --radius-lg: 34px;
  --radius-md: 24px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(20px, calc((100vw - var(--container)) / 2));
  background: rgba(5, 5, 5, 0.58);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: height 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(5, 5, 5, 0.88);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02));
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 10px;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a,
.text-link {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.desktop-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 0.25s ease;
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--white);
}

.desktop-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.pill-button--light {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.12);
}

.pill-button--light:hover {
  background: var(--gold);
  color: var(--black);
}

.pill-button--glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.pill-button--glass:hover {
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  padding: 0;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  border-radius: 99px;
  background: var(--white);
  transition: transform 0.25s ease, top 0.25s ease;
}

.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 28px; }

body.menu-open .menu-toggle span:first-child {
  top: 23px;
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  top: 23px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__inner {
  width: min(100% - 40px, 520px);
  display: grid;
  gap: 10px;
  padding-top: 70px;
}

.mobile-menu__inner a:not(.pill-button) {
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  text-decoration: none;
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.06em;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.32s ease, transform 0.32s ease, background 0.25s ease;
}

body.menu-open .mobile-menu__inner a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__inner a:nth-child(1) { transition-delay: 0.04s; }
.mobile-menu__inner a:nth-child(2) { transition-delay: 0.08s; }
.mobile-menu__inner a:nth-child(3) { transition-delay: 0.12s; }
.mobile-menu__inner a:nth-child(4) { transition-delay: 0.16s; }
.mobile-menu__inner a:nth-child(5) { transition-delay: 0.20s; }
.mobile-menu__inner a:nth-child(6) { transition-delay: 0.24s; }

.mobile-menu__inner a:hover:not(.pill-button) {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 126px 0 76px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.98) 0%, rgba(5,5,5,0.84) 38%, rgba(5,5,5,0.24) 100%),
    url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=2200&q=85") center right / cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

.hero-gradient {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, var(--black));
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.55;
}

.hero-glow--one {
  width: 300px;
  height: 300px;
  left: 8%;
  top: 18%;
  background: rgba(201, 168, 106, 0.18);
}

.hero-glow--two {
  width: 420px;
  height: 420px;
  right: 10%;
  bottom: 10%;
  background: rgba(255, 255, 255, 0.08);
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: end;
  gap: 40px;
}

.hero-copy {
  max-width: 770px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: #806335;
}

.hero h1,
.section-heading h2,
.section-top h2,
.feature-copy h2,
.cta-copy h2 {
  margin: 0;
  font-size: clamp(52px, 8.5vw, 116px);
  line-height: 0.88;
  letter-spacing: -0.085em;
  font-weight: 900;
}

.hero h1 {
  text-wrap: balance;
}

.hero-lede {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.booking-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: rgba(12, 12, 12, 0.68);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.booking-card__label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-card h2 {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.booking-options {
  display: grid;
  gap: 10px;
}

.booking-options a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: background 0.25s ease, transform 0.25s ease;
}

.booking-options a:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.11);
}

.booking-options span {
  color: var(--gold);
  font-size: 12px;
}

.booking-card__cta {
  display: inline-flex;
  gap: 8px;
  margin-top: 22px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.hero-bottom-strip {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.58);
  backdrop-filter: blur(16px);
}

.hero-bottom-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  padding: 112px 0;
}

.section--light {
  background: var(--white);
  color: var(--black);
}

.section--cream {
  background: var(--cream);
  color: var(--black);
}

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

.intro-section {
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: "JUST IN";
  position: absolute;
  right: -2vw;
  top: 20px;
  color: rgba(0, 0, 0, 0.035);
  font-size: clamp(110px, 22vw, 310px);
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: -0.12em;
}

.split-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}

.section-heading h2,
.section-top h2,
.feature-copy h2,
.cta-copy h2 {
  font-size: clamp(40px, 5.6vw, 78px);
}

.intro-copy p,
.section-top > p,
.feature-copy > p,
.cta-copy > p {
  margin: 0;
  color: var(--dark-muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.stats-row div {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--dark-line);
  border-radius: 22px;
  background: #f7f7f4;
}

.stats-row strong {
  font-size: 13px;
  color: #806335;
}

.stats-row span {
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-top {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.section--dark .section-top > p {
  color: rgba(255, 255, 255, 0.62);
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--charcoal);
  min-height: 560px;
  display: grid;
  grid-template-rows: 260px 1fr;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 168, 106, 0.42);
  background: #151515;
}

.service-card__media,
.feature-image,
.gallery-card {
  background-size: cover;
  background-position: center;
}

.service-card__media--one {
  background-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.2)), url("https://images.unsplash.com/photo-1520340356584-f9917d1eea6f?auto=format&fit=crop&w=1200&q=80");
}

.service-card__media--two {
  background-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.2)), url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=1200&q=80");
}

.service-card__media--three {
  background-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.2)), url("https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?auto=format&fit=crop&w=1200&q=80");
}

.service-card__media--four {
  background-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.2)), url("https://images.unsplash.com/photo-1511919884226-fd3cad34687c?auto=format&fit=crop&w=1200&q=80");
}

.service-card__body {
  padding: 30px;
}

.service-card__body span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.service-card h3 {
  margin: 14px 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.68;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.service-card li::before {
  content: "•";
  color: var(--gold);
  margin-right: 10px;
}

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

.feature-image {
  min-height: 640px;
  border-radius: var(--radius-lg);
  background-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.24)), url("https://images.unsplash.com/photo-1603386329225-868f9b1ee6c9?auto=format&fit=crop&w=1400&q=80");
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.14);
}

.feature-copy > p {
  margin-top: 24px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--dark-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
}

.feature-list span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
}

.feature-list p {
  margin: 0;
  color: #474747;
  line-height: 1.55;
}

.results-section {
  position: relative;
}

.results-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 168, 106, 0.12), transparent 35%);
  pointer-events: none;
}

.results-section .container {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 18px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background-color: var(--charcoal-2);
  transition: transform 0.28s ease, filter 0.28s ease;
}

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

.gallery-card:hover {
  transform: translateY(-6px);
  filter: saturate(1.08);
}

.gallery-card figcaption {
  position: relative;
  z-index: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.gallery-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card--wide {
  grid-column: span 2;
}

.gallery-card--one {
  background-image: url("https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?auto=format&fit=crop&w=1400&q=80");
}

.gallery-card--two {
  background-image: url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=900&q=80");
}

.gallery-card--three {
  background-image: url("https://images.unsplash.com/photo-1552519507-da3b142c6e3d?auto=format&fit=crop&w=900&q=80");
}

.gallery-card--four {
  background-image: url("https://images.unsplash.com/photo-1542362567-b07e54358753?auto=format&fit=crop&w=900&q=80");
}

.gallery-card--five {
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1200&q=80");
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-md);
  background: #f7f7f4;
  transition: transform 0.28s ease, background 0.28s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  background: var(--cream);
}

.process-card span {
  color: #806335;
  font-size: 13px;
  font-weight: 900;
}

.process-card h3 {
  margin: auto 0 14px;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.process-card p {
  margin: 0;
  color: var(--dark-muted);
  line-height: 1.6;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
}

.stars {
  color: #806335;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.review-card p {
  margin: 28px 0;
  color: #2c2c2c;
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.review-card strong {
  color: var(--black);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.94), rgba(5,5,5,0.82)),
    url("https://images.unsplash.com/photo-1555353540-64580b51c258?auto=format&fit=crop&w=2200&q=80") center / cover no-repeat;
  color: var(--white);
}

.cta-panel::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  top: -140px;
  border-radius: 50%;
  background: rgba(201, 168, 106, 0.16);
  filter: blur(70px);
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: start;
}

.cta-copy > p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 24px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(5, 5, 5, 0.44);
  color: var(--white);
  outline: none;
  padding: 15px 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(201, 168, 106, 0.7);
  background: rgba(5, 5, 5, 0.64);
}

.form-full {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer {
  padding: 72px 0 26px;
  background: #050505;
  color: var(--white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 40px;
}

.brand--footer {
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.site-footer h4 {
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}

.site-footer a,
.site-footer span {
  display: block;
  width: fit-content;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.footer-bottom span,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal--delay {
  transition-delay: 0.12s;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-actions .text-link,
  .header-actions > .pill-button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .split-layout,
  .feature-grid,
  .cta-grid,
  .section-top {
    grid-template-columns: 1fr;
  }

  .booking-card {
    max-width: 520px;
  }

  .process-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 72px;
    padding-inline: 20px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    padding: 122px 0 0;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.72) 52%, rgba(5,5,5,1) 100%),
      url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=1400&q=80") center / cover no-repeat;
  }

  .hero-grid {
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 90px);
  }

  .booking-card {
    width: 100%;
  }

  .hero-bottom-strip {
    position: relative;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-bottom-strip span {
    min-height: 62px;
    font-size: 11px;
  }

  .section {
    padding: 78px 0;
  }

  .services-grid,
  .stats-row,
  .process-grid,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: unset;
    grid-template-rows: 220px auto;
  }

  .feature-image {
    min-height: 420px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .gallery-card--large,
  .gallery-card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 26px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-buttons {
    display: grid;
  }

  .pill-button {
    width: 100%;
  }

  .hero h1,
  .section-heading h2,
  .section-top h2,
  .feature-copy h2,
  .cta-copy h2 {
    letter-spacing: -0.075em;
  }

  .section-top {
    gap: 24px;
  }

  .service-card__body,
  .process-card,
  .review-card {
    padding: 22px;
  }
}
