/* ==========================================================================
   Legwork Press — Design tokens extracted from Figma (legwork-press-web)
   ========================================================================== */

:root {
  /* Color Scheme 1 */
  --color-scheme-1-background: #ffffff;
  --color-scheme-1-text: #000000;
  --color-scheme-1-border: #000000;
  --color-scheme-1-foreground: #ffffff;

  /* Color Scheme 2 */
  --color-scheme-2-background: #000000;
  --color-scheme-2-text: #ffffff;
  --color-scheme-2-border: #ffffff;

  /* Core palette */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-neutral-lightest: #f2f2f2;
  --color-neutral-darkest: #000000;
  --color-orange: #dc5010;
  --color-dark-brown: #231815;

  /* Opacity */
  --opacity-overlay: rgba(0, 0, 0, 0.4);
  --opacity-white-60: rgba(255, 255, 255, 0.6);
  --opacity-transparent: rgba(255, 255, 255, 0);
  --opacity-neutral-darkest-5: rgba(0, 0, 0, 0.05);
  --opacity-neutral-darkest-15: rgba(0, 0, 0, 0.15);

  /* Typography families */
  --font-heading: "Anton", Impact, "Arial Narrow Bold", sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, sans-serif;

  /* Text sizes */
  --text-tiny: 0.75rem;      /* 12px */
  --text-small: 1rem;        /* 16px */
  --text-regular: 1.125rem;  /* 18px */
  --text-medium: 1.25rem;    /* 20px */
  --text-heading-6: 1.625rem; /* 26px */
  --text-heading-5: 2rem;    /* 32px */
  --text-heading-2: 3.75rem; /* 60px */
  --text-heading-1: 5.25rem; /* 84px */
  --text-service-title: 3rem; /* 48px */
  --text-service-body: 2rem;  /* 32px */
  --text-stat-number: 5rem;   /* 80px */

  /* Spacing */
  --padding-global: 1.25rem;           /* 20px mobile */
  --padding-section-large: 4rem;       /* 64px mobile */
  --padding-section-medium: 3rem;      /* 48px mobile */
  --container-large: 80rem;            /* 1280px */
  --max-width-large: 48rem;            /* 768px */
  --max-width-small: 30rem;            /* 480px */
  --gap-section: 3rem;
  --gap-content: 2rem;

  /* Borders & radius */
  --stroke-border-width: 2px;
  --stroke-divider-width: 2px;
  --radius-medium: 1rem;   /* 16px */
  --radius-button: 0.75rem; /* 12px */
  --radius-arrow: 0.5rem;   /* 8px */

  /* Navbar height (~20% shorter than before) */
  --navbar-height: 3.5rem;  /* was 4.5rem on mobile */
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-regular);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-scheme-1-text);
  background: var(--color-scheme-1-background);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container-large);
  margin-inline: auto;
  padding-inline: var(--padding-global);
}

/* ==========================================================================
   Typography utilities
   ========================================================================== */

.tagline {
  margin: 0;
  font-size: var(--text-small);
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-white);
}

.tagline--dark {
  color: var(--color-scheme-1-text);
}

.section-header__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 8vw, var(--text-heading-2));
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: none;
}

.section-header__title--large {
  font-size: clamp(2.25rem, 10vw, 4.5rem);
  text-transform: capitalize;
}

.section-header--light .section-header__title {
  color: var(--color-white);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border: var(--stroke-border-width) solid transparent;
  border-radius: var(--radius-button);
  font-size: var(--text-regular);
  font-weight: 500;
  line-height: 1.6;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.88;
}

.btn--primary {
  position: relative;
  color: var(--color-neutral-darkest);
  background: var(--color-neutral-lightest);
  border-color: var(--color-neutral-lightest);
  box-shadow:
    0 1px 1px var(--opacity-neutral-darkest-5),
    inset 0 32px 24px rgba(255, 255, 255, 0.05),
    inset 0 2px 1px rgba(255, 255, 255, 0.25),
    inset 0 0 0 0 var(--opacity-neutral-darkest-15),
    inset 0 -2px 1px rgba(0, 0, 0, 0.2);
}

.btn--outline {
  color: var(--color-white);
  background: var(--opacity-transparent);
  border-color: var(--color-white);
}

.btn--text {
  padding-inline: 0;
  color: var(--color-white);
  background: transparent;
  border-color: transparent;
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-scheme-2-background);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
  padding-block: 0.5rem;
}

.site-logo__text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-scheme-2-text);
}

.site-logo__img {
  display: block;
  width: auto;
  height: 2.5rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-scheme-2-background);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-nav.is-open {
  display: block;
}

.site-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 1rem var(--padding-global) 1.5rem;
  list-style: none;
}

.site-nav__list a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 0;
  font-size: var(--text-regular);
  color: var(--color-scheme-2-text);
}

.site-nav__dropdown {
  display: inline-flex;
  align-items: center;
}

.site-nav__chevron {
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

/* Submenu: on mobile it shows as an indented static list inside the open menu */
.site-nav__submenu {
  margin: 0;
  padding: 0 0 0 1rem;
  list-style: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: calc(100vh - var(--navbar-height));
  height: calc(100dvh - var(--navbar-height));
  padding-block: 2.5rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--opacity-overlay);
}

.hero__quarter-circle {
  position: absolute;
  top: 0;
  left: var(--padding-global);
  width: 6rem;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: min(clamp(2.25rem, 9vw, var(--text-heading-1)), 13vh);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.hero__intro {
  margin: 0;
  font-size: var(--text-medium);
  line-height: 1.6;
  color: var(--color-white);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Engage — "3 Ways To Engage" pinned scroll slider
   Base (mobile-first) = static stacked panels; desktop adds the pinned slider.
   ========================================================================== */

.engage {
  position: relative;
  background: var(--color-black);
}

.anchor-marker {
  position: absolute;
  top: 0;
  width: 1px;
  height: 1px;
}

.engage__stage {
  position: relative;
}

.engage__head {
  position: relative;
  z-index: 6;
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}

.engage__head .tagline {
  color: var(--color-white);
}

.engage__head .section-header__title {
  color: var(--color-white);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
}

.engage__slide {
  position: relative;
  display: block;
  min-height: 80vh;
  overflow: hidden;
}

.engage__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.engage__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.engage__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.35)),
    linear-gradient(105deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 55%);
}

