/* ==========================================================================
   Accurate Color — site stylesheet
   Design tokens come from the Claude Design handoff (README.md "Design Tokens").
   Edit values here; every page reads from this one file.
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------ */
:root {
  --navy-900: #071e3a;
  --navy-800: #0b294b;
  --lime-500: #a8ff00;
  --lime-600: #8fdc00;
  --lime-700: #72b300;
  --white: #ffffff;
  --page: #f5f7fa;
  --text: #10213a;
  --muted: #718096;
  --border: #e5eaf0;

  /* Surfaces are indirected through these so dark mode can swap them
     without every rule needing a dark-mode override. */
  --surface: var(--white);
  --surface-alt: var(--page);
  --surface-card: var(--white);
  --text-on-surface: var(--text);
  --muted-on-surface: var(--muted);
  --border-on-surface: var(--border);

  --font-display: "Eurostile", "Montserrat", Arial, sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
  /* Hero headlines only. Michroma stands in for Eurostile — same wide, squared
     letterforms — because Eurostile needs a paid webfont licence. If that
     licence is ever bought, drop the real font in here and everything follows. */
  --font-hero: "Michroma", "Eurostile", "Montserrat", Arial, sans-serif;

  --gutter: clamp(20px, 5vw, 56px);
  --maxw: 1240px;
  --maxw-narrow: 1160px;

  --radius-card: 6px;
  --shadow-card: 0 10px 24px rgba(7, 30, 58, 0.14);
  --shadow-soft: 0 8px 24px rgba(7, 30, 58, 0.08);

  --nav-height: 74px;
}

:root[data-theme="dark"] {
  --surface: #061529;
  --surface-alt: #071e3a;
  --surface-card: #0b294b;
  --text-on-surface: #eaf1fa;
  --muted-on-surface: #93a4bd;
  --border-on-surface: rgba(255, 255, 255, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-on-surface);
  background: var(--surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy-800); text-decoration: none; }
a:hover { color: var(--lime-700); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

/* Visible only to screen readers — used for section landmarks and the
   skip link. */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--lime-500);
  color: var(--navy-900);
  padding: 12px 20px;
  font-family: var(--font-display);
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* Keyboard focus ring — kept visible everywhere for accessibility. */
:focus-visible {
  outline: 3px solid var(--lime-600);
  outline-offset: 2px;
}

/* --- Shared layout helpers ---------------------------------------------- */
.section { padding: 100px var(--gutter) 110px; background: var(--surface); }
.section--alt { background: var(--surface-alt); }
.section--navy { background: var(--navy-900); }

.container { max-width: var(--maxw); margin: 0 auto; }
.container--narrow { max-width: var(--maxw-narrow); margin: 0 auto; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  text-align: left;
  max-width: var(--maxw);
  margin: 0 auto 48px;
}

.kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime-700);
  margin-bottom: 14px;
}
.kicker--on-navy { color: var(--lime-500); }

.section-title {
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--navy-900);
}
.section-title--on-navy,
.section--navy .section-title { color: var(--white); }
:root[data-theme="dark"] .section-title { color: var(--text-on-surface); }

.lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted-on-surface);
  margin: 18px 0 0;
}

/* Halftone dot accent — a signature brand texture, used sparingly. */
.dots {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.35) 1.4px, transparent 1.6px);
  background-size: 14px 14px;
}
.dots-dark {
  background-image: radial-gradient(circle, rgba(7, 30, 58, 0.18) 1.4px, transparent 1.6px);
  background-size: 14px 14px;
}

/* --- Buttons ------------------------------------------------------------ */
/* The angled clip-path cut is the brand's signature shape. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 17px 34px;
  border: none;
  cursor: pointer;
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--lime-500); color: var(--navy-900); }
.btn--primary:hover { background: var(--lime-600); color: var(--navy-900); }

.btn--navy { background: var(--navy-900); color: var(--white); padding: 15px 30px; font-size: 14px; }
.btn--navy:hover { color: var(--lime-500); }

/* Outline button sits on photos/navy. A plain CSS border can't be used here:
   the angled clip-path slices the left and right edges off, leaving the
   border looking broken. Instead the outer element is the border colour and
   the inner span is a slightly smaller navy fill, so the outline follows the
   angled shape all the way around. */
