:root {
  --teal:     #1d7a72;
  --teal-dk:  #0f4f4a;
  --teal-lt:  #5ab5ac;
  --gold:     #c9924a;
  --gold-lt:  #e8c49a;
  --cream:    #faf6ef;
  --warm:     #f2ebe0;
  --ink:      #1c1a16;
  --muted:    #6b6156;
  --peach:    #e8a87c;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  background: rgba(250,246,239,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,146,74,.25);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  transition: box-shadow .3s;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text {
  font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700;
  color: var(--teal-dk); letter-spacing: .08em; line-height: 1.2;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Cinzel', serif; font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink); text-decoration: none;
  padding-bottom: 2px; border-bottom: 2px solid transparent;
  transition: color .25s, border-color .25s; cursor: pointer;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--teal); border-color: var(--gold);
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); transition: .3s; }

/* ── SECTION BASE ── */
section { padding: 100px 40px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'Cinzel', serif; font-size: .7rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before, .section-label::after {
  content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--gold);
}
.section-label::before { flex: 0 0 40px; }
h2 {
  font-family: 'Cinzel', serif; font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; color: var(--teal-dk); line-height: 1.2; margin-bottom: 20px;
}
h2 em { font-style: italic; color: var(--gold); font-family: 'Cormorant Garamond', serif; }
.lead { font-size: 1.05rem; color: var(--muted); line-height: 1.9; max-width: 640px; }

/* ── BUTTONS ── */
.btn {
  font-family: 'Cinzel', serif; font-size: .78rem; letter-spacing: .15em;
  text-transform: uppercase; padding: 14px 36px; border-radius: 2px;
  cursor: pointer; border: none; transition: .3s; text-decoration: none;
  display: inline-block;
}
.btn-primary {
  background: var(--gold); color: #fff;
  box-shadow: 0 4px 20px rgba(201,146,74,.4);
}
.btn-primary:hover { background: #b07a34; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-teal {
  background: var(--teal); color: #fff;
  box-shadow: 0 4px 20px rgba(29,122,114,.35);
}
.btn-teal:hover { background: var(--teal-dk); transform: translateY(-2px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #0f4f4a 0%, #1d7a72 45%, #5ab5ac 75%, #e8c49a 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 140px 40px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 600px at 20% 80%, rgba(232,168,124,.15) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 80% 20%, rgba(29,122,114,.3) 0%, transparent 70%);
}
.hero-mandala {
  position: absolute; width: 700px; height: 700px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.08);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: rotateSlow 60s linear infinite;
}
.hero-mandala::before, .hero-mandala::after {
  content: ''; position: absolute; inset: 40px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.06);
}
.hero-mandala::after { inset: 80px; animation: rotateSlow 40s linear infinite reverse; }
@keyframes rotateSlow { to { transform: translate(-50%,-50%) rotate(360deg); } }

.hero-badge {
  font-family: 'Cinzel', serif; font-size: .7rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold-lt);
  border: 1px solid rgba(232,196,154,.35); padding: 6px 20px; border-radius: 100px;
  margin-bottom: 32px; position: relative;
}
.hero h1 {
  font-family: 'Cinzel', serif; font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900; color: #fff; line-height: 1.1; max-width: 820px;
  position: relative; margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,.8); max-width: 540px;
  line-height: 1.8; position: relative; margin-bottom: 48px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; position: relative; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-family: 'Cinzel', serif;
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,.3); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0%,100%{opacity:.3;height:40px} 50%{opacity:1;height:60px} }

/* ── WHO WE ARE ── */
.who-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.who-box {
  background: linear-gradient(135deg, var(--teal-dk), var(--teal));
  border-radius: 4px; padding: 60px 40px; color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.who-box::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.who-box .big-num {
  font-family: 'Cinzel', serif; font-size: 4rem; font-weight: 900;
  color: var(--gold-lt); line-height: 1;
}
.who-box p { font-size: .9rem; opacity: .8; margin-top: 8px; }
.who-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px;
}
.stat {
  background: rgba(255,255,255,.08); border-radius: 4px; padding: 20px; text-align: center;
}
.stat .num { font-family: 'Cinzel', serif; font-size: 1.8rem; color: var(--gold-lt); }
.stat .lbl { font-size: .75rem; opacity: .7; margin-top: 4px; }

