/* ── TOKENS ── */
:root {
  --forest:       #0f1713;
  --forest-deep:  #09110d;
  --forest-mid:   #1a2e22;
  --cream:        #f4ead8;
  --cream-soft:   #ede0c8;
  --cream-deep:   #e3d4b8;
  --surface:      #faf6ee;
  --ink:          #1d1a15;
  --ink-soft:     #5c544b;
  --ink-faint:    #9c8e7a;
  --gold:         #b99146;
  --gold-soft:    #d8be8b;
  --gold-deep:    #8a6a2e;
  --line-dark:    rgba(29,26,21,0.10);
  --line-cream:   rgba(29,26,21,0.08);
  --shadow-sm:    0 4px 16px rgba(29,26,21,0.08);
  --shadow:       0 12px 36px rgba(29,26,21,0.12);
  --shadow-lg:    0 20px 54px rgba(0,0,0,0.18);
  --radius:       20px;
  --radius-sm:    14px;
  --max:          1180px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(9,17,13,0.90);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  min-height: 72px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.brand, .footer-brand {
  font-family: "Cinzel", serif;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
}
.brand { font-size: 1.2rem; }
.top-nav { display: flex; align-items: center; gap: 1rem; }
.top-nav a { color: rgba(244,234,216,0.82); font-size: 0.92rem; transition: color 0.2s; }
.top-nav a:hover { color: #fff; }
.nav-pill {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(185,145,70,0.45);
  border-radius: 999px; font-weight: 600;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0.9rem 1.35rem;
  border-radius: 999px; font-weight: 700; font-size: 0.93rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(180deg, #d4b165 0%, #a07828 100%);
  color: #181208;
  box-shadow: 0 8px 24px rgba(160,120,40,0.28);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(160,120,40,0.38); }

.btn-secondary {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: #fff7ee;
  backdrop-filter: blur(6px);
}

.btn-outline-dark {
  border-color: rgba(29,26,21,0.18);
  color: var(--ink); background: transparent;
}
.btn-outline-dark:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

.btn-forest {
  background: var(--forest-mid);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(9,17,13,0.22);
}
.btn-forest:hover { background: #243d2d; box-shadow: 0 12px 32px rgba(9,17,13,0.30); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh; overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.hero-darken {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,12,10,0.14) 0%, rgba(8,12,10,0.28) 26%, rgba(8,12,10,0.62) 72%, rgba(8,12,10,0.90) 100%),
    linear-gradient(90deg, rgba(8,12,10,0.58) 0%, rgba(8,12,10,0.12) 48%, rgba(8,12,10,0.36) 100%);
}
.hero-overlay-inner {
  position: relative; z-index: 2; width: 100%;
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(260px,340px);
  gap: 1.5rem; align-items: end;
  padding: 5rem 0 2.5rem;
}
.hero-copy-overlay { max-width: 700px; }
.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.76rem; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--gold-soft); font-weight: 700;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6.4vw, 5.7rem);
  font-weight: 600; line-height: 0.96;
  max-width: 11ch; color: #fff7ee; margin: 0 0 1rem;
  text-shadow: 0 3px 18px rgba(0,0,0,0.26);
}
.hero-lead {
  font-size: 1.06rem; color: rgba(255,246,234,0.90);
  max-width: 56ch; margin: 0 0 1.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.1rem; }
.hero-points {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.4rem;
  color: rgba(255,246,234,0.80); font-size: 0.93rem;
}
.hero-points li::before { content: "•"; color: var(--gold-soft); margin-right: 0.55rem; }

/* Hero ability card */
.ability-card {
  background: rgba(9,17,13,0.72);
  border: 1px solid rgba(185,145,70,0.22);
  border-radius: var(--radius); padding: 1.5rem;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}
.card-kicker, .section-label, .mini-label {
  margin: 0 0 0.85rem;
  font-size: 0.74rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-soft); font-weight: 700;
  display: block;
}
.ability-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.ability-list li {
  position: relative; padding-left: 1.3rem;
  color: rgba(244,234,216,0.92); font-size: 0.97rem;
}
.ability-list li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--gold); font-weight: 700; font-size: 0.8rem;
}

/* ── SECTIONS ── */
.section {
  padding: 5rem 0;
}
.section-alt  { background: var(--cream-soft); }
.section-deep { background: var(--cream-deep); }

h2, h3 { font-family: "Cormorant Garamond", serif; line-height: 1.0; margin: 0 0 0.9rem; }
.section-title {
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  color: var(--ink); text-align: center; margin-bottom: 0.7rem;
}
.section-intro {
  max-width: 700px; margin: 0 auto 2.2rem;
  text-align: center; font-size: 1rem; color: var(--ink-soft);
}

/* ── CARDS ── */
.card {
  background: var(--surface);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 0.7rem; }
.card p   { color: var(--ink-soft); }

