:root {
  --green:        #2D5A27;
  --green-mid:    #4A7C3F;
  --green-pale:   #EDF4EB;
  --navy:         #1A1A2E;
  --charcoal:     #2E2E2E;
  --mid-grey:     #666;
  --rule:         #E0DBD3;
  --cream:        #FAF8F4;
  --white:        #FFFFFF;
  --font-serif:   'Fraunces', Georgia, serif;
  --font-sans:    'Lato', system-ui, sans-serif;
  --max:          1060px;
  --nav-h:        62px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--rule);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.nav-wordmark {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.01em;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--mid-grey);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green); }

.nav-subscribe {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: 8px 20px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-subscribe:hover { background: var(--green-mid); }

/* PAGE WRAPPER */
.page-wrap { padding-top: var(--nav-h); min-height: 100vh; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

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

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn:hover { transform: translateY(-1px); }
.btn-solid { background: var(--green); color: var(--white); }
.btn-solid:hover { background: var(--green-mid); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green-pale); }

/* HOME HERO */
.home-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 72px;
  align-items: center;
  min-height: calc(88vh - var(--nav-h));
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-location {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--mid-grey);
  margin-bottom: 28px;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero-name span {
  color: var(--green);
  font-style: italic;
  font-size: clamp(46px, 5.2vw, 68px);
}

.hero-bio {
  font-size: 17px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  list-style: none;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--mid-grey);
}

.cred-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  display: inline-block;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-right { position: relative; }

.hero-right::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  background: var(--green-pale);
  border-radius: 4px;
  z-index: 0;
}

.hero-photo-frame {
  position: relative;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.hero-photo { width: 100%; display: block; }

/* WORKING ON */
.working-on { padding: 80px 48px; }
.working-on-inner { max-width: var(--max); margin: 0 auto; }
.working-header { margin-bottom: 52px; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-item {
  background: var(--green);
  padding: 40px 36px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: block;
  border-radius: 3px;
}

.project-item:hover {
  background: var(--green-mid);
  transform: translateY(-3px);
}

.project-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.project-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
}

.project-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}

.project-arrow {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}

/* PULL STRIP */
.pull-strip { background: var(--navy); padding: 80px 48px; }
.pull-strip-inner { max-width: 820px; margin: 0 auto; text-align: center; }

.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
}

.pull-attribution {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* AIEH BAND */
.aieh-band { padding: 80px 48px; border-top: 1px solid var(--rule); }

.aieh-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.aieh-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.aieh-band p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--mid-grey);
  margin-bottom: 32px;
}

.aieh-mantra {
  font-size: 13px;
  color: var(--mid-grey);
  margin-top: 16px;
  font-style: italic;
}

/* ABOUT PAGE */
.about-wrap { max-width: var(--max); margin: 0 auto; padding: 72px 48px; }

.about-header {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  margin-bottom: 64px;
}

.about-photo-col { position: sticky; top: calc(var(--nav-h) + 28px); align-self: start; }

.about-photo {
  width: 100%;
  border-radius: 3px;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
  margin-bottom: 18px;
}

.about-photo-caption { font-size: 13px; color: var(--mid-grey); line-height: 1.6; }

.about-header-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.about-header-text h1 em { color: var(--green); }

.about-body p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 22px;
}

.about-section {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
}

.about-section h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 18px;
}

.about-section p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 18px;
  max-width: 680px;
}

.about-aside {
  background: var(--green-pale);
  padding: 32px 36px;
  border-radius: 3px;
  margin-top: 40px;
  max-width: 560px;
}

.about-aside h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.about-aside p { font-size: 15px; color: var(--charcoal); margin-bottom: 10px; max-width: none; }
.about-aside a { color: var(--green); font-weight: 700; text-decoration: none; }
.about-aside a:hover { text-decoration: underline; }

/* AI EH PAGE */
.aieh-page-hero { background: var(--navy); padding: 72px 48px; text-align: center; }
.aieh-page-hero-inner { max-width: 680px; margin: 0 auto; }

