
:root {
  --black: #0a0908;
  --dark: #14110f;
  --dark-2: #1c1916;
  --wood: #2a211a;
  --wood-light: #3a2e24;
  --beige: #d9c3a3;
  --beige-soft: #e8d5b5;
  --orange: #e08c45;
  --orange-glow: #f4a261;
  --text: #ece6dc;
  --text-muted: #8a8278;
  --line: rgba(217, 195, 163, 0.12);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  --radius: 14px;
  --max: 1200px;
  --shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
  --glow: 0 0 80px rgba(244, 162, 97, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--orange-glow);
  margin-bottom: 14px;
  font-weight: 500;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: 0.5px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
h3 { font-size: 1.5rem; }

.muted { color: var(--text-muted); font-size: 0.9rem; }

.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 9, 8, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10, 9, 8, 0.92);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.4rem; }
.brand-mark { color: var(--orange-glow); font-size: 1.6rem; }
.nav-links { list-style: none; display: flex; gap: 36px; }
.nav-link {
  font-size: 0.88rem; color: var(--text); position: relative;
  padding: 6px 0; transition: color 0.2s;
}
.nav-link::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--orange-glow);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--beige-soft); }
.nav-link.active::after, .nav-link:hover::after { transform: scaleX(1); }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px;
}
.hamburger span {
  display: block; height: 1.5px; background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(224, 140, 69, 0.15), transparent 60%),
    linear-gradient(180deg, var(--dark) 0%, var(--black) 70%, #000 100%);
  z-index: 0;
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    url("https://source.unsplash.com/1600x1000/?hottub,night,wood");
  background-size: cover; background-position: center;
  opacity: 0.18; mix-blend-mode: luminosity;
}
.hero-glow {
  position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.25), transparent 60%);
  filter: blur(40px); z-index: 0; pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 500;
  line-height: 1; letter-spacing: -0.02em;
  background: linear-gradient(180deg, var(--beige-soft), var(--orange-glow));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--beige);
  font-style: italic;
}
.hero-tag {
  text-transform: uppercase; letter-spacing: 0.4em;
  font-size: 0.78rem; color: var(--text-muted);
  margin: 18px 0 36px;
}
.hero-intro {
  max-width: 620px; margin: 50px auto 0;
  color: var(--text-muted); font-size: 0.98rem;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  border: none; cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body); font-weight: 500;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-glow) 100%);
  color: var(--black);
  box-shadow: var(--glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 100px rgba(244, 162, 97, 0.45);
}
.btn-block { width: 100%; }

.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: var(--orange-glow); font-size: 1.4rem;
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50% { transform: translate(-50%, 10px); opacity: 1; }
}

.features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 70px;
}
.feature {
  padding: 36px 24px;
  background: linear-gradient(180deg, rgba(42, 33, 26, 0.5), rgba(20, 17, 15, 0.5));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.feature:hover { transform: translateY(-6px); border-color: rgba(244, 162, 97, 0.3); }
.feature-icon {
  width: 56px; height: 56px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(244, 162, 97, 0.1);
  color: var(--orange-glow);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--beige-soft); }
.feature p { color: var(--text-muted); font-size: 0.9rem; }

.section { padding: 120px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%); }
.section-head { text-align: center; margin-bottom: 70px; }
.section-sub { color: var(--text-muted); max-width: 560px; margin: 12px auto 0; }

.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  align-items: stretch;
}
.price-card {
  position: relative;
  padding: 44px 32px;
  background: linear-gradient(180deg, var(--dark-2), var(--dark));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s, border-color 0.4s;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(244, 162, 97, 0.3); }