.engage__vector,
.engage__object {
  position: absolute;
  height: auto;
  pointer-events: none;
}

.engage__vector {
  z-index: 2;
}

.engage__object {
  z-index: 3;
}

/* Commission */
.engage__vector--ring {
  width: 66%;
  right: -14%;
  top: 0;
}

.engage__object {
  width: 90%;
  right: -2%;
  left: auto;
  bottom: 14%;
}

/* Workshops people cut-out: centered, bottom-anchored, above the orange vector */
.engage__object--people {
  width: 100%;
  left: 0;
  right: 0;
  margin-inline: auto;
  bottom: 12%;
}

.engage__vector--icon {
  width: 5rem;
  left: var(--padding-global);
  top: 26%;
}

/* Workshops */
.engage__vector--triangle {
  width: 30%;
  left: 0;
  top: 8%;
}

.engage__vector--v {
  width: 44%;
  right: -6%;
  top: 14%;
}

/* Merchandise */
.engage__vector--circle {
  width: 50%;
  left: -12%;
  top: 4%;
}

.engage__vector--stripes {
  width: 28%;
  right: 4%;
  bottom: 18%;
}

/* Merchandise: black vector sits ABOVE the trapezoid, object below it */
.engage__vector--circle {
  z-index: 5;
}

.engage__object--press {
  width: 100%;
  left: 0;
  right: 0;
  margin-inline: auto;
  bottom: 16%;
}

.engage__slide--merch .engage__bar {
  min-height: 9rem;
}

/* Detached merch text overlays the (empty) trapezoid and stays on top of all vectors */
.engage__text--detached {
  position: absolute;
  left: 0;
  bottom: 7%;
  z-index: 6;
  width: min(900px, 92%);
  padding: 1.35rem var(--padding-global);
}

/* Trapezoid bar — identical position in every slide, so it reads as fixed */
.engage__bar {
  position: absolute;
  left: 0;
  bottom: 7%;
  z-index: 4;
  width: min(900px, 92%);
  padding: 1.35rem var(--padding-global);
  background: rgba(0, 0, 0, 0.42);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  clip-path: polygon(0 0, 100% 0, calc(100% - 48px) 100%, 0 100%);
}

.engage__heading {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 6vw, var(--text-service-title));
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.engage__desc {
  margin: 0 0 0.85rem;
  font-size: clamp(1.05rem, 3.5vw, 1.5rem);
  line-height: 1.3;
  color: var(--color-white);
  max-width: 36rem;
}

.engage__link {
  font-size: clamp(1.05rem, 3.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.13;
  color: var(--color-white);
}

.engage__progress {
  display: none;
}

/* ==========================================================================
   Philosophy
   ========================================================================== */

.philosophy {
  position: relative;
  padding-block: var(--padding-section-large);
  overflow: hidden;
}

.philosophy__media {
  position: absolute;
  inset: 0;
}

.philosophy__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy__overlay {
  position: absolute;
  inset: 0;
  background: var(--opacity-overlay);
}

.philosophy__chevron {
  position: absolute;
  top: 50%;
  right: -20%;
  width: 80%;
  height: 70%;
  transform: translateY(-50%);
  opacity: 0.35;
  pointer-events: none;
}

.philosophy__chevron svg {
  width: 100%;
  height: 100%;
}

.philosophy__content {
  position: relative;
  z-index: 1;
}

.philosophy__grid {
  display: flex;
  flex-direction: column;
  gap: var(--gap-content);
}

.philosophy__text {
  margin: 0;
  font-size: var(--text-medium);
  line-height: 1.6;
  color: var(--color-white);
}

.philosophy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

/* ==========================================================================
   Proof / Stats
   ========================================================================== */

.proof {
  position: relative;
  padding-block: var(--padding-section-large);
  background: var(--color-scheme-1-background);
  overflow: hidden;
}

.proof__deco {
  position: absolute;
  top: -5%;
  right: -30%;
  width: 80%;
  max-width: 40rem;
  opacity: 0.9;
  pointer-events: none;
}

.proof__inner {
  position: relative;
  z-index: 1;
}

.proof__intro {
  margin: 0;
  max-width: 53rem;
  font-size: var(--text-medium);
  line-height: 1.6;
  color: var(--color-scheme-1-text);
}

.proof .section-header {
  gap: 1.5rem;
  margin-bottom: var(--gap-section);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 18rem;
  padding: 2rem;
  border: var(--stroke-border-width) solid var(--color-scheme-1-border);
  border-radius: var(--radius-medium);
  overflow: hidden;
  text-align: center;
}

.stat-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.stat-card__number,
.stat-card__label {
  position: relative;
  z-index: 1;
}

.stat-card__number {
  margin: 0;
  font-size: clamp(3rem, 12vw, var(--text-stat-number));
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

.stat-card__number--dark {
  color: var(--color-black);
}

.stat-card__label {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--text-heading-6);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--color-white);
  text-transform: lowercase;
}

.stat-card__label--dark {
  color: var(--color-black);
  text-transform: none;
}

.stat-card--light .stat-card__bg {
  object-fit: contain;
  background: var(--color-white);
}

.proof__pattern {
  display: none;
}

/* ==========================================================================
   Testimonial
   ========================================================================== */

.testimonial {
  position: relative;
  padding-block: var(--padding-section-large);
  background: var(--color-scheme-1-background);
  overflow: hidden;
}

.testimonial__pattern {
  position: absolute;
  left: 50%;
  width: 120%;
  max-width: none;
  transform: translateX(-50%);
  opacity: 0.15;
  pointer-events: none;
}

