/* EZhaggle www — Figma homepage tokens. Overpass is OFL, vendored. */

@font-face {
  font-family: "Overpass";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/overpass-var.woff2") format("woff2");
}
@font-face {
  font-family: "Overpass";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/overpass-italic-var.woff2") format("woff2");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Overpass", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; }
button, input { font: inherit; }

:root {
  --orange: #e87722;
  --orange-deep: #c46214;
  --green: #1a7a3a;
  --forest: #0d2f24;
  --forest-2: #143d30;
  --ink: #122018;
  --muted: #4d5c55;
  --paper: #f6f3ec;
  --card: #fffefb;
  --radius: 1.25rem;
  --shadow: 0 12px 40px -16px rgba(13, 47, 36, 0.35);
  --header-h: 5.25rem;
}

/* ---------- chrome ---------- */

.site-header {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding: 0.75rem 1.5rem;
  background: var(--paper);
  color: var(--ink);
}
body.home .site-header {
  position: absolute;
  inset: 0 0 auto;
  background: var(--paper);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand-wheel { height: 2.85rem; width: auto; }
.brand-word { height: 1.15rem; width: auto; }
.site-footer .brand { display: block; }
.site-footer .brand img { height: 4.25rem; width: auto; margin-inline: auto; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-desktop a[aria-current="page"] { color: var(--orange); }
.nav-desktop a:not(.btn-cta):hover { color: var(--orange); }

.hamburger {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 999px;
  background: rgba(13, 47, 36, 0.08);
}
.hamburger span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20;
  background: var(--forest);
  color: #fff;
  padding: 1.25rem 1.5rem 2rem;
  flex-direction: column;
}
.nav-toggle:checked ~ .menu-overlay { display: flex; }
body:has(.nav-toggle:checked) { overflow: hidden; }

.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}
.menu-close {
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--orange);
}
.menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  font-size: 1.75rem;
  font-weight: 700;
}
.menu-links a[aria-current="page"] { color: var(--orange); }
.menu-links .btn-cta { width: fit-content; margin-top: 1rem; font-size: 1rem; }

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  box-shadow: 0 8px 18px -10px rgba(232, 119, 34, 0.8);
}
.btn-cta:hover { background: var(--orange-deep); }
.btn-cta.lg { padding: 0.9rem 1.8rem; font-size: 1.05rem; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.stub .btn-ghost { border-color: var(--forest); color: var(--forest); }
.stub .btn-ghost:hover { background: rgba(13, 47, 36, 0.06); }

main { flex: 1; }

.site-footer {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
  padding: 2.5rem 1.25rem 2rem;
  background: var(--card);
  border-top: 1px solid rgba(13, 47, 36, 0.08);
}
.canadian { color: var(--muted); font-size: 0.9rem; }
.release { font-size: 0.7rem; letter-spacing: 0.04em; color: #8a938d; }

/* ---------- homepage ---------- */

.hero {
  /* Knobs — tweak in DevTools on `.hero`, then tell me the trio you like. */
  --hero-photo-opacity: 0.6;
  --hero-green: #2d8a4e;
  --hero-tint-opacity: 0.5;
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 1.5rem) 1.25rem 3rem;
  background: #e7efe8;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: url("/assets/images/full_width.jpg") center / cover no-repeat;
  filter: grayscale(1) contrast(1.12);
  opacity: var(--hero-photo-opacity);
}
.hero-tint {
  position: absolute;
  inset: 0;
  background: var(--hero-green);
  mix-blend-mode: color;
  opacity: var(--hero-tint-opacity);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 32, 22, 0.55) 0%, rgba(8, 32, 22, 0.2) 55%, rgba(8, 32, 22, 0.35) 100%),
    linear-gradient(to top, rgba(8, 32, 22, 0.4), transparent 45%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero-copy { max-width: 36rem; }
.journey { max-width: 22rem; width: 100%; }
.hero-copy h1 {
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-shadow:
    0 0 8px rgba(13, 47, 36, 0.95),
    0 0 18px rgba(13, 47, 36, 0.7),
    0 1px 3px rgba(8, 32, 24, 0.9);
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--orange);
  -webkit-text-stroke: 4px rgb(13, 47, 36);
  paint-order: stroke fill;
  text-shadow:
    -1.5px 0 0 rgb(13, 47, 36),
    1.5px 0 0 rgb(13, 47, 36),
    0 -1.5px 0 rgb(13, 47, 36),
    0 1.5px 0 rgb(13, 47, 36),
    0 0 8px rgba(255, 255, 255, 0.95),
    0 0 18px rgba(255, 255, 255, 0.7),
    0 1px 2px rgba(255, 255, 255, 0.9);
}
.punch {
  margin-top: 0.85rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: none;
}
.lead { margin-top: 1rem; max-width: 36rem; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

.journey {
  background: rgba(13, 47, 36, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow);
}
.journey h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.journey ol { display: grid; gap: 0.9rem; }
.journey li { display: flex; gap: 0.8rem; align-items: flex-start; }
.step-num {
  flex: 0 0 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.journey h3 { font-weight: 800; font-size: 1rem; }
.journey p { font-size: 0.9rem; color: rgba(255,255,255,0.82); }

.better {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 3.5rem auto;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
}
.better h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.9rem;
}
.better p { color: var(--muted); margin-bottom: 1.25rem; }
.better-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.better-photo img { width: 100%; height: 22rem; object-fit: cover; }

.steps {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto 3.5rem;
}
.steps-heading {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  text-align: center;
}
.steps-cards {
  display: grid;
  gap: 1.25rem;
}
.step-card {
  position: relative;
  min-height: 26rem;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow);
  display: flex;
}
.step-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step-card-body {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 26rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(
    to bottom,
    rgba(8, 20, 16, 0.78) 0%,
    rgba(8, 20, 16, 0.22) 28%,
    rgba(8, 20, 16, 0.22) 72%,
    rgba(8, 20, 16, 0.82) 100%
  );
}
.step-card h3 { font-size: 1.35rem; font-weight: 800; }
.step-card p { color: rgba(255,255,255,0.9); }
.step-card .btn-cta { align-self: flex-start; }

