/* ============================================================
   WOODLAND MEDIATION — Shared Styles
   main.css  |  Used by all inner pages
   ============================================================ */

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

/* ── Brand Variables ── */
:root {
  --navy-deep:      #0D1C2C;
  --navy-primary:   #14283C;
  --navy-mid:       #1E3A52;
  --navy-steel:     #2D4A62;
  --gold-rich:      #B8963A;
  --gold-light:     #D4AE58;
  --gold-pale:      #EDD98A;
  --cream:          #F2EDE0;
  --off-white:      #FAFAF7;
  --white:          #FFFFFF;
  --text-dark:      #0D1C2C;
  --text-body:      #3A4F62;
  --text-muted:     #8A9EB2;

  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Inter', system-ui, sans-serif;

  --max-w:          1100px;
  --section-pad:    96px 40px;
}

/* ── Base ── */
html { font-size: 17px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  background: var(--navy-primary);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo / Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav-brand-accent {
  color: var(--gold-light);
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
}

/* Book Session CTA button in nav */
.nav-book-btn {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-primary);
  background: var(--gold-rich);
  padding: 8px 14px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease;
  text-decoration: none;
}

.nav-book-btn:hover { background: var(--gold-light); }

.nav-links a {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--navy-deep);
  padding: 20px 40px 28px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.nav-drawer a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s ease;
}

.nav-drawer a:hover,
.nav-drawer a.active { color: var(--gold-light); }

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

.nav-drawer .nav-book-btn {
  display: block;
  margin-top: 12px;
  text-align: center;
  padding: 14px;
  border-bottom: none;
  color: var(--navy-primary);
  background: var(--gold-rich);
  border-radius: 2px;
}

.nav-drawer .nav-book-btn:hover { background: var(--gold-light); color: var(--navy-primary); }

@media (max-width: 900px) {
  .nav-links    { display: none; }
  .nav-book-btn { display: none; }
  .nav-toggle   { display: flex; }
  .nav-drawer.open { display: flex; }

  .nav-brand-text { font-size: 17px; }
  .nav-logo { width: 36px; height: 36px; }
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-primary);
  padding: 64px 40px 40px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  font-family: var(--font-display);
}

.footer-adr {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-adr-logo {
  width: 100px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-adr-logo:hover { opacity: 1; }

.footer-abota-logo {
  width: 96px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-abota-logo:hover { opacity: 1; }

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-contact-item {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
}

.footer-gold-rule {
  width: 32px;
  height: 1px;
  background: var(--gold-rich);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .site-footer { padding: 48px 24px 32px; }
}


/* ============================================================
   SHARED COMPONENTS
   ============================================================ */

/* Section wrapper */
.section {
  padding: var(--section-pad);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Dark section variant */
.section--dark {
  background: var(--navy-primary);
  color: var(--white);
}

.section--deep {
  background: var(--navy-deep);
  color: var(--white);
}

.section--cream {
  background: var(--cream);
}

/* Section label / eyebrow */
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-rich);
  margin-bottom: 14px;
  display: block;
}

.section--dark .eyebrow,
.section--deep .eyebrow {
  color: var(--gold-light);
}

/* Headings */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section--dark .section-title,
.section--deep .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-body);
  max-width: 580px;
  line-height: 1.75;
}

.section--dark .section-subtitle,
.section--deep .section-subtitle {
  color: rgba(255,255,255,0.65);
}

/* Gold divider */
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold-rich);
  margin-bottom: 32px;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 40px;
  border-radius: 3px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn--navy {
  background: var(--navy-primary);
  color: var(--off-white);
  border-color: var(--navy-primary);
}

.btn--navy:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.btn--gold {
  background: var(--gold-rich);
  color: var(--white);
  border-color: var(--gold-rich);
}

.btn--gold:hover {
  background: #A0832E;
  border-color: #A0832E;
}

.btn--outline-light {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(255,255,255,0.45);
}

.btn--outline-light:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy-primary);
  border-color: var(--navy-primary);
}

.btn--outline-dark:hover {
  background: var(--navy-primary);
  color: var(--off-white);
}

/* Logo mark — used in page heroes */
.logo-mark {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 24px;
  opacity: 0.9;
}

.logo-mark--light {
  opacity: 0.55;
  filter: brightness(0) invert(1);
}

/* Large logo mark for section use */
.logo-mark--lg {
  width: 140px;
  height: 140px;
  margin-bottom: 32px;
}

/* CTA section watermark logo (large, faint background) */
.cta-logo-watermark {
  position: absolute;
  width: 420px;
  height: 420px;
  object-fit: contain;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  opacity: 0.08;
  pointer-events: none;
}

/* Utility */
.text-gold  { color: var(--gold-rich); }
.text-light { color: rgba(255,255,255,0.65); }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }

/* ============================================================
   MOBILE GLOBAL
   ============================================================ */
@media (max-width: 480px) {
  :root { --section-pad: 64px 24px; }
}
