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

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --sand:       #f5edd8;
  --cream:      #faf7f2;
  --brown:      #2c1f0e;
  --mid-brown:  #5a4230;
  --warm-brown: #7a5c2e;
  --gold:       #c9a84c;
  --gold-light: rgba(201,168,76,0.18);
  --gold-faint: rgba(201,168,76,0.07);
  --border:     rgba(44,31,14,0.12);
  --border-mid: rgba(44,31,14,0.18);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;

  --gap: 2px;
  --section-pad: 88px 56px;
  --radius: 0;
}

/* ── BASE ────────────────────────────────────────────── */
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--brown);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITY ─────────────────────────────────────────── */
.serif    { font-family: var(--serif); }
.gold     { color: var(--gold); }
.eyebrow  {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 400;
  display: block;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--brown);
}
.section-sub {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--warm-brown);
  margin-top: 10px;
}
.divider-line {
  height: 0.5px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
  margin: 0 56px;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: all 0.2s ease;
}
.btn-dark {
  background: var(--brown);
  color: var(--sand);
}
.btn-dark:hover { background: var(--gold); color: var(--brown); }

.btn-outline {
  border: 0.5px solid rgba(44,31,14,0.3);
  color: var(--brown);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-gold {
  background: var(--gold);
  color: var(--brown);
}
.btn-gold:hover { background: var(--brown); color: var(--sand); }

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  gap: 24px;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mid-brown);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--brown);
  color: var(--sand);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 10px 22px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--brown); }
.nav-mobile-toggle { display: none; font-size: 22px; color: var(--brown); }

/* ── MARQUEE ─────────────────────────────────────────── */
.marquee-strip {
  background: var(--brown);
  padding: 13px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  gap: 44px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.marquee-dot { color: rgba(201,168,76,0.35); margin: 0 4px; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  background: var(--sand);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 56px;
  position: relative;
  z-index: 1;
}
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--brown);
}
.hero-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,31,14,0.3) 0%, rgba(201,168,76,0.08) 100%);
}
.hero-right-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #3d2a12 0%, #1e1106 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-right-symbol {
  font-family: var(--serif);
  font-size: 260px;
  color: rgba(201,168,76,0.12);
  font-weight: 300;
  line-height: 1;
  user-select: none;
}
.hero-title {
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 300;
  line-height: 1.04;
  color: var(--brown);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--warm-brown); }
.hero-sub {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--mid-brown);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badge {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 0.5px solid var(--border);
  display: flex;
  gap: 36px;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--gold);
  display: block;
}
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-brown);
}

/* ── AI SECTION ──────────────────────────────────────── */
.ai-section {
  padding: var(--section-pad);
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.ai-badge {
  display: inline-block;
  border: 0.5px solid rgba(201,168,76,0.4);
  background: var(--sand);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 12px;
  margin-bottom: 18px;
}
.ai-title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  line-height: 1.13;
  color: var(--brown);
  margin-bottom: 16px;
}
.ai-title em { font-style: italic; }
.ai-body {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--mid-brown);
  line-height: 1.7;
  margin-bottom: 28px;
}
.ai-list { list-style: none; margin-bottom: 32px; }
.ai-list li {
  display: flex;
  gap: 10px;
  font-size: 16px;
  color: var(--mid-brown);
  padding: 7px 0;
  border-bottom: 0.5px solid rgba(44,31,14,0.07);
}
.ai-list li::before { content: '✦'; color: var(--gold); font-size: 9px; margin-top: 3px; flex-shrink: 0; }
.ai-card {
  background: var(--brown);
  padding: 36px;
  position: relative;
}
.ai-card::before {
  content: '◎';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 80px;
  color: rgba(201,168,76,0.06);
  line-height: 1;
}
.ai-card-label {
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.55);
  margin-bottom: 16px;
}
.ai-card-q {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: rgba(245,237,216,0.55);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 0.5px solid rgba(201,168,76,0.15);
}
.ai-card-a {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  color: var(--sand);
  line-height: 1.7;
}
.ai-card-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 0.5px solid rgba(201,168,76,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ai-card-free { font-size: 11px; color: rgba(201,168,76,0.45); letter-spacing: 0.05em; }
.ai-card-price { font-size: 13px; color: var(--gold); letter-spacing: 0.04em; }

/* ── READINGS ─────────────────────────────────────────── */
.readings-section {
  padding: var(--section-pad);
  background: var(--sand);
}
.readings-header { text-align: center; margin-bottom: 52px; }
.readings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.reading-card {
  background: var(--cream);
  padding: 40px 32px;
  border-top: 1.5px solid var(--brown);
  position: relative;
  transition: background 0.2s;
}
.reading-card:hover { background: #fff; }
.reading-card.featured {
  background: var(--brown);
  border-top-color: var(--gold);
}
.reading-card-badge {
  position: absolute;
  top: -1px;
  right: 32px;
  background: var(--gold);
  color: var(--brown);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 500;
}
.reading-symbol {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.reading-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 6px;
}
.reading-card.featured .reading-name { color: var(--sand); }
.reading-desc {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--warm-brown);
  margin-bottom: 24px;
}
.reading-card.featured .reading-desc { color: rgba(245,237,216,0.5); }
.reading-price {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 2px;
}
.reading-card.featured .reading-price { color: var(--gold); }
.reading-was {
  font-size: 12px;
  color: rgba(44,31,14,0.3);
  text-decoration: line-through;
  margin-bottom: 22px;
}
.reading-card.featured .reading-was { color: rgba(201,168,76,0.3); }
.reading-features { list-style: none; margin-bottom: 32px; }
.reading-features li {
  display: flex;
  gap: 8px;
  font-size: 16px;
  color: var(--mid-brown);
  padding: 5px 0;
  border-bottom: 0.5px solid rgba(44,31,14,0.07);
}
.reading-card.featured .reading-features li {
  color: rgba(245,237,216,0.65);
  border-bottom-color: rgba(201,168,76,0.08);
}
.reading-features li::before { content: '·'; color: var(--gold); font-weight: 700; }
.reading-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 20px;
  border: 0.5px solid rgba(44,31,14,0.25);
  color: var(--brown);
  transition: all 0.2s;
}
.reading-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--brown); }
.reading-card.featured .reading-btn { border-color: rgba(201,168,76,0.4); color: var(--gold); }
.reading-card.featured .reading-btn:hover { background: var(--gold); color: var(--brown); }

