/* ── STRONGHOLD COMPASS — Shared Stylesheet ── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Source+Sans+3:wght@400;600;700&display=swap');

:root {
  --forest: #2d5a3d;
  --forest-dark: #1f3f2b;
  --gold: #c9a84c;
  --cream: #f5f0e8;
  --cream-deep: #ebe1d3;
  --charcoal: #2c2c2c;
  --muted: #3a3530;
  --white: #fffdf8;
  --line: rgba(44, 44, 44, 0.14);
  --shadow: 0 8px 32px rgba(45, 90, 61, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: "Source Sans 3", "Source Sans Pro", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

img { display: block; width: 100%; height: auto; }

a { color: inherit; }

/* ── SITE HEADER ── */
.site-header {
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 4vw;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-compass {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: rgba(255, 253, 248, 0.88);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

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

/* ── PAGE WRAPPER ── */
.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* ── TITLE RIBBON ── */
.title-ribbon {
  background: var(--forest);
  margin: 0 calc(-1 * 4vw);
  padding: 36px 4vw;
  border-bottom: 4px solid var(--gold);
}

.title-ribbon .eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.title-ribbon h1 {
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.1;
}

/* ── CONTENT BOX ── */
.content-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5vw;
  margin: 48px 0;
  box-shadow: var(--shadow);
}

.content-box .intro-para {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  max-width: 760px;
}

.content-section {
  margin: 28px 0 0;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
}

.content-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.content-section h2 {
  margin: 0 0 12px;
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.content-section p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 760px;
}

.content-section p:last-child { margin-bottom: 0; }

/* ── CTA BUTTON ── */
.cta-wrap { margin-top: 24px; }

.cta-btn {
  display: inline-block;
  background: var(--forest);
  color: var(--white);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 4px;
  transition: background 0.18s;
}

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

.cta-btn.cta-gold {
  background: var(--gold);
  color: var(--charcoal);
}

.cta-btn.cta-gold:hover { background: #b8952e; }

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 4px solid var(--gold);
  padding: 14px 24px;
  margin: 0 0 20px;
  background: var(--cream);
  border-radius: 0 4px 4px 0;
}

.pull-quote p {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.55;
  max-width: 680px;
}

/* ── KIT ITEMS GRID ── */
.kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 20px;
  max-width: 760px;
}

.kit-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.kit-item-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.kit-item-text { flex: 1; }

.kit-item-name {
  display: block;
  font-weight: 700;
  color: var(--forest);
  font-size: 0.97rem;
  line-height: 1.3;
  margin-bottom: 4px;
}

.kit-item-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ── EMAIL SIGNUP FORM ── */
.signup-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  max-width: 560px;
}

.signup-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
}

.signup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--forest);
}

.signup-form button {
  background: var(--forest);
  color: var(--white);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  padding: 13px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.18s;
  white-space: nowrap;
}

.signup-form button:hover { background: var(--forest-dark); }

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 10px;
}

/* ── CHECKLIST ── */
.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  max-width: 640px;
}

.check-list li {
  padding: 8px 0 8px 36px;
  position: relative;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  border-bottom: 1px solid var(--line);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  width: 22px;
  height: 22px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ── REVIEW CARD ── */
.review-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 24px 28px;
  margin: 16px 0 0;
  max-width: 720px;
}

.review-card .review-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin: 0 0 12px;
}

.review-card .review-attribution {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ── CONTACT CARD ── */
.contact-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px 24px;
  margin-top: 16px;
  max-width: 560px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-card-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }

.contact-card-text { flex: 1; }

.contact-card-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-card-email {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
}

.contact-card-note {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── CONTACT BOX (media page) ── */
.contact-box {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 20px 24px;
  margin-top: 16px;
  max-width: 560px;
}

.contact-box p { margin: 0; font-size: 0.97rem; }

/* ── INTERVIEW LIST ── */
.interview-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  max-width: 680px;
}

.interview-list li {
  padding: 10px 0 10px 36px;
  position: relative;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
  border-bottom: 1px solid var(--line);
}

.interview-list li:last-child { border-bottom: none; }

.q-num {
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── BOOK BADGE (upcoming page) ── */
.book-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; align-items: center; }

.book-num {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.book-badge {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.book-badge.available {
  background: var(--forest);
  color: var(--white);
}

.book-badge.coming {
  background: var(--cream-deep);
  color: var(--muted);
  border: 1px solid var(--line);
}

/* ── PLACEHOLDER NOTE ── */
.placeholder-note {
  display: inline;
  background: #fff3cd;
  color: #7a5c00;
  border-radius: 3px;
  padding: 0 3px;
  font-style: normal;
}

/* ── SITE FOOTER ── */
.legal-footer {
  background: var(--forest);
  color: var(--white);
  font-size: 13px;
  text-align: center;
  padding: 28px 24px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.8;
  margin-top: 64px;
}

.legal-footer p { margin: 0 0 6px; }
.legal-footer p:last-child { margin: 0; opacity: 0.85; font-style: italic; }
.legal-footer a { color: var(--white); text-decoration: underline; margin: 0 8px; }

/* ── HOMEPAGE HERO ── */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background: var(--forest-dark);
  overflow: hidden;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,63,43,0.92) 0%, rgba(45,90,61,0.75) 60%, rgba(45,90,61,0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 4vw 72px;
}

.kicker {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

.hero-content h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 20px;
}

.hero-content .hero-sub {
  font-size: 1.1rem;
  color: rgba(255,253,248,0.85);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 0 32px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── HOMEPAGE SECTIONS ── */
.home-section {
  padding: 64px 4vw;
  max-width: 1100px;
  margin: 0 auto;
}

.home-section h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 20px;
  line-height: 1.2;
}

.home-section p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 0 20px;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  color: var(--forest);
  margin: 0 0 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 640px) {
  .site-nav { display: none; }

  .title-ribbon h1 { font-size: 1.6rem; }

  .hero-content h1 { font-size: 2.2rem; }

  .kit-grid { grid-template-columns: 1fr; }

  .feature-grid { grid-template-columns: 1fr; }

  .content-box { padding: 6vw; }

  .hero-btns { flex-direction: column; gap: 12px; }
}