.testimonial__pattern--top {
  top: -40%;
}

.testimonial__pattern--bottom {
  bottom: -40%;
}

.testimonial__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.testimonial__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: var(--max-width-large);
  margin: 0;
  text-align: center;
}

.testimonial__quote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 4vw, var(--text-heading-5));
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--color-scheme-1-text);
}

.testimonial__author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.testimonial__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial__meta {
  text-align: left;
}

.testimonial__name {
  display: block;
  font-size: var(--text-regular);
  font-weight: 600;
  font-style: normal;
  color: var(--color-scheme-1-text);
}

.testimonial__role {
  display: block;
  font-size: var(--text-regular);
  color: var(--color-scheme-1-text);
}

.testimonial__arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border: var(--stroke-border-width) solid var(--color-scheme-1-border);
  border-radius: var(--radius-arrow);
  background: var(--color-scheme-1-foreground);
  color: var(--color-black);
  cursor: pointer;
}

.testimonial__dots {
  display: flex;
  gap: 0.5625rem;
  padding: 0.625rem;
}

.testimonial__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.testimonial__dot--active {
  background: var(--color-black);
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */

.cta-banner {
  position: relative;
  padding-block: var(--padding-section-large);
  text-align: center;
  overflow: hidden;
}

.cta-banner__media {
  position: absolute;
  inset: 0;
}

.cta-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: var(--opacity-overlay);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: var(--max-width-large);
}

.cta-banner__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 8vw, var(--text-heading-2));
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.cta-banner__text {
  margin: 0;
  font-size: var(--text-medium);
  line-height: 1.6;
  color: var(--color-white);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  position: relative;
  padding-block: var(--padding-section-medium);
  background: var(--color-scheme-2-background);
  color: var(--color-scheme-2-text);
  overflow: hidden;
}

.site-footer__logo-mark {
  display: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-section);
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.site-footer .site-logo__text {
  font-size: 1.25rem;
}

.site-footer .site-logo__img {
  height: 3rem;
}

.site-footer__logo-img {
  display: block;
  width: auto;
  height: 100%;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 2rem;
}

.site-footer__nav a {
  font-size: var(--text-small);
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-scheme-2-text);
}

