:root {
  --ink: #0d0d0d;
  --cream: #f5f0e8;
  --accent: #c8a96e;
  --accent2: #e8d5a3;
  --muted: #6b6560;
  --card-bg: #ffffff;
  --border: rgba(200,169,110,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900; letter-spacing: -0.5px;
  color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.brand-logo { height: 28px; width: auto; flex-shrink: 0; object-fit: contain; }
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex; gap: 36px; align-items: center;
}
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: .9rem; font-weight: 500; letter-spacing: .03em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 10px 24px; border-radius: 3px;
  font-weight: 500 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: #333 !important; }

/* Hamburger (mobile only) */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 280px; z-index: 200;
  background: var(--cream);
  border-right: 1px solid var(--border);
  flex-direction: column;
  padding: 28px 24px;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 4px 0 32px rgba(0,0,0,.12);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 900; margin-bottom: 36px;
  display: flex; align-items: center; gap: 8px;
}
.nav-drawer-logo span { color: var(--accent); }
.nav-drawer a {
  display: block; padding: 12px 0;
  font-size: 1.05rem; font-weight: 500;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid rgba(200,169,110,.15);
  transition: color .15s;
}
.nav-drawer a:hover { color: var(--accent); }
.nav-drawer .drawer-cta {
  margin-top: 24px; display: block; text-align: center;
  background: var(--ink); color: var(--cream);
  padding: 14px; border-radius: 3px; font-weight: 600;
  text-decoration: none;
}
.nav-drawer .drawer-social {
  margin-top: 24px; display: flex; gap: 16px;
}
.nav-drawer .drawer-social a {
  border: none; padding: 0; font-size: .9rem;
  color: var(--muted); display: flex; align-items: center; gap: 6px;
}
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 150;
  background: rgba(0,0,0,.4);
}
.nav-overlay.open { display: block; }

/* Social dropdown (desktop) */
.social-dropdown { position: relative; }
.social-btn {
  display: flex; align-items: center; gap: 6px; cursor: pointer;
  color: var(--muted); font-size: .9rem; font-weight: 500;
  background: none; border: none; font-family: 'DM Sans', sans-serif;
  transition: color .2s;
}
.social-btn:hover { color: var(--ink); }
.social-menu {
  position: absolute; top: calc(100% + 12px); right: 0;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 6px; min-width: 160px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s;
}
.social-dropdown::before {
  content: ''; position: absolute;
  top: 100%; left: -8px; right: -8px;
  height: 20px;
}
.social-dropdown:hover .social-menu {
  opacity: 1; pointer-events: all; transform: translateY(0); transition-delay: 0s;
}
.social-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; text-decoration: none;
  color: var(--ink); font-size: .875rem;
  transition: background .15s; border: none;
}
.social-menu a:hover { background: var(--cream); }
.social-menu a svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg video, .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-color { width: 100%; height: 100%; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(13,13,13,.82) 0%, rgba(13,13,13,.45) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 800px; padding: 0 24px;
}
.hero-eyebrow {
  display: inline-block; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
  opacity: 0; animation: fadeUp .8s .2s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.08; color: #fff; font-weight: 900;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp .8s .4s forwards;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 1.15rem; line-height: 1.7;
  color: rgba(255,255,255,.75); max-width: 560px;
  margin: 0 auto 40px; font-weight: 300;
  opacity: 0; animation: fadeUp .8s .6s forwards;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s .8s forwards;
}
.btn-primary {
  background: var(--accent); color: var(--ink);
  padding: 16px 36px; border-radius: 3px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  letter-spacing: .02em; display: inline-block;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,.4); color: #fff;
  padding: 16px 36px; border-radius: 3px;
  text-decoration: none; font-weight: 500; font-size: 1rem;
  display: inline-block; transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ── ABOUT / INTRO ───────────────────────────────── */
.intro-section {
  padding: 100px 48px; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.intro-section--no-media {
  grid-template-columns: 1fr;
  max-width: 720px;
}
.section-label {
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 16px;
}
.intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 20px;
}
.intro-text p { color: var(--muted); line-height: 1.75; font-size: 1rem; margin-bottom: 32px; }
.intro-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.intro-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: .95rem; color: var(--muted);
}
.intro-features li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.intro-video-wrap {
  border-radius: 8px; overflow: hidden; aspect-ratio: 16/9;
  box-shadow: 0 24px 80px rgba(0,0,0,.15);
}
.intro-video-wrap iframe, .intro-video-wrap video {
  width: 100%; height: 100%; border: none;
}

