/* StyleBridge Apparel Ltd — Global Styles */
@import './tokens.css';

/* ─────────────────────────────────────────────
   FONTS
───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ─────────────────────────────────────────────
   RESET
───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

/* ─────────────────────────────────────────────
   SKIP LINK
───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  z-index: 9999;
  padding: var(--sp-3) var(--sp-6);
  background: var(--fashion-black);
  color: var(--warm-white);
  font-weight: 600;
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: var(--sp-4); }

/* ─────────────────────────────────────────────
   FOCUS
───────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--bridge-taupe);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ─────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-8);
}
@media (max-width: 640px) {
  .container { padding-inline: var(--sp-5); }
}

.section { padding-block: var(--sp-24); }
.section--sm { padding-block: var(--sp-16); }
.section--lg { padding-block: var(--sp-32); }
.section--offwhite { background: var(--fashion-off-white); }
.section--stone { background: var(--stone-cream); }
.section--black { background: var(--fashion-black); color: var(--text-light); }
.section--charcoal { background: var(--charcoal-ink); color: var(--text-light); }

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(var(--text-4xl), 5vw, var(--text-7xl)); }
h2 { font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl)); }
h3 { font-size: clamp(var(--text-2xl), 2.5vw, var(--text-4xl)); }
h4 { font-size: clamp(var(--text-xl), 2vw, var(--text-3xl)); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

.section--black h1, .section--black h2, .section--black h3,
.section--black h4, .section--black h5, .section--black h6,
.section--charcoal h1, .section--charcoal h2, .section--charcoal h3 {
  color: var(--text-light);
}

.lead {
  font-size: clamp(var(--text-lg), 1.8vw, var(--text-xl));
  color: var(--text-muted);
  line-height: 1.68;
  max-width: var(--max-w-prose);
}

/* Category label */
.label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bridge-taupe);
  margin-bottom: var(--sp-4);
}
.label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--bridge-taupe);
  flex-shrink: 0;
}
.label--dark {
  color: var(--text-primary);
}
.label--dark::before {
  background: var(--text-primary);
}
.label--light {
  color: rgba(255,253,248,0.6);
}
.label--light::before {
  background: rgba(255,253,248,0.35);
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--r-md);
  transition: all var(--dur-base) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}

.btn--primary {
  background: var(--fashion-black);
  color: var(--warm-white);
}
.btn--primary:hover {
  background: var(--charcoal-ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--taupe {
  background: var(--bridge-taupe);
  color: var(--warm-white);
}
.btn--taupe:hover {
  background: var(--soft-taupe);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--text-primary);
}
.btn--outline:hover {
  background: var(--text-primary);
  color: var(--warm-white);
}

.btn--outline-taupe {
  background: transparent;
  color: var(--bridge-taupe);
  border: 1.5px solid var(--bridge-taupe);
}
.btn--outline-taupe:hover {
  background: var(--bridge-taupe);
  color: var(--warm-white);
}

.btn--outline-light {
  background: transparent;
  color: var(--warm-white);
  border: 1.5px solid rgba(255,253,248,0.4);
}
.btn--outline-light:hover {
  background: rgba(255,253,248,0.1);
  border-color: var(--warm-white);
}

.btn--sm {
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-xs);
}
.btn--lg {
  padding: var(--sp-5) var(--sp-10);
  font-size: var(--text-base);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

/* ─────────────────────────────────────────────
   TAUPE RULE / DIVIDERS
───────────────────────────────────────────── */
.taupe-rule {
  height: 1px;
  background: var(--line-taupe);
  margin-block: var(--sp-2);
}

.bridge-line {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--bridge-taupe) 20%, var(--soft-taupe) 50%, var(--bridge-taupe) 80%, transparent 100%);
  position: relative;
  overflow: visible;
}

/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--fashion-off-white);
  border-bottom: 1px solid var(--line-taupe);
  transition: box-shadow var(--dur-base) var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(21,23,28,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: var(--sp-8);
}