.btn--outline {
  background: rgba(255, 255, 255, 0.6);
  color: var(--white);
  padding: 2px;
}
.btn--outline > span {
  display: block;
  background: var(--navy-900);
  padding: 15px 32px;
  clip-path: polygon(13px 0, 100% 0, calc(100% - 13px) 100%, 0 100%);
}
.btn--outline:hover { background: var(--lime-500); color: var(--lime-500); }

.btn--sm { font-size: 13px; padding: 12px 22px; clip-path: polygon(9px 0, 100% 0, calc(100% - 9px) 100%, 0 100%); }

.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy-800);
}
:root[data-theme="dark"] .link-arrow { color: var(--lime-500); }

/* --- Utility bar -------------------------------------------------------- */
.utility-bar {
  background: var(--lime-500);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  row-gap: 4px;
  padding: 8px clamp(16px, 4vw, 56px);
}
.utility-bar__tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--navy-900);
  text-transform: uppercase;
}
.utility-bar__links { display: flex; flex-wrap: wrap; gap: 16px; }
.utility-bar__links a {
  font-weight: 600;
  font-size: 12px;
  color: var(--navy-900);
}
.utility-bar__links a:hover { color: var(--navy-800); text-decoration: underline; }

/* --- Main nav ----------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-900);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 40px 0 0;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

/* The white logo panel is sliced diagonally, with a lime sliver echoing
   the cut — the nav's signature detail. */
.nav-logo { display: flex; height: 100%; flex-shrink: 0; }
.nav-logo__panel {
  width: 240px;
  height: 100%;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
  display: flex;
  align-items: center;
  padding-left: 40px;
  flex-shrink: 0;
}
.nav-logo__panel img { height: 38px; width: auto; object-fit: contain; }
.nav-logo__slice {
  width: 46px;
  height: 100%;
  margin-left: -40px;
  background: var(--lime-500);
  clip-path: polygon(86.96% 0, 100% 0, 13.04% 100%, 0% 100%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  min-width: 0;
}
.navlink {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.navlink:hover,
.navlink[aria-current="page"] { color: var(--lime-500); }

.nav-dropdown { position: relative; flex-shrink: 0; }
.nav-dropdown__trigger { display: flex; align-items: center; gap: 5px; }
.nav-dropdown__trigger svg { transition: transform .2s ease; }
.nav-dropdown__trigger[aria-expanded="true"] { color: var(--lime-500); }
.nav-dropdown__trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 16px;
  background: var(--navy-800);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  padding: 8px;
  min-width: 200px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 50;
}
.nav-dropdown__menu[data-open="true"] { display: flex; }
.nav-dropdown__menu a { padding: 11px 14px; border-radius: 4px; }
.nav-dropdown__menu a:hover { background: rgba(255, 255, 255, 0.06); }

.nav-cta {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-900);
  background: var(--lime-500);
  padding: 12px 26px;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--lime-600); color: var(--navy-900); }

.theme-toggle {
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  padding: 0;
}
.theme-toggle:hover { border-color: var(--lime-500); color: var(--lime-500); }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

/* Hamburger — hidden on desktop, shown under 700px (see media queries). */
.nav-hamburger {
  display: none;
  flex-shrink: 0;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
}
.nav-hamburger__lines { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.nav-hamburger__lines span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-hamburger__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
/* Open state: outer lines rotate into an X, middle line fades. */
.nav-hamburger[aria-expanded="true"] .nav-hamburger__lines span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] .nav-hamburger__lines span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] .nav-hamburger__lines span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: sticky;
  top: var(--nav-height);
  z-index: 99;
  background: var(--navy-800);
  padding: 18px 40px 26px;
  display: none;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}
.mobile-menu[data-open="true"] { display: flex; }
.mobile-menu .nav-cta { text-align: center; padding: 14px 26px; }

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy-900);
  padding-bottom: 120px;
}
.hero__media { position: relative; height: 78vh; min-height: 620px; }
.hero__media--short { height: 40vh; min-height: 300px; }
.hero__media img,
.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 30, 58, 0.97) 46%, rgba(7, 30, 58, 0.65) 68%, rgba(7, 30, 58, 0.25) 100%);
}
.hero__dots {
  position: absolute;
  top: 0; right: 0;
  width: 340px; height: 100%;
  opacity: 0.5;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  max-width: 840px;
}
.hero__inner--narrow { max-width: 760px; }
.hero__kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime-500);
  margin-bottom: 18px;
}
/* Michroma runs roughly 45% wider than Montserrat at the same size and ships in
   a single weight, so the hero needs its own size ramp and an explicit 400 —
   without that, browsers synthesise a fake bold that smears the letterforms. */