.who-content .values { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.value-item { display: flex; gap: 20px; align-items: flex-start; }
.value-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.value-item h4 { font-family: 'Cinzel', serif; font-size: .9rem; color: var(--teal-dk); margin-bottom: 6px; }
.value-item p { font-size: .9rem; color: var(--muted); line-height: 1.8; }

/* ── OFFER SECTION ── */
.offer-section { background: var(--warm); }
.offer-card {
  background: #fff; border-radius: 4px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  box-shadow: 0 20px 80px rgba(0,0,0,.08); margin-top: 60px;
}
.offer-card-img {
  background: linear-gradient(145deg, var(--teal-dk), var(--teal), var(--peach));
  display: flex; align-items: center; justify-content: center;
  min-height: 400px; position: relative; overflow: hidden;
}
.offer-card-img img.book-cover {
  width: 180px; height: 260px; object-fit: cover; border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.book-placeholder {
  width: 180px; height: 260px; background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.2); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; color: #fff; text-align: center; padding: 20px;
}
.offer-card-content { padding: 60px 48px; display: flex; flex-direction: column; justify-content: center; }
.offer-tag {
  font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.offer-card-content h3 {
  font-family: 'Cinzel', serif; font-size: 2rem; color: var(--teal-dk);
  font-weight: 700; margin-bottom: 16px; line-height: 1.2;
}
.offer-card-content p { color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.offer-features { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 10px; }
.offer-features li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--ink); }
.offer-features li::before { content: '✦'; color: var(--gold); font-size: .7rem; }

/* ── GET IN TOUCH HOME ── */
.touch-home {
  background: linear-gradient(135deg, var(--teal-dk) 0%, var(--teal) 100%);
  text-align: center; padding: 100px 40px;
}
.touch-home h2 { color: #fff; }
.touch-home .lead { color: rgba(255,255,255,.75); margin: 16px auto 48px; }
.touch-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.touch-link {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px; padding: 16px 28px; color: #fff;
  font-family: 'Cinzel', serif; font-size: .8rem; letter-spacing: .1em;
  text-decoration: none; transition: .3s; cursor: pointer; border: none;
}
.touch-link:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

/* ── OUR STORY PAGE ── */
.story-hero {
  background: var(--teal-dk); padding: 160px 40px 100px;
  text-align: center; position: relative; overflow: hidden;
}
.story-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(90,181,172,.2) 0%, transparent 70%);
}
.story-hero h1 { font-family: 'Cinzel', serif; font-size: clamp(2rem,5vw,4rem); color: #fff; font-weight: 900; position: relative; }
.story-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-top: 16px; font-style: italic; position: relative; }

/* TIMELINE */
.timeline { position: relative; margin-top: 60px; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--teal), var(--gold), var(--peach));
  transform: translateX(-50%);
}
.tl-item { display: flex; gap: 48px; align-items: flex-start; margin-bottom: 64px; position: relative; }
.tl-item:nth-child(even) { flex-direction: row-reverse; }
.tl-content {
  flex: 1; background: #fff; border-radius: 4px; padding: 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,.07); border-left: 3px solid var(--teal);
}
.tl-item:nth-child(even) .tl-content { border-left: none; border-right: 3px solid var(--gold); }
.tl-dot {
  position: absolute; left: 50%; top: 20px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--gold); border: 3px solid #fff;
  transform: translateX(-50%); box-shadow: 0 0 0 4px rgba(201,146,74,.2);
}
.tl-year {
  font-family: 'Cinzel', serif; font-size: .7rem; letter-spacing: .2em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 10px;
}
.tl-content h3 { font-family: 'Cinzel', serif; color: var(--teal-dk); font-size: 1.1rem; margin-bottom: 10px; }
.tl-content p { color: var(--muted); font-size: .95rem; line-height: 1.8; }
.tl-spacer { flex: 1; }

