:root {
  --fire-orange: #E4571E;
  --ember-yellow: #F6C453;
  --charcoal-black: #121212;
  --off-white-ash: #F4F1EC;
  --pine-green: #2F3E34;
  --wood-brown: #6B4A2E;
  --ember-rgb: 246, 196, 83;
  --pine-rgb: 47, 62, 52;
  --wood-rgb: 107, 74, 46;
  --bg: #0f0f0e;
  --panel: #1f1b19;
  --panel-strong: #2a221d;
  --ink: #f4f1ec;
  --muted: #d1c3af;
  --line: rgba(244, 241, 236, 0.14);
  --radius: 14px;
  --maxw: 1140px;
  --shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(900px 700px at -10% 5%, rgba(var(--pine-rgb), 0.18), transparent 62%),
    radial-gradient(900px 700px at 115% -10%, rgba(var(--wood-rgb), 0.2), transparent 58%),
    var(--bg);
}

h1, h2, h3 { margin: 0; font-family: "Cinzel", serif; letter-spacing: 0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 34px, var(--maxw)); margin: 0 auto; }

header {
  position: sticky;
  top: 0;
  z-index: 70;
  backdrop-filter: blur(10px);
  background: rgba(15, 15, 14, 0.78);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  transition: padding 0.3s ease;
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transition: width 0.3s ease, height 0.3s ease;
}

.brand span {
  font-family: "Cinzel", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.045em;
  white-space: nowrap;
  transition: font-size 0.3s ease;
}

.nav-links { display: flex; gap: 16px; color: #e3d7c5; font-size: 14px; }
.nav-mobile-book { display: none; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.09);
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 11px 16px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--fire-orange), var(--ember-yellow));
  color: #29180f;
  box-shadow: 0 12px 24px rgba(228, 87, 30, 0.34);
}

.btn-muted {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--line);
  color: var(--ink);
}

body.scrolled header {
  background: rgba(15, 15, 14, 0.92);
  border-color: rgba(244, 241, 236, 0.18);
}

body.scrolled .nav { padding: 8px 0; }
body.scrolled .brand img { width: 48px; height: 48px; }
body.scrolled .brand span { font-size: 18px; }

.hero {
  min-height: 82vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: clip;
  padding: 74px 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #0f0f0e;
}

.hero-media video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: saturate(0.9) contrast(0.9) brightness(0.7);
}

.hero-fog {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.64) 10%, rgba(21, 16, 12, 0.56) 48%, rgba(0, 0, 0, 0.66) 100%),
    radial-gradient(900px 600px at 50% 50%, rgba(244, 241, 236, 0.18), transparent 60%);
  backdrop-filter: blur(2px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 880px;
  gap: 22px;
  align-items: center;
}

.hero-copy {
  background: rgba(10, 10, 10, 0.56);
  border: 1px solid rgba(244, 241, 236, 0.24);
  color: #f4f1ec;
  border-radius: 16px;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.35);
  padding: 24px;
}

.eyebrow {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ember-yellow);
  background: rgba(246, 196, 83, 0.2);
}

h1 { font-size: clamp(36px, 5.3vw, 62px); line-height: 1.05; margin: 14px 0 8px; text-align: center; }

.hero-subtitle {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  margin-bottom: 12px;
  color: #f7e6c8;
  text-align: center;
}

.hero-logo-inline {
  width: min(360px, 70%);
  margin: 6px auto 12px;
  opacity: 0.95;
}

.hero-logo-inline img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.28));
}

.hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.hero-points p {
  border: 1px solid rgba(244, 241, 236, 0.2);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px 12px;
  color: #e7dccb;
  font-size: 15px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.section {
  padding: 72px 0;
  border-top: 1px solid rgba(244, 241, 236, 0.08);
  position: relative;
  overflow: clip;
}

.section.alt { background: rgba(255, 255, 255, 0.03); }

.section::before {
  content: "";
  position: absolute;
  inset: -35% -10% auto -10%;
  height: 280px;
  background: radial-gradient(circle, rgba(var(--ember-rgb), 0.08), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(var(--wood-rgb), 0.3), rgba(var(--ember-rgb), 0.55), rgba(var(--pine-rgb), 0.3));
  pointer-events: none;
  z-index: 0;
}

.section > .container { position: relative; z-index: 1; }

.section-head { display: grid; gap: 10px; margin-bottom: 24px; }
.section-head p { color: var(--muted); max-width: 84ch; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }

.card {
  background: linear-gradient(170deg, var(--panel), #181412);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}

.step {
  background: linear-gradient(165deg, #2d241f, #1e1916);
  border: 1px solid rgba(246, 196, 83, 0.26);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}

.step .num {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ember-yellow);
  font-weight: 700;
}

.service-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }

.service-pills span {
  border: 1px solid rgba(246, 196, 83, 0.34);
  background: rgba(246, 196, 83, 0.08);
  color: #f2d8ac;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 14px;
}

.price { margin: 6px 0; font-size: 30px; color: var(--ember-yellow); font-weight: 700; }
.price-note { margin-top: 10px; color: #d8c5a6; font-size: 14px; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.price-table th,
.price-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(244, 241, 236, 0.1);
  text-align: left;
}

.price-table th {
  color: #f2d8ac;
  font-weight: 600;
  background: rgba(246, 196, 83, 0.08);
}

.price-table tr:last-child td { border-bottom: 0; }

.price-table .amount {
  color: var(--ember-yellow);
  font-weight: 700;
  white-space: nowrap;
}

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

.photo-grid button {
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  cursor: zoom-in;
}

.photo-grid img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s ease; }
.photo-grid button:hover img { transform: scale(1.03); }

.bottom { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 16px; }

.fit-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.quote-block {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.contact {
  border: 1px solid var(--line);
  background: linear-gradient(170deg, var(--panel), #171310);
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--shadow);
}

form { margin-top: 10px; display: grid; gap: 9px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.field-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
  display: inline-block;
}

select {
  width: 100%;
  background: rgba(0, 0, 0, 0.22);
  color: var(--ink);
  border: 1px solid rgba(244, 241, 236, 0.2);
  border-radius: 10px;
  padding: 10px 11px;
  font: inherit;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
  border: 1px solid rgba(244, 241, 236, 0.2);
  border-radius: 10px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.16);
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.turnstile-wrap {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.turnstile-help {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  box-shadow: none;
}

input, textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.22);
  color: var(--ink);
  border: 1px solid rgba(244, 241, 236, 0.2);
  border-radius: 10px;
  padding: 10px 11px;
  font: inherit;
}

textarea { min-height: 110px; resize: vertical; }

.form-status {
  min-height: 20px;
  font-size: 13px;
  color: var(--muted);
}

.form-status.ok { color: #8dd0a3; }
.form-status.err { color: #f5a3a3; }

footer {
  padding: 30px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

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

.reveal.show { opacity: 1; transform: translateY(0); }
.parallax-item { will-change: transform; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 120;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  width: min(1240px, 96vw);
  max-height: 92vh;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.lb-nav,
.lightbox-close {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 8px;
  padding: 9px 12px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}

.lb-image-wrap { display: grid; gap: 10px; justify-items: center; }

.lb-image-wrap img {
  max-width: 100%;
  max-height: calc(92vh - 90px);
  border-radius: 10px;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.45);
}

.lb-meta {
  color: #e7e2d8;
  font-size: 13px;
  display: flex;
  gap: 12px;
  align-items: center;
}

@media (max-width: 1200px) {
  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    row-gap: 10px;
  }
  .brand img { width: 48px; height: 48px; }
  .brand span {
    font-size: clamp(14px, 4.4vw, 18px);
    letter-spacing: 0.03em;
  }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .nav .btn-primary {
    display: inline-flex;
    padding: 9px 12px;
    font-size: 13px;
  }
  .nav-links {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    gap: 6px;
    background: rgba(15, 15, 14, 0.94);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
  }
  body.nav-open .nav-links { display: flex; }
  .nav-links a {
    padding: 10px 12px;
    border-radius: 8px;
  }
  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(255, 255, 255, 0.09);
  }
  .nav-mobile-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    background: linear-gradient(135deg, var(--fire-orange), var(--ember-yellow));
    color: #29180f;
    font-weight: 700;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .nav-mobile-book { display: none; }
}

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

@media (max-width: 980px) {
  .grid-2, .bottom { grid-template-columns: 1fr; }
  .grid-4, .grid-3, .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-row, .checkbox-grid { grid-template-columns: 1fr; }
  .lightbox-inner { grid-template-columns: 1fr; }
  .lb-nav { justify-self: center; }
}

@media (max-width: 640px) {
  .grid-4, .grid-3, .photo-grid, .hero-points { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { padding: 16px; }
  .hero-logo-inline { width: min(280px, 78%); }
  .container.nav { width: min(100% - 22px, var(--maxw)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .photo-grid img, .brand img, .brand span, .nav { transition: none; }
  .hero-media video { display: none; }
}