.aieh-page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.aieh-page-hero h1 em { color: #8FC98A; }

.aieh-page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.aieh-page-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
}

.aieh-page-content p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 22px;
}

.aieh-page-content h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  margin: 44px 0 16px;
  border-top: 1px solid var(--rule);
  padding-top: 40px;
}

.aieh-sidebar-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 28px;
  margin-bottom: 20px;
}

.aieh-sidebar-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.aieh-sidebar-card p {
  font-size: 14px;
  color: var(--mid-grey);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* NEW RETAILER BADGE */
.badge-new {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  background: #996600;
  color: #fff;
  margin-left: 10px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

/* ANNOUNCEMENT BAR */
.announcement-bar {
  background: var(--green-pale);
  border: 1px solid #c5dcc0;
  border-radius: 3px;
  padding: 14px 20px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--green);
  font-weight: 700;
}

.announcement-bar span {
  font-weight: 400;
  color: var(--charcoal);
}

/* RETAILER HIGHLIGHT BOX */
.retailer-highlight {
  background: var(--green-pale);
  border: 1px solid #c5dcc0;
  border-radius: 3px;
  padding: 20px 24px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.retailer-highlight p {
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green) !important;
  margin-bottom: 12px !important;
}

.retailer-highlight .book-actions { margin-top: 0; }
.book-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 72px;
}

.book-cover-col { position: sticky; top: calc(var(--nav-h) + 28px); align-self: start; }

.book-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-right: 8px;
  margin-bottom: 8px;
}

.badge-live { background: var(--green-pale); color: var(--green); }
.badge-soon { background: #FFF8E6; color: #996600; }

.book-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.book-content p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.book-content h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  margin: 44px 0 16px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}

.book-actions { display: flex; flex-direction: row; gap: 12px; margin-top: 0; flex-wrap: nowrap; }

/* CONTACT PAGE */
.contact-wrap { max-width: 640px; margin: 0 auto; padding: 72px 48px; }

.contact-wrap h1 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.contact-lead {
  font-size: 17px;
  color: var(--mid-grey);
  margin-bottom: 48px;
  line-height: 1.7;
}

.form-row { margin-bottom: 28px; }

.form-row label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-row input:focus,
.form-row textarea:focus { border-color: var(--green); }

.form-row textarea { min-height: 150px; resize: vertical; }

.form-note { font-size: 13px; color: var(--mid-grey); margin-top: 14px; line-height: 1.6; }

/* FOOTER */
footer { border-top: 1px solid var(--rule); background: var(--white); padding: 36px 48px; }

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left { font-family: var(--font-serif); font-size: 16px; color: var(--green); }

.footer-links { display: flex; gap: 28px; list-style: none; }

.footer-links a {
  font-size: 13px;
  color: var(--mid-grey);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--green); }
.footer-copy { width: 100%; font-size: 12px; color: #AAA; margin-top: 4px; }

/* MOBILE MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.2s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  z-index: 199;
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 17px;
  color: var(--charcoal);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  display: block;
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--green); }

@media (max-width: 860px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-subscribe { display: none; }
  .hamburger { display: flex; }
  .home-hero { grid-template-columns: 1fr; padding: 48px 24px; gap: 40px; min-height: auto; }
  .hero-right { max-width: 320px; margin: 0 auto; }
  .project-list { grid-template-columns: 1fr; gap: 14px; }
  .aieh-band-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-header { grid-template-columns: 1fr; }
  .about-photo-col { position: static; }
  .about-photo { aspect-ratio: 4/3; }
  .aieh-page-body { grid-template-columns: 1fr; }
  .book-wrap { grid-template-columns: 1fr; overflow-x: hidden; }
  .book-cover-col { position: static; max-width: 280px; }
  .book-actions { flex-wrap: wrap; }
  .working-on, .aieh-band, .pull-strip { padding: 56px 24px; }
  .about-wrap, .aieh-page-body, .book-wrap, .contact-wrap { padding: 48px 24px; }
  footer { padding: 32px 24px; }
  footer .footer-inner { flex-direction: column; align-items: flex-start; }
}
