/* ============================================================
   Adam Khan Coaching — minimal, editorial, warm
   Palette: warm cream + deep ink + restrained brass accent
   Type:    Gambarino (display serif) + Satoshi (body sans)
   ============================================================ */

:root {
  --cream:        #F4ECDA;
  --cream-2:      #EFE5CD;
  --paper:        #FBF7EC;
  --ink:          #14201F;
  --ink-2:        #2A322F;
  --muted:        #5F665F;
  --faint:        #A8A498;
  --line:         #D9CFB4;
  --line-soft:    #E6DDC4;
  --accent:       #8A6A1E;   /* brass */
  --accent-2:     #6E5314;
  --navy:         #1A2A33;

  --radius:       14px;
  --radius-sm:    8px;

  --shadow-sm: 0 1px 2px rgba(20,32,31,0.04), 0 1px 1px rgba(20,32,31,0.03);
  --shadow:    0 10px 30px -12px rgba(20,32,31,0.18);

  --container: 1200px;
  --pad-x:     clamp(20px, 5vw, 56px);

  --font-display: "Gambarino", "Editorial New", Georgia, "Times New Roman", serif;
  --font-body:    "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --t-eyebrow: 12px;
  --t-body:    17px;
  --t-lede:    20px;
  --t-h3:      22px;
  --t-h2:      clamp(30px, 4.2vw, 46px);
  --t-h1:      clamp(40px, 6.4vw, 78px);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 0.4em;
}
h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); line-height: 1.1; }
h3 { font-size: var(--t-h3); font-family: var(--font-body); font-weight: 700; letter-spacing: -0.005em; line-height: 1.3; }
p  { margin: 0 0 1em; color: var(--ink-2); }

::selection { background: var(--accent); color: var(--paper); }

.eyebrow {
  display: inline-block;
  font-size: var(--t-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 18px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(20px, 4vw, 40px);
  background: rgba(244,236,218,0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--navy);
}
.brand .logo { color: var(--navy); flex: 0 0 auto; }
.logo {
  filter: drop-shadow(0 6px 14px rgba(20,32,31,0.08));
}
.logo-script {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 15px;
  font-weight: 400;
  fill: var(--cream);
  letter-spacing: -0.04em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-size: 20px; color: var(--ink); }
.brand-sub  { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

.nav nav {
  display: flex; align-items: center; gap: 22px;
}
@media (max-width: 1100px) {
  .nav nav { gap: 18px; }
  .nav nav a { font-size: 13px; }
}
.nav nav a {
  font-size: 14px; color: var(--ink-2);
  position: relative; padding: 6px 0;
}
.nav nav a:not(.nav-cta):hover { color: var(--ink); }
.nav nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: var(--accent);
  transition: width .25s ease;
}
.nav nav a:not(.nav-cta):hover::after { width: 100%; }
.nav nav a.nav-cta {
  padding: 9px 18px; border-radius: 999px;
  background: var(--ink); color: var(--cream);
  font-weight: 500;
  transition: background .2s ease, transform .2s ease;
}
.nav nav a.nav-cta::after { display: none; }
.nav nav a.nav-cta:hover { background: var(--navy); transform: translateY(-1px); color: var(--cream); }

.menu-btn {
  display: none;
  background: none; border: 0; padding: 8px;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 4px;
}
.menu-btn span {
  display: block; height: 1.5px; background: var(--ink); width: 22px;
}

@media (max-width: 820px) {
  .menu-btn { display: flex; }
  .nav nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 8px var(--pad-x) 16px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav nav a { padding: 14px 0; border-top: 1px solid var(--line-soft); }
  .nav nav a:first-child { border-top: 0; }
  .nav nav .nav-cta { text-align: center; margin-top: 10px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500; font-size: 15px; letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn-primary {
  background: var(--ink); color: var(--cream);
}
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 56px var(--pad-x) 72px; }
.hero-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.hero-copy h1 { margin-top: 8px; }
.hero-copy h1 br { display: none; }
@media (min-width: 900px) { .hero-copy h1 br { display: inline; } }
.lede { font-size: var(--t-lede); color: var(--ink-2); max-width: 56ch; margin-top: 6px; }
.launch-banner {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 4px 0 16px;
  padding: 8px 12px;
  border: 1px solid rgba(138,106,30,0.36);
  border-radius: 999px;
  background: rgba(251,247,236,0.78);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.launch-banner span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
}
.launch-banner strong {
  font-size: 14px;
  color: var(--ink);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-meta {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-wrap: wrap; gap: 18px;
  font-size: 14px; color: var(--muted);
}
.hero-meta li { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta span { color: var(--accent); }

.hero-portrait { position: relative; }
.portrait-frame {
  position: relative;
  border-radius: 999px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
  max-width: 430px;
  margin-left: auto;
  border: 8px solid rgba(251,247,236,0.72);
}
.portrait-frame img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 54% 44%;
  filter: saturate(0.95) contrast(1.02);
}
.portrait-frame::after {
  /* subtle warm overlay */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,32,31,0) 55%, rgba(20,32,31,0.35) 100%);
  pointer-events: none;
}
.portrait-tag {
  position: absolute; left: 50%; bottom: 18px;
  transform: translateX(-50%);
  background: rgba(244,236,218,0.92);
  color: var(--ink);
  padding: 7px 12px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(6px);
}
.portrait-tag .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--accent);
}

