@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg-primary:   #1B2A1E;
  --bg-secondary: #1A1A18;
  --text-primary: #EDE8DC;
  --text-muted:   #A89F8C;
  --accent:       #C8932A;
  --accent-hover: #A87820;
  --card-bg:      #243028;
  --border:       #2E3D30;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

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

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(40px, 6vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(22px, 2.5vw, 30px); }

p { color: var(--text-primary); }

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

/* Label above headings — small caps */
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* Body text sizes */
.body-lg { font-size: 18px; line-height: 1.7; }
.body-sm { font-size: 14px; line-height: 1.6; color: var(--text-muted); }

@media (max-width: 640px) {
  body { font-size: 16px; }
}

/* ─── Navigation ────────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background-color: rgba(26, 26, 24, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  padding: 0 1.5rem;
}

#main-nav.nav-visible { transform: translateY(0); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-logo:hover { color: var(--accent); transition: color 0.2s; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  background-color: var(--accent) !important;
  color: #1A1A18 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 4px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  transition: background-color 0.2s !important;
  white-space: nowrap;
}

.nav-cta:hover { background-color: var(--accent-hover) !important; color: #1A1A18 !important; }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: 0.3s;
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 1.25rem;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  font-size: 16px;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-mobile-menu a:last-child { border-bottom: none; }

.nav-mobile-menu a:hover { color: var(--text-primary); }

.nav-mobile-cta {
  display: inline-block;
  margin-top: 0.5rem;
  background-color: var(--accent);
  color: #1A1A18 !important;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background-color: var(--accent);
  color: #1A1A18;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: var(--accent);
  color: #1A1A18;
}

.btn-sm {
  font-size: 14px;
  padding: 0.625rem 1.25rem;
}

/* ─── Photo Placeholders ────────────────────────────────────── */
.ash-photo {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ash-photo::after {
  content: 'Photo: Ash Edelman';
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  opacity: 0.6;
}

.ash-photo-hero   { width: 100%; aspect-ratio: 3 / 4; max-width: 480px; }
.ash-photo-square { width: 100%; aspect-ratio: 1 / 1; }
.ash-photo-wide   { width: 100%; aspect-ratio: 16 / 9; }
.ash-photo-tall   { width: 100%; aspect-ratio: 2 / 3; }

/* ─── Section Spacing ───────────────────────────────────────── */
.section {
  padding: 6rem 1.5rem;
}

.section-sm { padding: 4rem 1.5rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.container-mid {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 640px) {
  .section     { padding: 4rem 1.25rem; }
  .section-sm  { padding: 2.5rem 1.25rem; }
}

/* ─── Background Sections ───────────────────────────────────── */
.bg-primary   { background-color: var(--bg-primary); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-card      { background-color: var(--card-bg); }

/* ─── Cards ─────────────────────────────────────────────────── */
.card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
}

.card-premium {
  background-color: #1e2e22;
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 2rem;
}

.card-free {
  background-color: var(--bg-secondary);
  border: 1px solid #3a4f3c;
  border-radius: 6px;
  padding: 2rem;
}

/* Card badge */
.badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.badge-free    { background-color: #2E3D30; color: var(--text-muted); }
.badge-premium { background-color: rgba(200, 147, 42, 0.15); color: var(--accent); border: 1px solid rgba(200,147,42,0.3); }
.badge-group   { background-color: rgba(200, 147, 42, 0.08); color: var(--text-muted); border: 1px solid var(--border); }

/* ─── Dividers ──────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 2px;
  background-color: var(--accent);
  margin: 1.5rem 0;
}

.divider-center { margin: 1.5rem auto; }

/* ─── Arrow bullet ──────────────────────────────────────────── */
.arrow-list { list-style: none; padding: 0; }
.arrow-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.arrow-list li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* ─── Testimonial Quotes ────────────────────────────────────── */
.testimonial-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.6;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.testimonial-card cite {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* ─── Stats bar ─────────────────────────────────────────────── */
.stats-bar {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4rem;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.375rem;
}

/* ─── Pillar grid ───────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-bar { gap: 2rem; }
  .stat-number { font-size: 36px; }
}

.pillar-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}

/* ─── Offers grid ───────────────────────────────────────────── */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .offers-grid { grid-template-columns: 1fr; }
}

/* ─── Two-col layout ────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.faq-a {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(200,147,42,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* ─── Footer ────────────────────────────────────────────────── */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  margin-bottom: 1rem;
}

.footer-nav a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--text-primary); }

.footer-legal {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
}

.footer-legal a { color: var(--text-muted); }
.footer-legal a:hover { color: var(--text-primary); }

.footer-instagram {
  font-size: 14px;
  color: var(--accent);
}

.footer-instagram:hover { color: var(--accent-hover); }

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ─── Contact page ──────────────────────────────────────────── */
.contact-option {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-option h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-option p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ─── Inline emphasis ───────────────────────────────────────── */
strong { color: var(--text-primary); font-weight: 600; }

em { font-style: italic; }

/* ─── Utility ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-2  { margin-top: 0.5rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-2  { margin-bottom: 0.5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.gap-stack > * + * { margin-top: 1.25rem; }
.gap-stack-lg > * + * { margin-top: 2rem; }

/* ─── Audio placeholder ─────────────────────────────────────── */
.audio-placeholder {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 560px;
  margin: 0 auto;
}

.audio-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s;
}

.audio-play-btn:hover { background-color: var(--accent-hover); }

.audio-play-btn svg { color: #1A1A18; }

.audio-info span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
}

.audio-title {
  font-size: 16px !important;
  color: var(--text-primary) !important;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