.site-footer__newsletter-title {
  margin: 0 0 1rem;
  font-size: var(--text-regular);
  font-weight: 600;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form__input {
  width: 100%;
  height: 3rem;
  padding: 0.5rem 0.75rem;
  border: var(--stroke-border-width) solid var(--color-white);
  border-radius: var(--radius-button);
  background: var(--opacity-transparent);
  color: var(--color-white);
}

.newsletter-form__input::placeholder {
  color: var(--opacity-white-60);
}

.newsletter-form__submit {
  align-self: flex-start;
}

.site-footer__privacy {
  margin: 0;
  font-size: var(--text-tiny);
  line-height: 1.6;
  color: var(--color-scheme-2-text);
}

.site-footer__privacy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: var(--stroke-divider-width) solid rgba(255, 255, 255, 0.2);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.site-footer__legal a {
  font-size: var(--text-small);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__copy {
  margin: 0;
  font-size: var(--text-small);
  line-height: 1.6;
}

/* ==========================================================================
   Desktop — min-width: 768px (matches Figma Home • Desktop)
   ========================================================================== */

@media (min-width: 768px) {
  :root {
    --padding-global: 4rem;           /* 64px */
    --padding-section-large: 7rem;    /* 112px */
    --padding-section-medium: 5rem;   /* 80px */
    --gap-section: 5rem;              /* 80px */
    --navbar-height: 5.5rem;          /* ~21% shorter than 7rem */
  }

  .site-header__inner {
    height: var(--navbar-height);
  }

  .site-logo__text {
    font-size: 1.5rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    position: static;
    border: none;
    background: transparent;
  }

  .site-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 0;
  }

  .site-nav__list a {
    padding: 0;
  }

  /* "More" hover dropdown */
  .site-nav__item--has-menu {
    position: relative;
  }

  .site-nav__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 12rem;
    margin-top: 0.75rem;
    padding: 0.5rem 0;
    background: var(--color-scheme-2-background);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 50;
  }

  /* Transparent bridge so the hover doesn't drop while moving to the panel */
  .site-nav__submenu::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 0.75rem;
  }

  .site-nav__item--has-menu:hover .site-nav__submenu,
  .site-nav__item--has-menu:focus-within .site-nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav__item--has-menu:hover .site-nav__chevron,
  .site-nav__item--has-menu:focus-within .site-nav__chevron {
    transform: rotate(180deg);
  }

  .site-nav__submenu a {
    padding: 0.5rem 1.25rem;
    white-space: nowrap;
  }

  .site-nav__submenu a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  /* Hero — fills the viewport below the navbar, two-column */
  .hero {
    height: calc(100vh - var(--navbar-height));
    height: calc(100dvh - var(--navbar-height));
    align-items: stretch;
    padding-block: 3rem;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
  }

  .hero__quarter-circle {
    top: 7rem;
    left: 5rem;
    width: 13.125rem;
  }

  .hero__grid {
    flex: 1;
    min-height: 0;
    flex-direction: row;
    align-items: stretch;
    gap: 5rem;
  }

  .hero__primary,
  .hero__secondary {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .hero__primary {
    justify-content: flex-end;
    gap: 2rem;
  }

  .hero__secondary {
    justify-content: flex-start;
  }

  /* Engage — pinned scroll slider (desktop) */
  .engage {
    height: 300vh;
  }

  .engage__stage {
    position: sticky;
    top: var(--navbar-height);
    height: calc(100vh - var(--navbar-height));
    height: calc(100dvh - var(--navbar-height));
    overflow: hidden;
  }

  .engage__head {
    position: absolute;
    top: 6vh;
    left: 0;
    right: 0;
    z-index: 6;
    padding-block: 0;
  }

  .engage__slides {
    position: absolute;
    inset: 0;
  }

  .engage__slide {
    position: absolute;
    inset: 0;
    min-height: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.6s ease;
  }

  .engage__slide.is-active {
    opacity: 1;
    z-index: 2;
  }

  /* Background: subtle zoom settle */
  .engage__bg img {
    transform: scale(1.03);
    transition: transform 1.2s ease;
  }

  .engage__slide.is-active .engage__bg img {
    transform: scale(1);
  }

  /* Merchandise: pull the camera back so more of the cutting mat is visible */
  .engage__slide--merch .engage__bg {
    background-color: #14161a;
  }

  .engage__slide--merch .engage__bg img,
  .engage__slide--merch.is-active .engage__bg img {
    transform: scale(0.9);
  }

  /* Objects + vectors slide in from the left, staggered */
  .engage__object,
  .engage__vector {
    opacity: 0;
    transform: translateX(-90px);
    transition: opacity 0.6s ease, transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .engage__slide.is-active .engage__object,
  .engage__slide.is-active .engage__vector {
    opacity: 1;
    transform: translateX(0);
  }

  .engage__slide.is-active .engage__vector--ring,
  .engage__slide.is-active .engage__vector--triangle,
  .engage__slide.is-active .engage__vector--circle {
    transition-delay: 0.08s;
  }

  .engage__slide.is-active .engage__object {
    transition-delay: 0.18s;
  }

  .engage__slide.is-active .engage__vector--icon,
  .engage__slide.is-active .engage__vector--v,
  .engage__slide.is-active .engage__vector--stripes {
    transition-delay: 0.26s;
  }

  /* Desktop vector placement (per-category designs) */
  .engage__vector--ring {
    width: clamp(24rem, 44vw, 46rem);
    right: -6%;
    top: -4%;
  }

  .engage__object {
    width: clamp(36rem, 73vw, 75rem);
    height: auto;
    max-height: 94%;
    left: auto;
    right: 6%;
    bottom: 8%;
    object-fit: contain;
    object-position: center;
  }

  .engage__object--people {
    width: clamp(40rem, 70vw, 72rem);
    max-height: 100%;
    left: 0;
    right: 0;
    margin-inline: auto;
    bottom: 0;
    object-position: bottom center;
  }

  .engage__object--press {
    width: clamp(57rem, 94vw, 96rem);
    max-height: 100%;
    left: 0;
    right: 0;
    margin-inline: auto;
    bottom: 7%;
    object-position: center;
  }

  .engage__vector--icon {
    width: 8rem;
    left: max(var(--padding-global), calc(50vw - 640px + var(--padding-global)));
    top: 28%;
  }

  .engage__vector--triangle {
    width: clamp(12rem, 20vw, 20rem);
    left: 0;
    top: 10%;
  }

  .engage__vector--v {
    width: clamp(18rem, 32vw, 34rem);
    right: -2%;
    top: 12%;
  }

  .engage__vector--circle {
    width: clamp(24rem, 40vw, 44rem);
    left: -3%;
    top: -8%;
  }

  .engage__vector--stripes {
    width: clamp(11rem, 17vw, 19rem);
    right: 2%;
    bottom: 6%;
  }

  /* Trapezoid bar aligned to the centered container gutter */
  .engage__bar {
    bottom: 6vh;
    width: min(52rem, 72%);
    padding: 1.6rem 3rem 1.6rem
      max(var(--padding-global), calc(50vw - 640px + var(--padding-global)));
    clip-path: polygon(0 0, 100% 0, calc(100% - 72px) 100%, 0 100%);
  }

  .engage__slide--merch .engage__bar {
    min-height: 11rem;
  }

  .engage__text--detached {
    bottom: 6vh;
    width: min(52rem, 72%);
    padding: 1.6rem 3rem 1.6rem
      max(var(--padding-global), calc(50vw - 640px + var(--padding-global)));
  }

  /* Progress dots */
  .engage__progress {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: absolute;
    z-index: 6;
    top: 50%;
    transform: translateY(-50%);
    right: 0.75rem;
  }

  .engage__dot {
    width: 0.85rem;
    height: 0.85rem;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  }

  .engage__dot:hover {
    border-color: var(--color-white);
  }

  .engage__dot.is-active {
    background: var(--color-orange);
    border-color: var(--color-orange);
    transform: scale(1.15);
  }

  /* Philosophy */
  .philosophy {
    min-height: 40rem;
  }

  .philosophy__chevron {
    right: 0;
    width: 50%;
    height: 90%;
    opacity: 0.5;
  }

  .philosophy__grid {
    flex-direction: row;
    gap: 5rem;
  }

  .philosophy__title-col,
  .philosophy__body-col {
    flex: 1;
  }

  .philosophy__body-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 12rem;
  }

  /* Stats — 3-column */
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    min-height: 31.25rem;
  }

  .stat-card {
    min-height: 31.25rem;
  }

  .proof__deco {
    top: -10%;
    right: -15%;
    width: 55%;
  }

  .proof__pattern {
    display: block;
    position: absolute;
    bottom: -20%;
    left: 50%;
    width: 110%;
    transform: translateX(-50%);
    pointer-events: none;
  }

  /* Testimonial */
  .testimonial {
    min-height: 34.875rem;
    display: flex;
    align-items: center;
  }

  .testimonial__inner {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .testimonial__arrow {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .testimonial__arrow--prev {
    left: var(--padding-global);
  }

  .testimonial__arrow--next {
    right: var(--padding-global);
  }

  .testimonial__dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .testimonial__pattern {
    display: block;
  }

  /* Footer */
  .site-footer__logo-mark {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5.5rem;
    position: absolute;
    top: 3.75rem;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .site-footer__logo-text {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.02em;
    color: var(--color-white);
    opacity: 0.95;
  }

  .site-footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 8rem;
  }

  .site-footer__brand {
    flex: 1;
    max-width: var(--max-width-small);
  }

  .site-footer__newsletter {
    width: 25rem;
    flex-shrink: 0;
  }

  .newsletter-form {
    flex-direction: row;
    align-items: stretch;
  }

  .newsletter-form__input {
    flex: 1;
  }

  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Large desktop refinements — 1440px frame from Figma */
@media (min-width: 1440px) {
  .engage__object {
    width: 75rem;
    left: auto;
    right: 8%;
  }

  .engage__object--people {
    width: 72rem;
    left: 0;
    right: 0;
  }

  .engage__object--press {
    width: 96rem;
    left: 0;
    right: 0;
  }
}

/* Reduced-motion: force the static stacked fallback even on desktop */
@media (prefers-reduced-motion: reduce) {
  .engage {
    height: auto !important;
  }

  .engage__stage {
    position: static !important;
    height: auto !important;
    overflow: visible !important;
  }

  .engage__head {
    position: relative !important;
    top: auto !important;
    padding-top: 2.5rem !important;
    padding-bottom: 1rem !important;
  }

  .engage__slides {
    position: static !important;
  }

  .engage__slide {
    position: relative !important;
    inset: auto !important;
    min-height: 80vh;
    opacity: 1 !important;
    z-index: auto !important;
  }

  .engage__object,
  .engage__vector,
  .engage__bg img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .engage__progress {
    display: none !important;
  }
}

/* ==========================================================================
   Workshop page
   ========================================================================== */

.section--dark {
  background: var(--color-scheme-2-background);
  color: var(--color-scheme-2-text);
}

/* --- Page header --- */
.wk-header {
  background: var(--color-scheme-1-background);
  color: var(--color-scheme-1-text);
  border-bottom: 1px solid var(--opacity-neutral-darkest-15);
  padding-block: 3rem;
}

.wk-header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.wk-header__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  font-size: clamp(3rem, 14vw, var(--text-heading-1));
}

.wk-header__sub {
  margin: 0;
  font-size: var(--text-regular);
}

/* --- Section rhythm --- */
.wk-process,
.wk-timeline,
.wk-cta,
.wk-benefits,
.wk-faq {
  padding-block: var(--padding-section-large);
}

.wk-process__head,
.wk-timeline__head {
  margin-bottom: 2.5rem;
}

.wk-process__sub,
.wk-timeline__sub {
  margin: 0;
  font-size: var(--text-regular);
  color: var(--opacity-white-60);
}

/* --- Shared action rows --- */
.wk-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.wk-actions--center {
  justify-content: center;
  margin-top: 1.5rem;
}

.btn--dark {
  color: var(--color-white);
  background: var(--color-black);
  border-color: var(--color-black);
}

.btn--text-dark {
  color: var(--color-black);
}

/* --- Feature tabs (mobile: stacked accordion) --- */
.feature-tabs {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-scheme-2-border);
  border-radius: var(--radius-medium);
  overflow: hidden;
}

