:root {
  --black: #050505;
  --charcoal: #111111;
  --panel: #181818;
  --gold: #d6a931;
  --gold-light: #f5d879;
  --cream: #fff8e5;
  --muted: #b8b2a5;
  --line: rgba(214, 169, 49, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(5, 5, 5, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 20%, var(--gold-light), var(--gold) 46%, #6e5013);
  color: var(--black);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold-light);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover,
.call-link:hover {
  color: var(--gold-light);
}

.nav-cta,
.call-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
}

.nav-cta,
.call-link {
  color: var(--gold-light);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  padding: 104px 22px;
  text-align: center;
}

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

.hero-video {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
}

.hero-fallback {
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(5, 5, 5, 0.9), rgba(24, 24, 24, 0.62)),
    url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-overlay {
  z-index: 2;
  background:
    radial-gradient(circle at center, rgba(214, 169, 49, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.9));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(920px, 100%);
}

.eyebrow,
.label,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 14px;
  background: rgba(5, 5, 5, 0.48);
}

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

h1 {
  max-width: 900px;
  margin: 20px auto 18px;
  font-family: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--gold-light);
  font-size: clamp(2.7rem, 6.2vw, 5.75rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.12), 0 18px 44px rgba(0, 0, 0, 0.72);
}

.hero-content p {
  max-width: 720px;
  margin: 0 auto 32px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 248, 229, 0.86);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

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

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:active,
button:active {
  transform: scale(0.97);
}

.button-primary,
button {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #090909;
}

.button-secondary {
  border-color: rgba(255, 248, 229, 0.55);
  color: var(--cream);
  background: rgba(5, 5, 5, 0.32);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 800;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(5, 5, 5, 0.42);
}

.areas {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--gold);
  color: var(--black);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee span {
  padding: 18px 28px;
  font-weight: 1000;
  white-space: nowrap;
}

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

.section {
  padding: 88px clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.label {
  padding: 7px 13px;
  margin-bottom: 14px;
}

h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.service-card p,
.steps p,
.why p,
.reviews p,
.booking p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.service-grid,
.pricing-grid,
.feature-grid,
.review-grid,
.steps {
  display: grid;
  gap: 22px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

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

.service-card,
.price-card,
.feature-grid article,
.review-grid article,
.steps article,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 248, 229, 0.075), rgba(255, 248, 229, 0.035));
  box-shadow: var(--shadow);
}

.service-card {
  padding: 34px;
}

.service-card.featured {
  background: linear-gradient(155deg, rgba(214, 169, 49, 0.22), rgba(255, 248, 229, 0.06));
}

.service-card .icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 1000;
}

.service-card h3,
.price-card h3,
.feature-grid h3,
.review-grid strong,
.steps h3 {
  color: var(--gold-light);
}

ul {
  margin: 22px 0;
  padding-left: 20px;
  color: var(--cream);
  line-height: 1.9;
}

.service-card a {
  color: var(--gold-light);
  font-weight: 900;
}

.process,
.reviews {
  background: #0b0b0b;
}

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

.steps article {
  padding: 28px;
}

.steps strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
}

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

.price-card {
  position: relative;
  padding: 26px;
}

.price-card.popular {
  border-color: var(--gold-light);
}

.badge {
  margin-bottom: 14px;
  padding: 6px 10px;
  background: rgba(214, 169, 49, 0.14);
}

.price {
  color: var(--gold-light);
  font-size: 2.75rem;
  font-weight: 1000;
}

.price small {
  color: var(--muted);
  font-size: 0.86rem;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: 38px;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0a, #171204);
}

.booking-panel {
  display: grid;
  gap: 18px;
}

.calendar-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 248, 229, 0.06);
  box-shadow: var(--shadow);
}

.calendar-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.calendar-top strong {
  color: var(--gold-light);
  font-size: 1.2rem;
}

.calendar-top span {
  color: var(--muted);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-grid span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-grid button {
  min-height: 44px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid rgba(214, 169, 49, 0.22);
  background: #0a0a0a;
  color: var(--cream);
}

.calendar-grid button:disabled {
  cursor: not-allowed;
  color: rgba(184, 178, 165, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

.calendar-grid .active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--cream);
  font-weight: 800;
}

input,
select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #090909;
  color: var(--cream);
  font: inherit;
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
}

.booking-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(5, 5, 5, 0.55);
}

.booking-summary span {
  color: var(--muted);
  font-weight: 800;
}

.booking-summary strong {
  color: var(--gold-light);
}

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

.feature-grid article,
.review-grid article {
  padding: 24px;
}

.stars {
  display: block;
  color: var(--gold-light);
  font-size: 2rem;
  margin-bottom: 12px;
}

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

.review-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.footer {
  background: #050505;
  border-top: 1px solid var(--line);
}

.footer-cta {
  padding: 72px 18px;
  text-align: center;
}

.footer-bottom {
  padding: 30px 18px;
  text-align: center;
  border-top: 1px solid rgba(214, 169, 49, 0.18);
}

.footer-bottom a {
  color: var(--gold-light);
}

@media (hover: hover) {
  .service-card:hover,
  .price-card:hover,
  .feature-grid article:hover,
  .review-grid article:hover {
    transform: translateY(-4px);
    border-color: var(--gold-light);
  }

  .service-card,
  .price-card,
  .feature-grid article,
  .review-grid article {
    transition: transform 200ms ease, border-color 200ms ease;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .site-header {
    gap: 12px;
  }

  .call-link {
    padding: 9px 12px;
    font-size: 0.88rem;
  }

  .service-grid,
  .steps,
  .booking,
  .feature-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
  }

  .call-link {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 760px;
    padding: 76px 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .service-card,
  .price-card,
  .booking-form {
    padding: 22px;
  }
}
