@charset "UTF-8";
/* ==========================================================================
   EETHEN — Global Apparel Manufacturing
   Design system & responsive stylesheet
   Author: EETHEN Web Team
   --------------------------------------------------------------------------
   1.  Design tokens
   2.  Reset & base
   3.  Layout primitives
   4.  Typography
   5.  Buttons & badges
   6.  Header / navigation
   7.  Hero
   8.  Cards, stats & grids
   9.  Sections (process, gallery, marquee, CTA, FAQ)
   10. Forms
   11. Footer
   12. Utilities, motion & print
   ========================================================================== */

/* ------------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------------ */
:root {
  /* Brand — slate charcoal drawn from the EETHEN wordmark */
  --ink-900: #101A20;
  --ink-800: #1D2A32;
  --ink-700: #2C3E48;
  --ink-600: #41525C;
  --ink-500: #5C6B75;
  --ink-400: #8494A0;
  --ink-300: #B4BFC7;

  /* Accent — brushed brass, used sparingly for emphasis */
  --brass-700: #7A5619;
  --brass-600: #8A6420;
  --brass-500: #B4823A;
  --brass-400: #C9A063;
  --brass-100: #F3E9D8;

  /* Neutrals */
  --white: #FFFFFF;
  --bone: #F8F7F4;
  --sand: #EDE9E2;
  --line: #E2DFD8;
  --line-strong: #CFCAC1;

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--bone);
  --bg-deep: var(--ink-900);
  --text: var(--ink-800);
  --text-muted: var(--ink-500);
  --text-invert: #F4F2EE;
  --focus: #1D6FA8;

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-display: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;

  /* Fluid type scale (min 360px → max 1440px viewport) */
  --fs-xs: 0.8125rem;
  --fs-sm: 0.875rem;
  --fs-base: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  --fs-lg: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  --fs-xl: clamp(1.25rem, 1.15rem + 0.45vw, 1.5rem);
  --fs-h4: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
  --fs-h3: clamp(1.35rem, 1.2rem + 0.7vw, 1.75rem);
  --fs-h2: clamp(1.75rem, 1.45rem + 1.4vw, 2.75rem);
  --fs-h1: clamp(2.1rem, 1.6rem + 2.4vw, 4rem);
  --fs-display: clamp(2.5rem, 1.7rem + 3.6vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --section-y: clamp(3.5rem, 2rem + 6vw, 7rem);
  --gutter: clamp(1.125rem, 0.6rem + 2.2vw, 2.5rem);
  --container: 1260px;
  --measure: 68ch;

  /* Shape & depth */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(16, 26, 32, .06), 0 2px 8px rgba(16, 26, 32, .05);
  --shadow-md: 0 4px 12px rgba(16, 26, 32, .07), 0 16px 32px rgba(16, 26, 32, .07);
  --shadow-lg: 0 8px 24px rgba(16, 26, 32, .1), 0 32px 64px rgba(16, 26, 32, .12);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 76px;
}

/* ------------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { margin: 0 0 var(--space-4); line-height: 1.18; font-weight: 600; }
p, ul, ol, dl, figure, blockquote, table { margin: 0 0 var(--space-4); }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
img { background-color: var(--sand); }

a { color: var(--brass-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brass-700); }

button, input, select, textarea { font: inherit; color: inherit; }
ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }
table { border-collapse: collapse; width: 100%; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--space-6) 0; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

::selection { background: var(--ink-800); color: var(--white); }

.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 2000;
  padding: .75rem 1.25rem;
  background: var(--ink-900);
  color: var(--white);
  border-radius: var(--r-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; color: var(--white); }

/* ------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 900px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section--alt { background: var(--bg-alt); }
.section--sand { background: var(--sand); }
.section--deep { background: var(--bg-deep); color: var(--text-invert); }
.section--deep h1, .section--deep h2, .section--deep h3, .section--deep h4 { color: var(--white); }
.section--deep .lead, .section--deep p { color: #D8D5CE; }

.grid { display: grid; gap: clamp(1.25rem, .8rem + 1.6vw, 2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }

.split {
  display: grid;
  gap: clamp(1.75rem, 1rem + 3vw, 4rem);
  align-items: center;
}
@media (min-width: 62em) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.15fr 1fr; }
  .split--wide-right { grid-template-columns: 1fr 1.15fr; }
  .split--flip > :first-child { order: 2; }
}

.stack > * + * { margin-top: var(--space-4); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }

/* ------------------------------------------------------------------
   4. TYPOGRAPHY
   ------------------------------------------------------------------ */
