:root {
  --black: #0b0b0c;
  --near-black: #131314;
  --charcoal: #1c1c1e;
  --gold: #c9a24b;
  --gold-light: #e4c876;
  --cream: #f5f2ea;
  --white: #ffffff;
  --muted: #a9a7a0;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--near-black);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; margin: 0 0 .5em; line-height: 1.15; }
p { margin: 0 0 1em; }

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

.eyebrow {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .8em;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,11,12,.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,162,75,.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-icon { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.logo-icon.small { width: 34px; height: 34px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-mark {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-mark em { font-style: normal; color: var(--gold); }
.logo-mark.small { font-size: 1.2rem; }
.logo-tagline {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  color: var(--cream);
  font-size: .92rem;
  font-weight: 500;
  opacity: .85;
  transition: opacity .2s;
}
.main-nav a:hover { opacity: 1; color: var(--gold-light); }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 8px 18px;
  border-radius: 2px;
  color: var(--gold-light) !important;
  opacity: 1 !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: .92rem;
  font-weight: 600;
  border-radius: 2px;
  transition: all .2s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost { border-color: rgba(245,242,234,.4); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,.55) 0%, rgba(11,11,12,.65) 45%, rgba(11,11,12,.95) 100%);
}
.hero-content { position: relative; padding-bottom: 100px; padding-top: 180px; max-width: 760px; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); color: var(--white); }
.hero h1 span { color: var(--gold-light); }
.hero-sub { font-size: 1.1rem; color: var(--cream); opacity: .9; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; margin-top: 8px; flex-wrap: wrap; }

/* Strip */
.strip { background: var(--black); color: var(--cream); padding: 40px 0; }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.strip-item strong { display: block; font-family: var(--serif); font-size: 2rem; color: var(--gold); }
.strip-item span { font-size: .8rem; color: var(--muted); }

/* Sections */
.section { padding: 100px 0; }
.section-dark { background: var(--black); color: var(--cream); }
.section-dark .eyebrow { color: var(--gold); }
.section-dark h2 { color: var(--white); }
.section h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); max-width: 640px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-text p { color: #4a4a48; max-width: 480px; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li { padding-left: 28px; position: relative; font-weight: 500; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.split-media img { border-radius: 4px; box-shadow: 0 30px 60px rgba(0,0,0,.25); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; }
.step-num { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); opacity: .5; display: block; margin-bottom: 12px; }
.step h3 { color: var(--white); font-size: 1.3rem; }
.step p { color: var(--muted); font-size: .92rem; }

/* Video / photo grid */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px 0 40px; }
.video-card video { width: 100%; border-radius: 4px; background: #000; aspect-ratio: 9/16; object-fit: cover; }
.video-card p { font-size: .85rem; color: #55534d; margin-top: 10px; }
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.photo-grid img { width: 100%; height: 230px; object-fit: cover; border-radius: 4px; }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; }
.benefit h3 { color: var(--gold-light); font-size: 1.25rem; }
.benefit p { color: var(--muted); font-size: .92rem; }

/* Contact */
.section-contact { background: var(--charcoal); color: var(--cream); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-text h2 { color: var(--white); }
.contact-text p { color: var(--muted); max-width: 420px; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #0b0b0c;
  margin-top: 24px;
}
.btn-whatsapp:hover { background: #2fe377; }

.contact-links { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.contact-links a { font-size: 1.1rem; color: var(--gold-light); font-weight: 600; }
.contact-links a:hover { text-decoration: underline; }

.contact-form { display: grid; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-size: .85rem; color: var(--muted); }
.contact-form input, .contact-form textarea {
  background: rgba(245,242,234,.06);
  border: 1px solid rgba(245,242,234,.2);
  border-radius: 2px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--sans);
  font-size: .95rem;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-note { font-size: .78rem; color: var(--muted); margin: 4px 0 0; }

/* Footer */
.site-footer { background: var(--black); color: var(--muted); padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-inner p { margin: 0; font-size: .85rem; }
.footer-inner a { font-size: .85rem; color: var(--gold-light); }

/* Responsive */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .split, .contact-inner { grid-template-columns: 1fr; }
  .steps, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(201,162,75,.2);
  }
}

@media (max-width: 560px) {
  .steps, .benefits-grid, .photo-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero-content { padding-top: 140px; padding-bottom: 60px; }
}