.price-card.popular {
  border: 1px solid rgba(244, 162, 97, 0.4);
  background: linear-gradient(180deg, var(--wood-light), var(--wood));
  box-shadow: var(--glow);
  transform: scale(1.04);
}
.price-card.popular:hover { transform: scale(1.04) translateY(-6px); }
.badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange-glow));
  color: var(--black); font-size: 0.7rem;
  letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600;
  padding: 6px 18px; border-radius: 999px;
}
.price-card h3 { font-size: 2.2rem; color: var(--beige-soft); }
.price-period { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 24px; }
.price-amount {
  font-family: var(--font-display); font-size: 3.4rem;
  color: var(--orange-glow); margin-bottom: 24px; line-height: 1;
}
.price-amount span { font-size: 1rem; color: var(--text-muted); margin-left: 6px; }
.price-card ul { list-style: none; }
.price-card li {
  padding: 10px 0; border-top: 1px solid var(--line);
  font-size: 0.9rem; color: var(--text);
}
.price-card li:first-child { border-top: none; }
.price-note {
  text-align: center; max-width: 640px; margin: 50px auto 0;
  color: var(--text-muted); font-size: 0.88rem; font-style: italic;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.5s, filter 0.5s;
  filter: brightness(0.85) saturate(0.85);
}
.gallery-img:hover { transform: scale(1.03); filter: brightness(1) saturate(1); }

/* Lightbox */

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 30px;
  animation: fadeIn 0.3s ease;
}
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 24px; right: 30px;
  background: none; border: none; color: var(--text);
  font-size: 2.5rem; cursor: pointer; line-height: 1;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }


.guide-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(244, 162, 97, 0.08), transparent 35%),
    linear-gradient(180deg, var(--black), var(--dark));
}

.guide-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 70px;
  align-items: start;
}

.guide-intro {
  position: sticky;
  top: 120px;
}

.guide-intro h2 {
  margin-bottom: 22px;
}

.guide-intro > p {
  color: var(--text-muted);
  max-width: 420px;
  font-size: 0.98rem;
}

.guide-alert {
  margin-top: 34px;
  padding: 24px 26px;
  border-radius: var(--radius);
  background: rgba(224, 140, 69, 0.08);
  border: 1px solid rgba(244, 162, 97, 0.28);
  border-left: 3px solid var(--orange-glow);
}

.guide-alert span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--orange-glow);
  font-weight: 600;
}

.guide-alert p {
  color: var(--beige-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.guide-steps {
  position: relative;
  padding-left: 34px;
}

.guide-steps::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 6px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(244, 162, 97, 0),
    rgba(244, 162, 97, 0.45),
    rgba(244, 162, 97, 0)
  );
}

.guide-step {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 0 0 42px;
}

.guide-step:last-child {
  padding-bottom: 0;
}

.guide-step::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange-glow);
  box-shadow: 0 0 24px rgba(244, 162, 97, 0.6);
}

.guide-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: rgba(232, 213, 181, 0.35);
}

.guide-step h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--beige-soft);
  margin-bottom: 8px;
}

.guide-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 620px;
}

.step-group-title,
.steps,
.step,
.step-num,
.step-icon,
.warning {
}

@media (max-width: 900px) {
  .guide-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .guide-intro {
    position: static;
  }

  .guide-steps {
    padding-left: 28px;
  }

  .guide-step {
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }

  .guide-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 520px) {
  .guide-step {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 34px;
  }

  .guide-number {
    font-size: 1.4rem;
  }

  .guide-step h3 {
    font-size: 1.35rem;
  }
}

.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--text-muted);
}
.form input, .form select, .form textarea {
  font-family: var(--font-body); font-size: 0.95rem;
  background: var(--dark-2);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 10px;
  transition: border-color 0.3s, background 0.3s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--orange-glow); background: var(--wood);
}
.form textarea { resize: vertical; }
.form-msg {
  text-align: center; padding: 14px;
  background: rgba(244, 162, 97, 0.12);
  border: 1px solid rgba(244, 162, 97, 0.3);
  color: var(--beige-soft); border-radius: 10px;
}