.display { font-family: var(--font-display); font-size: var(--fs-display); font-weight: 600; letter-spacing: -.02em; }
h1, .h1 { font-family: var(--font-display); font-size: var(--fs-h1); letter-spacing: -.02em; }
h2, .h2 { font-family: var(--font-display); font-size: var(--fs-h2); letter-spacing: -.015em; }
h3, .h3 { font-size: var(--fs-h3); letter-spacing: -.01em; }
h4, .h4 { font-size: var(--fs-h4); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: var(--space-3);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-600);
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: currentColor;
  flex: none;
}
.section--deep .eyebrow { color: var(--brass-400); }

.lead { font-size: var(--fs-lg); color: var(--text-muted); max-width: var(--measure); }
.section--deep .lead { color: #CFCCC4; }
.muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 1.2rem + 2.4vw, 3.5rem); }
.section-head.text-center { margin-inline: auto; }

.prose p { max-width: var(--measure); }
.prose h3 { margin-top: var(--space-6); }

.list-check { display: grid; gap: var(--space-3); }
.list-check li {
  position: relative;
  padding-left: 2rem;
  color: var(--text-muted);
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 1.05rem; height: .55rem;
  border-left: 2.5px solid var(--brass-500);
  border-bottom: 2.5px solid var(--brass-500);
  transform: rotate(-45deg);
}
.section--deep .list-check li { color: #CFCCC4; }

/* ------------------------------------------------------------------
   5. BUTTONS & BADGES
   ------------------------------------------------------------------ */
.btn {
  --btn-bg: var(--ink-900);
  --btn-fg: var(--white);
  --btn-bd: var(--ink-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 3rem;
  padding: .75rem 1.6rem;
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
    color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1em; height: 1em; flex: none; }

.btn--accent { --btn-bg: var(--brass-500); --btn-bd: var(--brass-500); --btn-fg: #17120A; }
.btn--accent:hover { --btn-bg: var(--brass-400); --btn-bd: var(--brass-400); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink-800); --btn-bd: var(--line-strong); }
.btn--ghost:hover { --btn-bg: var(--ink-900); --btn-fg: var(--white); --btn-bd: var(--ink-900); }

.btn--light { --btn-bg: transparent; --btn-fg: var(--white); --btn-bd: rgba(255, 255, 255, .45); }
.btn--light:hover { --btn-bg: var(--white); --btn-fg: var(--ink-900); --btn-bd: var(--white); }

.btn--sm { min-height: 2.5rem; padding: .5rem 1.15rem; font-size: var(--fs-xs); }
.btn--block { width: 100%; }

.badge {
  display: inline-block;
  padding: .3rem .75rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  background: var(--white);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-600);
}
.section--deep .badge { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .2); color: #E4E1DA; }

/* ------------------------------------------------------------------
   6. HEADER / NAVIGATION
   ------------------------------------------------------------------ */
.topbar {
  background: var(--ink-900);
  color: #C9CFD4;
  font-size: var(--fs-xs);
  letter-spacing: .02em;
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.5rem;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding-block: .4rem;
  text-align: center;
}
.topbar a { color: #E7E4DE; text-decoration: none; }
.topbar a:hover { color: var(--brass-400); text-decoration: underline; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; }
@media (min-width: 48em) { .topbar__inner { justify-content: space-between; } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.6) blur(12px);
  -webkit-backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; flex: none; }
.brand img { width: auto; height: 34px; background: none; }
@media (min-width: 48em) { .brand img { height: 40px; } }
.brand__tag {
  display: none;
  padding-left: .85rem;
  border-left: 1px solid var(--line-strong);
  font-size: var(--fs-xs);
  line-height: 1.25;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (min-width: 75em) { .brand__tag { display: block; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--white);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-toggle__bars { position: relative; width: 18px; height: 12px; flex: none; }
.nav-toggle__bars span,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink-800);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars span { top: 5px; }
.nav-toggle__bars::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-5px) rotate(-45deg); }