.nav__logo img {
  height: 46px;
  width: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-3);
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  border-radius: var(--r-md);
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--bridge-taupe);
}
.nav__link--cta {
  background: var(--fashion-black);
  color: var(--warm-white) !important;
  padding: var(--sp-2) var(--sp-5);
  margin-left: var(--sp-3);
  letter-spacing: 0.04em;
}
.nav__link--cta:hover {
  background: var(--charcoal-ink) !important;
  color: var(--warm-white) !important;
}

/* Dropdown */
.nav__item { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + var(--sp-2));
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: var(--warm-white);
  border: 1px solid var(--line-taupe);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-2);
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-base) var(--ease);
  z-index: var(--z-overlay);
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-link {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  border-radius: var(--r-md);
  transition: all var(--dur-fast) var(--ease);
}
.nav__dropdown-link:hover {
  background: var(--stone-cream);
  color: var(--bridge-taupe);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: var(--r-md);
  transition: background var(--dur-fast) var(--ease);
}
.nav__toggle:hover { background: var(--stone-cream); }
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile panel */
.nav__mobile {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--fashion-off-white);
  overflow-y: auto;
  z-index: var(--z-nav);
  padding: var(--sp-6);
  border-top: 1px solid var(--line-taupe);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
}
.nav__mobile.is-open { transform: translateX(0); }
.nav__mobile-link {
  display: block;
  padding: var(--sp-4) var(--sp-3);
  font-family: var(--font-head);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  border-bottom: 1px solid var(--line-taupe);
  transition: color var(--dur-fast) var(--ease);
}
.nav__mobile-link:hover { color: var(--bridge-taupe); }
.nav__mobile-cta {
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line-taupe);
}

@media (max-width: 1100px) {
  .nav__list { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: block; }
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  background: var(--fashion-off-white);
  padding-top: var(--sp-24);
  padding-bottom: var(--sp-20);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-taupe);
}

.hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--stone-cream);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-3);
  background: transparent;
  border: 1px solid var(--line-taupe);
  color: var(--bridge-taupe);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-full);
}

.hero__title {
  font-size: clamp(var(--text-4xl), 4.5vw, var(--text-6xl));
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.hero__title em {
  font-style: normal;
  color: var(--bridge-taupe);
}

.hero__lead {
  font-size: clamp(var(--text-base), 1.4vw, var(--text-lg));
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 50ch;
}

.hero__visual { position: relative; }
.hero__image {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__image-credit {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  right: var(--sp-3);
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,253,248,0.65);
  background: rgba(17,19,24,0.5);
  backdrop-filter: blur(8px);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
}

/* Hanger tag motif card */
.hero__detail-card {
  position: absolute;
  bottom: -var(--sp-4);
  left: -var(--sp-8);
  background: var(--warm-white);
  border: 1px solid var(--line-taupe);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}
.hero__detail-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bridge-taupe);
  margin-bottom: var(--sp-3);
}
.hero__detail-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.hero__detail-item {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.hero__detail-item::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--bridge-taupe);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero::before { display: none; }
  .hero__detail-card { position: static; margin-top: var(--sp-4); }
}

/* ─────────────────────────────────────────────
   SECTION HEADER
───────────────────────────────────────────── */
.section-header {
  margin-bottom: var(--sp-12);
}
.section-header--center {
  text-align: center;
}
.section-header--center .lead {
  margin-inline: auto;
}