.hero__title {
  font-family: var(--font-hero);
  font-weight: 400;
  font-size: clamp(22px, 3.1vw, 48px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0 0 22px;
}
.hero__title--sm {
  font-size: clamp(20px, 2.6vw, 35px);
  line-height: 1.18;
  margin-bottom: 0;
}
.hero__text {
  font-weight: 500;
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 0 38px;
}
.hero__actions { display: flex; gap: 18px; flex-wrap: wrap; }

/* Diagonal navy→lime ombre transition out of the hero. */
.hero__diagonal {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-900) 38%, var(--lime-600) 78%, var(--lime-500) 100%);
  clip-path: polygon(0 45%, 100% 0, 100% 100%, 0% 100%);
}
.hero__diagonal--sm { height: 120px; }

/* --- "What We Do" tilted card row --------------------------------------- */
.wwd-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: var(--maxw);
  margin: 0 auto;
}
.wwd-card {
  width: 230px;
  margin: 0 -14px;
  position: relative;
  background: var(--surface-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}
.wwd-card:hover {
  transform: translateY(-10px) rotate(0deg) !important;
  box-shadow: 0 22px 40px rgba(7, 30, 58, 0.22);
  z-index: 20 !important;
}
/* Each card is tilted slightly and overlaps its neighbours, like a fanned
   stack of prints. */
.wwd-card:nth-child(1) { transform: rotate(-3deg); z-index: 1; }
.wwd-card:nth-child(2) { transform: rotate(2deg); z-index: 2; }
.wwd-card:nth-child(3) { transform: rotate(-2deg); z-index: 3; }
.wwd-card:nth-child(4) { transform: rotate(2deg); z-index: 2; }
.wwd-card:nth-child(5) { transform: rotate(-3deg); z-index: 1; }

.wwd-card__corner {
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 46px 46px 0;
  border-color: transparent var(--lime-500) transparent transparent;
  z-index: 2;
}
.wwd-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
  color: var(--text-on-surface);
  text-transform: uppercase;
  min-height: 42px;
  padding: 24px 22px 0;
}
.wwd-card__media { padding: 16px 18px 0; }
.wwd-card__media img { width: 100%; height: 150px; object-fit: cover; border-radius: 4px; }
.wwd-card__foot { padding: 16px 22px 24px; }

/* --- Marquee ------------------------------------------------------------ */
.marquee {
  background: var(--lime-500);
  overflow: hidden;
  padding: 15px 0;
  border-top: 1px solid rgba(7, 30, 58, 0.15);
  border-bottom: 1px solid rgba(7, 30, 58, 0.15);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee__group { display: flex; align-items: center; flex-shrink: 0; }
.marquee__item {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-900);
  white-space: nowrap;
  padding: 0 22px;
}
.marquee__item::after { content: "\25C6"; margin-left: 22px; font-size: 8px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- Bento gallery ------------------------------------------------------ */
.gallery-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--big { grid-column: span 2; grid-row: span 2; }
.gallery-item__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(0deg, rgba(7, 30, 58, 0.75) 0%, rgba(7, 30, 58, 0) 45%);
  pointer-events: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* --- Product / order cards ---------------------------------------------- */
/* The navy section is pulled up under the previous one and clipped on a
   diagonal, so the two sections meet on an angle rather than a flat line. */
.section--angled-top {
  position: relative;
  padding: 140px var(--gutter) 100px;
  margin-top: -80px;
  clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 100%);
}
.section__dots-bottom {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 180px;
  opacity: 0.4;
  pointer-events: none;
}

.products-grid {
  position: relative;
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--navy-800);
  border: 1.5px solid var(--lime-500);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card img { width: 100%; height: 190px; object-fit: cover; }
.product-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.product-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 6px;
}
.product-card__desc { font-size: 14px; color: rgba(255, 255, 255, 0.6); margin: 0 0 18px; }
.product-card__rule { height: 1px; background: rgba(255, 255, 255, 0.15); margin: auto 0 18px; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--lime-500);
}
.product-card__price span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.product-card__cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--lime-500);
  border: 1.5px solid var(--lime-500);
  padding: 10px 20px;
  border-radius: 2px;
  white-space: nowrap;
}
.product-card__cta:hover { background: var(--lime-500); color: var(--navy-900); }