.feature-tab + .feature-tab {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.feature-tab__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem;
  background: transparent;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  text-align: left;
}

.feature-tab__num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1;
}

.feature-tab__label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.1;
}

.feature-tab__panel {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0 1.25rem 1.5rem;
}

.feature-tab.is-active .feature-tab__panel {
  display: flex;
}

.feature-tab__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.5rem, 6vw, 2.25rem);
  line-height: 1.1;
}

.feature-tab__desc {
  margin: 0;
  color: var(--opacity-white-60);
  max-width: 36rem;
}

.feature-tab__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  object-fit: cover;
}

/* --- Benefits / workshop levels --- */
.wk-benefits {
  background: var(--color-scheme-1-background);
  color: var(--color-scheme-1-text);
}

.wk-benefits__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2.5rem;
}

.wk-benefit__icon {
  width: 3rem;
  height: 3rem;
  color: var(--color-black);
}

.wk-benefit__title {
  margin: 1rem 0 0.5rem;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--text-heading-6);
  line-height: 1.1;
}

.wk-benefit__text {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  max-width: 32rem;
}

/* --- Timeline carousel --- */
.wk-timeline__head {
  text-align: center;
  align-items: center;
}

.wk-timeline__head .wk-timeline__sub {
  max-width: 40rem;
}

.wk-timeline__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wk-timeline__viewport {
  overflow: hidden;
  flex: 1;
}

.wk-timeline__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  transition: transform 0.45s ease;
}

.wk-timeline__item {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}

.wk-timeline__img {
  width: 100%;
  max-width: 18rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-medium);
}

.wk-timeline__bar {
  position: relative;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  margin: 1.5rem 0;
}

.wk-timeline__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--color-white);
  border-radius: 50%;
}

.wk-timeline__time {
  margin: 0 0 0.4rem;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  line-height: 1;
}

.wk-timeline__caption {
  margin: 0;
  color: var(--opacity-white-60);
  max-width: 22rem;
}

.wk-timeline__arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-scheme-2-border);
  border-radius: var(--radius-arrow);
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
}

.wk-timeline__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

/* --- FAQ accordion --- */
.wk-faq {
  position: relative;
  background: var(--color-scheme-1-background);
  color: var(--color-scheme-1-text);
  overflow: hidden;
}

.wk-faq__vector {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 12rem;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
}

.wk-faq__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
}

.wk-faq__intro .section-header__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  font-size: clamp(2.5rem, 9vw, var(--text-heading-2));
}

.wk-faq__text {
  margin: 1rem 0 1.5rem;
  color: rgba(0, 0, 0, 0.7);
}

.wk-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wk-accordion__item {
  border: 1px solid var(--opacity-neutral-darkest-15);
  border-radius: var(--radius-medium);
  overflow: hidden;
}

.wk-accordion__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  color: var(--color-black);
}

.wk-accordion__icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.wk-accordion__item.is-open .wk-accordion__icon-v {
  display: none;
}

.wk-accordion__a {
  display: none;
  padding: 0 1.5rem 1.25rem;
}