.cta-section {
  padding: 100px 0;
  text-align: center;
}
.cta-inner h2 { margin-bottom: 12px; }
.cta-inner p { color: var(--text-muted); margin-bottom: 36px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 22px;
  justify-content: center;
}
.contact-card {
  padding: 32px 24px;
  background: linear-gradient(180deg, var(--dark-2), var(--dark));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.contact-card:hover { border-color: rgba(244, 162, 97, 0.3); transform: translateY(-4px); }
.contact-label {
  display: block; font-size: 0.72rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px;
}
.contact-card a { color: var(--beige-soft); transition: color 0.2s; }
.contact-card a:hover { color: var(--orange-glow); }
.socials { display: flex; gap: 18px; justify-content: center; }

.footer {
  background: #050403;
  padding: 60px 0 24px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
}
.footer h4 {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--orange-glow); margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--beige-soft); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 24px; text-align: center;
}

.to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-glow));
  color: var(--black); border: none; cursor: pointer;
  font-size: 1.3rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: var(--glow);
  z-index: 90;
}
.to-top.visible { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .features, .price-grid, .steps, .contact-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-6px); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }

  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(10, 9, 8, 0.97);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.4s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 16px; }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .hero { padding: 110px 0 60px; }
}

:root {
  --black: #0b0a08;
  --dark: #15120f;
  --dark-2: #1f1a15;
  --wood: #2b2119;
  --wood-light: #403123;

  --beige: #cdb894;
  --beige-soft: #eadcc2;
  --orange: #b8733f;
  --orange-glow: #d49a62;

  --text: #f3eee5;
  --text-muted: #a99d8c;
  --line: rgba(234, 220, 194, 0.13);

  --radius: 18px;
  --shadow: 0 28px 80px -35px rgba(0, 0, 0, 0.75);
  --glow: 0 18px 60px rgba(180, 113, 63, 0.18);
}

