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

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

:root {
  --bg: #F8F6F1;
  --bg-alt: #F0EDE6;
  --text: #141414;
  --muted: #706C68;
  --accent: #5C6B3C;
  --accent-dark: #4A5530;
  --border: #E2DDD5;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Krub', system-ui, sans-serif;
  --max: 1100px;
  --nav: 68px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.75rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }

p { font-size: 1.0625rem; line-height: 1.78; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
section { padding: 5.5rem 0; }
.page-content { padding-top: var(--nav); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 2rem;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.625rem;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
}
.nav-logo img { height: 32px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--text) !important;
  color: var(--bg) !important;
  padding: 0.45rem 1.1rem;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent) !important; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s; border: none;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { background: var(--accent); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--text); }
.btn-light { background: var(--white); color: var(--accent); font-weight: 600; }
.btn-light:hover { background: var(--bg); }

/* LABELS */
.label {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem; display: block;
}

/* HERO */
.hero { min-height: calc(88vh - var(--nav)); display: flex; align-items: center; padding: 5rem 0 4rem; }
.hero h1 { max-width: 15ch; margin-bottom: 1.5rem; }
.hero .sub { font-size: 1.125rem; max-width: 50ch; color: var(--muted); margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ALT SECTION BG */
.bg-white { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bg-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bg-dark { background: var(--text); color: var(--bg); }

/* COURSES GRID */
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.course-card { padding: 2rem; border: 1px solid var(--border); background: var(--white); }
.course-card .num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 400;
  color: var(--border); line-height: 1; margin-bottom: 1.25rem;
}
.course-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.course-card p { font-size: 0.9375rem; color: var(--muted); margin-bottom: 1.5rem; }
.card-link { font-size: 0.875rem; font-weight: 500; color: var(--accent); }
.card-link::after { content: ' →'; }
.card-link.muted { color: var(--muted); }
.card-link.muted::after { content: ''; }

/* WORKBOOKS */
.workbooks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 3rem; margin-top: 3rem; }
.workbook { padding: 2rem 0; border-top: 2px solid var(--border); }
.workbook .wb-num { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem; }
.workbook h3 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.workbook p { font-size: 0.9375rem; color: var(--muted); }

/* FOR LIST */
.for-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2.5rem; }
.for-list li { padding: 1.5rem; background: var(--bg-alt); border: 1px solid var(--border); font-size: 0.9375rem; color: var(--muted); line-height: 1.5; }

/* QUOTE SECTION */
.quote-section { background: var(--text); color: var(--bg); padding: 6rem 0; }
.quote-section blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.75rem); line-height: 1.25;
  max-width: 32ch; margin-bottom: 1.25rem;
}
.quote-section cite { font-size: 0.8125rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.5; font-style: normal; }
.quote-section .quote-body { color: rgba(248,246,241,0.65); max-width: 54ch; margin-top: 2rem; font-size: 1.0625rem; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial { padding: 2rem; background: var(--white); border: 1px solid var(--border); }
.testimonial p { font-style: italic; margin-bottom: 1rem; }
.testimonial cite { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; color: var(--muted); font-style: normal; text-transform: uppercase; }

/* CTA SECTION */
.cta-section { background: var(--accent); color: var(--white); padding: 6rem 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section .sub { color: rgba(255,255,255,0.75); max-width: 52ch; margin: 0 auto 2.5rem; }
.cta-section .note { margin-top: 1.5rem; font-size: 0.875rem; opacity: 0.65; }

/* FOOTER */
footer { background: var(--text); color: var(--bg); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(248,246,241,0.1); }
.footer-brand .f-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.875rem; color: rgba(248,246,241,0.5); }
.footer-col h5 { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(248,246,241,0.4); margin-bottom: 1rem; font-family: var(--font-body); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(248,246,241,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--bg); }
.footer-bottom { padding-top: 2rem; font-size: 0.8rem; color: rgba(248,246,241,0.3); }

/* ABOUT */
.about-hero { padding: 7rem 0 4rem; }
.about-hero h1 { max-width: 20ch; margin-bottom: 0; }
.about-layout { display: grid; grid-template-columns: 280px 1fr; gap: 6rem; padding: 5rem 0; align-items: start; }
.author-sticky { position: sticky; top: calc(var(--nav) + 2rem); }
.author-photo {
  width: 100%; aspect-ratio: 3/4; background: var(--bg-alt);
  border: 1px solid var(--border); margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8125rem; color: var(--muted); font-style: italic;
  overflow: hidden;
}
.author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; margin-bottom: 0.25rem; }
.author-title { font-size: 0.875rem; color: var(--muted); }
.about-body-text h2 { font-size: clamp(1.75rem, 2.5vw, 2.25rem); margin-bottom: 1.25rem; margin-top: 3.5rem; }
.about-body-text h2:first-child { margin-top: 0; }
.about-body-text p { margin-bottom: 1.25rem; color: #3A3937; }
.about-body-text p:last-child { margin-bottom: 0; }

/* COURSE PAGE */
.course-hero { padding: 7rem 0 4rem; border-bottom: 1px solid var(--border); }
.course-hero h1 { max-width: 20ch; margin-bottom: 1.25rem; }
.course-hero .sub { font-size: 1.125rem; max-width: 56ch; color: var(--muted); margin-bottom: 2rem; }
.outcomes-list { list-style: none; margin-top: 2.5rem; }
.outcomes-list li { padding: 0.875rem 0; border-bottom: 1px solid var(--border); display: flex; gap: 1rem; align-items: flex-start; font-size: 0.9375rem; }
.outcomes-list li::before { content: '✓'; color: var(--accent); font-weight: 600; flex-shrink: 0; margin-top: 0.15rem; }
.delivery-box { background: var(--bg-alt); border: 1px solid var(--border); padding: 2.5rem; margin-top: 2rem; }
.delivery-box h3 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 0.75rem; }
.delivery-box p { font-size: 0.9375rem; color: var(--muted); margin-bottom: 1rem; }
.delivery-box p:last-child { margin-bottom: 0; }
.delivery-box strong { color: var(--text); font-weight: 500; }
.pricing-box { background: var(--text); color: var(--bg); padding: 3rem; text-align: center; margin-top: 3rem; }
.pricing-box h3 { color: var(--bg); font-size: 2rem; margin-bottom: 0.5rem; }
.pricing-box p { color: rgba(248,246,241,0.65); margin-bottom: 2rem; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.75rem 0; }
.faq-item h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 500; margin-bottom: 0.625rem; }
.faq-item p { font-size: 0.9375rem; color: var(--muted); }