.wk-accordion__item.is-open .wk-accordion__a {
  display: block;
}

.wk-accordion__a p {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  max-width: 44rem;
}

/* --- CTA --- */
.wk-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.wk-cta__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1;
  font-size: clamp(2.5rem, 11vw, 4.5rem);
}

.wk-cta__sub {
  margin: 0;
  color: var(--opacity-white-60);
}

.wk-cta__form {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 32rem;
  flex-wrap: wrap;
  justify-content: center;
}

.wk-cta__input {
  flex: 1 1 16rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-scheme-2-border);
  border-radius: var(--radius-button);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  font: inherit;
}

.wk-cta__input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.wk-cta__terms {
  margin: 0;
  font-size: var(--text-tiny);
  color: var(--opacity-white-60);
}

.wk-cta__terms a {
  color: inherit;
}

/* --- Workshop page: desktop --- */
@media (min-width: 768px) {
  .wk-header {
    padding-block: 5rem;
  }

  .wk-process,
  .wk-timeline,
  .wk-cta,
  .wk-benefits,
  .wk-faq {
    padding-block: 7rem;
  }

  .wk-process__head {
    max-width: 48rem;
  }

  /* Feature tabs become a horizontal accordion */
  .feature-tabs {
    flex-direction: row;
    height: 38rem;
  }

  .feature-tab {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    min-width: 0;
    flex: 0 0 5.5rem;
    transition: flex-basis 0.4s ease, flex-grow 0.4s ease;
  }

  .feature-tab + .feature-tab {
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .feature-tab.is-active {
    flex: 1 1 auto;
  }

  .feature-tab__bar {
    flex: 0 0 5.5rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
    height: 100%;
    padding: 1.5rem 1rem;
  }

  .feature-tab__label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-top: auto;
    white-space: nowrap;
  }

  .feature-tab__panel {
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    min-width: 0;
    padding: 3rem 3rem 3rem 1rem;
  }

  .feature-tab__img {
    width: 100%;
    max-height: 20rem;
    object-fit: cover;
  }

  /* Benefits: two-column rows */
  .wk-benefits__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
  }

  /* Timeline: three across */
  .wk-timeline__item {
    flex: 0 0 33.3333%;
    padding: 0 1rem;
  }

  .wk-timeline__img {
    max-width: none;
  }

  /* FAQ two-column layout */
  .wk-faq__grid {
    grid-template-columns: 0.9fr 1.4fr;
    gap: 4rem;
    align-items: start;
  }

  .wk-faq__vector {
    width: 22rem;
  }

  /* CTA */
  .wk-cta__form {
    flex-wrap: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wk-timeline__track,
  .feature-tab,
  .feature-tab__panel,
  .wk-accordion__icon {
    transition: none !important;
  }
}

/* ==========================================================================
   Gallery page
   ========================================================================== */

.gallery {
  background: var(--color-scheme-1-background);
  color: var(--color-scheme-1-text);
  padding-block: var(--padding-section-large);
}

.gallery__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 1;
  column-gap: 1.5rem;
}

.gallery__grid > li {
  margin: 0 0 1.5rem;
  break-inside: avoid;
}

.gallery-item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  border-radius: var(--radius-medium);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item--wide img {
  aspect-ratio: 16 / 9;
}

.gallery-item--short img {
  aspect-ratio: 3 / 2;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
}

@media (min-width: 600px) {
  .gallery__grid {
    column-count: 2;
  }
}

@media (min-width: 900px) {
  .gallery {
    padding-block: 6rem;
  }

  .gallery__grid {
    column-count: 3;
    column-gap: 2rem;
  }

  .gallery__grid > li {
    margin-bottom: 2rem;
  }
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lightbox__img {
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-medium);
}

.lightbox__caption {
  margin: 0;
  max-width: 40rem;
  text-align: center;
  font-size: var(--text-small);
  color: var(--opacity-white-60);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--color-white);
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item img {
    transition: none !important;
  }
}

/* ==========================================================================
   Shop page
   ========================================================================== */

.shop {
  background: var(--color-scheme-1-background);
  color: var(--color-scheme-1-text);
  padding-block: var(--padding-section-large);
}

.shop__head {
  margin-bottom: 3rem;
}

.product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card__media {
  border-radius: var(--radius-medium);
  overflow: hidden;
  background: var(--color-neutral-lightest);
}

.product-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.03);
}

.product-card__body {
  margin-top: 1rem;
}

.product-card__name {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--text-heading-6);
  line-height: 1.1;
}

.product-card__variant {
  margin: 0.25rem 0 0;
  font-size: var(--text-small);
  color: rgba(0, 0, 0, 0.6);
}

.product-card__price {
  margin: 0.5rem 0 0;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.75rem;
}

.product-card__add {
  margin-top: 1rem;
  width: 100%;
}

.shop__actions {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.btn--dark-outline {
  color: var(--color-black);
  background: transparent;
  border-color: var(--color-black);
}

/* Featured collection band */
.shop-featured {
  background: var(--color-scheme-1-background);
  color: var(--color-scheme-1-text);
  padding-bottom: var(--padding-section-large);
}

.shop-featured__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  max-width: 48rem;
}

.shop-featured__icon {
  width: 3rem;
  height: 3rem;
  color: var(--color-black);
}

.shop-featured__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  font-size: clamp(2rem, 7vw, var(--text-heading-2));
}

.shop-featured__text {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
}

.shop-featured__actions {
  margin-top: 1.25rem;
}

.shop-featured__img {
  display: block;
  width: 100%;
  margin-top: 2.5rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-medium);
}

@media (min-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .shop {
    padding-block: 7rem;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
  }
}

/* ==========================================================================
   Cart (navbar button + slide-in drawer)
   ========================================================================== */

.cart-button {
  position: relative;
  order: 2;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--color-scheme-2-text);
  cursor: pointer;
}

.cart-button__badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-black);
  background: var(--color-orange);
  border-radius: 999px;
}