/* ─────────────────────────────────────────────
   PRODUCT CATEGORY CARDS
───────────────────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 900px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .category-grid { grid-template-columns: 1fr; } }

.category-card {
  background: var(--warm-white);
  border: 1px solid var(--line-taupe);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: all var(--dur-base) var(--ease);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bridge-taupe);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}
.category-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--warm-stone);
}
.category-card:hover::after { transform: scaleX(1); }

.category-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  background: var(--stone-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--bridge-taupe);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.category-card__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bridge-taupe);
}
.category-card__title {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}
.category-card__body {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.category-card__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bridge-taupe);
  transition: gap var(--dur-fast) var(--ease);
}
.category-card:hover .category-card__cta { gap: var(--sp-3); }
.category-card__cta svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur-fast) var(--ease);
}
.category-card:hover .category-card__cta svg { transform: translateX(3px); }

/* ─────────────────────────────────────────────
   SERVICE PILLAR CARDS
───────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 900px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar-card {
  padding: var(--sp-8);
  background: var(--fashion-off-white);
  border: 1px solid var(--line-taupe);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: all var(--dur-base) var(--ease);
}
.pillar-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--warm-stone);
}
.pillar-card__number {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--bridge-taupe);
  letter-spacing: 0.1em;
}
.pillar-card__title {
  font-family: var(--font-head);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
}
.pillar-card__body {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   CONTENT SPLIT
───────────────────────────────────────────── */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.content-split--reverse { direction: rtl; }
.content-split--reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .content-split { grid-template-columns: 1fr; direction: ltr; }
}

.content-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-image__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-3) var(--sp-4);
  background: linear-gradient(transparent, rgba(17,19,24,0.6));
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,253,248,0.7);
}

/* ─────────────────────────────────────────────
   FEATURE LIST
───────────────────────────────────────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}
.feature-item::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--bridge-taupe);
  flex-shrink: 0;
  margin-top: 0.6em;
}

/* ─────────────────────────────────────────────
   SOURCING TIMELINE
───────────────────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-taupe);
}
.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-6);
  padding: var(--sp-6) 0;
  position: relative;
}
.timeline-step__num {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--warm-white);
  border: 1.5px solid var(--line-taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--bridge-taupe);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-step__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bridge-taupe);
  margin-bottom: var(--sp-1);
}
.timeline-step__title {
  font-family: var(--font-head);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}
.timeline-step__body {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   FORMS
───────────────────────────────────────────── */
.form-panel {
  background: var(--warm-white);
  border: 1px solid var(--line-taupe);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
}
@media (max-width: 640px) { .form-panel { padding: var(--sp-6); } }

.form-section-title {
  font-family: var(--font-head);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--line-taupe);
  margin-bottom: var(--sp-5);
  margin-top: var(--sp-8);
}
.form-section-title:first-of-type { margin-top: 0; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
.form-grid--full { grid-column: 1 / -1; }
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-grid--full { grid-column: 1; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.form-label {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.form-label .opt {
  font-weight: 400;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--text-xs);
}
.form-control {
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--line-taupe);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-primary);
  background: var(--warm-white);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  width: 100%;
  appearance: none;
}
.form-control:focus {
  border-color: var(--bridge-taupe);
  box-shadow: 0 0 0 3px rgba(167,148,130,0.12);
  outline: none;
}
.form-control::placeholder { color: var(--text-muted); opacity: 0.7; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666A70' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-3) center;
  padding-right: var(--sp-10);
  cursor: pointer;
}
textarea.form-control { min-height: 110px; resize: vertical; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.55;
}
.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--fashion-black);
}
.form-note {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  padding: var(--sp-4);
  background: var(--stone-cream);
  border-radius: var(--r-md);
  border-left: 2px solid var(--bridge-taupe);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   ENQUIRY CTA
───────────────────────────────────────────── */
.enquiry-cta {
  background: var(--fashion-black);
  padding-block: var(--sp-24);
  position: relative;
  overflow: hidden;
}
.enquiry-cta::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -30%;
  width: 40%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(167,148,130,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.enquiry-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}
.enquiry-cta__title {
  font-size: clamp(var(--text-3xl), 3vw, var(--text-5xl));
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.enquiry-cta__body {
  font-size: var(--text-lg);
  color: rgba(255,253,248,0.65);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────── */
.page-hero {
  background: var(--fashion-off-white);
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid var(--line-taupe);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, var(--stone-cream), transparent);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 66ch;
}
.page-hero__title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-5);
  letter-spacing: -0.025em;
}
.page-hero__lead {
  font-size: clamp(var(--text-base), 1.4vw, var(--text-lg));
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

/* ─────────────────────────────────────────────
   COMPLIANCE NOTE
───────────────────────────────────────────── */
.compliance-note {
  background: var(--stone-cream);
  border-left: 2px solid var(--bridge-taupe);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   BREADCRUMBS
───────────────────────────────────────────── */
.breadcrumbs {
  padding-block: var(--sp-4);
  border-bottom: 1px solid var(--line-taupe);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.breadcrumb-item {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.breadcrumb-item a { color: var(--bridge-taupe); }
.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  color: var(--line-taupe);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--fashion-black);
  color: var(--text-light);
}

.footer__logo-plate {
  display: inline-block;
  background: var(--fashion-off-white);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-5);
}
.footer__logo-plate img { height: 38px; width: auto; }

.footer-top {
  padding-block: var(--sp-16);
  border-bottom: 1px solid rgba(255,253,248,0.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255,253,248,0.55);
  line-height: 1.65;
  max-width: 32ch;
}
.footer-contact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bridge-taupe);
  margin-bottom: var(--sp-1);
}
.footer-contact-value {
  font-size: var(--text-sm);
  color: rgba(255,253,248,0.75);
}
.footer-contact-value a:hover { color: var(--warm-stone); }