.primary-nav__list { display: flex; flex-direction: column; gap: .25rem; }
/* :not(.btn) is load-bearing — without it these rules override the CTA button's
   own colour and padding, leaving dark text on a dark button. */
.primary-nav__list a:not(.btn) {
  display: block;
  padding: .8rem .25rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-700);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-nav__list a:not(.btn):hover { color: var(--brass-600); }
.primary-nav__list a:not(.btn)[aria-current="page"] { color: var(--ink-900); }
.primary-nav__cta { margin-top: var(--space-5); }
.primary-nav__cta .btn { width: 100%; }

/* Mobile drawer (< 64em) */
@media (max-width: 67.9375em) {
  .primary-nav {
    position: fixed;
    inset: calc(var(--header-h) + var(--topbar-offset, 0px)) 0 auto 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    padding: var(--space-5) var(--gutter) var(--space-7);
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-header { position: sticky; }
}

/* Desktop bar (>= 68em) */
@media (min-width: 68em) {
  .nav-toggle { display: none; }
  .primary-nav { display: block !important; }
  .primary-nav__list { flex-direction: row; align-items: center; gap: clamp(.85rem, .1rem + 1.4vw, 1.85rem); }
  .primary-nav__list a:not(.btn) {
    position: relative;
    padding: .35rem 0;
    border-bottom: 0;
    font-size: var(--fs-xs);
  }
  .primary-nav__list a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 100%; height: 2px;
    background: var(--brass-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
  }
  .primary-nav__list a:not(.btn):hover::after,
  .primary-nav__list a:not(.btn)[aria-current="page"]::after { transform: scaleX(1); }
  .primary-nav__cta { margin-top: 0; margin-left: .5rem; }
  .primary-nav__cta .btn { width: auto; }
}

/* ------------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(30rem, 24rem + 26vw, 46rem);
  padding-block: clamp(3.5rem, 2rem + 8vw, 7rem);
  background: var(--ink-900);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  background: var(--ink-800);
}
.hero__media img.is-active { opacity: 1; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16, 26, 32, .55) 0%, rgba(16, 26, 32, .35) 40%, rgba(16, 26, 32, .82) 100%),
    linear-gradient(90deg, rgba(16, 26, 32, .72) 0%, rgba(16, 26, 32, .15) 75%);
}
.hero__content { max-width: 46rem; }
.hero h1 { color: var(--white); text-wrap: balance; }
.hero .lead { color: #DFDCD5; font-size: var(--fs-lg); }
.hero .eyebrow { color: var(--brass-400); }
.hero__actions { margin-top: var(--space-6); }

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: var(--space-4) var(--space-5);
  margin-top: clamp(2rem, 1rem + 4vw, 3.5rem);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, .22);
}
.hero__meta dt { font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: #B9BFC4; }
.hero__meta dd { margin: .15rem 0 0; font-family: var(--font-display); font-size: var(--fs-xl); color: var(--white); }

.hero-dots { display: flex; gap: .5rem; margin-top: var(--space-5); }
.hero-dots button {
  width: 2.25rem; height: 3px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, .34);
  cursor: pointer;
  transition: background-color .25s var(--ease);
}
.hero-dots button[aria-selected="true"] { background: var(--brass-400); }

/* Inner-page hero */
.page-hero {
  position: relative;
  padding-block: clamp(3rem, 2rem + 6vw, 6rem);
  background: var(--ink-900);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(60rem 30rem at 85% -10%, rgba(180, 130, 58, .22), transparent 60%),
    linear-gradient(180deg, #16232B, #101A20);
}
.page-hero h1 { color: var(--white); max-width: 20ch; text-wrap: balance; }
.page-hero .lead { color: #CFCCC4; }

.breadcrumbs { margin-bottom: var(--space-4); font-size: var(--fs-xs); color: #A9B2B8; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: .4rem; color: #6C767D; }
.breadcrumbs a { color: #D5D2CB; text-decoration: none; }
.breadcrumbs a:hover { color: var(--brass-400); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--brass-400); }

/* ------------------------------------------------------------------
   8. CARDS, STATS & GRIDS
   ------------------------------------------------------------------ */
.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.5rem, 1.1rem + 1.2vw, 2.25rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card h3 { margin-bottom: var(--space-3); }
.card p { color: var(--text-muted); }
.card__num {
  display: block;
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--brass-500);
}
.card__icon {
  display: grid;
  place-items: center;
  width: 3rem; height: 3rem;
  margin-bottom: var(--space-4);
  border-radius: var(--r-sm);
  background: var(--brass-100);
  color: var(--brass-700);
}
.card__icon svg { width: 1.5rem; height: 1.5rem; }
.section--deep .card {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .13);
  box-shadow: none;
}
.section--deep .card p { color: #C6C3BC; }
.section--deep .card__icon { background: rgba(201, 160, 99, .16); color: var(--brass-400); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 10.5rem), 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.stat { padding: clamp(1.25rem, 1rem + 1vw, 2rem); background: var(--white); text-align: center; }
.stat__value { display: block; font-family: var(--font-display); font-size: clamp(1.85rem, 1.4rem + 1.8vw, 3rem); font-weight: 600; line-height: 1.05; color: var(--ink-900); letter-spacing: -.02em; }
.stat__label { display: block; margin-top: .5rem; font-size: var(--fs-xs); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.section--deep .stats { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .14); }
.section--deep .stat { background: var(--ink-900); }
.section--deep .stat__value { color: var(--white); }
.section--deep .stat__label { color: var(--ink-300); }

/* Product / category cards */
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cat-card__media { position: relative; aspect-ratio: 4 / 5; background: var(--ink-800); overflow: hidden; }
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.cat-card:hover .cat-card__media img { transform: scale(1.05); }
.cat-card__body { display: flex; flex-direction: column; flex: 1; padding: clamp(1.25rem, 1rem + .8vw, 1.75rem); }
.cat-card__body h3 { margin-bottom: var(--space-2); font-size: var(--fs-h4); }
.cat-card__body p { flex: 1; margin-bottom: var(--space-4); color: var(--text-muted); font-size: var(--fs-sm); }
.cat-card__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: var(--space-4); }
.cat-card__tags span {
  padding: .2rem .6rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--bone);
  font-size: .75rem;
  letter-spacing: .04em;
  color: var(--ink-600);
}
.cat-card__link { font-size: var(--fs-sm); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; }
.cat-card__link::after { content: " →"; }

/* Figure with caption */
.figure { margin: 0; border-radius: var(--r-md); overflow: hidden; background: var(--sand); }
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure figcaption { padding: .85rem 1rem; background: var(--white); border: 1px solid var(--line); border-top: 0; font-size: var(--fs-xs); color: var(--text-muted); }
.figure--tall img { aspect-ratio: 3 / 4; }
.figure--wide img { aspect-ratio: 16 / 10; }
.figure--square img { aspect-ratio: 1 / 1; }

.media-stack { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
.media-stack > :first-child { grid-column: 1 / -1; }

/* ------------------------------------------------------------------
   9. SECTIONS
   ------------------------------------------------------------------ */
/* Process / timeline */
.process { counter-reset: step; display: grid; gap: var(--space-5); }
@media (min-width: 48em) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 75em) { .process { grid-template-columns: repeat(3, 1fr); } }
.process__item {
  position: relative;
  padding: var(--space-5) var(--space-5) var(--space-5) 4.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.process__item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: var(--space-5); top: var(--space-5);
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--brass-500);
}
.process__item h3 { font-size: var(--fs-h4); margin-bottom: var(--space-2); }
.process__item p { font-size: var(--fs-sm); color: var(--text-muted); }
.section--deep .process__item { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .13); }
.section--deep .process__item p { color: #C6C3BC; }

/* Gallery */
.gallery { display: grid; gap: var(--space-4); grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
.gallery figure { margin: 0; border-radius: var(--r-md); overflow: hidden; position: relative; background: var(--ink-800); }
.gallery img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem .9rem .9rem;
  background: linear-gradient(180deg, transparent, rgba(16, 26, 32, .88));
  color: var(--white);
  font-size: var(--fs-xs);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.gallery--feature figure:first-child { grid-column: span 2; }
@media (max-width: 40em) { .gallery--feature figure:first-child { grid-column: auto; } }

/* Logo marquee */
.marquee { position: relative; overflow: hidden; padding-block: var(--space-5); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; gap: clamp(2rem, 1rem + 3vw, 4rem); animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: grid;
  place-items: center;
  flex: none;
  width: clamp(8rem, 6rem + 8vw, 11rem);
  height: 4.5rem;
  padding: .5rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.marquee__item img { max-height: 100%; width: auto; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter .3s var(--ease), opacity .3s var(--ease); background: none; }
.marquee__item:hover img { filter: grayscale(0); opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - clamp(1rem, .5rem + 1.5vw, 2rem))); } }