body {
  background:
    radial-gradient(circle at 50% -10%, rgba(180, 113, 63, 0.11), transparent 34%),
    linear-gradient(180deg, #100d0b 0%, #090807 100%);
  color: var(--text);
}

.container {
  padding-left: 28px;
  padding-right: 28px;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.01em;
}

h2 {
  color: var(--beige-soft);
  line-height: 1.05;
}

.eyebrow {
  color: var(--orange-glow);
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  opacity: 0.95;
}

.section-sub,
.hero-intro,
.muted {
  color: var(--text-muted);
}


.navbar {
  background: rgba(11, 10, 8, 0.58);
  border-bottom: 1px solid rgba(234, 220, 194, 0.06);
}

.navbar.scrolled {
  background: rgba(11, 10, 8, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.brand {
  font-size: 1.35rem;
}

.brand-mark {
  color: var(--beige);
  opacity: 0.9;
}

.nav-links {
  gap: 30px;
}

.nav-link {
  color: rgba(243, 238, 229, 0.78);
  font-size: 0.84rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--beige-soft);
}

.nav-link::after {
  background: var(--beige);
  opacity: 0.7;
}


.hero {
  min-height: 96vh;
  padding-top: 130px;
  background: #0b0a08;
}

.hero-bg {
  background:
    linear-gradient(180deg, rgba(11, 10, 8, 0.18), rgba(11, 10, 8, 0.88)),
    radial-gradient(circle at 50% 28%, rgba(212, 154, 98, 0.16), transparent 34%),
    linear-gradient(180deg, #19130f 0%, #0b0a08 76%);
}

.hero-bg::before {
  opacity: 0.24;
  filter: contrast(1.05) saturate(0.7) brightness(0.8);
  mix-blend-mode: normal;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.42), transparent 24%, transparent 76%, rgba(0,0,0,0.42)),
    linear-gradient(180deg, rgba(0,0,0,0.35), transparent 42%, rgba(0,0,0,0.82));
}

.hero-glow {
  width: 920px;
  height: 420px;
  background: radial-gradient(circle, rgba(180, 113, 63, 0.18), transparent 64%);
  filter: blur(55px);
}

.hero-title {
  background: linear-gradient(180deg, #fff6e8 0%, #d8bf98 52%, #a96f3e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.045em;
}

.hero-sub {
  color: #d8c4a2;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

.hero-tag {
  color: rgba(234, 220, 194, 0.55);
  letter-spacing: 0.32em;
}

.hero-intro {
  max-width: 640px;
  margin-top: 46px;
  font-size: 1rem;
}


.btn {
  padding: 15px 34px;
  letter-spacing: 0.15em;
  border-radius: 999px;
}

.btn-primary {
  background: linear-gradient(135deg, #d7b177 0%, #b8733f 100%);
  color: #120d09;
  box-shadow:
    0 14px 40px rgba(184, 115, 63, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 54px rgba(184, 115, 63, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.28);
}


.features {
  gap: 18px;
  margin-top: 74px;
}

.feature {
  background:
    linear-gradient(180deg, rgba(44, 35, 27, 0.58), rgba(17, 14, 11, 0.72));
  border: 1px solid rgba(234, 220, 194, 0.1);
  border-radius: 22px;
  box-shadow: 0 20px 70px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}

.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(205, 184, 148, 0.28);
}

.feature-icon {
  background: rgba(205, 184, 148, 0.08);
  color: var(--beige);
}

.feature h3 {
  color: var(--beige-soft);
}

.feature p {
  color: var(--text-muted);
}


.section {
  padding: 118px 0;
}

.section-alt {
  background:
    radial-gradient(circle at 80% 0%, rgba(180, 113, 63, 0.08), transparent 32%),
    linear-gradient(180deg, #120f0d 0%, #0b0a08 100%);
}

.section-head {
  margin-bottom: 64px;
}


.price-grid {
  gap: 22px;
}

.price-card {
  padding: 42px 32px;
  background:
    linear-gradient(180deg, rgba(37, 30, 24, 0.95), rgba(18, 15, 12, 0.98));
  border: 1px solid rgba(234, 220, 194, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(205, 184, 148, 0.24);
}

.price-card.popular {
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 154, 98, 0.16), transparent 44%),
    linear-gradient(180deg, #33271d, #17120e);
  border-color: rgba(212, 154, 98, 0.32);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.46),
    0 18px 60px rgba(184, 115, 63, 0.16);
}

.badge {
  background: #d8b57b;
  color: #120d09;
  letter-spacing: 0.17em;
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
}

.price-card h3 {
  color: var(--beige-soft);
}

.price-period {
  color: var(--text-muted);
}

.price-amount {
  color: #d8b57b;
}

.price-amount span {
  color: rgba(234, 220, 194, 0.5);
}

.price-card li {
  border-top-color: rgba(234, 220, 194, 0.1);
  color: rgba(243, 238, 229, 0.82);
}


.gallery {
  gap: 14px;
}

.gallery-img {
  border-radius: 22px;
  filter: brightness(0.78) saturate(0.78) contrast(1.04);
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}

.gallery-img:hover {
  transform: scale(1.025);
  filter: brightness(0.98) saturate(0.95) contrast(1.04);
}


.lightbox[hidden] {
  display: none;
}

.lightbox {
  background: rgba(8, 7, 6, 0.94);
  backdrop-filter: blur(8px);
}

.lightbox img {
  border-radius: 22px;
  box-shadow: 0 30px 120px rgba(0,0,0,0.75);
}


.guide-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(205, 184, 148, 0.07), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(184, 115, 63, 0.08), transparent 34%),
    linear-gradient(180deg, #0b0a08 0%, #15120f 100%);
}

.guide-layout {
  gap: 86px;
}

.guide-intro h2 {
  color: #f1e5cf;
}

.guide-intro > p {
  color: rgba(234, 220, 194, 0.62);
  line-height: 1.8;
}

.guide-alert {
  background:
    linear-gradient(180deg, rgba(205, 184, 148, 0.08), rgba(205, 184, 148, 0.035));
  border: 1px solid rgba(205, 184, 148, 0.18);
  border-left: 3px solid #c9a76f;
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}

.guide-alert span {
  color: #d8b57b;
}

.guide-alert p {
  color: #eadcc2;
}

.guide-steps::before {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(205, 184, 148, 0.42),
    transparent
  );
}

.guide-step::before {
  background: #c9a76f;
  box-shadow: 0 0 0 6px rgba(201, 167, 111, 0.08), 0 0 30px rgba(201, 167, 111, 0.38);
}

.guide-number {
  color: rgba(205, 184, 148, 0.32);
}

.guide-step h3 {
  color: #eadcc2;
  font-size: 1.48rem;
}

.guide-step p {
  color: rgba(234, 220, 194, 0.58);
}


.form {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(37, 30, 24, 0.72), rgba(17, 14, 11, 0.78));
  border: 1px solid rgba(234, 220, 194, 0.1);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.form label {
  letter-spacing: 0.14em;
  color: rgba(234, 220, 194, 0.55);
}

.form input,
.form select,
.form textarea {
  background: rgba(9, 8, 7, 0.55);
  border: 1px solid rgba(234, 220, 194, 0.12);
  color: var(--text);
  border-radius: 14px;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: rgba(216, 181, 123, 0.58);
  background: rgba(28, 22, 17, 0.88);
  box-shadow: 0 0 0 4px rgba(216, 181, 123, 0.08);
}

.form-msg {
  background: rgba(205, 184, 148, 0.08);
  border-color: rgba(205, 184, 148, 0.2);
  color: var(--beige-soft);
}



.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 34px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(234, 220, 194, 0.055), rgba(234, 220, 194, 0.02));
  border: 1px solid rgba(234, 220, 194, 0.1);
  box-shadow: var(--shadow);
}