/* AUTHORS */
.authors-section { background: var(--warm); }
.authors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 60px; }
.author-card {
  background: #fff; border-radius: 4px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.07); transition: .3s;
}
.author-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.12); }
.author-card-header {
  background: linear-gradient(135deg, var(--teal-dk), var(--teal));
  padding: 48px 32px 32px; text-align: center;
}
.author-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 3px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 2rem; color: #fff;
  margin: 0 auto 16px;
}
.author-card-header h3 { font-family: 'Cinzel', serif; color: #fff; font-size: 1.4rem; }
.author-card-header p { color: rgba(255,255,255,.7); font-size: .85rem; margin-top: 6px; }
.author-card-body { padding: 32px; }
.author-card-body p { color: var(--muted); line-height: 1.8; font-size: .95rem; }
.author-quote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.1rem; color: var(--teal); margin-top: 20px; padding-left: 16px;
  border-left: 3px solid var(--gold); line-height: 1.7;
}

/* ── THE SACRED JOURNEY PAGE ── */
.tsj-hero {
  background: linear-gradient(160deg, #0f3d3a 0%, #1d7a72 40%, #c9924a 100%);
  padding: 140px 40px 80px; text-align: center; position: relative; overflow: hidden;
}
.tsj-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(232,196,154,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(90,181,172,.2) 0%, transparent 60%);
}
.tsj-hero h1 { font-family: 'Cinzel', serif; font-size: clamp(2rem,5vw,4.5rem); color: #fff; font-weight: 900; position: relative; }
.tsj-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-top: 16px; position: relative; max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.8; }

.book-showcase { display: flex; justify-content: center; margin-top: 56px; position: relative; }
.book-3d { width: 300px; }
.book-3d img, .book-3d-placeholder {
  width: 300px; height: auto; object-fit: cover; border-radius: 0;
  box-shadow: none; transform: none; transition: none; display: block;
  border: none; outline: none;
}
.book-3d:hover img, .book-3d:hover .book-3d-placeholder { transform: none; }
.book-3d-placeholder {
  background: linear-gradient(135deg, var(--teal-dk), var(--teal));
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; color: #fff; text-align: center; padding: 20px;
}

/* CIRCUITS / DESTINATIONS */
.destinations { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.dest-card {
  border-radius: 4px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--teal-dk), var(--teal));
  padding: 36px 28px; color: #fff; text-align: center; transition: .3s;
}
.dest-card:hover { transform: translateY(-4px); }
.dest-card .dest-icon { font-size: 2.2rem; margin-bottom: 16px; }
.dest-card h4 { font-family: 'Cinzel', serif; font-size: 1rem; margin-bottom: 8px; }
.dest-card p { font-size: .85rem; opacity: .78; line-height: 1.7; }
.dest-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--peach));
}

/* WHY GRID */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 60px; }
.why-card {
  background: #fff; border-radius: 4px; padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07); text-align: center;
  border-top: 3px solid var(--teal); transition: .3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.why-card .icon { font-size: 2.2rem; margin-bottom: 20px; }
.why-card h4 { font-family: 'Cinzel', serif; color: var(--teal-dk); font-size: .95rem; margin-bottom: 12px; }
.why-card p { color: var(--muted); font-size: .88rem; line-height: 1.7; }

/* BENEFITS */
.benefits-section { background: var(--warm); }
.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 60px; }
.benefit-row {
  display: flex; gap: 20px; align-items: flex-start;
  background: #fff; border-radius: 4px; padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.benefit-num {
  font-family: 'Cinzel', serif; font-size: 2rem; color: var(--gold-lt);
  font-weight: 700; line-height: 1; flex-shrink: 0; width: 48px;
}
.benefit-row h4 { font-family: 'Cinzel', serif; color: var(--teal-dk); font-size: .95rem; margin-bottom: 6px; }
.benefit-row p { color: var(--muted); font-size: .88rem; line-height: 1.7; }