/* --- Upload CTA banner -------------------------------------------------- */
.cta-banner {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  background: var(--navy-900);
  border-radius: var(--radius-card);
  padding: 52px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner__dots { position: absolute; top: 0; right: 0; width: 220px; height: 100%; opacity: 0.35; }
.cta-banner__body { display: flex; align-items: center; gap: 28px; position: relative; z-index: 1; flex: 1; min-width: 280px; }
.cta-banner__icon {
  width: 64px; height: 64px;
  flex-shrink: 0;
  border: 2px solid var(--lime-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-banner__title { font-size: 24px; color: var(--white); margin: 0 0 6px; }
.cta-banner__text { font-size: 15px; color: rgba(255, 255, 255, 0.7); margin: 0; }
.cta-banner .btn { position: relative; z-index: 1; flex-shrink: 0; }

/* --- Why choose us ------------------------------------------------------ */
.reasons-grid {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.reason { padding: 0 32px; text-align: center; border-left: 1px solid var(--border-on-surface); }
.reason:first-child { border-left: none; }
.reason__icon {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--text-on-surface);
}
/* The lime ring is clipped to only show its top arc — a small brand detail. */
.reason__icon::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 2px solid var(--lime-500);
  clip-path: inset(0 0 55% 0);
}
.reason__title { font-size: 16px; color: var(--text-on-surface); margin: 0 0 10px; }
.reason__text { font-size: 14px; line-height: 1.5; color: var(--muted-on-surface); margin: 0; }

/* --- Testimonials ------------------------------------------------------- */
.testimonial {
  background: var(--surface-card);
  border: 1px solid var(--border-on-surface);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.testimonial__stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testimonial__quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-on-surface);
  margin: 0 0 24px;
  flex: 1;
}
.testimonial__person { display: flex; align-items: center; gap: 12px; }
.testimonial__person img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial__name { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--text-on-surface); }
.testimonial__business { font-size: 13px; color: var(--muted-on-surface); }

/* --- Split section (copy + photo) --------------------------------------- */
.split-grid {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--gutter);
  align-items: start;
}
.split-grid--even { grid-template-columns: 1fr 1fr; align-items: center; }
.split-grid__media img { width: 100%; border-radius: var(--radius-card); object-fit: cover; }

/* --- Zig-zag service rows ----------------------------------------------- */
.zigzag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: var(--maxw-narrow);
  margin: 0 auto 96px;
}
.zigzag:last-child { margin-bottom: 0; }
/* Odd rows put the photo on the right; even rows flip it to the left. */
.zigzag:nth-child(even) .zigzag__media { order: -1; }
.zigzag__media img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius-card); }
.zigzag__title { font-size: clamp(24px, 2.6vw, 34px); color: var(--text-on-surface); margin: 14px 0 16px; }
.zigzag__text { font-size: 15px; line-height: 1.7; color: var(--muted-on-surface); margin: 0 0 22px; }

.feature-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-on-surface);
}
.feature-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--lime-700); }

/* --- Category / team grids ---------------------------------------------- */
.categories-grid {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category-card {
  background: var(--surface-card);
  border: 1px solid var(--border-on-surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.category-card img { width: 100%; height: 200px; object-fit: cover; }
.category-card__body { padding: 22px; }
.category-card__title { font-size: 16px; color: var(--text-on-surface); margin: 0 0 8px; }
.category-card__text { font-size: 14px; color: var(--muted-on-surface); margin: 0; line-height: 1.5; }

/* --- Filter chips ------------------------------------------------------- */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: var(--maxw-narrow);
  margin: 0 auto 48px;
}
.chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy-800);
  background: var(--surface-card);
  border: 1.5px solid var(--border-on-surface);
  border-radius: 3px;
  padding: 11px 22px;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.chip:hover { border-color: var(--lime-500); }
.chip[aria-pressed="true"] { background: var(--navy-900); border-color: var(--navy-900); color: var(--lime-500); }

/* --- Forms -------------------------------------------------------------- */
.form-card {
  background: var(--surface-card);
  border-radius: var(--radius-card);
  padding: 44px;
  box-shadow: var(--shadow-soft);
}
.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-field { margin-bottom: 20px; }

.cf-label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-on-surface);
  margin-bottom: 8px;
}
.cf-label .req { color: var(--lime-700); }