.logo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 9rem), 1fr)); gap: var(--space-4); }
.logo-grid li { display: grid; place-items: center; height: 6rem; padding: 1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); }
.logo-grid img { max-height: 100%; width: auto; object-fit: contain; filter: grayscale(1); opacity: .75; transition: filter .3s var(--ease), opacity .3s var(--ease); background: none; }
.logo-grid li:hover img { filter: grayscale(0); opacity: 1; }

/* CTA band */
.cta-band {
  position: relative;
  padding-block: clamp(3.5rem, 2rem + 6vw, 6.5rem);
  background: var(--ink-900);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(16, 26, 32, .93) 10%, rgba(16, 26, 32, .74) 60%, rgba(16, 26, 32, .6)); }
.cta-band h2 { color: var(--white); max-width: 22ch; }
.cta-band p { color: #D6D3CC; max-width: 52ch; }
.cta-band .cluster { margin-top: var(--space-5); }

/* FAQ */
.faq { display: grid; gap: var(--space-3); max-width: 52rem; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  overflow: hidden;
}
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 1.1rem clamp(1rem, .8rem + .6vw, 1.5rem);
  font-weight: 600;
  font-size: var(--fs-base);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: .65rem; height: .65rem;
  border-right: 2px solid var(--brass-500);
  border-bottom: 2px solid var(--brass-500);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq__body { padding: 0 clamp(1rem, .8rem + .6vw, 1.5rem) 1.25rem; color: var(--text-muted); }

/* Compliance / spec table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--white); }
.table-wrap table { min-width: 34rem; font-size: var(--fs-sm); }
.table-wrap caption { padding: 1rem; text-align: left; font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--line); }
.table-wrap th, .table-wrap td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.table-wrap thead th { background: var(--bone); font-size: var(--fs-xs); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-600); }
.table-wrap tbody tr:last-child th, .table-wrap tbody tr:last-child td { border-bottom: 0; }
.table-wrap tbody tr:hover { background: var(--bone); }

/* ------------------------------------------------------------------
   OCEAN BAND — animated sea horizon for the "global reach" section.
   Three parallax wave layers over a gradient sky, with a slow drifting
   shimmer. Pure CSS/SVG: no images, no JS, ~0 payload.
   ------------------------------------------------------------------ */
.ocean {
  position: relative;
  padding-block: clamp(4rem, 2.5rem + 7vw, 8rem) 0;
  background: linear-gradient(180deg, #0B1B24 0%, #123141 45%, #16465C 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.ocean h2, .ocean h3 { color: var(--white); }
.ocean p { color: #C4D6DE; }
.ocean .eyebrow { color: var(--brass-400); }

/* Slow-drifting light on the water */
.ocean::before {
  content: "";
  position: absolute;
  inset: -20% -30% auto -30%;
  height: 70%;
  z-index: -2;
  background:
    radial-gradient(50% 60% at 25% 40%, rgba(201, 160, 99, .18), transparent 70%),
    radial-gradient(45% 55% at 78% 30%, rgba(120, 190, 210, .16), transparent 70%);
  animation: ocean-shimmer 26s ease-in-out infinite alternate;
}
@keyframes ocean-shimmer {
  from { transform: translate3d(-3%, 0, 0) scale(1); }
  to   { transform: translate3d(3%, 2%, 0) scale(1.08); }
}

.ocean__content { position: relative; z-index: 2; }

/* Wave stack sits at the foot of the band */
.ocean__waves {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: clamp(6rem, 4rem + 8vw, 11rem);
  margin-top: clamp(2.5rem, 1.5rem + 4vw, 5rem);
}
.ocean__waves svg { display: block; width: 100%; height: 100%; }
/* nth-of-type, not nth-child: <defs> occupies the first child slot inside the
   <svg>, which would shift every index and leave the last wave unfilled (black). */
.ocean__waves use { animation: wave-drift 18s cubic-bezier(.55, .5, .45, .5) infinite; }
.ocean__waves use:nth-of-type(1) { animation-delay: -2s; animation-duration: 13s; fill: rgba(255, 255, 255, .07); }
.ocean__waves use:nth-of-type(2) { animation-delay: -3s; animation-duration: 17s; fill: rgba(255, 255, 255, .10); }
.ocean__waves use:nth-of-type(3) { animation-delay: -4s; animation-duration: 21s; fill: rgba(201, 160, 99, .18); }
/* The last wave is the section below bleeding upward — set --wave-end to match it. */
.ocean__waves use:nth-of-type(4) { animation-delay: -5s; animation-duration: 27s; fill: var(--wave-end, var(--bg-alt)); }
@keyframes wave-drift {
  from { transform: translate3d(-90px, 0, 0); }
  to   { transform: translate3d(85px, 0, 0); }
}

/* Reach figures sitting on the band */
.ocean__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  gap: clamp(1.25rem, .8rem + 1.5vw, 2.5rem);
  margin-top: clamp(2rem, 1.2rem + 3vw, 3.5rem);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.ocean__stat dt {
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9FB8C4;
}
.ocean__stat dd {
  margin: .2rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
  color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
  .ocean::before, .ocean__waves use { animation: none; }
}

/* Light surfaces placed inside a dark section must not inherit inverted text */
.section--deep .table-wrap,
.section--deep .table-wrap th,
.section--deep .table-wrap td,
.section--deep .faq details,
.section--deep .faq summary,
.section--deep .quote,
.section--deep .quote blockquote { color: var(--text); }
.section--deep .table-wrap thead th { color: var(--ink-600); }
.section--deep .table-wrap caption,
.section--deep .faq__body p,
.section--deep .quote figcaption { color: var(--text-muted); }
.section--deep .quote cite { color: var(--ink-800); }

/* Quote */
.quote { max-width: 46rem; padding: clamp(1.75rem, 1.2rem + 2vw, 3rem); background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--brass-500); border-radius: var(--r-md); }
.quote blockquote { margin: 0 0 var(--space-4); font-family: var(--font-display); font-size: var(--fs-xl); line-height: 1.4; }
.quote figcaption { font-size: var(--fs-sm); color: var(--text-muted); }
.quote cite { font-style: normal; font-weight: 700; color: var(--ink-800); }

/* ------------------------------------------------------------------
   10. FORMS
   ------------------------------------------------------------------ */
.form { display: grid; gap: var(--space-4); }
.form__row { display: grid; gap: var(--space-4); }
@media (min-width: 40em) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .4rem; }
.field label { font-size: var(--fs-sm); font-weight: 600; }
.field .req { color: var(--brass-600); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--white);
  font-size: var(--fs-base);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-400); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink-700); box-shadow: 0 0 0 3px rgba(29, 42, 50, .12); outline: none; }