.footer-col-title {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,253,248,0.4);
  margin-bottom: var(--sp-4);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,253,248,0.6);
  transition: color var(--dur-fast) var(--ease);
}
.footer-links a:hover { color: var(--warm-stone); }

.footer-compliance {
  padding: var(--sp-6) 0;
  border-bottom: 1px solid rgba(255,253,248,0.07);
}
.footer-compliance p {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,253,248,0.35);
  line-height: 1.65;
}

.footer-bottom {
  padding-block: var(--sp-5);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-legal-text {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,253,248,0.3);
  line-height: 1.6;
}
.footer-legal-links {
  display: flex;
  gap: var(--sp-5);
}
.footer-legal-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,253,248,0.35);
  transition: color var(--dur-fast) var(--ease);
}
.footer-legal-links a:hover { color: var(--warm-stone); }

/* ─────────────────────────────────────────────
   COOKIE BANNER
───────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-cookie);
  background: var(--charcoal-ink);
  border-top: 1px solid rgba(255,253,248,0.08);
  padding: var(--sp-5) 0;
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  font-size: var(--text-sm);
  color: rgba(255,253,248,0.75);
  line-height: 1.6;
  min-width: 220px;
}
.cookie-banner__text a { color: var(--warm-stone); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: var(--sp-3);
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   LEGAL PAGES
───────────────────────────────────────────── */
.legal-content { max-width: var(--max-w-prose); margin-inline: auto; }
.legal-content h2 {
  font-size: var(--text-2xl);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--line-taupe);
}
.legal-content h3 {
  font-size: var(--text-xl);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}
.legal-content p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}
.legal-content ul, .legal-content ol {
  margin-left: var(--sp-6);
  margin-bottom: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.legal-content ul li { list-style: disc; font-size: var(--text-base); color: var(--text-muted); line-height: 1.7; }
.legal-content ol li { list-style: decimal; font-size: var(--text-base); color: var(--text-muted); line-height: 1.7; }
.legal-content a { color: var(--bridge-taupe); text-decoration: underline; text-underline-offset: 3px; }
.legal-meta {
  background: var(--stone-cream);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-8);
}
.legal-meta p {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────
   UTILITY
───────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ─────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-slower) var(--ease-out),
              transform var(--dur-slower) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible {
    transition: none; transform: none; opacity: 1;
  }
  .site-header, .btn, .category-card, .nav__dropdown,
  .nav__mobile, .cookie-banner { transition: none; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 640px) {
  .section { padding-block: var(--sp-16); }
  .section--lg { padding-block: var(--sp-20); }
}