@media (max-width: 900px) {
  .hero { padding: 32px var(--pad-x) 56px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { order: -1; max-width: 390px; margin: 0 auto; width: 100%; }
  .portrait-frame { margin: 0 auto; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.strip {
  background: var(--ink);
  color: var(--cream);
  padding: 18px var(--pad-x);
  border-top: 1px solid var(--ink-2);
  border-bottom: 1px solid var(--ink-2);
}
.strip-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 14px 20px;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream-2);
  justify-content: center; align-items: center;
}
.strip-inner span:nth-child(even) { color: var(--accent); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(64px, 10vw, 112px) var(--pad-x); }
.section-alt { background: var(--paper); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section-head {
  max-width: 760px; margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.section-head h2 { margin: 0 0 0.4em; }
.section-sub {
  max-width: 60ch; margin: 12px auto 0; color: var(--muted); font-size: 17px;
}

/* ============================================================
   STORY
   ============================================================ */
#story .section-head { text-align: left; max-width: var(--container); margin-left: auto; margin-right: auto; }
.story-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 0.9fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.story-text p { font-size: 19px; max-width: 60ch; }
.story-text p + p { margin-top: 0.9em; }
.story-text strong { color: var(--ink); }
.story-aside {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
}
.story-aside h3 { font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 16px; }
.story-aside ul { list-style: none; padding: 0; margin: 0; }
.story-aside li {
  padding: 12px 0; border-top: 1px solid var(--line-soft);
  font-size: 15px; color: var(--ink-2);
}
.story-aside li:first-child { border-top: 0; padding-top: 0; }
.story-aside li strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 2px; }
@media (max-width: 820px) {
  .story-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WHY ME
   ============================================================ */
.why-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.why-card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px;
}
.why-num {
  font-family: var(--font-display);
  font-size: 28px; color: var(--accent);
  margin-bottom: 12px;
}
.why-card h3 { margin-bottom: 8px; font-size: 19px; }
.why-card p { color: var(--muted); margin: 0; }
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}
.service-card.featured {
  background: var(--ink); color: var(--cream);
  border-color: var(--ink);
}
.service-card.featured h3,
.service-card.featured p,
.service-card.featured li { color: var(--cream); }
.service-card.featured p { color: var(--cream-2); }
.service-card.featured .card-cta { color: var(--cream); }
.service-card.featured .card-cta:hover { color: var(--accent); }
.service-card h3 { font-size: 20px; margin-bottom: 8px; }
.service-card p { color: var(--muted); }
.service-card.featured p { opacity: .92; }
.service-card ul {
  list-style: none; padding: 0; margin: 8px 0 18px;
}
.service-card li {
  position: relative; padding-left: 22px; margin: 8px 0;
  font-size: 15px; color: var(--ink-2);
}
.service-card.featured li { color: var(--cream-2); }
.service-card li::before {
  content: ""; position: absolute; left: 0; top: 0.7em;
  width: 12px; height: 1px; background: var(--accent);
}
.service-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: var(--paper);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.card-cta {
  margin-top: auto;
  font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.card-cta:hover { color: var(--accent); border-color: var(--accent); }

.services-foot {
  max-width: 70ch; margin: 36px auto 0;
  text-align: center; color: var(--muted); font-size: 15px;
}

@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.for-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 36px;
}
.for-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-top: 1px solid var(--line-soft);
}
.for-item:nth-child(-n+2) { border-top: 0; padding-top: 0; }
.for-item p { margin: 0; color: var(--ink-2); }
.check {
  flex: 0 0 auto;
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--ink); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; line-height: 1;
}
@media (max-width: 720px) {
  .for-grid { grid-template-columns: 1fr; }
  .for-item:nth-child(2) { border-top: 1px solid var(--line-soft); padding-top: 14px; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.review {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
}
.review blockquote {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.35;
  color: var(--ink);
}
.review figcaption { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
.review-soft {
  background: var(--ink); color: var(--cream);
  border-color: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
}
.review-soft blockquote { color: var(--cream); }
.review-soft figcaption a { color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
@media (max-width: 760px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.discount-panel {
  max-width: 720px;
  margin: -28px auto 36px;
  padding: 22px 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(138,106,30,0.38);
  background:
    linear-gradient(135deg, rgba(138,106,30,0.14), rgba(251,247,236,0.95)),
    var(--paper);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.discount-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-2);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.discount-panel strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  color: var(--ink);
}
.discount-panel p {
  margin: 10px 0 0;
  color: var(--muted);
}
.price-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column;
}
.price-card h3 { font-size: 18px; margin-bottom: 8px; }
.price {
  font-family: var(--font-display);
  font-size: 34px; color: var(--ink);
  margin: 4px 0 10px;
  line-height: 1.1;
}
.price span {
  font-family: var(--font-body);
  font-size: 13px; color: var(--muted);
  letter-spacing: 0.04em; font-weight: 400;
  margin-left: 4px;
}
.price-card p { color: var(--muted); flex: 1; }
.price-card .card-cta { margin-top: 14px; }
.price-card.featured {
  background: linear-gradient(180deg, var(--paper), var(--cream-2));
  border-color: var(--accent);
}
.price-card.featured .service-tag { background: var(--ink); color: var(--cream); }
.pricing-note {
  max-width: 60ch; margin: 24px auto 0;
  text-align: center; color: var(--muted); font-size: 14px;
}
.pricing-note code, .book-note code {
  background: var(--cream-2); padding: 2px 6px;
  border-radius: 4px; font-size: 13px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BOOK
   ============================================================ */
.book-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.book-cta .btn { width: 100%; }
.book-or { margin: 18px 0 10px; color: var(--muted); font-size: 14px; }
.book-cta .btn-ghost { width: 100%; }
.book-note {
  margin-top: 28px; padding: 16px;
  background: var(--paper);
  border: 1px dashed var(--accent);
  border-radius: var(--radius-sm);
  font-size: 13px; color: var(--muted);
}
.book-note strong { color: var(--ink); }

.embed-frame {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  height: 720px;
}
.embed-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
  background: var(--paper);
}
.embed-fallback {
  margin-top: 10px; font-size: 13px; color: var(--muted); text-align: center;
}
.embed-fallback a { color: var(--accent); border-bottom: 1px solid var(--accent); }
@media (max-width: 900px) {
  .book-grid { grid-template-columns: 1fr; }
  .embed-frame { height: 620px; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  background: var(--ink); color: var(--cream);
  padding: clamp(64px, 9vw, 96px) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: ""; position: absolute; inset: -2px;
  background:
    radial-gradient(800px 300px at 20% 0%, rgba(138,106,30,0.18), transparent 60%),
    radial-gradient(700px 300px at 80% 100%, rgba(138,106,30,0.12), transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-final h2 { color: var(--cream); }
.cta-final p { color: var(--cream-2); margin-bottom: 28px; font-size: 18px; }
.cta-final .btn-primary {
  background: var(--cream); color: var(--ink);
}
.cta-final .btn-primary:hover { background: var(--accent); color: var(--paper); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  padding: 48px var(--pad-x) 36px;
}
.footer-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr 1.4fr; gap: 32px;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--navy); }
.footer-brand .brand-name { font-family: var(--font-display); font-size: 18px; color: var(--ink); }
.footer-brand .brand-sub { font-size: 12px; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.footer-links a { font-size: 14px; color: var(--ink-2); }
.footer-links a:hover { color: var(--accent); }
.footer-fine { font-size: 12px; color: var(--muted); text-align: right; }
.footer-fine p { margin: 0; color: var(--muted); }
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-fine { text-align: center; }
}

/* ============================================================
   MOTION
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   FOCUS
   ============================================================ */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
