/* ==========================================================================
   Vashon Pixel — homepage styles
   Design tokens and layout recreated from the design handoff.
   ========================================================================== */

:root {
  --cream:          #F6F0DF; /* page background */
  --cream-alt:      #F7F1E0; /* alternate section bg + service cards */
  --chip-bg:        #EFE7CF; /* pill/chip background */
  --ink:            #23221F; /* primary text */
  --body:           #57534A; /* body text */
  --muted:          #8A867D; /* muted text / captions */
  --red:            #A94435; /* brand red */
  --red-hover:      #7C3226; /* link/button hover */
  --red-hover-alt:  #8F3729; /* case-study button hover */
  --on-red:         #F6F0DF; /* text on red buttons */
  --on-red-alt:     #FDFBF3; /* text on red (case-study buttons) */
  --green:          #2C4A32; /* reassurance strip + footer */
  --footer-muted:   #C9D3C4; /* footer muted text */
  --gold:           #E8C97E; /* gold link on green strip */

  --content:  1160px;
  --narrow:   760px;
  --radius:   20px;
  --card-shadow: 0 1px 3px rgba(35, 34, 31, 0.06);
}

/* ---- Reset / base ---- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

h1, h2, h3, p { text-wrap: pretty; }

a { color: var(--red); }
a:hover { color: var(--red-hover); }

.wrap { max-width: var(--content); margin: 0 auto; }

/* Reusable pill button */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  color: var(--on-red);
  background: var(--red);
  border-radius: 999px;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--red-hover); color: var(--on-red); }

