/* ===== Design Tokens ===== */
:root {
  --bg: #14110d;
  --surface: #1d1a15;
  --surface-2: #262119;
  --text: #f5f0e6;
  --muted: #a89f8d;
  --gold: #d8b26a;
  --gold-soft: rgba(216, 178, 106, 0.12);
  --border: rgba(216, 178, 106, 0.18);
  --radius: 14px;
  --max: 1100px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: 20px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
}
.btn-gold { background: var(--gold); color: #1a1712; }
.btn-gold:hover { transform: scale(1.03); }
.btn-outline { border-color: var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(20, 17, 13, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding-block: 16px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(216, 178, 106, 0.5);
  background: var(--gold-soft);
  color: var(--gold);
}
.logo-mark svg { width: 20px; height: 20px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; letter-spacing: 0.02em; }
.logo-sub { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); margin-top: 4px; }
.nav-links { display: flex; gap: 36px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { padding: 10px 22px; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(20,17,13,0.85) 45%, rgba(20,17,13,0.3) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 40%);
}
.hero-inner { position: relative; padding-top: 100px; }
.hero-content { max-width: 560px; }
.badge {
  display: inline-block;
  border: 1px solid rgba(216, 178, 106, 0.4);
  background: rgba(216, 178, 106, 0.06);
  color: var(--gold);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  padding: 7px 16px;
  border-radius: 999px;
}
.hero-content h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-top: 24px; }
.hero-content p { color: var(--muted); font-size: 1.05rem; margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 440px; margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stats dt { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 600; color: var(--gold); }
.stats dd { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); margin-top: 4px; }

/* ===== Section basics ===== */
.section { padding-block: 96px; }
.section-alt { background: var(--surface); border-block: 1px solid var(--border); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-top: 12px; }
.section-head p { color: var(--muted); margin-top: 16px; }

/* ===== Carousel (CSS only) ===== */
.carousel {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.slide { position: relative; min-width: 100%; scroll-snap-align: start; }
.slide img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.slide-caption {
  position: absolute; inset: auto 0 0 0;
  padding: 40px;
  background: linear-gradient(0deg, var(--bg) 5%, rgba(20,17,13,0.65) 45%, transparent 100%);
}
.slide-title { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.slide-title h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
.price {
  border: 1px solid rgba(216, 178, 106, 0.4);
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 0.85rem; font-weight: 600;
  padding: 5px 14px; border-radius: 999px;
}
.slide-caption p { color: var(--muted); font-size: 0.95rem; margin-top: 12px; max-width: 480px; }

.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.carousel-dots a {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border);
  transition: background 0.2s, transform 0.2s;
}
.carousel-dots a:hover { background: var(--gold); transform: scale(1.2); }
.carousel-hint { text-align: center; color: var(--muted); font-size: 0.8rem; margin-top: 14px; }

/* ===== Cards grid ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s;
}
.card:hover { border-color: rgba(216, 178, 106, 0.5); }
.stars { color: var(--gold); letter-spacing: 2px; }
.card blockquote { color: var(--muted); margin-top: 20px; flex: 1; }
.card figcaption { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.card .name { display: block; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; }
.card .role { display: block; font-size: 0.85rem; color: var(--gold); margin-top: 2px; }

/* ===== About ===== */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-image { position: relative; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.about-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-top: 12px; }
.about-text > p { color: var(--muted); margin-top: 20px; }
.features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.features li { display: flex; gap: 16px; }
.feature-icon {
  position: relative;
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(216, 178, 106, 0.4);
  background: var(--gold-soft);
}
.feature-icon::before {
  content: "";
  position: absolute; left: 50%; top: 46%;
  width: 8px; height: 14px;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.features h3 { font-size: 1.1rem; }
.features li p { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }

/* ===== Packages ===== */
.packages { margin-bottom: 56px; }
.package {
  position: relative;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 20px;
  padding: 32px;
  display: flex; flex-direction: column;
}
.package.featured { border-color: var(--gold); background: rgba(216, 178, 106, 0.06); }
.package-tag {
  position: absolute; top: -14px; left: 32px;
  background: var(--gold); color: #1a1712;
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 14px; border-radius: 999px;
}
.package h3 { font-size: 1.3rem; }
.package-price { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 600; color: var(--gold); margin-top: 12px; }
.package ul { margin-top: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.package ul li { color: var(--muted); font-size: 0.9rem; padding-left: 26px; position: relative; }
.package ul li::before {
  content: "";
  position: absolute; left: 3px; top: 5px;
  width: 6px; height: 10px;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.package .btn { margin-top: 28px; text-align: center; }

/* ===== Order form ===== */
.order-form {
  max-width: 640px; margin: 0 auto;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 20px;
  padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.order-form h3 { font-size: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.85rem; font-weight: 500; }
.field input, .field select, .field textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; }
.order-form .btn { align-self: flex-start; margin-top: 4px; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); background: var(--bg); padding-block: 56px 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer .logo { margin-bottom: 16px; }
.footer-desc { color: var(--muted); font-size: 0.9rem; max-width: 320px; }
.footer h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links li, .footer-links a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.copyright { text-align: center; border-top: 1px solid var(--border); margin-top: 40px; padding-top: 24px; color: var(--muted); font-size: 0.78rem; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .slide img { aspect-ratio: 4 / 3; }
  .slide-caption { padding: 24px; }
}