.band-dark {
  padding: 3rem 1.25rem;
  text-align: center;
  background: var(--forest);
  color: #fff;
}
.band-light {
  background: var(--card);
  color: var(--ink);
  padding: 3rem 1.25rem 4rem;
  text-align: left;
}
.fees-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.fees-copy { max-width: 36rem; }
.fees-lead { font-weight: 700; }
.fee-points {
  width: 100%;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.7rem;
}
.fee-points li { padding-left: 1.1rem; position: relative; color: var(--muted); }
.fee-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--orange);
}
.fees-card {
  max-width: 22rem;
  width: 100%;
  min-height: 16rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(13, 47, 36, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow);
  color: #fff;
}
.fees-figure { text-align: center; }
.pct {
  font-size: clamp(4rem, 12vw, 6.5rem);
  font-weight: 800;
  line-height: 0.9;
  color: var(--orange);
}
.anchor {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.88);
}
.fees-card .footnote {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
}

.cta-lead { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.band-dark blockquote {
  margin: 2rem auto 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
}
.band-dark blockquote footer { margin-top: 0.6rem; font-style: normal; font-weight: 700; color: #fff; }

.stub {
  width: min(720px, calc(100% - 2.5rem));
  margin: 3rem auto 4rem;
}
body:not(.home) .stub { padding-top: 1rem; }
.stub h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.4rem 0 1rem;
}
.stub .lead { color: var(--muted); }

@media (min-width: 860px) {
  .hamburger { display: none; }
  .nav-desktop { display: flex; }
  .site-header { padding: 0.75rem 2.5rem; }
  .hero { padding: calc(var(--header-h) + 2rem) 0 4rem; align-items: center; }
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(1.25rem, 1fr) auto minmax(1.25rem, 1fr) auto minmax(1.25rem, 1fr);
    align-items: stretch;
    gap: 0;
  }
  .hero-copy { grid-column: 2; }
  .journey {
    grid-column: 4;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .journey ol {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .better { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .better-photo img { height: 28rem; }
  .steps-cards { grid-template-columns: repeat(3, 1fr); }
  .band-dark { padding: 4rem 2.5rem; }
  .band-light { padding: 4rem 0; }
  .fees-grid {
    display: grid;
    grid-template-columns: minmax(1.25rem, 1fr) auto minmax(1.25rem, 1fr) auto minmax(1.25rem, 1fr);
    align-items: stretch;
    gap: 0;
  }
  .fees-copy { grid-column: 2; }
  .fees-card {
    grid-column: 4;
    width: auto;
    min-height: 0;
  }
}