.eyebrow {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  max-width: var(--content);
  margin: 0 auto;
  padding: 28px 40px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.nav__logo { width: 190px; mix-blend-mode: multiply; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link {
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.nav__link:hover { color: var(--red); }
.nav__cta {
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  color: var(--on-red);
  background: var(--red);
  padding: 10px 22px;
  border-radius: 999px;
  transition: background 0.15s ease;
}
.nav__cta:hover { background: var(--red-hover); color: var(--on-red); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  max-width: var(--content);
  margin: 0 auto;
  padding: 44px 40px 72px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.hero__col { display: flex; flex-direction: column; gap: 24px; }
.hero__title {
  margin: 0;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero__lead {
  margin: 0;
  font-size: 19px;
  line-height: 1.6;
  color: var(--body);
  max-width: 52ch;
}
.hero__cta-group { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.hero__cta { font-size: 17px; padding: 15px 32px; }
.hero__caption { font-size: 14px; color: var(--muted); }
.hero__art { display: flex; justify-content: center; }
.hero__art img { height: 320px; }

/* ==========================================================================
   Pitch
   ========================================================================== */
.pitch { background: var(--cream-alt); padding: 72px 40px; }
.pitch__inner {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.pitch__art { display: flex; justify-content: center; }
.pitch__art img { width: 100%; max-width: 420px; height: auto; }
.pitch__col { display: flex; flex-direction: column; gap: 18px; }
.pitch__title { margin: 0; font-size: 36px; font-weight: 800; }
.pitch__col p { margin: 0; font-size: 17px; line-height: 1.65; color: var(--body); }
.chips { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.chip {
  font-weight: 800;
  font-size: 13.5px;
  color: var(--green);
  background: var(--chip-bg);
  padding: 9px 18px;
  border-radius: 999px;
}

/* ==========================================================================
   Reassurance strip
   ========================================================================== */
.strip { background: var(--green); padding: 22px 40px; text-align: center; }
.strip p { margin: 0; font-size: 17px; font-weight: 700; color: var(--cream); }
.strip a { color: var(--gold); }
.strip a:hover { color: var(--gold); text-decoration: underline; }

/* ==========================================================================
   Services
   ========================================================================== */
.services { padding: 76px 40px 84px; }
.services__inner {
  max-width: var(--content);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.section-head h2 { margin: 0; font-size: 38px; font-weight: 800; }
.section-head p { margin: 0; font-size: 18px; line-height: 1.6; color: var(--body); max-width: 62ch; }

.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.card {
  background: var(--cream-alt);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--card-shadow);
}
.card__well {
  height: 210px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.card__well img { height: 180px; }
.card__well--tickets img { height: 210px; }
.card__well--laptop img { height: 175px; }
.card__well--phone img { height: 265px; margin-bottom: -27px; }
.card__head { display: flex; flex-direction: column; gap: 4px; }
.card__head h3 { margin: 0; font-size: 24px; font-weight: 800; }
.card__subtitle { margin: 0; font-size: 15.5px; color: var(--muted); font-weight: 600; }
.card ul {
  margin: 0;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--body);
}
.card__fit {
  margin: 4px 0 0;
  font-size: 14.5px;
  font-style: italic;
  color: var(--red);
  font-weight: 600;
}

/* ==========================================================================
   Who I've Helped
   ========================================================================== */
.work { background: var(--cream-alt); padding: 76px 40px 84px; }
.work__inner {
  max-width: var(--content);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.work__boat { height: 190px; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.case {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.case h3 { margin: 0; font-size: 21px; font-weight: 800; }
.case p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--body); }
.case p strong { color: var(--ink); }
.case__btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 800;
  color: var(--on-red-alt);
  background: var(--red);
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.case__btn:hover { background: var(--red-hover-alt); color: var(--on-red-alt); }

/* ==========================================================================
   Bio
   ========================================================================== */
.bio { padding: 72px 40px 8px; }
.bio__inner {
  max-width: var(--narrow);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
}
.bio__photo {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--chip-bg);
}
.bio__col { display: flex; flex-direction: column; gap: 10px; }
.bio__col p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--body); }

/* ==========================================================================
   Closing CTA
   ========================================================================== */
.contact { padding: 88px 40px 72px; }
.contact__inner {
  max-width: var(--narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.contact__art { height: 220px; }
.contact h2 { margin: 0; font-size: 40px; font-weight: 800; }
.contact p { margin: 0; font-size: 18px; line-height: 1.6; color: var(--body); max-width: 52ch; }
.contact__cta { font-size: 18px; padding: 16px 36px; margin-top: 4px; }
.contact__meta { font-size: 14.5px; color: var(--muted); }
.contact__meta a { color: var(--muted); }
.contact__meta a:hover { color: var(--muted); text-decoration: underline; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--green); padding: 36px 40px; }
.footer__inner {
  max-width: var(--content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__logo { width: 160px; filter: invert(1); mix-blend-mode: screen; }
.footer__copy { font-size: 14px; color: var(--footer-muted); }

/* ==========================================================================
   Responsive — the prototype was desktop-only (≈1160px). This adds the
   mobile pass the handoff left as a to-do.
   ========================================================================== */

/* Tablet: collapse 3-up case studies to 2-up, ease hero type */
@media (max-width: 980px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__title { font-size: 48px; }
}

/* Below ~900px: stack the two-column grids and case studies */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 32px 32px 56px;
    gap: 32px;
  }
  .hero__art { order: -1; }
  .hero__art img { height: 260px; }

  .pitch { padding: 56px 32px; }
  .pitch__inner { grid-template-columns: 1fr; gap: 32px; }
  .pitch__art { order: -1; }
  .pitch__art img { max-width: 320px; }

  .service-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }

  .services, .work { padding: 56px 32px 64px; }
}

/* Phone: tighten spacing, shrink headings, stack nav + bio */
@media (max-width: 600px) {
  .nav {
    padding: 20px 20px 8px;
    justify-content: center;
    text-align: center;
  }
  .nav__links { gap: 20px; flex-wrap: wrap; justify-content: center; }

  .hero { padding: 24px 20px 48px; }
  .hero__title { font-size: 38px; }
  .hero__lead { font-size: 17px; }
  .hero__cta { font-size: 16px; padding: 14px 26px; }

  .pitch { padding: 48px 20px; }
  .pitch__title { font-size: 30px; }

  .strip { padding: 20px 20px; }

  .services, .work { padding: 48px 20px 56px; }
  .section-head h2 { font-size: 30px; }
  .card { padding: 28px 26px; }

  .bio { padding: 48px 20px 8px; }
  .bio__inner { flex-direction: column; text-align: center; gap: 20px; }
  .bio__col { align-items: center; }

  .contact { padding: 64px 20px 56px; }
  .contact h2 { font-size: 30px; }
  .contact__art { height: 180px; }

  .footer { padding: 28px 20px; }
  .footer__inner { justify-content: center; text-align: center; }
}