/* PURCHASE */
.purchase-section {
  background: linear-gradient(135deg, var(--teal-dk), var(--teal));
  text-align: center; padding: 100px 40px;
}
.purchase-section h2 { color: #fff; }
.purchase-section p { color: rgba(255,255,255,.75); max-width: 500px; margin: 20px auto 48px; font-size: 1.05rem; line-height: 1.8; }
.purchase-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-purchase {
  background: #fff; color: var(--teal-dk);
  font-family: 'Cinzel', serif; font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; padding: 16px 40px; border-radius: 2px;
  border: none; cursor: pointer; transition: .3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.btn-purchase:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.btn-purchase-outline {
  background: rgba(255,255,255,.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  font-family: 'Cinzel', serif; font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; padding: 16px 40px; border-radius: 2px;
  cursor: pointer; transition: .3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-purchase-outline:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

/* ── CONTACT ── */
.contact-hero {
  background: var(--teal-dk); padding: 160px 40px 80px; text-align: center; position: relative; overflow: hidden;
}
.contact-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(90,181,172,.15) 0%, transparent 70%);
}
.contact-hero h1 { font-family: 'Cinzel', serif; font-size: clamp(2rem,5vw,4rem); color: #fff; font-weight: 900; position: relative; }
.contact-hero p { color: rgba(255,255,255,.7); margin-top: 16px; font-size: 1.05rem; position: relative; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.8; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info-card {
  background: var(--teal-dk); color: #fff; border-radius: 4px; padding: 48px 36px;
  position: sticky; top: 100px;
}
.contact-info-card h3 { font-family: 'Cinzel', serif; font-size: 1.2rem; margin-bottom: 32px; color: var(--gold-lt); }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-detail h4 { font-family: 'Cinzel', serif; font-size: .8rem; letter-spacing: .15em; color: var(--gold-lt); margin-bottom: 4px; }
.contact-detail a, .contact-detail p { color: rgba(255,255,255,.75); font-size: .95rem; text-decoration: none; }
.contact-detail a:hover { color: var(--gold-lt); }
.contact-divider { height: 1px; background: rgba(255,255,255,.15); margin: 24px 0; }

.inquiry-section h3 { font-family: 'Cinzel', serif; color: var(--teal-dk); font-size: 1.3rem; margin-bottom: 8px; }
.inquiry-section p { color: var(--muted); margin-bottom: 32px; font-size: .95rem; line-height: 1.7; }
.google-form-wrapper { border-radius: 4px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,.1); border: 1px solid rgba(0,0,0,.08); }
.google-form-wrapper iframe { width: 100%; border: none; display: block; }

/* ── FOOTER ── */
footer {
  background: var(--ink); color: rgba(255,255,255,.6);
  padding: 48px 40px; text-align: center;
}
footer .footer-logo { font-family: 'Cinzel', serif; color: #fff; font-size: 1rem; letter-spacing: .15em; margin-bottom: 12px; }
footer p { font-size: .85rem; line-height: 1.8; }
footer a { color: var(--gold-lt); text-decoration: none; }
footer a:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links {
    display: none; flex-direction: column; position: fixed;
    top: 72px; left: 0; right: 0; background: var(--cream);
    padding: 20px; border-bottom: 1px solid rgba(0,0,0,.1); gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
  .hamburger { display: flex; }
  section { padding: 60px 20px; }
  .who-grid, .offer-card, .authors-grid, .contact-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .tl-item, .tl-item:nth-child(even) { flex-direction: column; padding-left: 48px; }
  .tl-dot { left: 20px; }
  .tl-spacer { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .destinations { grid-template-columns: 1fr; }
  .offer-card-img { min-height: 260px; }
  .contact-info-card { position: static; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 3rem); }
}