/* ── PRICING ─────────────────────────────────────── */
#pricing { padding: 100px 48px; background: var(--ink); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-label { margin-bottom: 12px; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); color: #fff;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.pricing-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px; padding: 40px 32px; position: relative;
  transition: transform .2s, border-color .2s;
}
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(200,169,110,.3); }
.pricing-card.featured { background: var(--accent); border-color: var(--accent); }
.pricing-card.featured .plan-name,
.pricing-card.featured .plan-price { color: var(--ink); }
.pricing-card.featured .plan-period { color: rgba(13,13,13,.65); }
.pricing-card.featured .plan-feature { color: rgba(13,13,13,.8); }
.pricing-card.featured .plan-feature::before { color: var(--ink); }
.featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--accent);
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 20px; font-weight: 600;
}
.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: #fff; margin-bottom: 24px;
}
.plan-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.plan-price { font-size: 3rem; font-weight: 700; color: #fff; line-height: 1; }
.plan-period { font-size: .95rem; color: rgba(255,255,255,.5); }
.plan-features { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.plan-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: rgba(255,255,255,.7);
}
.plan-feature::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.btn-plan {
  display: block; text-align: center; padding: 14px; border-radius: 4px;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-plan-dark { background: var(--ink); color: var(--cream); }
.btn-plan-dark:hover { background: #222; transform: translateY(-1px); }
.btn-plan-gold { background: var(--accent); color: var(--ink); }
.btn-plan-gold:hover { background: var(--accent2); transform: translateY(-1px); }
.pricing-single {
  max-width: 480px; margin: 0 auto; text-align: center;
  color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.75;
}

/* ── REVIEWS ─────────────────────────────────────── */
#reviews { padding: 100px 48px; overflow: hidden; }
#reviews .section-header h2 { color: var(--ink); }
.carousel-wrap { max-width: 760px; margin: 0 auto; position: relative; }
.carousel-track-wrap { overflow: hidden; border-radius: 8px; }
.carousel-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.review-slide {
  flex: 0 0 100%; padding: 48px;
  background: var(--card-bg); border: 1px solid var(--border);
}
.review-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 20px; letter-spacing: 2px; }
.review-body {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; line-height: 1.65;
  color: var(--ink); margin-bottom: 28px; font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--ink);
  overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 600; font-size: .95rem; }
.review-role { font-size: .82rem; color: var(--muted); }
.carousel-controls {
  display: flex; justify-content: center; align-items: center;
  gap: 20px; margin-top: 32px;
}
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border); background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.carousel-btn:hover { border-color: var(--accent); background: var(--accent); color: var(--ink); }
.carousel-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); transition: background .2s; cursor: pointer;
}
.dot.active { background: var(--accent); }

/* ── CONTACT ─────────────────────────────────────── */
#contact { padding: 100px 48px; background: var(--ink); }
#contact .section-header h2 { color: #fff; }
#contact .section-label { color: var(--accent); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; max-width: 1000px; margin: 0 auto; align-items: start;
}
.contact-info { color: rgba(255,255,255,.7); }
.contact-info p { line-height: 1.8; margin-bottom: 32px; font-size: 1rem; }
.contact-detail {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px; font-size: .95rem; color: rgba(255,255,255,.75);
}
.contact-detail svg { color: var(--accent); flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group input, .form-group textarea {
  width: 100%; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1); border-radius: 4px;
  padding: 14px 16px; color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: .95rem;
  transition: border-color .2s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  background: var(--accent); color: var(--ink); border: none;
  padding: 16px; border-radius: 4px; font-weight: 600; font-size: 1rem;
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background .2s;
}
.btn-submit:hover { background: var(--accent2); }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: #080808; padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; font-weight: 900; display: inline-flex; align-items: center; gap: 8px; }
.footer-logo span { color: var(--accent); }
footer p { color: rgba(255,255,255,.35); font-size: .85rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,.4); font-size: .85rem; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.8); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-drawer { display: flex; }

  .hero-content { padding: 0 20px; }

  .intro-section { grid-template-columns: 1fr; gap: 40px; padding: 64px 20px; }

  #pricing { padding: 64px 20px; }
  .pricing-grid { grid-template-columns: 1fr; }

  #reviews { padding: 64px 20px; }
  .review-slide { padding: 28px 20px; }

  #contact { padding: 64px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  footer { flex-direction: column; gap: 16px; text-align: center; padding: 28px 20px; }
  .footer-links { justify-content: center; }
}