/* GIFTS */
.gifts-strip {
  padding: 52px 56px;
  background: var(--cream);
  border-top: 0.5px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.gifts-label {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  color: var(--warm-brown);
  white-space: nowrap;
}
.gift-card {
  border: 0.5px solid var(--border);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.2s;
}
.gift-card:hover { border-color: var(--gold); }
.gift-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 4px;
}
.gift-price { font-size: 15px; color: var(--gold); }
.gift-btn {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  border: 0.5px solid var(--border);
  padding: 8px 16px;
  transition: all 0.2s;
  white-space: nowrap;
}
.gift-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── ABOUT ────────────────────────────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  min-height: 520px;
  align-items: stretch;
}
.about-image {
  position: relative;
  overflow: hidden;
  background: var(--brown);
  min-height: 500px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #3d2a12 0%, #1a0e04 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
}
.about-image-symbol {
  font-family: var(--serif);
  font-size: 200px;
  color: rgba(201,168,76,0.1);
  line-height: 1;
}
.about-image-caption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: rgba(44,31,14,0.72);
  backdrop-filter: blur(6px);
  padding: 14px 18px;
}
.about-image-caption p { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sand); }
.about-content {
  padding: 72px 56px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 24px;
}
.about-title em { font-style: italic; color: var(--warm-brown); }
.about-body {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--mid-brown);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-pull {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--brown);
  font-weight: 400;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0;
  line-height: 1.6;
}
.about-sig {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  color: var(--gold);
  margin-top: 20px;
}
.about-certs {
  margin-top: 32px;
  display: flex;
  gap: 28px;
  padding-top: 24px;
  border-top: 0.5px solid var(--border);
}
.about-cert-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  display: block;
}
.about-cert-label {
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--warm-brown);
}

/* ── BLOG ─────────────────────────────────────────────── */
.blog-section {
  padding: var(--section-pad);
  background: var(--cream);
}
.blog-header { margin-bottom: 48px; }
.blog-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 3fr;
  grid-template-rows: auto auto;
  gap: var(--gap);
}
.blog-card {
  background: var(--sand);
  padding: 32px;
  border-top: 1px solid rgba(44,31,14,0.14);
  transition: background 0.18s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { background: #fff; }
.blog-card.featured {
  background: var(--brown);
  grid-row: 1 / 3;
}
.blog-card.featured:hover { background: #3d2a12; }
.blog-tag {
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.blog-card.featured .blog-tag { color: rgba(201,168,76,0.6); }
.blog-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
  margin-bottom: 18px;
  opacity: 0.95;
}
.blog-card.featured .blog-img {
  aspect-ratio: 4/3;
  opacity: 0.7;
}
.blog-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(201,168,76,0.1);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-img-placeholder-featured {
  aspect-ratio: 4/3;
  background: rgba(201,168,76,0.08);
}
.blog-img-symbol { font-size: 40px; color: rgba(201,168,76,0.2); font-family: var(--serif); }
.blog-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--brown);
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-card.featured .blog-title { color: var(--sand); font-size: 26px; }
.blog-excerpt {
  font-size: 13px;
  color: var(--warm-brown);
  line-height: 1.6;
  flex: 1;
}
.blog-card.featured .blog-excerpt { color: rgba(245,237,216,0.55); }
.blog-meta {
  font-size: 10px;
  color: rgba(44,31,14,0.3);
  letter-spacing: 0.06em;
  margin-top: 18px;
  text-transform: uppercase;
}
.blog-card.featured .blog-meta { color: rgba(201,168,76,0.35); }
.blog-all {
  margin-top: 36px;
  text-align: center;
}

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials-section {
  padding: var(--section-pad);
  background: var(--brown);
}
.testimonials-section .section-title { color: var(--sand); }
.testimonials-section .section-sub { color: rgba(245,237,216,0.45); }
.testimonials-section .eyebrow { color: rgba(201,168,76,0.6); }
.testi-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.testi-card {
  background: rgba(245,237,216,0.03);
  border: 0.5px solid rgba(201,168,76,0.1);
  padding: 32px;
}
.testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; margin-bottom: 16px; }
.testi-text {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: rgba(245,237,216,0.82);
  line-height: 1.7;
  margin-bottom: 22px;
}
.testi-name {
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
}
.testi-cta { margin-top: 52px; text-align: center; }
.testi-cta p {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: rgba(245,237,216,0.45);
  margin-bottom: 24px;
}

/* ── CONTACT ──────────────────────────────────────────── */
.contact-section {
  padding: var(--section-pad);
  background: var(--sand);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-intro .section-title { margin-bottom: 16px; }
.contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-detail-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 80px;
  padding-top: 2px;
}
.contact-detail-val { font-size: 14px; color: var(--mid-brown); line-height: 1.55; }
.contact-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.contact-social-link {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 0.5px solid var(--border);
  padding: 8px 14px;
  color: var(--mid-brown);
  transition: all 0.18s;
}
.contact-social-link:hover { border-color: var(--gold); color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-brown); }
.form-input,
.form-textarea {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--brown);
  background: var(--cream);
  border: 0.5px solid var(--border);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.18s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { min-height: 120px; resize: vertical; font-family: var(--serif); font-style: italic; }

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: #160c03;
  padding: 60px 56px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--sand);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.footer-brand-logo span { color: var(--gold); }