.nav-toggle {
  order: 3;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.5);
}

.cart-overlay[hidden] {
  display: none;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 160;
  display: flex;
  flex-direction: column;
  width: min(420px, 100%);
  height: 100%;
  background: var(--color-scheme-1-background);
  color: var(--color-scheme-1-text);
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--opacity-neutral-darkest-15);
}

.cart-drawer__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--text-heading-6);
}

.cart-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--color-black);
  cursor: pointer;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-drawer__empty {
  margin: 2rem 0;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  grid-template-areas:
    "img info info"
    "img qty remove";
  gap: 0.35rem 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--opacity-neutral-darkest-15);
}

.cart-line__img {
  grid-area: img;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.cart-line__info {
  grid-area: info;
}

.cart-line__name {
  margin: 0;
  font-weight: 700;
}

.cart-line__variant {
  margin: 0.15rem 0 0;
  font-size: var(--text-tiny);
  color: rgba(0, 0, 0, 0.6);
}

.cart-line__price {
  margin: 0.15rem 0 0;
  font-size: var(--text-small);
}

.cart-line__qty {
  grid-area: qty;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-line__btn {
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid var(--opacity-neutral-darkest-15);
  border-radius: 0.4rem;
  background: transparent;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.cart-line__count {
  min-width: 1.5rem;
  text-align: center;
}

.cart-line__remove {
  grid-area: remove;
  justify-self: end;
  align-self: center;
  padding: 0;
  border: none;
  background: transparent;
  font-size: var(--text-tiny);
  color: rgba(0, 0, 0, 0.55);
  text-decoration: underline;
  cursor: pointer;
}

.cart-drawer__foot {
  padding: 1.5rem;
  border-top: 1px solid var(--opacity-neutral-darkest-15);
}

.cart-drawer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.cart-drawer__note {
  margin: 0.5rem 0 1rem;
  font-size: var(--text-tiny);
  color: rgba(0, 0, 0, 0.6);
}

.cart-drawer__checkout {
  width: 100%;
}

.cart-drawer__error {
  margin: 0.75rem 0 0;
  font-size: var(--text-small);
  color: var(--color-orange);
}

@media (min-width: 768px) {
  .site-nav {
    order: 1;
    margin-left: auto;
  }

  .cart-button {
    order: 2;
    margin-left: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card__media img,
  .cart-drawer {
    transition: none !important;
  }
}

/* --- Order result (success page) --- */
.order-result {
  background: var(--color-scheme-1-background);
  color: var(--color-scheme-1-text);
  padding-block: clamp(4rem, 14vh, 9rem);
}

.order-result__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  max-width: 40rem;
}

.order-result__icon {
  width: 4rem;
  height: 4rem;
  color: var(--color-orange);
}

.order-result__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1;
  font-size: clamp(3rem, 12vw, var(--text-heading-1));
}

.order-result__text {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
}

/* ==========================================================================
   About page
   ========================================================================== */

.about-header .wk-actions {
  margin-top: 1.75rem;
}

/* --- Why we chose the analogue way --- */
.about-why,
.about-team,
.about-quote {
  background: var(--color-scheme-1-background);
  color: var(--color-scheme-1-text);
  padding-block: var(--padding-section-large);
}

.about-why__grid {
  display: grid;
  gap: 2.5rem;
}

.about-why__title {
  margin: 0.5rem 0 1.25rem;
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  font-size: clamp(2.25rem, 9vw, 3.5rem);
}

.about-why__lead {
  margin: 0;
  font-size: var(--text-regular);
  color: rgba(0, 0, 0, 0.75);
}

.about-why__list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-why__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: var(--text-regular);
}

.about-why__icon {
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.2rem;
  color: var(--color-black);
}

.about-why__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  object-fit: cover;
}

/* --- Team --- */
.about-team__head {
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
}

.about-team__sub {
  margin: 0;
  font-size: var(--text-regular);
  color: rgba(0, 0, 0, 0.7);
}

.about-team__card {
  display: flex;
  flex-direction: column;
}

.about-team__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-medium);
}

.about-team__body {
  text-align: center;
  margin-top: 1.5rem;
}

.about-team__name {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.about-team__role {
  margin: 0.25rem 0 0;
  color: rgba(0, 0, 0, 0.7);
}

.about-team__text {
  margin: 0.75rem 0 0;
  color: rgba(0, 0, 0, 0.7);
}

.about-team__social {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem 0 0;
  padding: 0;
}

.about-team__social a {
  display: inline-flex;
  color: var(--color-black);
  transition: opacity 0.2s ease;
}

.about-team__social a:hover {
  opacity: 0.6;
}

/* --- Testimonial --- */
.about-quote__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-quote__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  object-fit: cover;
}

.about-quote__stars {
  display: flex;
  gap: 0.25rem;
  color: var(--color-black);
}

.about-quote__text {
  margin: 1.25rem 0 0;
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.about-quote__avatar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.about-quote__person {
  display: flex;
  flex-direction: column;
}

.about-quote__name {
  font-weight: 700;
}

.about-quote__role {
  color: rgba(0, 0, 0, 0.7);
}

.about-quote__divider {
  width: 1px;
  align-self: stretch;
  min-height: 2.5rem;
  background: var(--opacity-neutral-darkest-15);
}

.about-quote__brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .about-why__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-why__media {
    order: 2;
  }

  .about-quote__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

/* ==========================================================================
   FAQ page
   ========================================================================== */

.faq {
  padding-block: var(--padding-section-large);
}

.faq__grid {
  display: grid;
  gap: 2.5rem;
}

.faq__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.faq__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  font-size: clamp(2.5rem, 9vw, 4.5rem);
}

.faq__text {
  margin: 0;
  font-size: var(--text-regular);
  color: var(--opacity-white-60, rgba(255, 255, 255, 0.6));
  max-width: 28rem;
}