.field__hint { font-size: var(--fs-xs); color: var(--text-muted); }
.field--check { grid-template-columns: auto 1fr; align-items: start; gap: .75rem; }
.field--check input { width: 1.1rem; height: 1.1rem; margin-top: .35rem; }
.field--check label { font-weight: 400; font-size: var(--fs-sm); color: var(--text-muted); }
.form__note { font-size: var(--fs-xs); color: var(--text-muted); }
.form-status { padding: .9rem 1.1rem; border-radius: var(--r-sm); font-size: var(--fs-sm); }
.form-status[data-state="success"] { background: #E8F3EC; border: 1px solid #B7DAC5; color: #1E5233; }
.form-status[data-state="error"] { background: #FBECEC; border: 1px solid #E6BDBD; color: #7A2020; }

/* Contact detail blocks */
.contact-list { display: grid; gap: var(--space-5); }
.contact-list__item { padding-left: var(--space-5); border-left: 2px solid var(--brass-500); }
.contact-list__item h3 { margin-bottom: .35rem; font-size: var(--fs-h4); }
.contact-list__item p { margin: 0; color: var(--text-muted); }
.contact-list__item a { color: var(--ink-800); text-decoration: none; font-weight: 600; }
.contact-list__item a:hover { color: var(--brass-700); text-decoration: underline; }
.mail-link { display: inline-flex; align-items: center; gap: .45em; }
.mail-link svg { width: 1.05em; height: 1.05em; flex: none; }

.contact-offices { display: grid; gap: var(--space-5); }
@media (min-width: 40em) { .contact-offices { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ------------------------------------------------------------------
   11. FOOTER
   ------------------------------------------------------------------ */
.site-footer { background: var(--ink-900); color: #C6C3BC; padding-block: clamp(3rem, 2rem + 4vw, 5rem) 0; }
.site-footer h2, .site-footer h3 { color: var(--white); }
.site-footer__grid { display: grid; gap: clamp(2rem, 1.2rem + 3vw, 3.5rem); }
@media (min-width: 48em) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.site-footer__brand img { height: 34px; width: auto; background: none; filter: brightness(0) invert(1); }
.site-footer p { color: #ADB3B8; font-size: var(--fs-sm); }
.site-footer h3 { margin-bottom: var(--space-4); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-400); }
.footer-links { display: grid; gap: .65rem; }
.footer-links a { color: #CFCCC4; font-size: var(--fs-sm); text-decoration: none; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.footer-contact { display: grid; gap: .9rem; font-size: var(--fs-sm); }
.footer-office { display: grid; gap: .2rem; }
.footer-office strong { font-size: var(--fs-sm); font-weight: 600; letter-spacing: .02em; color: #E3E0D9; }
.footer-office address { margin: 0; font-style: normal; font-size: var(--fs-sm); line-height: 1.55; color: #ADB3B8; }
.footer-contact a { color: #E3E0D9; text-decoration: none; }
.footer-contact a:hover { color: var(--brass-400); }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  padding-block: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: var(--fs-xs);
  color: #8E959B;
}
.site-footer__bottom a { color: #B9BFC4; text-decoration: none; }
.site-footer__bottom a:hover { color: var(--white); text-decoration: underline; }
.site-footer__bottom ul { display: flex; flex-wrap: wrap; gap: var(--space-4); }

.social { display: flex; gap: .6rem; margin-top: var(--space-4); }
.social a {
  display: grid;
  place-items: center;
  width: 2.5rem; height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: #D5D2CB;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.social a:hover { background: var(--brass-500); border-color: var(--brass-500); color: #17120A; }
.social svg { width: 1.05rem; height: 1.05rem; }

/* Back to top */
.to-top {
  position: fixed;
  right: clamp(1rem, .5rem + 1.5vw, 2rem);
  bottom: clamp(1rem, .5rem + 1.5vw, 2rem);
  z-index: 900;
  display: grid;
  place-items: center;
  width: 2.9rem; height: 2.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink-800);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 1.05rem; height: 1.05rem; }

/* ------------------------------------------------------------------
   12. UTILITIES, MOTION & PRINT
   ------------------------------------------------------------------ */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.no-scroll { overflow: hidden; }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
  :root { --text-muted: #3A464E; --line: #A9A49B; --line-strong: #7B766D; }
}

@media print {
  .topbar, .site-header, .to-top, .hero__media, .cta-band__media, .marquee, .social { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .hero, .page-hero, .cta-band, .section--deep, .site-footer { background: #fff !important; color: #000 !important; }
  .hero h1, .page-hero h1, .cta-band h2, .site-footer h3 { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; word-break: break-all; }
  .section { padding-block: 1rem; }
}
