/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Brand Colors */
  --gold:          #C9A84C;
  --gold-light:    #E8C56A;
  --gold-dark:     #A07830;
  --black:         #0A0A0A;
  --near-black:    #111111;
  --charcoal:      #1A1A1A;
  --dark-surface:  #1E1E1E;
  --white:         #FFFFFF;
  --off-white:     #F5F3EE;
  --text-light:    #E8E6E1;
  --text-muted:    #9A9690;
  --border:        #2E2E2E;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    7rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --content-default: 1100px;
  --content-narrow:  680px;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 220ms var(--ease);

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.2);
}

/* ─── BASE RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-light);
  background-color: var(--near-black);
  line-height: 1.65;
  min-height: 100dvh;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); }
p, li { text-wrap: pretty; max-width: 68ch; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── UTILITY ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-12));
}

.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}

.section-label--light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.section-title--light {
  color: var(--white);
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full { width: 100%; }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 4vw, var(--space-12));
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 72px; width: 72px; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--text-xs);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-light); color: var(--black) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.65) 50%,
    rgba(0,0,0,0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-12));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.hero-logo {
  width: clamp(180px, 28vw, 280px);
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.6));
  animation: fadeInDown 0.9s var(--ease) both;
}

.hero-tagline {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  animation: fadeIn 1s var(--ease) 0.2s both;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  animation: fadeInUp 1s var(--ease) 0.3s both;
}

.hero-sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.82);
  max-width: 56ch;
  line-height: 1.7;
  animation: fadeIn 1s var(--ease) 0.5s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeIn 1s var(--ease) 0.7s both;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s ease-in-out infinite;
  transition: color var(--transition);
}
.hero-scroll:hover { color: var(--gold); }

/* ─── INTRO SECTION ──────────────────────────────────────── */
.intro-section { background: var(--near-black); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: center;
}

.intro-text { display: flex; flex-direction: column; }

.intro-text h2 { margin-bottom: var(--space-6); }

.intro-text p {
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.75;
}

/* ─── VIDEO ──────────────────────────────────────────────── */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: var(--shadow-card);
}

.video-wrapper iframe,
.video-wrapper .video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: background var(--transition);
}
.video-placeholder:hover { background: var(--dark-surface); }

.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-gold);
}
.video-placeholder:hover .video-play-btn {
  transform: scale(1.08);
  background: var(--gold-light);
}

.video-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── SCRIPTURE BANNER ───────────────────────────────────── */
.scripture-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  padding-block: clamp(var(--space-8), 4vw, var(--space-12));
}

.scripture {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.scripture p {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: var(--space-3);
  max-width: 100%;
}

.scripture cite {
  font-style: normal;
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(0,0,0,0.65);
  letter-spacing: 0.06em;
}

/* ─── PILLARS SECTION ────────────────────────────────────── */
.pillars-section {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.pillars-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pillars-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.pillars-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pillars-intro {
  max-width: 58ch;
  margin-inline: auto;
  margin-bottom: clamp(var(--space-8), 5vw, var(--space-16));
  color: rgba(255,255,255,0.7);
  font-size: var(--text-base);
  line-height: 1.75;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  text-align: left;
}

.pillar-card {
  position: relative;
  background: rgba(26,26,26,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition);
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.pillar-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.pillar-card:hover::before { opacity: 1; }

.pillar-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
}

.pillar-icon {
  color: var(--gold);
  margin-bottom: var(--space-5);
}

.pillar-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.pillar-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── SERVICES SECTION ───────────────────────────────────── */
.services-section { background: var(--near-black); }

.services-section .section-title { margin-bottom: clamp(var(--space-8), 4vw, var(--space-12)); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.service-card {
  position: relative;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: all var(--transition);
}
.service-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.service-card--featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, var(--charcoal) 100%);
}
.service-card--featured:hover { border-color: var(--gold-light); }

.service-badge {
  position: absolute;
  top: -12px;
  left: var(--space-8);
  background: var(--gold);
  color: var(--black);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full, 9999px);
}

.service-icon { color: var(--gold); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.service-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  margin-top: auto;
}
.service-link:hover { color: var(--gold-light); }

.services-video {
  max-width: 720px;
  margin-inline: auto;
}

/* ─── MANOPAUSE SECTION ─────────────────────────────────── */
.manopause-section {
  position: relative;
  overflow: hidden;
  padding-block: 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.manopause-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.manopause-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.manopause-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.80) 50%,
    rgba(0,0,0,0.3) 100%
  );
}

.manopause-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.manopause-content {
  max-width: 620px;
}

.manopause-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.mp-accent {
  color: var(--gold);
  font-style: italic;
}

.manopause-tagline {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: var(--space-6);
  max-width: 100%;
}

.manopause-desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  max-width: 58ch;
}

.manopause-topics {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.mp-topic {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-light);
  line-height: 1.5;
}

.mp-topic svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── CONTACT SECTION ────────────────────────────────────── */
.contact-section {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: start;
}

.contact-text h2 { margin-bottom: var(--space-5); }

.contact-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-6);
}

.contact-details { display: flex; flex-direction: column; gap: var(--space-2); }
.contact-details p { font-size: var(--text-sm); color: var(--text-muted); }
.contact-details a { color: var(--gold); transition: color var(--transition); }
.contact-details a:hover { color: var(--gold-light); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  background: var(--dark-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239A9690' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: var(--space-10);
  cursor: pointer;
}

.form-group select option { background: var(--charcoal); color: var(--white); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  max-width: 100%;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding-block: clamp(var(--space-8), 4vw, var(--space-12));
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.footer-logo { width: 64px; height: 64px; object-fit: contain; }
.footer-brand p { font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4) var(--space-6);
}
.footer-nav a { font-size: var(--text-sm); color: var(--text-muted); transition: color var(--transition); }
.footer-nav a:hover { color: var(--gold); }

.footer-copy { font-size: var(--text-xs); color: var(--text-muted); line-height: 1.6; }
.footer-copy span { color: var(--gold); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .intro-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .intro-video { order: -1; }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: var(--text-lg); }
  .nav-toggle { display: flex; }
  .nav-cta { font-size: var(--text-base); padding: var(--space-3) var(--space-8); }

  .hero-actions { flex-direction: column; align-items: center; }
  .pillars-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
