/* ---------- Tokens ---------- */
:root {
  --black: #000000;
  --bg: #050505;
  --bg-2: #0d0d0d;
  --bg-3: #141414;
  --navy: #0c1f3a;
  --navy-2: #103057;
  --navy-soft: rgba(46, 95, 168, 0.10);
  --line: rgba(86, 134, 204, 0.12);
  --line-strong: rgba(96, 144, 210, 0.26);
  --text: #f5f5f5;
  --muted: #9a9a9a;
  --gold: #d4af37;
  --gold-2: #f5d76e;
  --gold-deep: #a8841d;
  --gold-light: #f8e7a0;
  --radius: 4px;
  --container: 1240px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.1;
}
h1 { font-size: clamp(48px, 8vw, 96px); font-weight: 800; letter-spacing: -0.04em; }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: 22px; }
h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 18px; }
p { margin: 0 0 16px; color: var(--muted); }
.lead { font-size: 18px; color: #d8d8d8; }
.muted { color: var(--muted); }
.gold { color: var(--gold); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow.gold { color: var(--gold); }
.link-gold {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s var(--ease);
}
.link-gold:hover { border-color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, var(--gold-deep) 100%);
  background-size: 200% 100%;
  background-position: 100% 50%;
  color: #1a1300;
  border-color: var(--gold);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 6px 18px rgba(212,175,55,0.18);
  transition: background-position 0.5s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-gold:hover {
  background-position: 0% 50%;
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 10px 24px rgba(212,175,55,0.32);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.btn-sm { padding: 11px 22px; font-size: 11px; }
.btn-lg { padding: 20px 40px; font-size: 14px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(5, 5, 5, 0.92);
}
.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
}
.nav-left { justify-self: start; }
.nav-right { justify-self: end; }
.nav-row > .logo { justify-self: center; }
.logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.25em;
  color: #fff;
  white-space: nowrap;
}
.logo span { color: var(--gold); }
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
}
.nav a:not(.btn) { color: #d0d0d0; }
.nav a:not(.btn):hover { color: var(--gold); }
.nav a.active:not(.btn) { color: var(--gold); }
.nav a.active:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: var(--gold);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.25s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 28px 100px;
}
.hero-content h1 {
  margin: 0 0 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-content h1 .gold {
  background: linear-gradient(135deg,
    #8a6914 0%,
    #d4af37 18%,
    #f8e7a0 38%,
    #ffd700 50%,
    #f8e7a0 62%,
    #d4af37 82%,
    #8a6914 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 2px 8px rgba(212,175,55,0.25));
}
.hero-tag {
  font-size: clamp(16px, 1.6vw, 20px);
  color: #e0e0e0;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--muted);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ---------- Sections ---------- */
.section {
  padding: 120px 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

/* ---------- Intro ---------- */
.intro {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-grid h2 { margin-bottom: 0; }

/* ---------- Services preview ---------- */
.services-preview { background: var(--bg-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  display: block;
  padding: 40px 32px;
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}
.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(16, 48, 87, 0.35);
}
.service-card:hover::before { transform: translateX(0); }
.service-card h3 { color: #fff; margin-bottom: 12px; }
.service-card p { font-size: 14px; margin-bottom: 24px; }
.service-icon {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card-img {
  margin: -40px -32px 28px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.4s var(--ease), transform 0.6s var(--ease);
}
.service-card:hover .service-card-img img {
  filter: brightness(1);
  transform: scale(1.05);
}
.card-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Gallery ---------- */
.gallery-section { background: var(--bg); }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--bg-3);
  border: 1px solid var(--line);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
  filter: grayscale(20%) brightness(0.95);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1.05);
}

/* ---------- Trust ---------- */
.trust { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-card {
  padding: 36px 28px;
  border-left: 2px solid var(--navy-2);
}
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
}
.trust-card h3 { color: #fff; margin-bottom: 10px; }
.trust-card p { font-size: 14px; margin: 0; }

/* ---------- Areas We Serve ---------- */
.areas { background: var(--bg); border-top: 1px solid var(--line); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 56px 28px;
}
.area-col {
  padding: 0;
  background: transparent;
  border: 0;
}
.area-col h3 {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin: 0 0 22px;
  padding: 0;
  position: relative;
  display: inline-block;
}
.area-col h3::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.area-list li {
  font-size: 12px;
  color: #d8d8d8;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.area-list li:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.06);
}
.areas-note {
  text-align: center;
  margin-top: 56px;
  font-size: 14px;
  color: var(--muted);
}

/* ---------- Booking page ---------- */
.booking-section { background: var(--bg); }
.booking-wrap {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 80px;
  min-height: 600px;
  display: flex;
  align-items: stretch;
  position: relative;
}
.booking-wrap iframe {
  width: 100%;
  min-height: 800px;
  border: 0;
  display: block;
  background: #fff;
}
.booking-placeholder {
  width: 100%;
  padding: 80px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
}
.booking-placeholder-icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 12px;
}
.booking-placeholder h2 { margin-bottom: 12px; font-size: clamp(28px, 3.5vw, 40px); }
.booking-placeholder p { max-width: 540px; margin: 0 auto 28px; }
.booking-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}
.booking-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.booking-info-card {
  padding: 36px 32px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.booking-info-card:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(16, 48, 87, 0.35); }
.booking-info-card h3 { color: #fff; margin-bottom: 12px; }
.booking-info-card p { font-size: 14px; margin: 0; }

/* ---------- Reviews / Marquee ---------- */
.reviews { background: var(--bg); border-top: 1px solid var(--line); padding-bottom: 60px; }
.marquee {
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  flex: 0 0 360px;
  height: 300px;
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.review-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
}
.review-quote {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 2px;
}
.review-date {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.review-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.reviews-footer {
  text-align: center;
  margin-top: 48px;
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  padding: 22px 28px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  list-style: none;
  position: relative;
  padding-right: 56px;
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-item p {
  padding: 0 28px 22px;
  margin: 0;
  font-size: 15px;
  color: #c8c8c8;
  line-height: 1.7;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.10), transparent 55%),
    linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
  padding: 100px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-inner h2 { margin-bottom: 12px; }
.cta-band-inner > div { max-width: 640px; }
.cta-band-inner .lead { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--navy) 0%, #081730 100%);
  border-top: 1px solid var(--line-strong);
  padding: 80px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-grid p { margin: 0 0 8px; font-size: 14px; }
.footer-grid a { color: #c8c8c8; }
.footer-grid a:hover { color: var(--gold); }
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  transition: all 0.25s var(--ease);
}
.socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}
.copyright {
  padding-top: 28px;
  display: flex;
  justify-content: center;
}
.copyright p { font-size: 12px; color: #6a6a6a; margin: 0; }
.copyright .staff-link { color: #6a6a6a; text-decoration: none; }
.copyright .staff-link:hover { color: var(--gold); }

/* ---------- Page banner ---------- */
.page-banner {
  padding: calc(var(--header-h) + 100px) 0 80px;
  background:
    linear-gradient(180deg, rgba(212,175,55,0.05), transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-banner h1 { font-size: clamp(40px, 6vw, 72px); margin-bottom: 18px; }
.page-banner .lead { max-width: 600px; margin: 0 auto; }

/* ---------- Service detail ---------- */
.service-detail { padding: 100px 0; }
.service-detail.alt { background: var(--bg-2); }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
}
.service-copy h2 { margin-bottom: 20px; }
.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
}
.checklist li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: #d8d8d8;
  font-size: 15px;
}
.checklist li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--gold);
  font-size: 12px;
}
.price {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.price span {
  color: var(--gold);
  font-weight: 700;
  font-size: 24px;
  margin-left: 8px;
  letter-spacing: 0;
  text-transform: none;
}

/* ---------- About ---------- */
.about-grid-section { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}
.values { background: var(--bg-2); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  padding: 40px 32px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.value-card h3 { color: #fff; }
.value-card p { font-size: 14px; margin: 0; }

/* ---------- Contact ---------- */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
}
.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field {
  margin-bottom: 22px;
}
.form-field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-3);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #1a1a1a;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 22px) center, calc(100% - 16px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.form-note {
  margin: 16px 0 0;
  color: var(--gold);
  font-size: 14px;
}
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact-block .eyebrow { margin-bottom: 8px; }
.contact-big {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.contact-big:hover { color: var(--gold); }
.contact-text { color: #d8d8d8; margin: 0; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-toggle { order: 0; }
  .nav-row > .logo { order: 1; justify-self: auto; }
  /* Reset the desktop margin-pull hacks so nav-right sits inside the viewport
     and nav-left's drawer slides in from x=0 instead of x=-120px (which made
     the drawer invisible). */
  .nav-right { order: 2; display: flex; gap: 14px; align-items: center; margin-right: 0; }
  .nav-right .nav-cta { padding: 8px 14px; font-size: 10px; }
  .nav-row > .logo { font-size: 14px; letter-spacing: 0.2em; }
  .hero-content > .eyebrow { letter-spacing: 0.15em; }
  .nav-left { margin-left: 0; }
  .nav-left {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    gap: 24px;
    transform: translateX(-100%);
    transition: transform 0.35s var(--ease);
    border-bottom: 1px solid var(--line);
    height: calc(100vh - var(--header-h));
    z-index: 10;
  }
  .nav-left.open { transform: translateX(0); }
  .nav-left a { font-size: 16px; }
  .nav-right .nav-cta { margin-top: 0; }

  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-row, .service-row.reverse, .about-grid {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-card { border-left: none; border-top: 1px solid var(--line); padding: 28px 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .hero-content { padding: 120px 20px 80px; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .trust-grid { grid-template-columns: 1fr; gap: 0; }
  .areas-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-item summary { padding: 18px 20px; padding-right: 48px; font-size: 15px; }
  .faq-item p { padding: 0 20px 18px; font-size: 14px; }
  .review-card { flex-basis: 280px; padding: 22px; }
  .marquee-track { animation-duration: 45s; }
  .booking-info-grid { grid-template-columns: 1fr; }
  .booking-placeholder { padding: 60px 20px; }
  .booking-cta-row { flex-direction: column; width: 100%; }
  .booking-cta-row .btn { width: 100%; }
}