/* ── SIGNUP SECTION ── */
.signup-section {
  background: var(--forest-deep);
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem; align-items: start;
}
.signup-copy { color: rgba(244,234,216,0.90); }
.signup-copy .section-label { color: var(--gold-soft); }
.signup-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 0.98; color: #fff7ee; margin-bottom: 1rem;
}
.signup-copy p { color: rgba(244,234,216,0.78); margin-bottom: 0.8rem; }
.signup-trust {
  display: inline-block; margin-top: 0.8rem;
  padding: 0.75rem 1rem;
  background: rgba(185,145,70,0.10);
  border: 1px solid rgba(185,145,70,0.22);
  border-radius: var(--radius-sm);
  color: var(--gold-soft); font-size: 0.88rem;
}
.signup-trust strong { color: var(--gold-soft); }
.signup-card {
  background: var(--surface);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-lg);
}
.signup-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem; color: var(--ink); margin-bottom: 0.4rem;
}
.signup-card p { color: var(--ink-soft); font-size: 0.93rem; margin-bottom: 0; }
.signup-kicker {
  display: block; margin-bottom: 0.5rem;
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--gold-deep); font-weight: 700;
}
.pricing-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.1rem; padding: 0.6rem 0.9rem;
  background: rgba(185,145,70,0.10);
  border: 1px solid rgba(185,145,70,0.20);
  border-radius: var(--radius-sm);
  font-size: 0.86rem; color: var(--ink-soft);
}
.pricing-pill strong { color: var(--forest-mid); font-size: 1rem; }

/* ── WANDERER / TRUST SECTION ── */
.wanderer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem; align-items: stretch;
}
.bio-card {
  background: var(--surface);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius); padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.bio-card h3 { font-size: 1.6rem; color: var(--ink); }
.bio-card p   { color: var(--ink-soft); }
.pull-quote {
  margin-top: 1.2rem !important; padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem; line-height: 1.1;
  color: var(--gold-deep) !important; font-style: italic;
}
.pull-quote a { color: var(--gold-deep); }
.pull-quote a:hover { color: var(--gold); }
.clean {
  margin: 0.9rem 0 1rem; padding-left: 1.1rem;
  color: var(--ink-soft); display: grid; gap: 0.5rem;
}
.clean li + li { margin-top: 0; }
.no-ai {
  margin-top: 1rem !important;
  padding: 0.75rem 1rem;
  background: rgba(15,23,19,0.06);
  border-left: 3px solid var(--forest-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink-soft); font-size: 0.92rem;
}

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.25rem;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(185,145,70,0.12);
  border: 1px solid rgba(185,145,70,0.22);
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 0.9rem;
}

/* ── SAMPLE / AUDIO ── */
.sample-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.4rem; align-items: stretch;
}
.phrase { display: grid; gap: 0.85rem; }
.phrase-line {
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--line-cream);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.1rem;
}
.phrase-label {
  display: block; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.73rem;
  color: var(--ink-faint); margin-bottom: 0.22rem; font-weight: 700;
}
.phrase-text { font-size: 1.08rem; color: var(--ink); }
.phrase-text.irish { color: var(--forest-mid); font-weight: 600; }
.audio-box { display: flex; flex-direction: column; justify-content: center; }
.audio-button {
  display: inline-flex; align-items: center; gap: 0.6rem;
  min-height: 48px; padding: 0.9rem 1.35rem;
  border-radius: 999px; font-weight: 700; cursor: pointer;
  background: linear-gradient(180deg, #d4b165 0%, #a07828 100%);
  color: #181208; box-shadow: 0 8px 24px rgba(160,120,40,0.28);
  border: none; font-size: 0.93rem; width: fit-content;
  margin: 1rem 0 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.audio-button:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(160,120,40,0.38); }
.microcopy { color: var(--ink-faint); font-size: 0.9rem; line-height: 1.55; }

/* ── W-PHONIC SECTION ── */
.wphonic-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; align-items: stretch;
}
.wphonic-card {
  display: flex; flex-direction: column; justify-content: center;
}
.wphonic-card p { color: var(--ink-soft); }
.wphonic-card .btn { width: fit-content; margin-top: 0.8rem; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 0 2.4rem;
  background: var(--forest-deep);
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem; flex-wrap: wrap;
}
.footer-meta {
  margin: 0; color: rgba(196,162,74,0.40);
  font-size: 0.88rem;
}
.footer a { color: rgba(196,162,74,0.40); }
.footer a:hover { color: rgba(196,162,74,0.65); }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hero-overlay-inner,
  .signup-grid,
  .wanderer-grid,
  .sample-grid,
  .wphonic-grid,
  .steps { grid-template-columns: 1fr; }
  .hero { min-height: 76vh; }
}

@media (max-width: 700px) {
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 680px) {
  .top-nav { display: none; }
  .container { width: min(calc(100% - 1.2rem), var(--max)); }
  .hero-actions { flex-direction: column; }
  .btn, .audio-button { width: 100%; justify-content: center; }
  .hero h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .hero-overlay-inner { padding: 4rem 0 1.4rem; }
  .section { padding: 2.8rem 0; }
  .signup-section { padding: 3rem 0; }
  .card, .signup-card, .bio-card { padding: 1.25rem; }
}
