/* ─── Variables ──────────────────────────────────────────────── */
:root {
  --warm-white: #faf8f4;
  --section-bg: #f0ebe0;
  --charcoal:   #1c1c1c;
  --mid-grey:   #666;
  --accent:     #c8e63c;
  --accent-dark:#9ab82a;

  /* Type scale — just four sizes, used consistently everywhere */
  --text-sm:   0.8rem;    /* labels, captions, small print */
  --text-base: 1rem;      /* body copy */
  --text-lg:   1.15rem;   /* lead / hero body */
  --text-h:    clamp(1.9rem, 4vw, 3rem);   /* h2 sections */
  --text-hero: clamp(2.8rem, 6vw, 5.2rem); /* h1 only */
}

/* ─── Reset / Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  padding-top: 80px; /* desktop navbar height */
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
/*
  Uses Bootstrap's built-in navbar-collapse / toggler pattern.
  On mobile the brand + toggler sit in the 80px bar;
  the nav links drop below in a dark panel.
  On ≥md the nav links and CTA sit inline at full height.
*/
.site-navbar {
  background: var(--charcoal);
  border-bottom: 3px solid var(--accent);
  padding: 0;
  min-height: 80px;
}

.site-navbar .container-lg {
  min-height: 80px;
  display: flex;
  align-items: center;
}

/* Brand */
.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  padding: 0;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: #fff;
}
.brand-name span { color: var(--accent); }
.brand-sub {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Toggler — custom style over Bootstrap's default */
.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.35rem 0.6rem;
  border-radius: 2px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,0.75)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Collapsed menu panel */
.navbar-collapse {
  background: var(--charcoal);
}

/* Nav links */
.site-navbar .nav-link {
  color: rgba(255,255,255,0.7) !important;
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}
.site-navbar .nav-link:hover { color: var(--accent) !important; }

/* Mobile: add border between stacked links */
@media (max-width: 767px) {
  .site-navbar .nav-link {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 0.85rem 0 !important;
  }
  .navbar-collapse { padding: 0.5rem 1rem 1rem; }
}

/* CTA button in navbar */
.btn-nav-cta {
  background: var(--accent);
  color: var(--charcoal);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  padding: 0.5rem 1.25rem;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-block;
}
.btn-nav-cta:hover { background: var(--accent-dark); color: var(--charcoal); }

@media (max-width: 767px) {
  body { padding-top: 80px; }
  .btn-nav-cta { margin-top: 0.75rem; width: 100%; text-align: center; padding: 0.75rem; }
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  background: var(--charcoal);
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Decorative ghost word */
.hero-bg-word {
  position: absolute;
  bottom: -0.1em; right: -0.05em;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(8rem, 22vw, 20rem);
  color: rgba(255,255,255,0.03);
  pointer-events: none; user-select: none;
  line-height: 1; letter-spacing: -0.04em;
}
@media (max-width: 767px) { .hero-bg-word { display: none; } }

.hero-eyebrow {
  font-size: var(--text-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: var(--text-hero);
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--accent); }

.hero-body {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  margin-bottom: 2rem;
}

.hero-price-pill {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0.3rem 1rem;
  margin-bottom: 1rem;
}
.hero-price-pill strong { color: var(--accent); font-weight: 500; }

.btn-hero-cta {
  background: var(--accent);
  color: var(--charcoal);
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  padding: 0.9rem 2.4rem;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-hero-cta:hover {
  background: var(--accent-dark); color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,230,60,0.25);
}

.hero-sub-cta {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.35);
  margin-top: 0.6rem;
}

/* Video placeholder */
.hero-media-frame {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #222;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
}
.play-btn {
  width: 60px; height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.play-btn:hover { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(200,230,60,0.15); }
.play-btn svg { margin-left: 4px; }
.media-caption { font-size: var(--text-sm); color: rgba(255,255,255,0.3); letter-spacing: 0.1em; text-transform: uppercase; }

/* Credentials strip */
.credentials-strip {
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3rem;
  border-radius: 4px;
}
.cred-item {
  padding: 1rem 0.5rem;
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cred-item strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-transform: none;
  letter-spacing: 0;
}

/* ─── PROOF BAR ──────────────────────────────────────────────── */
.proof-bar {
  background: var(--accent);
  padding: 0.65rem 0;
}
.proof-bar-inner {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: flex; align-items: center; gap: 2rem;
  white-space: nowrap; overflow: hidden;
}
.proof-bar-inner span::before { content: '✦'; margin-right: 0.5rem; opacity: 0.4; }

/* ─── SECTION SHARED ─────────────────────────────────────────── */
.section-label {
  font-size: var(--text-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b6f47;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.divider-accent { width: 36px; height: 3px; background: var(--accent); margin-bottom: 1.25rem; }

/* ─── VALUE PROPS ────────────────────────────────────────────── */
.value-props { background: var(--warm-white); padding: 5rem 0; }

.value-props h2 { font-size: var(--text-h); margin-bottom: 0.75rem; }

.value-card {
  background: var(--section-bg);
  border-radius: 4px;
  padding: 1.75rem;
  height: 100%;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.value-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.value-icon { font-size: 1.6rem; margin-bottom: 0.75rem; }
.value-card h4 { font-size: var(--text-base); margin-bottom: 0.5rem; }
.value-card p  { font-size: var(--text-sm); color: var(--mid-grey); margin: 0; }

/* ─── ABOUT STRIP ────────────────────────────────────────────── */
.about-strip { background: var(--charcoal); color: #fff; padding: 5rem 0; }
.about-strip .section-label { color: var(--accent); }
.about-strip h2 { font-size: var(--text-h); color: #fff; margin-bottom: 1rem; }
.about-strip p  { font-size: var(--text-base); color: rgba(255,255,255,0.6); margin-bottom: 1rem; }

.about-img-wrap { position: relative; }
.about-img-placeholder {
  aspect-ratio: 4/5;
  background: #2a2a2a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: var(--text-sm);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.about-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--accent); color: var(--charcoal);
  font-size: var(--text-sm); font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center; padding: 0.45rem;
  border-radius: 0 0 4px 4px;
}

/* ─── CTA SECTION ────────────────────────────────────────────── */
.cta-section { background: var(--accent); padding: 5rem 0; text-align: center; }
.cta-section h2 { font-size: var(--text-h); color: var(--charcoal); margin-bottom: 0.75rem; }
.cta-section h2 em { font-style: italic; }
.cta-section p { font-size: var(--text-base); color: rgba(28,28,28,0.6); max-width: 440px; margin: 0 auto 2rem; }

.btn-cta-dark {
  background: var(--charcoal); color: #fff;
  font-size: var(--text-base); font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none; border-radius: 2px;
  padding: 0.9rem 2.6rem;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-cta-dark:hover { background: #333; color: #fff; transform: translateY(-2px); }
.cta-price-note { margin-top: 0.9rem; font-size: var(--text-sm); color: rgba(28,28,28,0.5); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: #111; color: rgba(255,255,255,0.4);
  padding: 2rem 0; font-size: var(--text-sm); letter-spacing: 0.05em;
}
.site-footer a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.site-footer a:hover { color: var(--accent); }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: var(--text-base);
  color: rgba(255,255,255,0.6);
}