/* BLOG PAGE */
.blog-hero { padding: 7rem 0 3.5rem; border-bottom: 1px solid var(--border); }
.blog-hero h1 { max-width: 22ch; margin-bottom: 1rem; }
.blog-hero p { color: var(--muted); max-width: 56ch; }
.post-list { margin-top: 0; }
.post-item {
  display: grid; grid-template-columns: 100px 1fr auto;
  gap: 2.5rem; padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start; cursor: pointer;
  transition: opacity 0.2s;
}
.post-item:hover { opacity: 0.75; }
.post-week { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem; }
.post-date { font-size: 0.8125rem; color: var(--muted); }
.post-title { font-family: var(--font-display); font-size: 1.625rem; font-weight: 500; margin-bottom: 0.5rem; line-height: 1.2; }
.post-excerpt { font-size: 0.9375rem; color: var(--muted); }
.post-arrow { font-size: 1.25rem; color: var(--muted); margin-top: 0.5rem; }
.newsletter-box { background: var(--bg-alt); border: 1px solid var(--border); padding: 3rem; margin-top: 4rem; }
.newsletter-box h3 { font-size: 1.75rem; margin-bottom: 0.625rem; }
.newsletter-box p { color: var(--muted); max-width: 48ch; margin-bottom: 1.75rem; }
.nl-form { display: flex; gap: 0.75rem; max-width: 440px; }
.nl-form input {
  flex: 1; padding: 0.75rem 1rem;
  font-family: var(--font-body); font-size: 0.9375rem;
  border: 1px solid var(--border); background: var(--bg); color: var(--text); outline: none;
}
.nl-form input:focus { border-color: var(--text); }

/* CONTACT PAGE */
.contact-hero { padding: 7rem 0 4rem; border-bottom: 1px solid var(--border); }
.contact-layout { display: grid; grid-template-columns: 1fr 320px; gap: 6rem; padding: 5rem 0; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  padding: 0.875rem 1rem;
  font-family: var(--font-body); font-size: 0.9375rem;
  border: 1px solid var(--border); background: var(--white); color: var(--text); outline: none;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--text); }
.field textarea { min-height: 160px; resize: vertical; }
.contact-sidebar h3 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 500; margin-bottom: 2rem; }
.contact-detail { margin-bottom: 2rem; }
.contact-detail .detail-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.375rem; }
.contact-detail a, .contact-detail p { font-size: 0.9375rem; }
.contact-detail a:hover { color: var(--accent); }
.speaking-box { background: var(--bg-alt); border: 1px solid var(--border); padding: 2rem; margin-top: 3rem; }
.speaking-box h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 500; margin-bottom: 0.625rem; }
.speaking-box p { font-size: 0.9rem; color: var(--muted); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .courses-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .workbooks { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .author-sticky { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .for-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  section { padding: 3.5rem 0; }
  .hero { padding: 3rem 0; min-height: auto; }
  .post-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .post-arrow { display: none; }
  .nl-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .quote-section { padding: 4rem 0; }
  .cta-section { padding: 4rem 0; }
}