.footer-brand-tag {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(245,237,216,0.3);
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer-email { font-size: 13px; color: var(--gold); letter-spacing: 0.03em; }
.footer-col-title {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
  margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  font-size: 15px;
  color: rgba(245,237,216,0.4);
  transition: color 0.18s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 0.5px solid rgba(201,168,76,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 11px; color: rgba(245,237,216,0.18); letter-spacing: 0.04em; }

/* ── INNER PAGE HERO ──────────────────────────────────── */
.page-hero {
  padding: 72px 56px 52px;
  background: var(--sand);
  border-bottom: 0.5px solid var(--border);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 300;
  color: var(--brown);
  line-height: 1.08;
  margin-top: 12px;
}
.page-hero h1 em { font-style: italic; color: var(--warm-brown); }

/* ── COMPASS AI PAGE ──────────────────────────────────── */
.compass-hero {
  background: var(--brown);
  padding: 100px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.compass-hero::before {
  content: '◎';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 600px;
  color: rgba(201,168,76,0.04);
  pointer-events: none;
  line-height: 1;
}
.compass-hero h1 {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--sand);
  position: relative;
}
.compass-hero h1 em { color: var(--gold); font-style: italic; }
.compass-hero p {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: rgba(245,237,216,0.5);
  max-width: 480px;
  margin: 16px auto 40px;
  line-height: 1.65;
  position: relative;
}
.compass-features {
  padding: var(--section-pad);
  background: var(--cream);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.compass-feat {
  background: var(--sand);
  padding: 36px 28px;
  border-top: 1px solid rgba(44,31,14,0.14);
}
.compass-feat-symbol { font-size: 28px; color: var(--gold); margin-bottom: 16px; display: block; }
.compass-feat-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 10px;
}
.compass-feat-body { font-size: 13px; color: var(--warm-brown); line-height: 1.65; }

/* ── BOOKING POLICIES ─────────────────────────────────── */
.policies-content {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--section-pad);
}
.policies-content h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 12px;
  margin-top: 36px;
}
.policies-content h2:first-child { margin-top: 0; }
.policies-content p {
  font-size: 15px;
  color: var(--mid-brown);
  line-height: 1.75;
  margin-bottom: 12px;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section-pad: 60px 28px; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 340px; }
  .hero-title { font-size: 46px; }
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .ai-section { grid-template-columns: 1fr; gap: 36px; }
  .readings-grid { grid-template-columns: 1fr; }
  .about-section { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-row: auto; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .compass-features { grid-template-columns: 1fr; }
  .gifts-strip { grid-template-columns: 1fr; }
  .divider-line { margin: 0 28px; }
}

/* ── HOMEPAGE BLOG TEXT CARDS ─────────────────────────── */
.post-card-home {
  background: var(--sand);
  border-top: 2px solid var(--brown);
  padding: 30px 26px 26px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  transition: background 0.18s;
}
.post-card-home:hover { background: #fff; }
.post-card-home.featured-home { background: var(--brown); border-top-color: var(--gold); }
.post-card-home .blog-tag { color: var(--gold); }
.post-card-home.featured-home .blog-tag { color: rgba(201,168,76,0.7); }
.post-card-home .blog-title { flex: 1; }
.post-card-home.featured-home .blog-title { color: var(--sand); }
.post-card-home.featured-home .blog-excerpt { color: rgba(245,237,216,0.55); }
.post-card-home .blog-meta { color: var(--gold); margin-top: 16px; }
.post-card-home.featured-home .blog-meta { color: rgba(201,168,76,0.5); }
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr !important; }
}
