/* ─────────────────────────────────────────────
   HARD FEEDBACK, HIGH TRUST — Shared Stylesheet
   hfht.css · v1.0
   ───────────────────────────────────────────── */

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

/* ── TOKENS ── */
:root {
  --black: #0d0d0d;
  --off-black: #141414;
  --dark: #1a1a1a;
  --mid: #2a2a2a;
  --border: #2e2e2e;
  --muted: #888;
  --light: #c8c8c8;
  --white: #f5f4f0;
  --cream: #f0ede6;
  --accent: #4db56c;
  --accent-light: #7ab883;
  --accent-dim: rgba(74,124,89,0.12);
  --red-dim: rgba(180,60,60,0.08);
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 16px;
}

h2 em { font-style: italic; color: var(--accent-light); }

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-lead {
  font-size: 16px;
  color: var(--light);
  max-width: 600px;
  line-height: 1.65;
}

/* ── LAYOUT ── */
section {
  padding: 80px 24px;
  max-width: 860px;
  margin: 0 auto;
}

.rule {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200,169,110,0.3);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 12px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 400;
  color: var(--light);
  max-width: 620px;
  margin: 20px auto 0;
  line-height: 1.55;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
  font-size: 13px;
  color: var(--muted);
}

.hero-meta span { color: var(--accent); font-weight: 600; }
.hero-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }


.scroll-cue {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}

.scroll-cue svg { opacity: 0.4; }

@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ── CARDS (For Who) ── */
.for-who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.card {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.card.green { border-top: 2px solid var(--accent); }
.card.red   { border-top: 2px solid #b44040; }

.card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.card.green .card-label { color: var(--accent); }
.card.red   .card-label { color: #c06060; }

.card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.card li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--light);
  line-height: 1.5;
}

.card li .icon { flex-shrink: 0; margin-top: 2px; }

/* ── VIDEO ── */
.video-wrap {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  margin-top: 48px;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  gap: 16px;
  color: var(--muted);
}

.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  background: rgba(200,169,110,0.08);
}

.play-btn:hover { background: rgba(200,169,110,0.18); }

.video-placeholder p {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.video-embed { width: 100%; height: 100%; border: none; }

/* ── PILLARS ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pillar {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}

.pillar-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 14px;
}

.pillar h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.pillar p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PULL QUOTE ── */
.pull-quote {
  background: var(--accent-dim);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 28px 32px;
  margin: 48px 0 0;
}

.pull-quote blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

/* ── BOOKING ── */
.booking-section {
  padding: 80px 24px;
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.booking-inner {
  max-width: 860px;
  margin: 0 auto;
}

.calendly-embed {
  margin-top: 48px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 700px;
}

.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 40px 24px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

footer a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

footer a:hover { color: var(--light); }

/* ── POLICY PAGES ── */
.policy-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 32px 96px;
}

.policy-wrap h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 8px;
}

.meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.policy-wrap h2 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-light);
  text-transform: uppercase;
  margin: 36px 0 10px;
}

.policy-wrap p {
  font-size: 15px;
  color: var(--light);
  line-height: 1.75;
  margin-bottom: 12px;
}

.policy-wrap ul {
  padding-left: 20px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-wrap li {
  font-size: 15px;
  color: var(--light);
  line-height: 1.7;
}

.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.15s;
  background: none;
  border: none;
  cursor: pointer;
}

.policy-back:hover { color: var(--accent-light); }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .for-who { grid-template-columns: 1fr; }
  .pillars  { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   HOME PAGE (index.html)
   ───────────────────────────────────────────── */

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(46,46,46,0.6);
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-logo em { font-style: italic; color: var(--accent-light); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.15s;
}

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

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent) !important;
  border: 1px solid rgba(200,169,110,0.35);
  padding: 8px 20px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: rgba(200,169,110,0.12);
  color: var(--white) !important;
}

/* Hero adjustments for home */
.hero-home { padding-top: 120px; min-height: 100vh; }

.hero-kicker {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 28px;
  letter-spacing: 0.03em;
}

/* Manifesto strip */
.manifesto {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 24px;
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-inner p {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 20px;
}

.manifesto-inner p:last-of-type {
  margin-bottom: 0;
  color: var(--light);
  font-size: clamp(15px, 2vw, 18px);
  font-family: 'Inter', sans-serif;
  font-style: normal;
}

/* Problems grid */
.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 48px;
}

.problem-item {
  background: var(--off-black);
  padding: 28px 32px;
}

.problem-item .num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 10px;
}

.problem-item p {
  font-size: 15px;
  color: var(--light);
  line-height: 1.55;
}

/* Principles */
.principles {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.principle {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.principle:last-child { border-bottom: none; }

.principle-label {
  flex-shrink: 0;
  width: 140px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 4px;
}

.principle-body h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.principle-body p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
}

/* Offerings */
.offerings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.offering {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}

.offering:hover { border-color: rgba(200,169,110,0.35); }

.offering-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.offering h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.offering p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.offering-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: gap 0.15s;
}

.offering-link:hover { gap: 10px; }
.offering-link .arrow { font-size: 16px; }

.offering.soon { opacity: 0.5; pointer-events: none; }
.offering.soon .offering-link { color: var(--muted); }

.soon-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: -4px;
}

/* About strip */
.about-strip {
  padding: 80px 24px;
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.about-left .section-tag { margin-bottom: 16px; }
.about-left h2 { font-size: clamp(24px, 3.5vw, 36px); }

.about-right p {
  font-size: 15.5px;
  color: var(--light);
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-right p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Buttons */
/* ── CTA BUTTON (used below video, etc.) ── */
.cta-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  background: var(--accent);
  padding: 14px 36px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.2s;
}

.cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-primary {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  background: var(--accent);
  padding: 14px 36px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--light);
  border: 1px solid var(--border);
  padding: 14px 36px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-left: 12px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--muted); color: var(--white); }

/* Footer link spacing on home */
.home-footer a { margin-left: 16px; }

/* Home responsive */
@media (max-width: 760px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .problems-grid { grid-template-columns: 1fr; }
  .offerings { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .principle { flex-direction: column; gap: 8px; }
  .principle-label { width: auto; }
}
