:root {
  color-scheme: dark;
  --bg: #0c0e0f;
  --panel: #141718;
  --panel-soft: #191d1e;
  --text: #f7f3ed;
  --muted: #a4a8a6;
  --line: #303536;
  --gold: #dda653;
  --gold-soft: #f2cf99;
  --ink: #171109;
  --radius: 18px;
  --wrap: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 88% 8%, rgba(221, 166, 83, .08), transparent 27rem),
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
.wrap { width: var(--wrap); margin-inline: auto; }
.muted { color: var(--muted); }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--gold);
  color: var(--ink);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(12, 14, 15, .86);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 850; letter-spacing: -.035em; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 12px;
  color: var(--gold);
  font-size: 16px;
}
.brand small { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; letter-spacing: .18em; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 700; }
.nav-links a:not(.button) { color: #d9dcda; transition: color .2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-soft); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 850;
  transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); background: var(--gold-soft); }
.button:disabled { opacity: .55; cursor: progress; transform: none; }
.button-secondary { background: transparent; border: 1px solid rgba(255,255,255,.24); color: var(--text); }
.button-secondary:hover { background: rgba(255,255,255,.06); color: var(--text); }

.hero {
  position: relative;
  min-height: 670px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  isolation: isolate;
  background: #090a0a;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(6,7,7,.98) 0%, rgba(6,7,7,.82) 40%, rgba(6,7,7,.22) 75%, rgba(6,7,7,.08));
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-copy {
  min-height: 670px;
  width: min(670px, 65%);
  padding: 76px 70px 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--gold); font-size: 11px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
h1, h2, h3, p { text-wrap: pretty; }
h1, .display-title {
  margin: 18px 0;
  font-weight: 850;
  line-height: .98;
  letter-spacing: -.06em;
}
h1 { font-size: clamp(48px, 6.4vw, 88px); }
.hero p { max-width: 585px; color: #d0d3d1; font-size: 17px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.trust-strip {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: rgba(7,8,8,.86);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  backdrop-filter: blur(14px);
}
.trust-strip div { min-width: 145px; padding: 18px 22px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-strip div:last-child { border: 0; }
.trust-strip strong { display: block; color: var(--gold); font-size: 20px; }
.trust-strip small { color: #adb1af; }

.section { padding: 112px 0; }
.section-soft { background: var(--panel); border-block: 1px solid rgba(255,255,255,.07); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 34px; margin-bottom: 44px; }
.section-head > p { max-width: 450px; margin: 0; line-height: 1.72; }
.display-title { font-size: clamp(38px, 4.5vw, 64px); max-width: 800px; }
.experience-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.quote-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.quote-card::after { content: "05"; position: absolute; right: -14px; bottom: -68px; color: rgba(221,166,83,.11); font-size: 260px; font-weight: 900; line-height: 1; }
.quote-card blockquote { position: relative; z-index: 1; max-width: 650px; margin: 0; font-size: clamp(30px, 3.2vw, 49px); font-weight: 780; line-height: 1.14; letter-spacing: -.04em; }
.places { position: relative; z-index: 1; display: flex; gap: 12px; flex-wrap: wrap; }
.place { padding: 11px 15px; border: 1px solid var(--line); border-radius: 99px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat { min-height: 200px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; background: var(--panel-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.stat strong { color: var(--gold); font-size: 48px; letter-spacing: -.04em; }
.stat p { margin: 0; color: var(--muted); line-height: 1.5; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 215px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s, transform .2s; }
.service-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.service-card.featured { grid-column: span 2; background: var(--gold); color: var(--ink); border-color: transparent; }
.service-number { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; color: var(--gold); font-weight: 800; }
.featured .service-number { color: var(--ink); opacity: .7; }
.service-card h3 { margin: 26px 0 9px; font-size: 19px; }
.service-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.featured p { color: rgba(23,17,9,.74); }
.price { margin-top: 18px; color: var(--gold); font-weight: 850; }
.featured .price { color: var(--ink); }
.center-action { margin-top: 28px; display: flex; justify-content: flex-end; }

.page-hero { padding: 94px 0 70px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 940px; margin-bottom: 24px; }
.page-hero p { max-width: 720px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.crumbs { margin-bottom: 22px; color: var(--muted); font-size: 12px; }
.crumbs a { color: var(--gold); }
.price-list { display: grid; gap: 10px; }
.price-row { display: grid; grid-template-columns: 54px 1fr auto auto; align-items: center; gap: 18px; padding: 19px 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); }
.price-row:hover { border-color: #5d523f; }
.price-row .code { color: var(--gold); font-size: 11px; font-weight: 900; }
.price-row strong { font-size: 15px; }
.price-row small { max-width: 260px; color: var(--muted); text-align: right; }
.price-row .amount { min-width: 110px; color: var(--gold-soft); text-align: right; font-weight: 850; }
.price-notice { margin-top: 24px; padding: 22px 24px; border-left: 3px solid var(--gold); background: var(--panel); color: var(--muted); line-height: 1.6; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.process-card { padding: 30px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.process-card span { color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.process-card h3 { margin: 42px 0 10px; }
.process-card p { margin: 0; color: var(--muted); line-height: 1.6; }

.landing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.landing-card {
  min-height: 190px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 15px;
  transition: transform .2s, border-color .2s;
}
.landing-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.landing-card span { color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.landing-card h3 { margin: 42px 0 0; font-size: 17px; line-height: 1.25; }
.content-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; }
.content-copy { padding-right: 34px; }
.content-copy h2 { margin: 0 0 20px; font-size: clamp(30px, 4vw, 48px); letter-spacing: -.045em; }
.content-copy h3 { margin: 38px 0 10px; font-size: 22px; }
.content-copy p, .content-copy li { color: var(--muted); line-height: 1.75; }
.content-copy ul { padding-left: 20px; }
.service-facts { display: grid; gap: 12px; position: sticky; top: 114px; }
.fact-card { padding: 24px; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; }
.fact-card small { display: block; margin-bottom: 7px; color: var(--muted); }
.fact-card strong { color: var(--gold-soft); font-size: 20px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { padding: 20px 22px; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; }
.faq-list summary { cursor: pointer; font-weight: 800; }
.faq-list p { margin: 12px 0 0; color: var(--muted); line-height: 1.65; }

.booking-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 30px; align-items: start; }
.booking-intro { position: sticky; top: 116px; }
.booking-intro p { line-height: 1.7; }
.booking-points { list-style: none; padding: 0; margin: 34px 0; }
.booking-points li { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.booking-points li::before { content: "✓"; color: var(--gold); font-weight: 900; }
.form-card { padding: 36px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label, .fieldset-title { color: var(--muted); font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; padding: 15px 14px; color: var(--text); background: var(--bg); border: 1px solid var(--line); border-radius: 13px; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(221,166,83,.1); }
.field textarea { min-height: 86px; resize: vertical; }
.visit-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.visit-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.visit-toggle span { display: block; padding: 14px; text-align: center; border: 1px solid var(--line); border-radius: 13px; font-size: 13px; font-weight: 750; }
.visit-toggle input:checked + span { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.service-picks { max-height: 390px; overflow: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding-right: 6px; }
.pick { display: flex; gap: 10px; align-items: flex-start; padding: 12px; border: 1px solid var(--line); border-radius: 12px; font-size: 12px; cursor: pointer; }
.pick:has(input:checked) { border-color: var(--gold); background: rgba(221,166,83,.06); }
.pick input { margin-top: 2px; accent-color: var(--gold); }
.pick strong { display: block; }
.pick small { display: block; margin-top: 4px; color: var(--gold); }
.summary { margin-top: 24px; padding: 22px; display: flex; align-items: center; justify-content: space-between; gap: 22px; background: var(--bg); border: 1px solid rgba(255,255,255,.05); border-radius: 15px; }
.summary small { display: block; color: var(--muted); }
.total { margin: 4px 0; color: var(--gold); font-size: 34px; font-weight: 900; letter-spacing: -.04em; }
.price-warning { max-width: 450px; line-height: 1.45; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 18px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.consent input { margin-top: 3px; accent-color: var(--gold); }
.consent a { color: var(--gold-soft); text-decoration: underline; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-message { display: none; margin-top: 16px; padding: 14px 16px; border: 1px solid var(--gold); color: var(--gold-soft); border-radius: 12px; line-height: 1.5; }
.form-message.show { display: block; }
.form-message.error { border-color: #b95b5b; color: #efaaaa; }

.legal { max-width: 820px; }
.legal h2 { margin-top: 42px; }
.legal p, .legal li { color: var(--muted); line-height: 1.75; }

.cta-band { display: flex; justify-content: space-between; align-items: center; gap: 32px; padding: 44px; background: var(--gold); color: var(--ink); border-radius: var(--radius); }
.cta-band h2 { margin: 0 0 7px; font-size: clamp(28px, 4vw, 46px); letter-spacing: -.045em; }
.cta-band p { margin: 0; color: rgba(23,17,9,.72); }
.cta-band .button { background: var(--ink); color: var(--text); white-space: nowrap; }
.site-footer { padding: 36px 0 52px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--muted); font-size: 12px; }
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .nav-links a:not(.button) { display: none; }
  .hero, .hero-copy { min-height: 620px; }
  .hero-copy { width: 86%; padding: 48px 44px 170px; }
  .trust-strip { left: 12px; right: 12px; bottom: 12px; }
  .experience-grid, .booking-shell { grid-template-columns: 1fr; }
  .booking-intro { position: static; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .landing-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .content-copy { padding-right: 0; }
  .service-facts { position: static; grid-template-columns: repeat(3, 1fr); }
  .price-row { grid-template-columns: 42px 1fr auto; }
  .price-row small { display: none; }
}

@media (max-width: 640px) {
  :root { --wrap: min(100% - 24px, 1180px); }
  .nav-shell { min-height: 70px; gap: 12px; }
  .brand small { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .nav-links .button { min-height: 42px; padding: 0 12px; font-size: 11px; }
  .hero { min-height: 690px; margin-top: 12px; }
  .hero-copy { min-height: 690px; width: 100%; padding: 38px 22px 205px; }
  .hero h1 { font-size: 48px; }
  .hero p { font-size: 14px; }
  .hero-actions { align-items: stretch; flex-direction: column; width: 100%; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-strip strong { font-size: 16px; }
  .section { padding: 76px 0; }
  .section-head { display: block; }
  .experience-grid, .stats, .service-grid, .form-grid, .service-picks { grid-template-columns: 1fr; }
  .landing-grid, .service-facts { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: auto; }
  .quote-card { min-height: 390px; padding: 28px; }
  .page-hero { padding: 62px 0 50px; }
  .page-hero h1 { font-size: 45px; }
  .price-row { grid-template-columns: 30px 1fr auto; padding: 16px 14px; gap: 10px; }
  .price-row .amount { min-width: 84px; font-size: 13px; }
  .form-card { padding: 21px; }
  .visit-toggle { grid-template-columns: 1fr; }
  .summary { align-items: stretch; flex-direction: column; }
  .summary .button { width: 100%; }
  .cta-band { align-items: stretch; flex-direction: column; padding: 30px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
