/* =============================================================
   Pash London — site styles
   Tokens first, then layout primitives, then components.
   ============================================================= */

:root {
  /* Brand palette sampled from the Pash London logo (CMYK process colours). */
  --brand: #FF008E;          /* magenta — primary action colour */
  --brand-dark: #D60077;
  --brand-tint: #fff0f8;
  /* #FF008E is only 3.7:1 on white — below AA. Use --brand-ink for text and
     small UI, and keep the bright magenta for fills and large graphic accents. */
  --brand-ink: #C1006B;
  --cyan: #00B0F6;
  --yellow: #FFF400;
  --ink: #2B2A29;            /* the logo's black */
  --ink-2: #33322F;
  --ink-3: #4A4845;
  --muted: #646d7a;
  --line: #e3e6ea;
  --line-2: #eef0f3;
  --surface: #ffffff;
  --surface-2: #f5f6f8;
  --surface-3: #eef0f3;
  --hivis: #e8f24a;
  --ok: #157f54;

  --wrap: 1280px;
  --gap: 24px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(17, 20, 24, .06), 0 2px 8px rgba(17, 20, 24, .05);
  --shadow-md: 0 8px 28px rgba(17, 20, 24, .10);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 800;
}
h1 { font-size: clamp(2rem, 1.3rem + 2.6vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.25rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

a { color: var(--brand-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  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: 8px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 8px;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; }

.wrap { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px;
  border: 2px solid transparent; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem; line-height: 1.2;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand-dark); color: #fff; }
.btn--primary:hover { background: #A8005C; color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); color: #fff; }
.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--ghost { border-color: rgba(255, 255, 255, .5); color: #fff; background: transparent; }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--lg { padding: 15px 28px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- topbar ---------- */

.topbar { background: var(--ink); color: #c9cfd8; font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.topbar__item { margin: 0; display: flex; align-items: center; gap: 8px; }
.topbar strong { color: #fff; }
.stars { color: var(--hivis); letter-spacing: 1px; }
.topbar__list { display: flex; gap: 22px; margin: 0; padding: 0; list-style: none; }
.topbar__list a { color: #fff; font-weight: 700; }
@media (max-width: 860px) {
  .topbar__list li:not(:last-child) { display: none; }
}
@media (max-width: 520px) {
  .topbar__item--rating span:last-child { display: none; }
}

/* ---------- masthead ---------- */

.masthead { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: var(--shadow-sm); }
.masthead__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center; gap: 28px;
  padding: 14px 0;
}

.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--brand); text-decoration: none; }
.logo:hover { text-decoration: none; }
.logo__mark { flex: none; }
.logo__img { width: auto; height: 52px; flex: none; }
.logo--light .logo__img { height: 60px; }
@media (max-width: 860px) { .logo__img { height: 42px; } }

.search { display: flex; max-width: 520px; width: 100%; }
.search input {
  flex: 1; min-width: 0;
  padding: 11px 16px;
  border: 2px solid var(--line); border-right: 0; border-radius: var(--radius) 0 0 var(--radius);
  font: inherit; font-size: .93rem; color: var(--ink); background: var(--surface-2);
}
.search input:focus { outline: none; border-color: var(--ink); background: #fff; }
.search button {
  border: 0; border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--ink); color: #fff; padding: 0 18px; cursor: pointer;
  display: grid; place-items: center;
}
.search button:hover { background: var(--brand); }

.masthead__actions { display: flex; align-items: center; gap: 14px; }
.callout { display: flex; flex-direction: column; line-height: 1.2; color: var(--ink); text-decoration: none; }
.callout:hover { text-decoration: none; color: var(--brand-ink); }
.callout__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.callout__value { font-weight: 800; font-size: 1rem; }

.burger { display: none; width: 44px; height: 40px; border: 2px solid var(--line); border-radius: var(--radius); background: #fff; cursor: pointer; padding: 10px 9px; }
.burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] { background: var(--ink); border-color: var(--ink); }
.burger[aria-expanded="true"] span { background: #fff; }

/* ---------- primary nav ---------- */

.nav { background: var(--ink-2); }
.nav__list { display: flex; margin: 0; padding: 0; list-style: none; }
.nav__item { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: 6px;
  padding: 13px 14px;
  color: #eef0f3; font-weight: 700; font-size: .92rem; text-decoration: none;
  border-bottom: 3px solid transparent;
}
.nav__link:hover, .nav__link[aria-current="page"] {
  background: rgba(255, 255, 255, .07); color: #fff; text-decoration: none; border-bottom-color: var(--brand);
}
.nav__caret { width: 10px; height: 6px; opacity: .7; }
/* The highlighted end item, echoing Workwear Express's "Clearance" block. */
.nav__item--flag { margin-left: auto; }
.nav__item--flag .nav__link { background: var(--brand); color: #fff; border-bottom-color: var(--brand); }
.nav__item--flag .nav__link:hover { background: var(--brand-dark); border-bottom-color: var(--brand-dark); }

/* Secondary links: in the top bar on desktop, inside the drawer on mobile. */
.topbar__list--nav { gap: 18px; }
.topbar__list--nav a { color: #c9cfd8; font-weight: 600; }
.topbar__list--nav a:hover { color: #fff; }
.topbar__list--nav li:last-child a { color: #fff; font-weight: 700; }
.nav__utility { display: none; }

.nav__menu {
  position: absolute; top: 100%; left: 0; z-index: 90;
  min-width: 340px;
  background: #fff; border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .14s ease, transform .14s ease, visibility .14s;
}
.nav__item--has-menu:hover .nav__menu,
.nav__item--has-menu:focus-within .nav__menu { opacity: 1; visibility: visible; transform: none; }
.nav__menu ul { list-style: none; margin: 0; padding: 0; }
.nav__menu a { display: block; padding: 10px 14px; border-radius: 8px; color: var(--ink); text-decoration: none; }
.nav__menu a:hover { background: var(--surface-2); text-decoration: none; }
.nav__menu strong { display: block; font-size: .95rem; }
.nav__menu span { display: block; font-size: .82rem; color: var(--muted); }

@media (max-width: 1080px) {
  .masthead__inner { grid-template-columns: auto 1fr auto; gap: 16px; }
  .callout { display: none; }
}
@media (max-width: 900px) {
  .masthead__inner { grid-template-columns: auto 1fr; row-gap: 12px; }
  .search { grid-column: 1 / -1; order: 3; max-width: none; }
  .burger { display: block; }
  .nav { display: none; }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; padding-bottom: 10px; }
  .nav__item--flag { margin-left: 0; }
  .nav__item--flag .nav__link { background: transparent; border-bottom-color: rgba(255, 255, 255, .08); }
  .nav__utility { display: block; list-style: none; margin: 0; padding: 10px 0 14px; }
  .nav__utility li { border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .nav__utility a { display: block; padding: 12px 4px; color: #c9cfd8; font-weight: 600; font-size: .92rem; }
  .nav__link { padding: 14px 4px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .nav__menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: transparent; padding: 0 0 8px 12px;
  }
  .nav__menu a { color: #c9cfd8; padding: 8px 4px; }
  .nav__menu a:hover { background: transparent; color: #fff; }
  .nav__menu strong { font-weight: 600; font-size: .9rem; color: inherit; }
  .nav__menu span { display: none; }
}

/* ---------- hero ---------- */

.hero {
  background: linear-gradient(160deg, #15191f 0%, #1f2731 55%, #2a1c22 100%);
  color: #fff; position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: auto -10% -45% 55%;
  height: 420px; background: radial-gradient(closest-side, rgba(216, 30, 63, .45), transparent);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  padding: 64px 0 72px;
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18);
  padding: 6px 14px; border-radius: 999px;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__eyebrow b { color: var(--hivis); }
.hero__lede { font-size: 1.12rem; color: #c9cfd8; max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 24px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 0; padding: 0; list-style: none; font-size: .9rem; color: #c9cfd8; }
.hero__points li { display: flex; align-items: center; gap: 7px; }
.hero__points li::before { content: "✓"; color: var(--hivis); font-weight: 900; }

.hero__panel {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(4px);
}
.hero__panel h2 { color: #fff; font-size: 1.15rem; }
.hero__panel p { color: #b7bfca; font-size: .9rem; }
.hero__tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.hero__tile {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .08); border-radius: var(--radius);
  padding: 12px 14px; color: #fff; text-decoration: none; font-weight: 700; font-size: .9rem;
  border: 1px solid transparent;
}
.hero__tile:hover { background: #fff; color: var(--ink); text-decoration: none; }
.hero__tile img { width: 40px; height: 40px; border-radius: 8px; }

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; padding: 44px 0 52px; }
}

/* ---------- usp bar ---------- */

.usps { background: var(--surface-2); border-bottom: 1px solid var(--line); }
.usps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); padding: 22px 0; }
.usp { display: flex; gap: 12px; align-items: flex-start; }
.usp__icon { flex: none; width: 40px; height: 40px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); border-radius: 50%; color: var(--brand-ink); }
.usp h3 { font-size: .95rem; margin: 0 0 2px; }
.usp p { margin: 0; font-size: .85rem; color: var(--muted); }
@media (max-width: 900px) { .usps__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .usps__grid { grid-template-columns: 1fr; gap: 14px; } }

/* ---------- generic section ---------- */

.section { padding: 64px 0; }
.section--tight { padding: 44px 0; }
.section--alt { background: var(--surface-2); }
.section--ink { background: var(--ink); color: #c9cfd8; }
.section--ink h2, .section--ink h3 { color: #fff; }

.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.section__head p { margin: 0; color: var(--muted); max-width: 60ch; }
.section__head h2 { margin-bottom: .25em; }
.section--ink .section__head p { color: #97a0ad; }
.section__link { font-weight: 700; white-space: nowrap; }
@media (max-width: 720px) { .section__head { flex-direction: column; align-items: flex-start; } }

.eyebrow {
  display: block; font-size: .78rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-ink); margin-bottom: 8px;
}

/* ---------- category tiles ---------- */

.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.tile {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; text-decoration: none; color: var(--ink);
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.tile:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow-md); text-decoration: none; }
.tile__media { background: var(--surface-3); aspect-ratio: 4 / 3; display: grid; place-items: center; }
.tile__media img { width: 74%; height: auto; }
.tile__body { padding: 16px 18px 20px; }
.tile__body h3 { margin: 0 0 4px; font-size: 1.02rem; }
.tile__body p { margin: 0; font-size: .85rem; color: var(--muted); }
.tile__more { display: inline-block; margin-top: 10px; font-size: .85rem; font-weight: 700; color: var(--brand-ink); }
@media (max-width: 1000px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .tiles { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

/* ---------- services ---------- */

.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(226px, 1fr)); gap: var(--gap); }
.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px 28px; display: flex; flex-direction: column;
}
.service__icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--brand-tint); color: var(--brand-ink); margin-bottom: 16px; }
.service h3 { font-size: 1.12rem; }
.service p { font-size: .92rem; color: var(--ink-3); }
.service ul { margin: 0 0 20px; padding: 0 0 0 18px; font-size: .88rem; color: var(--muted); }
.service ul li { margin-bottom: 4px; }
.service .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 1000px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services { grid-template-columns: 1fr; } }

/* ---------- product grid ---------- */

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.product-cell { display: contents; }
.product-cell[hidden] { display: none; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.product-card:hover { border-color: var(--ink-3); box-shadow: var(--shadow-md); }
.product-card__media { position: relative; display: block; background: var(--surface-3); }
.product-card__media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--brand-dark); color: #fff; font-size: .7rem; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
}
.product-card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.product-card__brand { margin: 0 0 3px; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.product-card__title { margin: 0 0 6px; font-size: 1rem; }
.product-card__title a { color: var(--ink); }
.product-card__title a:hover { color: var(--brand-ink); }
.product-card__meta { margin: 0 0 10px; font-size: .82rem; color: var(--muted); }
.product-card__price { margin: 0 0 12px; font-size: 1.22rem; font-weight: 800; color: var(--ink); }
.product-card__price span { font-size: .78rem; font-weight: 600; color: var(--muted); }
.product-card__price small { font-size: .7rem; font-weight: 600; color: var(--muted); }
.product-card__decoration { margin: auto 0 0; display: flex; flex-wrap: wrap; gap: 6px; }
.product-card__decoration span {
  font-size: .7rem; font-weight: 700; padding: 4px 9px; border-radius: 999px;
  background: var(--surface-2); color: var(--ink-3); border: 1px solid var(--line);
}
@media (max-width: 1000px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

/* ---------- filter chips ---------- */

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip {
  border: 2px solid var(--line); background: #fff; color: var(--ink-3);
  padding: 8px 16px; border-radius: 999px; font: inherit; font-size: .86rem; font-weight: 700;
  cursor: pointer; transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.chip:hover { border-color: var(--ink-3); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.catalogue__empty { text-align: center; padding: 40px 0; color: var(--muted); }

/* ---------- steps ---------- */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); counter-reset: step; }
.step { position: relative; padding-top: 12px; }
.step::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center;
  width: 44px; height: 44px; margin-bottom: 14px;
  border-radius: 50%; background: var(--brand-dark); color: #fff; font-weight: 900; font-size: 1.05rem;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: .9rem; color: var(--muted); margin: 0; }
.section--ink .step p { color: #97a0ad; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ---------- split feature ---------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--flip .split__media { order: -1; }
.split__media { background: var(--surface-3); border-radius: var(--radius-lg); padding: 28px; }
.split__media .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
.split ul.ticks { list-style: none; margin: 0 0 24px; padding: 0; }
.split ul.ticks li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.split ul.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%; background: var(--brand-tint); color: var(--brand-ink);
  display: grid; place-items: center; font-size: .75rem; font-weight: 900;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--flip .split__media { order: 0; }
}

/* ---------- industries ---------- */

.industries { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.industry {
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px;
  background: #fff; display: flex; flex-direction: column; gap: 6px;
}
.industry h3 { margin: 0; font-size: 1.08rem; }
.industry p { margin: 0; font-size: .9rem; color: var(--muted); }
.industry ul { margin: 6px 0 0; padding-left: 18px; font-size: .86rem; color: var(--ink-3); }
@media (max-width: 900px) { .industries { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .industries { grid-template-columns: 1fr; } }

/* ---------- brands strip ---------- */

.brands { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.brands span {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 10px 22px; font-weight: 800; letter-spacing: .04em; color: var(--ink-3); font-size: .92rem;
}

/* ---------- reviews ---------- */

.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; }
.review .stars { color: #f2a03d; font-size: 1.05rem; }
.review blockquote { margin: 10px 0 16px; font-size: 1rem; color: var(--ink-2); }
.review cite { font-style: normal; font-weight: 700; font-size: .9rem; color: var(--ink); }
.review cite span { display: block; font-weight: 500; font-size: .82rem; color: var(--muted); }
@media (max-width: 760px) { .reviews { grid-template-columns: 1fr; } }

/* ---------- stats ---------- */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); text-align: center; }
.stat strong { display: block; font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); font-weight: 900; color: #fff; line-height: 1; }
.stat span { font-size: .88rem; color: #97a0ad; }
@media (max-width: 680px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

/* ---------- page header / breadcrumbs ---------- */

.page-head { background: var(--ink); color: #c9cfd8; padding: 40px 0 46px; }
.page-head h1 { color: #fff; max-width: 20ch; }
.page-head p { max-width: 62ch; font-size: 1.05rem; margin-bottom: 0; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 18px; padding: 0; font-size: .82rem; color: #8b94a1; }
.crumbs a { color: #c9cfd8; }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: #5c6572; }

/* ---------- prose ---------- */

.prose { max-width: 72ch; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: .92rem; }
.prose th, .prose td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); }
.prose th { background: var(--surface-2); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); }

.layout-2col { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .layout-2col { grid-template-columns: 1fr; gap: 32px; } }

.sidecard { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 140px; }
.sidecard h3 { font-size: 1.05rem; }
.sidecard p { font-size: .9rem; color: var(--muted); }
.sidecard ul { list-style: none; margin: 0 0 18px; padding: 0; font-size: .9rem; }
.sidecard ul li { padding: 8px 0; border-bottom: 1px solid var(--line); }
@media (max-width: 900px) { .sidecard { position: static; } }

/* ---------- faq accordion ---------- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: 18px 40px 18px 0; position: relative;
  font-weight: 700; color: var(--ink); list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--brand-ink); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding-bottom: 20px; color: var(--ink-3); font-size: .95rem; max-width: 76ch; }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- forms ---------- */

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.form__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 6px; color: var(--ink); }
.field .hint { font-weight: 500; color: var(--muted); font-size: .82rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: .95rem;
  border: 2px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field textarea { min-height: 130px; resize: vertical; }
.field--error input, .field--error select, .field--error textarea { border-color: var(--brand-ink); }
.field__error { display: none; color: var(--brand-ink); font-size: .82rem; font-weight: 700; margin-top: 5px; }
.field--error .field__error { display: block; }
.checkline { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--ink-3); }
.checkline input { width: auto; margin-top: 3px; }
.form__note { font-size: .82rem; color: var(--muted); margin: 14px 0 0; }
.form-success {
  display: none; background: #eaf6f0; border: 1px solid #b9e0cd; color: #11553a;
  border-radius: var(--radius); padding: 18px 20px; margin-bottom: 20px;
}
.form-success.is-visible { display: block; }
.form-success h3 { color: #11553a; margin-bottom: 4px; font-size: 1.05rem; }
.form-success p { margin: 0; font-size: .92rem; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; gap: 0; } }

.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 18px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 6px; }
.contact-card p { margin: 0; font-size: .95rem; color: var(--ink-3); }
.contact-card a { font-weight: 700; }

/* ---------- pricing table ---------- */

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.price-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; background: #fff; display: flex; flex-direction: column; }
.price-card--feature { border-color: var(--ink); box-shadow: var(--shadow-md); }
.price-card__tag { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-ink); }
.price-card strong.amount { display: block; font-size: 2rem; font-weight: 900; color: var(--ink); margin: 8px 0 2px; }
.price-card span.per { font-size: .85rem; color: var(--muted); }
.price-card ul { list-style: none; margin: 18px 0 22px; padding: 0; font-size: .9rem; }
.price-card ul li { padding: 8px 0; border-bottom: 1px solid var(--line-2); }
.price-card .btn { margin-top: auto; }
@media (max-width: 860px) { .pricing { grid-template-columns: 1fr; } }

/* ---------- cta band ---------- */

.cta-band { background: var(--brand-dark); color: #fff; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 44px 0; }
.cta-band h2 { color: #fff; margin-bottom: .2em; }
.cta-band p { margin: 0; color: rgba(255, 255, 255, .88); max-width: 60ch; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn--primary { background: #fff; color: var(--brand-ink); }
.cta-band .btn--primary:hover { background: var(--ink); color: #fff; }
@media (max-width: 860px) { .cta-band__inner { flex-direction: column; align-items: flex-start; padding: 34px 0; } }

/* ---------- footer ---------- */

.footer { background: var(--ink); color: #97a0ad; padding: 56px 0 28px; font-size: .9rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 36px; }
.footer h3 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 9px; }
.footer a { color: #c9cfd8; }
.footer a:hover { color: #fff; }
.footer__blurb { margin: 16px 0; max-width: 42ch; }
.footer__address { font-style: normal; line-height: 1.9; }
.footer__hours { color: #7d8794; font-size: .85rem; }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .82rem;
}
.footer__bottom p { margin: 0; }
.footer__legal { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.footer__legal li { margin: 0; }
@media (max-width: 1000px) { .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* =============================================================
   Order configurator (prototype)
   ============================================================= */

.proto-banner { background: #fff8e6; border-bottom: 1px solid #f0d9a0; color: #6b5312; font-size: .88rem; }
.proto-banner .wrap { padding: 12px 16px; }

.configurator { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 48px; align-items: start; }
@media (max-width: 980px) { .configurator { grid-template-columns: 1fr; gap: 32px; } }

.config__step { padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid var(--line); }
.config__step:last-child { border-bottom: 0; margin-bottom: 0; }
.config__step h2 { display: flex; align-items: center; gap: 12px; font-size: 1.25rem; margin-bottom: 16px; }
.config__num {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  font-size: .9rem; font-weight: 800;
}
.config__hint { font-size: .88rem; color: var(--muted); margin-bottom: 14px; }
.config__note {
  font-size: .86rem; background: var(--brand-tint); border-left: 3px solid var(--brand);
  padding: 10px 14px; border-radius: 0 6px 6px 0; margin-bottom: 16px; color: var(--ink-3);
}
.config__selected { font-size: .9rem; color: var(--muted); margin: 12px 0 0; }
.config__total-qty { font-size: 1rem; margin: 16px 0 0; }
.config__total-qty strong { font-size: 1.3rem; }

.config__chosen { display: flex; gap: 18px; align-items: center; background: var(--surface-2); border-radius: var(--radius-lg); padding: 16px; }
.config__chosen img { border-radius: var(--radius); background: #fff; }
.config__brand { margin: 0; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.config__name { margin: 2px 0 4px; font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.config__from { margin: 0; font-size: .88rem; color: var(--muted); }

/* colour swatches */
.swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch {
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  background: var(--swatch); border: 2px solid transparent;
  box-shadow: 0 0 0 1px var(--line) inset; padding: 0;
  transition: transform .12s ease, border-color .12s ease;
}
.swatch:hover { transform: scale(1.08); }
.swatch.is-active { border-color: var(--ink); box-shadow: 0 0 0 2px #fff inset; }
.swatch--light { box-shadow: 0 0 0 1px var(--muted) inset; }

/* size matrix */
.size-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 10px; }
.size-cell { display: flex; flex-direction: column; gap: 4px; }
.size-cell span { font-size: .8rem; font-weight: 700; color: var(--ink-3); text-align: center; }
.size-cell input {
  width: 100%; padding: 9px 6px; text-align: center; font: inherit; font-weight: 700;
  border: 2px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink);
}
.size-cell input:focus { outline: none; border-color: var(--ink); }

/* logo positions */
.position-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 14px; align-items: end; margin-bottom: 14px; }
.position-row .field { margin-bottom: 0; }
.position-remove {
  width: 40px; height: 44px; border: 2px solid var(--line); border-radius: var(--radius);
  background: #fff; color: var(--muted); font-size: 1.3rem; cursor: pointer; line-height: 1;
}
.position-remove:hover { border-color: var(--brand); color: var(--brand); }
.btn--sm { padding: 8px 14px; font-size: .86rem; }
@media (max-width: 560px) { .position-row { grid-template-columns: 1fr auto; } }

/* live basket */
.config__basket { position: sticky; top: 140px; }
@media (max-width: 980px) { .config__basket { position: static; } }
.basket { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.basket h2 { font-size: 1.2rem; margin-bottom: 16px; }
.basket__item { display: flex; gap: 12px; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.basket__item img { border-radius: 8px; background: var(--surface-3); }
.basket__title { margin: 0; font-weight: 800; font-size: .95rem; color: var(--ink); }
.basket__meta { margin: 2px 0 0; font-size: .82rem; color: var(--muted); }

.basket__customisations { padding: 14px 0; border-bottom: 1px solid var(--line); }
.basket__custom-head { margin: 0 0 8px; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-3); }
.basket__custom-head--empty { color: var(--muted); font-weight: 600; text-transform: none; letter-spacing: 0; font-size: .85rem; margin: 0; }
.basket__custom { display: grid; grid-template-columns: 1fr auto; gap: 2px 10px; font-size: .85rem; margin-bottom: 8px; }
.basket__custom strong { color: var(--ink); }
.basket__custom span { grid-column: 1; color: var(--muted); font-size: .8rem; }
.basket__custom em { grid-column: 2; grid-row: 1 / 3; font-style: normal; align-self: center; color: var(--ink-3); font-size: .8rem; }

.basket__totals { margin: 16px 0 0; }
.basket__totals > div { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; font-size: .92rem; }
.basket__totals dt { color: var(--muted); margin: 0; }
.basket__totals dd { margin: 0; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.basket__sub { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 10px !important; }
.basket__grand { border-top: 2px solid var(--ink); margin-top: 8px; padding-top: 12px !important; align-items: baseline; }
.basket__grand dt { color: var(--ink); font-weight: 800; }
.basket__grand dd { font-size: 1.5rem; font-weight: 900; color: var(--ok); }

.basket__unit { margin: 14px 0 0; font-size: .82rem; color: var(--muted); text-align: center; }
.basket__break {
  margin: 14px 0 0; padding: 12px 14px; border-radius: var(--radius);
  background: var(--brand-tint); color: var(--ink-2); font-size: .86rem; text-align: center;
}
.basket .btn { margin-top: 18px; }
.basket .btn:disabled { opacity: .45; cursor: not-allowed; }
.basket__reassure {
  margin: 14px 0 0; padding: 12px 14px; border-radius: var(--radius);
  background: #eaf6f0; color: #11553a; font-size: .84rem;
}
.basket__reassure strong { display: block; }

.basket__breakdown { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 14px; }
.basket__breakdown summary { cursor: pointer; font-size: .86rem; font-weight: 700; color: var(--brand); }
.basket__breakdown table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: .8rem; }
.basket__breakdown th, .basket__breakdown td { text-align: right; padding: 6px 4px; border-bottom: 1px solid var(--line-2); font-variant-numeric: tabular-nums; }
.basket__breakdown th:first-child, .basket__breakdown td:first-child { text-align: left; }
.basket__breakdown th { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }

/* =============================================================
   Admin — internal enquiry management
   ============================================================= */

.admin-login { max-width: 420px; margin: 40px auto; }
.admin-login h1 { font-size: 1.6rem; }
.admin-login p { color: var(--muted); margin-bottom: 24px; }

.admin__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 24px;
}
.admin__head h1 { margin-bottom: 4px; }
.admin__count { margin: 0; color: var(--muted); font-size: .92rem; }
.admin__actions { display: flex; gap: 8px; flex-wrap: wrap; }

.enquiry {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px 22px; margin-bottom: 14px; background: #fff;
}
.enquiry__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.enquiry__head h2 { font-size: 1.05rem; margin: 0 0 3px; }
.enquiry__meta { margin: 0; font-size: .84rem; color: var(--muted); }

.pill {
  flex: none; font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .05em; padding: 5px 11px; border-radius: 999px;
  background: var(--surface-2); color: var(--ink-3); border: 1px solid var(--line);
}
.pill--new { background: var(--brand-tint); color: var(--brand-ink); border-color: transparent; }
.pill--in_progress { background: #fff4e0; color: #8a5a00; border-color: transparent; }
.pill--quoted { background: #e7f0fb; color: #14538f; border-color: transparent; }
.pill--won { background: #eaf6f0; color: #11553a; border-color: transparent; }
.pill--lost { background: var(--surface-3); color: var(--muted); border-color: transparent; }

.enquiry__details {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px 20px; margin: 16px 0 0;
}
.enquiry__details dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.enquiry__details dd { margin: 1px 0 0; font-size: .92rem; font-weight: 600; color: var(--ink); }

.enquiry__message {
  margin: 16px 0 0; padding: 12px 14px; background: var(--surface-2);
  border-radius: var(--radius); font-size: .92rem; white-space: pre-wrap;
}

.enquiry__controls {
  display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-2);
}
.enquiry__controls label { display: flex; flex-direction: column; gap: 4px; font-size: .78rem; font-weight: 700; color: var(--ink-3); }
.enquiry__controls select, .enquiry__controls textarea {
  font: inherit; font-size: .9rem; padding: 8px 10px;
  border: 2px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink);
}
.enquiry__controls select:focus, .enquiry__controls textarea:focus { outline: none; border-color: var(--ink); }
.enquiry__notes { flex: 1; min-width: 240px; }
.enquiry__notes textarea { resize: vertical; width: 100%; }
.enquiry__saved { font-size: .82rem; font-weight: 700; color: var(--ok); }
@media (max-width: 560px) {
  .enquiry__controls { flex-direction: column; align-items: stretch; }
}
