/* ===========================
   Channeling Light – Base Styles
   Minimal · Elegant · Clean
   =========================== */

:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --text-soft: #4a4a4a;
  --gold: #c9a227;
  --gold-dark: #b8973a;
  --gold-light: #d4bc6a;
  --border: #e8e0d0;
  --max-width: 1100px;
  --narrow: 680px;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, .logo, .nav a, .btn {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

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

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

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

.container.narrow {
  max-width: var(--narrow);
}

.center {
  text-align: center;
}

/* ========== Header ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-dark);
  letter-spacing: -0.01em;
  line-height: 1;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--gold);
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  position: absolute;
  left: 0;
  transition: 0.25s ease;
}

.menu-toggle span:first-child {
  top: 4px;
}

.menu-toggle span:last-child {
  bottom: 4px;
}

.menu-toggle.open span:first-child {
  top: 9px;
  transform: rotate(45deg);
}

.menu-toggle.open span:last-child {
  bottom: 9px;
  transform: rotate(-45deg);
}

/* ========== Hero ========== */
.hero {
  min-height: 420px;
  padding: 90px 0 80px;
  text-align: center;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 35, 0.42);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  color: #f7f4ee;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 18px rgba(0,0,0,0.3);
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(247, 244, 238, 0.88);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

/* ========== Intro ========== */
.intro {
  padding: 40px 0 80px;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-soft);
  text-align: center;
}

/* ========== Paths Preview ========== */
.paths-preview {
  padding: 80px 0 100px;
  border-top: 1px solid var(--border);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text);
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.path-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.25s ease;
}

.path-card:hover {
  border-color: var(--gold-light);
}

.path-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--gold-dark);
}

.path-card p {
  font-size: 0.98rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ========== Footer ========== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold-dark);
}

.footer-location {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-soft);
  transition: color 0.2s ease;
}

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

/* ========== Responsive ========== */
@media (max-width: 860px) {
  .paths-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 90px 0 70px;
  }

  .hero-text br {
    display: none;
  }
}

/* ========== Page Content Styles ========== */
.page-header {
  padding: 80px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 2.7rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 12px;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto;
}

.page-content {
  padding: 60px 0 100px;
}

.page-content .container.narrow p {
  margin-bottom: 1.4em;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.page-content .container.narrow p:last-child {
  margin-bottom: 0;
}

/* Sessions page cards */
.session-block {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.session-block:last-of-type {
  border-bottom: none;
}

.session-block h2 {
  font-size: 1.35rem;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.session-meta {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.session-block p {
  color: var(--text-soft);
  margin-bottom: 0.9em;
  line-height: 1.75;
}

.session-block p:last-child {
  margin-bottom: 0;
}

.session-note {
  margin-top: 32px;
  padding: 24px 28px;
  background: #faf8f3;
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
}

.session-note p {
  margin-bottom: 0.6em;
  font-size: 1rem;
}

.booking-box {
  margin-top: 48px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}

.booking-box h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--text);
}

.booking-box p {
  color: var(--text-soft);
  margin-bottom: 12px;
}

.payment-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.payment-list li {
  padding: 4px 0;
  color: var(--text-soft);
  position: relative;
  padding-left: 18px;
}

.payment-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Contact page */
.contact-details {
  margin-top: 40px;
  text-align: center;
}

.contact-item {
  margin-bottom: 28px;
}

.contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.contact-value {
  font-size: 1.15rem;
  color: var(--text);
}

.contact-value a {
  color: var(--text);
  transition: color 0.2s ease;
}

.contact-value a:hover {
  color: var(--gold);
}

/* Blog */
.blog-intro {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
  color: var(--text-soft);
  font-size: 1.1rem;
  line-height: 1.7;
}

.newsletter-box {
  max-width: 480px;
  margin: 60px auto 0;
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}

.newsletter-box h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text);
}

.newsletter-box p {
  color: var(--text-soft);
  margin-bottom: 24px;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 360px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form button {
  padding: 12px 20px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter-form button:hover {
  background: var(--gold-dark);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* Active nav link */
.nav a.active {
  color: var(--gold);
}