/* Dark theme overrides for the shared accordion markup */
.faq-accordion .wk-accordion__item {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-accordion .wk-accordion__q {
  color: var(--color-white);
}

.faq-accordion .wk-accordion__a p {
  color: rgba(255, 255, 255, 0.7);
}

/* Plus turns into an X when open */
.faq-accordion .wk-accordion__item.is-open .wk-accordion__icon {
  transform: rotate(45deg);
}

.faq-accordion .wk-accordion__item.is-open .wk-accordion__icon-v {
  display: block;
}

/* --- CTA band --- */
.faq-cta {
  background: var(--color-scheme-1-background);
  color: var(--color-scheme-1-text);
  padding-block: var(--padding-section-large);
}

.faq-cta__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.faq-cta__title {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  font-size: clamp(2.25rem, 8vw, 3.5rem);
}

.faq-cta__text {
  margin: 0 0 1.75rem;
  font-size: var(--text-regular);
  color: rgba(0, 0, 0, 0.7);
}

.faq-cta__form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.faq-cta__input {
  flex: 1 1 16rem;
  min-width: 0;
  padding: 0.75rem 1rem;
  font: inherit;
  color: var(--color-black);
  background: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: var(--radius-button);
}

.faq-cta__terms {
  margin: 1rem 0 0;
  font-size: var(--text-small);
  color: rgba(0, 0, 0, 0.6);
}

.faq-cta__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-medium);
}

@media (min-width: 768px) {
  .faq__grid {
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: start;
  }

  .faq__intro {
    position: sticky;
    top: calc(var(--navbar-height) + 2rem);
  }

  .faq-cta__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact {
  padding-block: var(--padding-section-large);
}

.contact__head {
  margin-bottom: 2.5rem;
}

.contact__sub {
  margin: 0;
  font-size: var(--text-regular);
  color: var(--opacity-white-60, rgba(255, 255, 255, 0.6));
}

.contact__grid {
  display: grid;
  gap: 3rem;
}

/* --- Form fields (dark theme) --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form__row {
  display: grid;
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.form-field__label {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-white);
}

.form-field__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font: inherit;
  color: var(--color-white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-button);
  transition: border-color 0.2s ease;
}

.form-field__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-field__input:focus {
  outline: none;
  border-color: var(--color-white);
}

.form-field__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.75rem;
}

.form-field__select option {
  color: var(--color-black);
}

.form-field__textarea {
  resize: vertical;
  min-height: 9rem;
}

/* --- Radio group --- */
.contact-form__radios {
  gap: 1rem;
}

.contact-form__radio-grid {
  display: grid;
  gap: 0.75rem 1.5rem;
}

.radio,
.checkbox {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--color-white);
  cursor: pointer;
}

.radio input,
.checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--color-white);
  flex: none;
}

.checkbox a {
  color: var(--color-white);
  text-decoration: underline;
}

.contact-form__submit {
  align-self: flex-start;
}

/* --- Contact info column --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info__row {
  display: grid;
  gap: 3rem;
}

.contact-info__item {
  display: flex;
  flex-direction: column;
}

.contact-info__icon {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.contact-info__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-info__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.contact-info__link {
  margin-top: 0.5rem;
  color: var(--color-white);
  text-decoration: underline;
  word-break: break-word;
}

.contact-info__directions {
  margin-top: 0.75rem;
  align-self: flex-start;
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form__radio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-info__row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   Commission page
   ========================================================================== */

/* Mobile-first static layout (doubles as the reduced-motion fallback) */
.commission-reveal {
  position: relative;
  background: var(--color-black);
}

.commission-reveal__stage {
  position: relative;
  display: flex;
  flex-direction: column;
}

.commission-reveal__bg {
  position: relative;
  order: 1;
  height: 60vh;
}

.commission-reveal__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commission-reveal__panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 60vh;
  background: rgba(0, 0, 0, 0.72);
  color: var(--color-white);
}

.commission-reveal__panel-inner {
  max-width: 36rem;
  padding: 2rem var(--padding-global);
}

.commission-reveal__title {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.01em;
  font-size: clamp(2.5rem, 9vw, 4rem);
}

.commission-reveal__text {
  margin: 0 0 1.75rem;
  font-size: var(--text-regular);
  color: rgba(255, 255, 255, 0.85);
}

.commission-reveal__grid {
  order: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.5rem;
  background: var(--color-white);
}

.commission-reveal__grid img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.commission-reveal__chevron {
  display: none;
}

@media (min-width: 768px) {
  .commission-reveal {
    height: 220vh; /* scroll distance that drives the transition */
  }

  .commission-reveal__stage {
    position: sticky;
    top: 0;
    display: block;
    height: 100vh;
    overflow: hidden;
  }

  .commission-reveal__bg {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .commission-reveal__grid {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 50%;
    height: 100%;
    grid-template-rows: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 1rem;
  }

  .commission-reveal__grid img {
    height: 100%;
    aspect-ratio: auto;
  }

  .commission-reveal__panel {
    top: 0;
    left: 0;
    right: auto;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0.78);
    transform: translateX(calc(var(--p, 0) * 100%));
    will-change: transform;
  }

  .commission-reveal__panel-inner {
    max-width: none;
    padding-inline: 4rem;
  }

  .commission-reveal__chevron {
    display: block;
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    z-index: 4;
    color: var(--color-white);
    animation: commission-bob 1.8s ease-in-out infinite;
  }
}

@keyframes commission-bob {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .commission-reveal {
    height: auto;
  }

  .commission-reveal__stage {
    position: static;
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: visible;
  }

  .commission-reveal__bg {
    position: relative;
    inset: auto;
    order: 1;
    height: 60vh;
  }

  .commission-reveal__panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 60vh;
    transform: none;
  }

  .commission-reveal__grid {
    position: static;
    order: 2;
    width: auto;
    height: auto;
    grid-template-rows: none;
  }

  .commission-reveal__grid img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .commission-reveal__chevron {
    display: none;
  }
}