.cf-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-on-surface);
  background: var(--surface);
  border: 1.5px solid var(--border-on-surface);
  border-radius: 4px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .18s ease;
}
.cf-input:focus { border-color: var(--lime-600); }
.cf-input[aria-invalid="true"] { border-color: #d64545; }
textarea.cf-input { resize: vertical; min-height: 120px; }

.field-error {
  display: none;
  font-size: 13px;
  color: #d64545;
  margin-top: 6px;
}
.field-error[data-show="true"] { display: block; }

/* Honeypot: a real-looking field kept out of sight and out of the tab order.
   Bots fill it in; humans never see it. Must not use display:none — some
   bots skip hidden fields. */
.hp-field {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.5;
}
.form-status[data-state="success"] {
  display: block;
  background: rgba(168, 255, 0, 0.14);
  border-left: 4px solid var(--lime-600);
  color: var(--text-on-surface);
}
.form-status[data-state="error"] {
  display: block;
  background: rgba(214, 69, 69, 0.1);
  border-left: 4px solid #d64545;
  color: var(--text-on-surface);
}

/* --- Contact info card -------------------------------------------------- */
.info-card { background: var(--navy-900); border-radius: var(--radius-card); padding: 36px; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.info-item:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.info-item__icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(168, 255, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime-500);
}
.info-item__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime-500);
  margin-bottom: 6px;
}
.info-item__value { font-size: 15px; color: rgba(255, 255, 255, 0.85); line-height: 1.5; }
.info-item__value a { color: rgba(255, 255, 255, 0.85); }
.info-item__value a:hover { color: var(--lime-500); }

/* --- Dropzone (Upload Files page) --------------------------------------- */
.dropzone {
  max-width: 760px;
  margin: 0 auto;
  border: 2px dashed var(--lime-600);
  border-radius: var(--radius-card);
  background: var(--surface-card);
  padding: 56px 32px;
  text-align: center;
  transition: background-color .18s ease, border-color .18s ease;
}
.dropzone[data-dragover="true"] { background: rgba(168, 255, 0, 0.08); border-color: var(--lime-500); }
.dropzone__title { font-size: 20px; color: var(--text-on-surface); margin: 18px 0 8px; }
.dropzone__hint { font-size: 14px; color: var(--muted-on-surface); margin: 0 0 22px; }

/* --- Steps -------------------------------------------------------------- */
.steps-grid {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step { text-align: center; padding: 0 20px; }
.step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--lime-500);
  line-height: 1;
  margin-bottom: 14px;
}
.step__title { font-size: 17px; color: var(--text-on-surface); margin: 0 0 10px; }
.step__text { font-size: 14px; line-height: 1.6; color: var(--muted-on-surface); margin: 0; }

/* --- FAQ accordion ------------------------------------------------------ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-on-surface);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--text-on-surface);
}
.faq-item__q svg { flex-shrink: 0; transition: transform .22s ease; color: var(--lime-700); }
.faq-item__q[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-item__a {
  display: none;
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-on-surface);
  max-width: 720px;
}
.faq-item__a[data-open="true"] { display: block; }

/* --- Team --------------------------------------------------------------- */
/* Flex-wrap rather than a grid: the headcount isn't a multiple of the column
   count (7 people), and a grid would left-align the leftover 2 against an
   empty gap. Wrapping + centring makes any remainder read as deliberate, and
   adding or removing someone needs no CSS change. The two .team-grid
   overrides in the media queries below were removed for the same reason. */
.team-grid {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
/* Fixed basis, no grow: growing would stretch a 2-person final row into two
   half-width cards. On phones one card per row looks mean at 200px, so the
   basis widens there instead of letting flex-grow do it. */
.team-member { flex: 0 1 200px; }
@media (max-width: 600px) {
  .team-member { flex-basis: min(280px, 100%); }
}
.team-member { text-align: center; }
.team-member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-card);
  margin-bottom: 18px;
}
.team-member__name { font-size: 16px; color: var(--text-on-surface); margin: 0 0 6px; }
.team-member__role { font-size: 14px; color: var(--muted-on-surface); }

/* --- About page photo pair ---------------------------------------------- */
.about-gallery {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}
.about-gallery__item { margin: 0; }
/* No forced crop: each photo keeps its own shape, so nothing is ever cut off
   whatever orientation gets dropped in. A portrait therefore renders taller
   than a landscape beside it — the items top-align (align-items:start on the
   grid) so the pair reads as deliberate rather than misaligned.
   Deliberately no max-height: capping the height would letterbox a tall photo
   inside a shorter box, leaving empty bands inside the rounded/shadowed frame. */