.cta-inner h2 {
  color: #f1e5cf;
}


.contact-grid {
  gap: 18px;
}

.contact-card {
  background:
    linear-gradient(180deg, rgba(37, 30, 24, 0.85), rgba(17, 14, 11, 0.92));
  border: 1px solid rgba(234, 220, 194, 0.1);
  border-radius: 22px;
  box-shadow: 0 22px 70px rgba(0,0,0,0.24);
}

.contact-card:hover {
  border-color: rgba(205, 184, 148, 0.24);
}

.contact-label {
  color: rgba(234, 220, 194, 0.48);
  letter-spacing: 0.22em;
}

.contact-card a {
  color: #eadcc2;
}



.footer {
  background: #070605;
  border-top: 1px solid rgba(234, 220, 194, 0.08);
}

.footer h4 {
  color: #c9a76f;
  letter-spacing: 0.22em;
}

.footer-links a {
  color: rgba(234, 220, 194, 0.48);
}

.footer-links a:hover {
  color: var(--beige-soft);
}

.footer-bottom {
  border-top-color: rgba(234, 220, 194, 0.08);
}


.to-top {
  background: linear-gradient(135deg, #d8b57b, #b8733f);
  box-shadow: 0 18px 50px rgba(184, 115, 63, 0.22);
}


@media (max-width: 900px) {
  .nav-links {
    background: rgba(11, 10, 8, 0.98);
  }

  .features,
  .price-grid,
  .contact-grid {
    gap: 18px;
  }

  .form {
    padding: 26px;
  }

  .cta-inner {
    padding: 54px 24px;
  }
}

@media (max-width: 520px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title {
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }

  .hero-tag {
    letter-spacing: 0.22em;
  }

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

  .form {
    padding: 22px;
  }
}


.brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  height: 100px;
  width: auto;
  display: block;
  padding-top: 10px;
}

.footer-logo img {
  height: 82px;
}

.hamburger {
  position: relative;
  z-index: 160;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .brand-logo img {
    height: 54px;
  }

  .hamburger {
    display: flex !important;
  }

  .nav-inner {
    height: 76px;
  }
}

@media (max-width: 520px) {
  .brand-logo img {
    height: 80px;
  }

  .footer-logo img {
    height: 74px;
  }
}


.hamburger {
  position: relative;
  z-index: 999;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: rgba(234, 220, 194, 0.08);
  border: 1px solid rgba(234, 220, 194, 0.18);
  border-radius: 12px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  display: block;
  background: #eadcc2;
  border-radius: 999px;
  opacity: 1;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex !important;
  }
}