:root {
  --bg: #0f0f13;
  --surface: #1a1a24;
  --surface2: #22222f;
  --text: #f0ede8;
  --muted: #a09b93;
  --brand: #e8622a;
  --brand-dark: #c44e1e;
  --border: #2e2e3e;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--brand-dark);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 15, 19, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  gap: 1.4rem;
}

.main-nav a {
  color: #c8c2ba;
  font-weight: 500;
  transition: color 120ms;
}

.main-nav a:hover {
  color: var(--brand);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: var(--brand);
  color: #0a0a0d;
  padding: 0.76rem 1.3rem;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 160ms ease;
  letter-spacing: 0.01em;
}

.btn:hover {
  background: var(--brand-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.btn-sm {
  padding: 0.58rem 0.9rem;
  border-radius: 10px;
  font-size: 0.93rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--surface2);
  border-color: var(--brand);
}

.hero {
  padding: 4.2rem 0 3.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.77rem;
}

h1 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
}

h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
}

h3 {
  margin: 0 0 0.4rem;
}

.lead {
  color: var(--muted);
  line-height: 1.6;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.hero-visual img,
.image-card img {
  width: 100%;
  border-radius: 18px;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.section p {
  color: var(--muted);
  line-height: 1.7;
}

.section-intro {
  margin-bottom: 1.2rem;
}

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

.card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.3rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  transition: border-color 160ms;
}

.card:hover {
  border-color: var(--brand);
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.checklist {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.checklist li {
  margin-bottom: 0.5rem;
}

.booking-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

label {
  display: block;
  margin-bottom: 0.86rem;
  font-size: 0.94rem;
  color: #d4cfc8;
  font-weight: 600;
}

input {
  width: 100%;
  margin-top: 0.38rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.72rem 0.76rem;
  font: inherit;
  color: var(--text);
  background: var(--surface2);
}

input:focus {
  outline: 2px solid rgba(212, 168, 67, 0.3);
  border-color: var(--brand);
}

.consent-line {
  display: flex;
  gap: 0.68rem;
  align-items: flex-start;
  margin: 0.5rem 0;
}

.consent-line input {
  margin-top: 0.16rem;
  width: auto;
}

.consent-line span {
  color: var(--muted);
  line-height: 1.5;
  font-weight: 500;
}

.legal-links {
  margin: 0.7rem 0;
  font-size: 0.94rem;
}

.status-text {
  min-height: 1.4rem;
  margin: 0.55rem 0 0;
  color: var(--brand);
  font-size: 0.93rem;
}

.hidden {
  display: none;
}

.scheduler-section {
  padding-top: 1rem;
}

.booking-frame {
  width: 100%;
  min-height: 840px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}

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

.site-footer {
  background: #09090c;
  color: var(--muted);
  padding: 1.4rem 0;
  border-top: 1px solid var(--border);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-wrap a {
  color: var(--brand);
  margin-left: 0.9rem;
}

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

  .hero-grid,
  .two-col,
  .cards,
  .booking-wrap,
  .contact-grid,
  .field-row {
    grid-template-columns: 1fr;
  }
}
