/* AI Build Day — ported from design/index.html. Values are the reference's, unchanged. */

:root {
  --paper: #f6f2ea;
  --paper-2: #ebe5d8;
  --ink: #1c1a17;
  --body: #3d3830;
  --muted: #6b655c;
  --accent: #2b4a7a;
  --on-dark-muted: #b8ad98;
  --rule: rgba(28, 26, 23, .14);
  --rule-dark: rgba(246, 242, 234, .18);
  --serif: Newsreader, Georgia, serif;
  --sans: Helvetica, Arial, sans-serif;
  --pad-x: 80px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: background-color .15s, color .15s, border-color .15s;
}

img { max-width: 100%; }

h1, h2 { text-wrap: balance; }

.page {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--paper);
  color: var(--ink);
}

.serif { font-family: var(--serif); font-weight: 400; }

.eyebrow {
  margin: 0;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.eyebrow--accent { color: var(--accent); }
.eyebrow--on-dark { color: var(--on-dark-muted); }

/* Buttons and links */
.btn {
  display: inline-block;
  color: var(--paper);
  padding: 20px 32px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 700;
}
.btn--accent { background: var(--accent); }
.btn--accent:hover { background: var(--ink); }
.btn--ink { background: var(--ink); }
.btn--ink:hover { background: var(--accent); }

.link-underline {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.link-underline:hover { color: var(--accent); border-color: var(--accent); }

.cta-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

/* 1. Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px var(--pad-x);
}
.wordmark {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.01em;
}
.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav__ask { color: var(--muted); }
.nav__ask:hover { color: var(--ink); }
.nav__reserve {
  color: var(--paper);
  background: var(--ink);
  padding: 12px 20px;
  border-radius: 2px;
  letter-spacing: .06em;
}
.nav__reserve:hover { background: var(--accent); }

/* 2. Hero */
.hero {
  padding: 120px var(--pad-x) 112px;
  text-align: center;
}
.hero__title {
  margin: 0 auto 40px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -.03em;
  max-width: 1060px;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__sub {
  margin: 0 auto 20px;
  font-size: 22px;
  line-height: 1.5;
  max-width: 660px;
  color: var(--body);
  text-wrap: pretty;
}
.hero__bold {
  margin: 0 auto 48px;
  font-size: 22px;
  line-height: 1.5;
  max-width: 660px;
  color: var(--ink);
  font-weight: 700;
  text-wrap: balance;
}

/* 3. Why a day of building */
.why { padding: 0 var(--pad-x) 120px; }
.why__inner {
  border-top: 1px solid var(--rule);
  padding-top: 72px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
  gap: 64px;
}
.why__content { max-width: 760px; }
.why__title {
  margin: 0 0 32px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: -.02em;
}
.why__p {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.55;
  color: var(--body);
  text-wrap: pretty;
}
.why__p:last-child { margin-bottom: 0; }

/* 4. What you walk out with */
.outcomes {
  background: var(--ink);
  color: var(--paper);
  padding: 120px var(--pad-x);
}
.outcomes__grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: 64px;
}
.outcomes .eyebrow { margin-bottom: 20px; }
.outcomes__title {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -.02em;
}
.outcomes__lede {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--on-dark-muted);
  max-width: 380px;
  text-wrap: pretty;
}
.outcomes__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.outcomes__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  padding: 32px 0;
  border-top: 1px solid var(--rule-dark);
}
.outcomes__item:last-child { border-bottom: 1px solid var(--rule-dark); }
.outcomes__num {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--on-dark-muted);
  padding-top: 6px;
}
.outcomes__item-title {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 8px;
}
.outcomes__item-body {
  font-size: 17px;
  line-height: 1.5;
  color: var(--on-dark-muted);
  max-width: 560px;
}

/* 5. How it works */
.how { padding: 120px var(--pad-x); }
.how .eyebrow { margin-bottom: 20px; }
.how__title {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -.02em;
  max-width: 900px;
}
.how__intro {
  margin: 0 0 72px;
  font-size: 20px;
  line-height: 1.55;
  color: var(--body);
  max-width: 760px;
  text-wrap: pretty;
}
.how__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.how__label {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.how__col-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.how__col-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

/* 6. Your guides */
.guides { padding: 0 var(--pad-x) 120px; }
.guides__inner { border-top: 1px solid var(--rule); padding-top: 72px; }
.guides .eyebrow { margin-bottom: 48px; }
.guides__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.guide {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.guide__photo {
  width: 100%;
  aspect-ratio: 180 / 220;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.guide__photo--david { object-position: 50% 20%; }
.guide__photo--craig { object-position: 50% 25%; }
.guide__name {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -.01em;
}
.guide__role {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.guide__bio {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--body);
}

/* 7. Guarantee */
.guarantee {
  background: var(--paper-2);
  padding: 112px var(--pad-x);
  text-align: center;
}
.guarantee .eyebrow { margin-bottom: 28px; }
.guarantee__title {
  margin: 0 auto 20px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -.02em;
  max-width: 880px;
}
.guarantee__line { margin: 0; font-size: 19px; color: var(--muted); }

/* 8. Fair questions */
.faq {
  padding: 112px var(--pad-x) 0;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
  gap: 64px;
}
.faq__list { max-width: 720px; }
.faq__item { padding: 24px 0; border-top: 1px solid var(--rule); }
.faq__item:last-child { border-bottom: 1px solid var(--rule); }
.faq__q { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.faq__a { margin: 0; font-size: 16px; line-height: 1.55; color: var(--muted); }

/* 9. Come build */
.close {
  padding: 128px var(--pad-x) 120px;
  text-align: center;
}
.close__title {
  margin: 0 auto 28px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -.03em;
  max-width: 900px;
}
.close__line {
  margin: 0 auto 44px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 520px;
}

/* 10. Footer */
.footer {
  padding: 28px var(--pad-x);
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

/* Responsive: 900–1280px keeps the layout on a fluid container (nothing to do). */
@media (max-width: 900px) {
  :root { --pad-x: 24px; }

  .hero__title { font-size: 52px; }
  .why__title, .outcomes__title, .how__title, .guarantee__title, .close__title { font-size: 34px; }

  .nav__ask { display: none; }

  .why__inner, .outcomes__grid, .how__cols, .guides__grid, .faq {
    grid-template-columns: minmax(0, 1fr);
  }
  .why__inner, .faq { gap: 32px; }
  .outcomes__grid { gap: 48px; }
  .how__cols { gap: 40px; }
  .guides__grid { gap: 48px; }

  .guide { grid-template-columns: 120px minmax(0, 1fr); gap: 20px; }
  .outcomes__item { grid-template-columns: 40px minmax(0, 1fr); }

  .cta-row { flex-direction: column; }
  .how__col-title { text-wrap: balance; }
}
