/* Jake Fleury — one-page site (design 1a: cinematic full-bleed) */

:root {
  --bg: #0b0a0c;
  --bg-alt: #0e0d10;
  --bg-deep: #080709;
  --ink: #ece7de;
  --ink-soft: #b7b0a2;
  --ink-mute: #a29b8d;
  --ink-dim: #6f695e;
  --gold: #c9995c;
  --gold-hi: #e0b378;
  --dark-on-gold: #141210;
  --hairline: rgb(255 255 255 / 10%);
  --font-display: "Oswald", sans-serif;
  --font-body: "Barlow", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

img { display: block; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hi); }

h1, h2 { font-family: var(--font-display); font-weight: 700; margin: 0; }

.eyebrow {
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--gold);
  font-weight: 600;
  margin: 0;
}

.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .1em;
  padding: 15px 30px;
  text-align: center;
  transition: background .15s, color .15s, border-color .15s;
}
.btn-solid { background: var(--gold); color: var(--dark-on-gold); }
.btn-solid:hover { background: var(--gold-hi); color: var(--dark-on-gold); }
.btn-outline { border: 1px solid rgb(255 255 255 / 45%); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-gold-outline { border: 1px solid var(--gold); color: var(--gold); }
.btn-gold-outline:hover { border-color: var(--gold-hi); color: var(--gold-hi); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: min(780px, 92vh);
  min-height: 560px;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 30%;
  filter: grayscale(1) brightness(.85);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(11 10 12 / 55%) 0%, rgb(11 10 12 / 15%) 40%, rgb(11 10 12 / 92%) 88%);
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .18em;
  color: var(--ink);
}
.nav-brand:hover { color: var(--ink); }

.nav-links {
  display: flex;
  gap: 26px;
  font-size: 13px;
  letter-spacing: .14em;
  font-weight: 600;
}
.nav-links a { color: #d8d2c6; }
.nav-links a:hover { color: var(--ink); }
.nav-links .nav-contact { color: var(--gold); }
.nav-links .nav-contact:hover { color: var(--gold-hi); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px 0;
  cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); }

.hero-content {
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 56px;
  z-index: 1;
}

.kicker {
  font-size: 14px;
  letter-spacing: .32em;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 14px;
}

.hero h1 {
  font-size: clamp(46px, 8.4vw, 104px);
  line-height: .98;
  letter-spacing: .01em;
}

.hero-ctas { display: flex; gap: 14px; margin-top: 30px; }

/* ---------- achievements ---------- */
.achievements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgb(255 255 255 / 12%);
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  background: var(--bg-alt);
}

.ach {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px 24px;
  border-right: 1px solid var(--hairline);
}
.ach:last-child { border-right: 0; }

.ach-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.ach-label {
  font-size: 12.5px;
  letter-spacing: .14em;
  text-align: center;
  color: var(--ink-mute);
}

/* ---------- book ---------- */
.book {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 70px;
  align-items: center;
  padding: 90px 80px;
  background: radial-gradient(ellipse at 30% 50%, #1a1712 0%, var(--bg) 70%);
}

.book-cover {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 30px 60px rgb(0 0 0 / 70%);
}

.book h2, .training h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 16px 0 20px;
}

.book blockquote {
  margin: 26px 0 30px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  font-size: 17px;
  font-style: italic;
  color: var(--ink);
}

.book blockquote footer {
  font-style: normal;
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--ink-mute);
  margin-top: 8px;
}

.book-ctas { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

/* ---------- training ---------- */
.training {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 70px;
  align-items: center;
  padding: 90px 80px;
  background: var(--bg-alt);
  border-top: 1px solid rgb(255 255 255 / 8%);
}

.training .lede { max-width: 52ch; }
.training .btn { margin-top: 28px; }

.training-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 6px;
}

/* ---------- footer ---------- */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 80px;
  background: var(--bg-deep);
  border-top: 1px solid var(--hairline);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .18em;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 13.5px;
  letter-spacing: .1em;
  font-weight: 600;
}

.footer-copy { font-size: 12px; color: var(--ink-dim); }

/* ============ responsive ============ */

@media (width <= 1100px) {
  .book { grid-template-columns: 380px 1fr; gap: 50px; padding: 70px 48px; }
  .training { grid-template-columns: 1fr 400px; gap: 50px; padding: 70px 48px; }
  .training-photo { height: 480px; }
  .footer { padding: 36px 48px; }
}

@media (width <= 820px) {
  .nav { padding: 20px 22px; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgb(8 7 9 / 97%);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 16px 22px; border-bottom: 1px solid rgb(255 255 255 / 6%); }
  .nav-links a:last-child { border-bottom: 0; }

  .hero { height: 620px; min-height: 0; }
  .hero-photo { object-position: 50% 30%; }
  .hero-shade { background: linear-gradient(180deg, rgb(11 10 12 / 50%), rgb(11 10 12 / 10%) 35%, rgb(11 10 12 / 95%) 85%); }
  .hero-content { left: 22px; right: 22px; bottom: 28px; }
  .kicker { font-size: 11px; letter-spacing: .26em; margin-bottom: 10px; }
  .hero h1 { font-size: 46px; line-height: 1; }
  .hero-ctas { flex-direction: column; gap: 10px; margin-top: 20px; }
  .hero-ctas .btn { font-size: 14px; padding: 14px; }

  .achievements { grid-template-columns: 1fr 1fr; }
  .ach { border-top: 1px solid var(--hairline); padding: 22px 16px; gap: 10px; }
  .ach:nth-child(2n) { border-right: 0; }
  .ach-icon { width: 36px; height: 36px; }
  .ach-label { font-size: 11px; letter-spacing: .12em; }

  .book {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 44px 26px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 30%, #1a1712 0%, var(--bg) 75%);
  }
  .book-cover { width: 230px; margin: 0 auto 24px; border-radius: 5px; box-shadow: 0 24px 48px rgb(0 0 0 / 70%); }
  .book h2 { font-size: 30px; line-height: 1.08; margin: 0 0 12px; }
  .book .lede { font-size: 15px; margin: 0 auto; }
  .book blockquote { text-align: left; font-size: 15px; }
  .book-ctas { justify-content: center; }
  .book-ctas .btn { font-size: 14px; padding: 14px 28px; }

  .training { grid-template-columns: 1fr; gap: 32px; padding: 44px 26px; }
  .training-photo { height: 380px; }

  .footer { flex-direction: column; padding: 28px 22px; text-align: center; }
  .footer-links { gap: 20px; flex-wrap: wrap; justify-content: center; font-size: 12px; }
}