.about-gallery__item img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}
.about-gallery__item figcaption {
  font-size: 14px;
  color: var(--muted-on-surface);
  margin-top: 12px;
  text-align: center;
}

/* --- Long-form copy (Privacy Policy) ------------------------------------ */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: 22px; color: var(--text-on-surface); margin: 44px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { font-size: 15px; line-height: 1.75; color: var(--muted-on-surface); }
.prose ul { padding-left: 22px; }

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  position: relative;
  background: var(--navy-900);
  padding: 110px var(--gutter) 36px;
  margin-top: -70px;
  clip-path: polygon(0 70px, 100% 0, 100% 100%, 0 100%);
}
.site-footer__dots {
  position: absolute;
  top: 70px; left: 0;
  width: 260px;
  height: calc(100% - 70px);
  opacity: 0.3;
  pointer-events: none;
}
.footer-grid {
  position: relative;
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand img { height: 38px; width: auto; object-fit: contain; margin-bottom: 18px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 280px;
  margin: 0 0 22px;
}
.footer-col__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime-500);
  margin-bottom: 20px;
}
.footer-col__links { display: flex; flex-direction: column; gap: 14px; }
.footer-col__links a { font-size: 14px; color: rgba(255, 255, 255, 0.65); }
.footer-col__links a:hover { color: var(--lime-500); }

.footer-bottom {
  position: relative;
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* --- 404 ---------------------------------------------------------------- */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px var(--gutter);
  background: var(--surface);
}
.error-page__code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 14vw, 180px);
  line-height: 1;
  color: var(--lime-500);
  margin: 0;
}

/* --- Scroll reveal ------------------------------------------------------ */
/* Elements start slightly offset and fade in when scrolled into view.
   JS adds [data-revealed]; without JS the base state below still shows them. */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal][data-revealed="true"] { opacity: 1; transform: none; }

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 1000px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-nav { gap: 14px; padding-right: 28px; }
  .nav-links { gap: 14px; }
  .nav-logo__panel { width: 200px; padding-left: 24px; }

  .split-grid,
  .split-grid--even { grid-template-columns: 1fr !important; gap: 32px; }
  .zigzag { grid-template-columns: 1fr; gap: 28px; margin-bottom: 64px; }
  .zigzag:nth-child(even) .zigzag__media { order: 0; }
  .zigzag__media img { height: 260px; }

  .products-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .reason { border-left: none; margin-bottom: 32px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide,
  .gallery-item--tall,
  .gallery-item--big { grid-column: span 1; grid-row: span 1; }
  .form-card { padding: 32px 24px; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .wwd-row { flex-direction: column; align-items: center; }
  .wwd-card {
    width: 100%;
    max-width: 320px;
    margin: 10px 0;
    transform: none !important;
  }

  .section { padding: 72px var(--gutter) 80px; }
  .hero__media { min-height: 520px; }
  .cta-banner { padding: 36px 24px; }
  .cta-banner__body { flex-direction: column; align-items: flex-start; gap: 18px; }
}

@media (max-width: 600px) {
  .reasons-grid { grid-template-columns: 1fr; }
  .form-row-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .section-head--split { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Respect the OS "reduce motion" setting — stop the marquee, reveals, and
   hover lifts for anyone who's asked for less animation. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; }
}

/* --- Centered CTA banner ------------------------------------------------ */
/* About / Services / Recent Work / Promotional Products close on a centred
   navy panel rather than the icon + text + button layout used on Home. */
.cta-banner--center {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 24px;
  padding: 64px var(--gutter);
}
.cta-banner--center > * { position: relative; z-index: 1; }
.cta-banner--center .cta-banner__dots { width: 100%; opacity: 0.25; }
.cta-banner--center .cta-banner__title { font-size: clamp(24px, 2.8vw, 34px); margin: 0; }
.cta-banner--center .cta-banner__text { max-width: 560px; margin: -6px auto 0; }

/* --- Dropzone extras ---------------------------------------------------- */
.dropzone__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border: 2px solid var(--lime-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dropzone__files { font-size: 14px; color: var(--muted-on-surface); margin: 20px 0 0; }

/* --- Print -------------------------------------------------------------- */
@media print {
  .site-nav, .utility-bar, .mobile-menu, .site-footer, .marquee { display: none; }
  body { color: #000; background: #fff; }
}
