/* ==========================================================================
   C-15 JEANS — Design System
   Selvedge indigo · raw ecru · brass rivet
   Display: Bodoni Moda · Sans: Jost
   ========================================================================== */

:root {
  /* Color tokens */
  --ink: #191817;
  --ink-soft: #453f3b;
  --bg: #fafaf9;
  --surface: #ffffff;
  --indigo: #22314e;
  --indigo-deep: #17233a;
  --indigo-text: #e9e6e1;      /* body text on indigo, 10:1 */
  --indigo-text-soft: #b9bfcd; /* meta text on indigo, 5.4:1 */
  --brass: #a16207;
  --brass-bright: #d9a441;     /* brass on dark surfaces, labels only */
  --line: #dad7d3;
  --line-dark: #3a4763;
  --muted: #6e6862;

  /* Type */
  --font-display: "Libre Bodoni", "Bodoni MT", Didot, "Times New Roman", serif;
  --font-sans: "Jost", "Century Gothic", Futura, "Segoe UI", sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1.0625rem;
  --text-lg: 1.1875rem;
  --text-xl: clamp(1.375rem, 1.2rem + 0.9vw, 1.75rem);
  --text-2xl: clamp(1.75rem, 1.4rem + 1.6vw, 2.5rem);
  --text-3xl: clamp(2.25rem, 1.7rem + 2.6vw, 3.5rem);
  --text-hero: clamp(2.5rem, 1.6rem + 4.5vw, 5.25rem);

  /* Space */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --section: clamp(4rem, 3rem + 5vw, 7.5rem);
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Z-scale */
  --z-header: 100;
  --z-drawer: 200;
  --z-fab: 300;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 2px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
  margin: 0 0 var(--space-6);
  padding-inline: 0.03em;
  text-wrap: balance;
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 600;
  padding-inline: 0.04em;
}

h4 {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 var(--space-3);
}

p {
  margin: 0 0 var(--space-4);
  max-width: 68ch;
  text-wrap: pretty;
}

a {
  color: var(--indigo);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease-out);
}

a:hover { color: var(--brass); }

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

ul, ol { padding-left: 1.25rem; }

:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
}

.dark-section :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--brass-bright);
}

::selection {
  background: var(--indigo);
  color: #fff;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: calc(var(--z-header) + 1);
  background: var(--ink);
  color: #fff;
  padding: var(--space-3) var(--space-6);
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
  color: #fff;
}

.container {
  width: min(1240px, 100% - 2 * var(--gutter));
  margin-inline: auto;
}

.container--narrow { width: min(760px, 100% - 2 * var(--gutter)); }
.container--wide   { width: min(1400px, 100% - 2 * var(--gutter)); }

section { padding-block: var(--section); }

/* Kicker: single deliberate brand label (used once per page, not per section) */
.kicker {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--space-4);
}

.dark-section .kicker { color: var(--brass-bright); }

.lede {
  font-size: var(--text-lg);
  color: var(--ink-soft);
  max-width: 58ch;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0.8rem 2rem;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.25s var(--ease-out), color 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
}

.btn--solid {
  background: var(--ink);
  color: #fff;
}

.btn--solid:hover {
  background: var(--indigo);
  color: #fff;
}

.btn--ghost {
  border-color: currentColor;
  color: var(--ink);
  background: transparent;
}

.btn--ghost:hover { color: var(--brass); }

.btn--light {
  background: #fff;
  color: var(--ink);
}

.btn--light:hover {
  background: var(--brass-bright);
  color: var(--ink);
}

.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  background: transparent;
}

.btn--ghost-light:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* Text link with arrow */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  min-height: 44px;
}

.arrow-link svg { transition: transform 0.25s var(--ease-out); }
.arrow-link:hover { color: var(--brass); }
.arrow-link:hover svg { transform: translateX(4px); }

.dark-section .arrow-link { color: var(--indigo-text); }
.dark-section .arrow-link:hover { color: var(--brass-bright); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.utility-bar {
  background: var(--indigo-deep);
  color: var(--indigo-text);
  font-size: var(--text-sm);
  padding-block: 0.45rem;
}

.utility-bar .container {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.utility-bar a {
  color: var(--indigo-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding-block: var(--space-2);
  white-space: nowrap;
  flex: 1 1 0;
  justify-content: flex-end;
}

.utility-bar a:hover { color: var(--brass-bright); }

.utility-bar__location,
.utility-bar__hours {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0;
  white-space: nowrap;
}

/* Three-part bar: location left · hours centred · phone right */
.utility-bar__location {
  letter-spacing: 0.04em;
  min-width: 0;
  flex: 1 1 0;
  justify-content: flex-start;
}

.utility-bar__hours {
  flex: 0 1 auto;
  justify-content: center;
}

.utility-bar__location > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.utility-bar__location svg,
.utility-bar__hours svg {
  flex-shrink: 0;
  opacity: 0.75;
}

@media (max-width: 760px) {
  .utility-bar__hours { display: none; }
}

@media (max-width: 460px) {
  .utility-bar__location { font-size: 0.72rem; letter-spacing: 0.02em; }
  .utility-bar__location svg { display: none; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease-out);
}

.site-header.is-scrolled { box-shadow: 0 2px 20px rgba(25, 24, 23, 0.08); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.brand__logo {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 3px 6px rgba(15, 20, 33, 0.25));
  transition: transform 0.35s var(--ease-out), filter 0.35s var(--ease-out);
  transform: perspective(500px) rotateY(0deg);
}

.brand:hover .brand__logo {
  transform: perspective(500px) rotateY(14deg) translateY(-1px);
  filter: drop-shadow(0 6px 12px rgba(15, 20, 33, 0.3));
}

.site-footer .brand__logo { height: 64px; }

.brand:hover { color: var(--ink); }

.brand small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -1px;
}

/* Standalone 3D logo presentation (about page, big placements) */
.logo-3d {
  filter: drop-shadow(0 10px 24px rgba(15, 20, 33, 0.3));
  transition: transform 0.5s var(--ease-out);
  transform: perspective(900px) rotateX(4deg) rotateY(-6deg);
}

.logo-3d:hover { transform: perspective(900px) rotateX(0deg) rotateY(6deg) scale(1.03); }

.tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  letter-spacing: 0.04em;
}

.site-nav ul {
  display: flex;
  gap: clamp(0.75rem, 2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease-out);
}

.site-nav a:hover { color: var(--ink); }

.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--brass);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: var(--space-3);
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    inset: 0;
    top: 0;
    z-index: var(--z-drawer);
    background: var(--indigo-deep);
    display: grid;
    place-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease-out), visibility 0.3s;
  }

  /* When the drawer is open, drop the header's backdrop-filter: a filtered
     ancestor becomes the containing block for its position:fixed child, which
     otherwise clips the drawer to the ~72px header strip (see-through menu,
     overlaps the utility bar). Raising the header stacking context puts the
     full-screen indigo drawer above the FAB stack and cookie banner. */
  .nav-open .site-header {
    z-index: 400;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-open .fab-stack { display: none; }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
  }

  .site-nav a {
    color: var(--indigo-text);
    font-size: var(--text-lg);
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] { color: #fff; }

  .site-nav .nav-close {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    background: none;
    border: none;
    color: var(--indigo-text);
    padding: var(--space-3);
    cursor: pointer;
  }
}

@media (min-width: 961px) {
  .site-nav .nav-close { display: none; }

  /* Brand left, nav centred across the header (empty 3rd track balances the brand) */
  .site-header .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }

  .site-nav {
    grid-column: 2;
    justify-self: center;
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(88svh, 860px);
  padding: 0;
  color: #fff;
  isolation: isolate;
}

.hero--short { min-height: min(62svh, 620px); }

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(15, 20, 33, 0.9) 0%,
    rgba(15, 20, 33, 0.55) 45%,
    rgba(15, 20, 33, 0.32) 100%
  );
}

.hero .container {
  padding-block: clamp(3rem, 8vh, 6rem);
}

.hero .kicker {
  color: var(--brass-bright);
  text-shadow: 0 1px 14px rgba(15, 20, 33, 0.65);
}

.hero h1 {
  color: #fff;
  max-width: 15ch;
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 26px rgba(15, 20, 33, 0.55);
}

.hero p {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 52ch;
  margin-bottom: var(--space-8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */

.trust-strip {
  border-bottom: 1px solid var(--line);
  padding-block: var(--space-8);
}

.trust-strip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
}

.trust-strip li {
  display: grid;
  gap: var(--space-1);
  padding-left: var(--space-4);
  border-left: 1px solid var(--line);
}

.trust-strip strong {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trust-strip span {
  font-size: var(--text-sm);
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Category tiles
   -------------------------------------------------------------------------- */

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

/* Balanced 3+3 rows for the six category tiles on wide screens */
@media (min-width: 1100px) {
  .tile-grid { grid-template-columns: repeat(3, 1fr); }
}

.tile {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  text-decoration: none;
  color: #fff;
  isolation: isolate;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 20, 33, 0.72), rgba(15, 20, 33, 0) 55%);
}

.tile:hover img { transform: scale(1.05); }
.tile:hover { color: #fff; }

.tile__label {
  position: absolute;
  z-index: 1;
  bottom: var(--space-6);
  left: var(--space-6);
  right: var(--space-6);
}

.tile__label strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.tile__label span {
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
}

.tile--wide { aspect-ratio: 16 / 10; }

/* --------------------------------------------------------------------------
   Split feature (image + copy)
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--flip > .split__media { order: 2; }
}

.split__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.split__media--landscape img { aspect-ratio: 4 / 3; }

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

.dark-section h2,
.dark-section h3 { color: #fff; }

.dark-section p { color: var(--indigo-text); }

.dark-section .lede { color: var(--indigo-text); }

.dark-section a { color: var(--indigo-text); }
.dark-section a:hover { color: var(--brass-bright); }

/* Buttons keep their own colors inside dark sections (override .dark-section a) */
.dark-section .btn--light,
.hero .btn--light { background: #fff; color: var(--ink); }
.dark-section .btn--light:hover,
.hero .btn--light:hover { background: var(--brass-bright); color: var(--ink); }
.dark-section .btn--ghost-light,
.hero .btn--ghost-light { color: #fff; border-color: rgba(255, 255, 255, 0.75); }
.dark-section .btn--ghost-light:hover,
.hero .btn--ghost-light:hover { color: #fff; background: rgba(255, 255, 255, 0.14); }
.dark-section .btn--solid { background: #fff; color: var(--ink); }
.dark-section .btn--solid:hover { background: var(--brass-bright); color: var(--ink); }

/* Fabric spec list inside features */
.spec-list {
  list-style: none;
  margin: var(--space-8) 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-3);
  border-top: 1px solid var(--line-dark);
  font-size: var(--text-sm);
}

.spec-list li:last-child { border-bottom: 1px solid var(--line-dark); }

.light .spec-list li,
.spec-list.light li { border-color: var(--line); }

.spec-list .spec-term {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--indigo-text-soft);
}

.light .spec-list .spec-term,
.spec-list.light .spec-term { color: var(--muted); }

/* --------------------------------------------------------------------------
   Product cards
   -------------------------------------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-8) var(--space-6);
}

.product-card { display: grid; gap: var(--space-3); }

.product-card__media {
  overflow: hidden;
  border-radius: var(--radius);
  background: #edecea;
}

.product-card__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.product-card h3 {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0;
}

.product-card .fabric {
  font-size: var(--text-sm);
  color: var(--muted);
  margin: 0;
}

.product-card .price {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--indigo);
  margin: 0;
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   Occasion edit
   -------------------------------------------------------------------------- */

.occasion-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 860px) {
  .occasion-grid { grid-template-columns: 1.35fr 1fr 1fr; }
  /* Equal-height tiles so the wide 9-to-5 tile lines up with the two portraits */
  .occasion-grid .tile { aspect-ratio: auto; height: clamp(22rem, 30vw, 28rem); }
}

/* --------------------------------------------------------------------------
   Pillars (ruled columns, no cards)
   -------------------------------------------------------------------------- */

.pillars {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 860px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }

  .pillars > div {
    padding-inline: var(--space-8);
    border-left: 1px solid var(--line);
  }

  .pillars > div:first-child {
    padding-left: 0;
    border-left: none;
  }
}

.pillars h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.pillars p {
  color: var(--ink-soft);
  margin: 0;
}

/* Paragraph text stays readable when a pillar group sits on the dark section */
.dark-section .pillars p { color: var(--indigo-text-soft); }

/* Four-up variant (business "Who we supply") — boxed with a brass top accent */
.pillars--four > div {
  padding: var(--space-4) 0 0;
  border-top: 2px solid var(--brass);
  border-left: none;
}

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

@media (min-width: 1000px) {
  .pillars--four { grid-template-columns: repeat(4, 1fr); }
}

/* --------------------------------------------------------------------------
   Quotes
   -------------------------------------------------------------------------- */

.quote-row {
  display: grid;
  gap: var(--space-12);
}

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

blockquote {
  margin: 0;
  display: grid;
  gap: var(--space-4);
}

blockquote p {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

blockquote footer {
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.dark-section blockquote footer { color: var(--indigo-text-soft); }

/* --------------------------------------------------------------------------
   Journal cards
   -------------------------------------------------------------------------- */

.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-8) var(--space-6);
}

.journal-card {
  display: grid;
  gap: var(--space-3);
  align-content: start;
}

.journal-card__media {
  overflow: hidden;
  border-radius: var(--radius);
}

.journal-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.journal-card:hover .journal-card__media img { transform: scale(1.04); }

.journal-card .tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

.journal-card h3 {
  font-size: var(--text-xl);
  margin: 0;
}

.journal-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.journal-card h3 a:hover { color: var(--indigo); }

.journal-card .dek {
  color: var(--ink-soft);
  font-size: var(--text-sm);
  margin: 0;
}

.journal-card .byline {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Article (journal post)
   -------------------------------------------------------------------------- */

.article-header { padding-block: var(--section) var(--space-8); }

.article-header .tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-block;
  margin-bottom: var(--space-4);
}

.article-header .byline {
  font-size: var(--text-sm);
  color: var(--muted);
  letter-spacing: 0.06em;
}

.article-figure { margin: 0 0 var(--space-12); }

.article-figure img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-figure figcaption {
  font-size: var(--text-sm);
  color: var(--muted);
  padding-top: var(--space-3);
}

.article-body { padding-bottom: var(--section); }

.article-body h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-12);
}

.article-body h3 {
  margin-top: var(--space-8);
}

.article-body p, .article-body li { color: var(--ink-soft); }

.article-body strong { color: var(--ink); }

.article-body ul, .article-body ol { margin-bottom: var(--space-6); }

.article-body li { margin-bottom: var(--space-2); }

/* --------------------------------------------------------------------------
   Tables (fit guide)
   -------------------------------------------------------------------------- */

.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

th, td {
  text-align: left;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--text-xs);
  color: var(--muted);
}

td strong { font-weight: 600; }

tbody tr:hover { background: #f3f2f0; }

/* --------------------------------------------------------------------------
   Steps (numbered — a real sequence)
   -------------------------------------------------------------------------- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-8);
  counter-reset: step;
}

@media (min-width: 860px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

.steps li {
  counter-increment: step;
  display: grid;
  gap: var(--space-2);
  align-content: start;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-dark);
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1;
  color: var(--brass-bright);
  margin-bottom: var(--space-1);
}

.steps h3 {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  margin: 0;
}

.steps p {
  font-size: var(--text-sm);
  margin: 0;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq { display: grid; }

.faq details {
  border-top: 1px solid var(--line);
  padding-block: var(--space-4);
}

.faq details:last-child { border-bottom: 1px solid var(--line); }

.faq summary {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.02em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  min-height: 44px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--brass);
  transition: transform 0.25s var(--ease-out);
  flex-shrink: 0;
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq details p {
  color: var(--ink-soft);
  margin: var(--space-3) 0 0;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}

.contact-block { display: grid; gap: var(--space-6); align-content: start; }

.contact-block address {
  font-style: normal;
  line-height: 1.8;
}

.hours-table th, .hours-table td { padding-inline: 0; }

.map-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* Form */
.form-grid { display: grid; gap: var(--space-6); }

.form-field { display: grid; gap: var(--space-2); }

.form-field label {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.form-field .hint {
  font-size: var(--text-sm);
  color: var(--muted);
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  font: inherit;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  min-height: 48px;
  width: 100%;
  transition: border-color 0.2s var(--ease-out);
}

textarea { resize: vertical; min-height: 120px; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 1px var(--indigo);
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band { text-align: center; }

.cta-band h2 { max-width: 22ch; margin-inline: auto; }

.cta-band p { margin-inline: auto; }

.cta-band .hero__actions { justify-content: center; margin-top: var(--space-8); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--indigo-deep);
  color: var(--indigo-text);
  padding-block: var(--space-16) var(--space-8);
  font-size: var(--text-sm);
}

.site-footer .footer-grid {
  display: grid;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--line-dark);
}

@media (min-width: 860px) {
  .site-footer .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
}

.site-footer .brand { color: #fff; }
.site-footer .brand small { color: var(--indigo-text-soft); }

.site-footer h4 {
  color: #fff;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-2);
}

.site-footer a {
  color: var(--indigo-text);
  text-decoration: none;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
}

.site-footer a:hover { color: var(--brass-bright); }

.site-footer address {
  font-style: normal;
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-8);
  /* keep clear of the fixed WhatsApp/Viber stack in the bottom-right corner */
  padding-right: 84px;
  color: var(--indigo-text-soft);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.footer-social a { padding: var(--space-2); }

/* --------------------------------------------------------------------------
   WhatsApp FAB
   -------------------------------------------------------------------------- */

.fab-stack {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: var(--z-fab);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 6px 24px rgba(15, 20, 33, 0.28);
  transition: transform 0.25s var(--ease-out), background-color 0.25s var(--ease-out);
}

.fab:hover { color: #fff; transform: translateY(-3px); }

.fab--whatsapp { background: #1faa53; }
.fab--whatsapp:hover { background: #178a43; }

.fab--viber { background: #7360f2; }
.fab--viber:hover { background: #5b48d6; }

/* --------------------------------------------------------------------------
   Page banner (inner pages)
   -------------------------------------------------------------------------- */

.page-banner {
  padding-block: var(--section) var(--space-8);
  border-bottom: 1px solid var(--line);
}

.page-banner h1 { font-size: var(--text-3xl); max-width: 20ch; }

.page-banner .lede { margin-bottom: 0; }

/* Breadcrumb */
.breadcrumb {
  font-size: var(--text-sm);
  color: var(--muted);
  padding-top: var(--space-6);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: var(--space-2);
  color: var(--line);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--ink); }

/* --------------------------------------------------------------------------
   Category section (collection page)
   -------------------------------------------------------------------------- */

.category-section {
  padding-block: var(--space-16);
  border-top: 1px solid var(--line);
}

.category-section:first-of-type { border-top: none; }

.category-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.category-section__head h2 { margin-bottom: var(--space-2); }

.category-section__head p {
  color: var(--ink-soft);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Scroll reveal (progressive enhancement; content visible without JS)
   -------------------------------------------------------------------------- */

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Directional variants; main.js also auto-staggers sibling reveals via
   --reveal-delay so grids and lists cascade instead of snapping in together. */
.js .reveal--left { transform: translateX(-24px); }
.js .reveal--right { transform: translateX(24px); }
.js .reveal--scale { transform: scale(0.965); }
.js .reveal--left.is-visible,
.js .reveal--right.is-visible,
.js .reveal--scale.is-visible { transform: none; }

/* Figures settle rather than slide: slightly longer, with the image easing out
   of a small scale so photography does not appear to jump. */
.js .reveal--figure {
  transform: translateY(24px) scale(0.985);
  transition-duration: 0.9s;
}

.js .reveal--figure.is-visible { transform: none; }

/* Counting numerals need a fixed advance width or the row shifts each tick. */
.stat-row strong.is-counting { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal,
  .js .reveal--left,
  .js .reveal--right,
  .js .reveal--scale,
  .js .reveal--figure {
    opacity: 1;
    transform: none;
    transition-delay: 0ms !important;
  }
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.section-head {
  display: grid;
  gap: var(--space-2);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  max-width: 62ch;
}

.section-head--split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  max-width: none;
}

.section-head h2 { margin-bottom: 0; }

.section-head p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.dark-section .section-head p { color: var(--indigo-text); }

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

.mt-8 { margin-top: var(--space-8); }

/* --------------------------------------------------------------------------
   Product detail page
   -------------------------------------------------------------------------- */

.product-page {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-block: var(--space-12) var(--section);
}

@media (min-width: 900px) {
  .product-page { grid-template-columns: 1.05fr 1fr; }
}

.product-page__media {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border-radius: var(--radius);
}

.product-page__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

@media (max-width: 899px) {
  .product-page__media { position: static; }
}

.product-page__info { display: grid; gap: var(--space-6); align-content: start; }

.product-page__info h1 {
  font-size: var(--text-2xl);
  margin-bottom: 0;
}

.product-page__price {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--indigo);
  font-variant-numeric: tabular-nums;
}

.product-page__price small {
  display: block;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.size-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.size-row li {
  min-width: 48px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 500;
  background: var(--surface);
}

/* JS turns the size list into a selector on product pages */
.js .size-row li {
  cursor: pointer;
  transition: border-color 0.15s var(--ease-out),
    background-color 0.15s var(--ease-out), color 0.15s var(--ease-out);
}

.js .size-row li:hover { border-color: var(--indigo); }

.size-row li:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

.size-row li.is-selected {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}

.size-hint {
  margin: var(--space-3) 0 0;
  font-size: var(--text-sm);
  color: var(--ink-soft);
}

.size-hint strong { color: var(--ink); }

.order-box {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.order-box p { margin: 0; font-size: var(--text-sm); color: var(--ink-soft); }

.order-box .btn { width: 100%; }

.btn--whatsapp {
  background: #1faa53;
  color: #fff;
}

.btn--whatsapp:hover { background: #178a43; color: #fff; }

.btn--viber { background: #7360f2; color: #fff; }
.btn--viber:hover { background: #5b48d6; color: #fff; }

.product-page__meta { border-top: 1px solid var(--line); }

/* Order box is a light card; keep its own colors inside dark sections */
.dark-section .order-box a:not(.btn) { color: var(--indigo); }
.dark-section .order-box a:not(.btn):hover { color: var(--brass); }
.dark-section .order-box .btn--ghost { color: var(--ink); border-color: currentColor; }
.dark-section .order-box .btn--ghost:hover { color: var(--brass); }

/* --------------------------------------------------------------------------
   Journal index groups
   -------------------------------------------------------------------------- */

.journal-group { margin-bottom: var(--space-16); }

.journal-group > h2 { margin-bottom: var(--space-8); }

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */

.legal-body { padding-block: var(--space-8) var(--section); }

.legal-body h2 { font-size: var(--text-xl); margin-top: var(--space-12); }

.legal-body p, .legal-body li { color: var(--ink-soft); }

.legal-body .updated {
  font-size: var(--text-sm);
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Cookie consent banner
   -------------------------------------------------------------------------- */

.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: calc(var(--z-fab) + 10);
  background: var(--indigo-deep);
  color: var(--indigo-text);
  padding: var(--space-4) 0;
  box-shadow: 0 -6px 30px rgba(15, 20, 33, 0.35);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease-out);
}

.cookie-banner.is-visible { transform: none; }

.cookie-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}

.cookie-banner p {
  margin: 0;
  font-size: var(--text-sm);
  flex: 1 1 320px;
  max-width: none;
}

.cookie-banner a { color: #fff; }

.cookie-banner__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

.cookie-banner .btn { min-height: 42px; padding: 0.5rem 1.2rem; }

@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: none; }
}

/* Cookie settings toggles */
.cookie-setting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
  padding-block: var(--space-4);
  border-top: 1px solid var(--line);
}

.cookie-setting:last-of-type { border-bottom: 1px solid var(--line); }

.cookie-setting h3 {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  margin: 0 0 var(--space-1);
}

.cookie-setting p { margin: 0; font-size: var(--text-sm); color: var(--muted); }

.switch { position: relative; display: inline-block; flex-shrink: 0; }

.switch input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}

.switch .track {
  display: block;
  width: 52px;
  height: 30px;
  border-radius: 15px;
  background: var(--line);
  transition: background-color 0.25s var(--ease-out);
}

.switch .track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(15, 20, 33, 0.3);
  transition: transform 0.25s var(--ease-out);
}

.switch input:checked + .track { background: var(--indigo); }
.switch input:checked + .track::after { transform: translateX(22px); }
.switch input:disabled + .track { background: var(--brass); opacity: 0.55; cursor: not-allowed; }
.switch input:focus-visible + .track { outline: 2px solid var(--indigo); outline-offset: 3px; }

/* --------------------------------------------------------------------------
   Poster hero (home) — extends the tan of the client's STYLISH campaign
   poster so the small source image blends into a full-width band
   -------------------------------------------------------------------------- */

.hero-poster {
  background: #ddbe9d;
  border-bottom: 1px solid var(--line);
  padding-block: 0; /* the .container owns the hero's vertical rhythm; avoid double padding from the global section rule */
}

.hero-poster .container {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2.5rem, 7vh, 5rem);
  min-height: min(72svh, 700px);
}

@media (min-width: 900px) {
  .hero-poster .container { grid-template-columns: 1.05fr 1fr; }
}

.hero-poster .kicker { color: #7c4a12; }

/* Type matches the poster: bold tracked-out sans, deep indigo */
.hero-poster h1 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.9rem, 1.2rem + 2.8vw, 3.4rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.14;
  color: var(--indigo);
  margin-bottom: var(--space-6);
}

.hero-poster__img {
  width: 100%;
  max-width: 620px;
  justify-self: center;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(90, 62, 30, 0.35);
}

@media (min-width: 900px) {
  .hero-poster__img { justify-self: end; }
}

/* Who / what / where facts */
.fact-list {
  list-style: none;
  margin: 0 0 var(--space-8);
  padding: 0;
  display: grid;
  gap: var(--space-4);
  max-width: 46ch;
}

.fact-list li {
  display: grid;
  gap: var(--space-1);
  padding-left: var(--space-4);
  border-left: 2px solid var(--brass);
}

.fact-list .fact-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7c4a12;
}

.fact-list .fact-value {
  color: var(--indigo-deep);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Split page hero (inner pages) — text left, model photo right
   -------------------------------------------------------------------------- */

.page-hero { border-bottom: 1px solid var(--line); }

.page-hero .container {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-block: var(--space-12) var(--space-12);
}

@media (min-width: 900px) {
  .page-hero .container { grid-template-columns: 1.25fr 0.75fr; }
}

.page-hero h1 { font-size: var(--text-3xl); max-width: 20ch; }

.page-hero .lede { margin-bottom: 0; }

.page-hero__media {
  justify-self: center;
  width: min(100%, 400px);
}

@media (min-width: 900px) {
  .page-hero__media { justify-self: end; }
}

.page-hero__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(15, 20, 33, 0.18);
}

/* --------------------------------------------------------------------------
   Stats band
   -------------------------------------------------------------------------- */

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  padding-block: var(--space-8);
}

.stat-row > div {
  display: grid;
  gap: var(--space-1);
  justify-items: center;
  text-align: center;
  padding-inline: var(--space-4);
  border-left: 1px solid var(--line);
}

.stat-row > div:first-child { border-left: none; }

.stat-row strong {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--indigo);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.stat-row span {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  max-width: 22ch;
}

@media (max-width: 760px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); row-gap: var(--space-8); }
  .stat-row > div:nth-child(odd) { border-left: none; }
}

/* --------------------------------------------------------------------------
   Photo strip (retailers / events)
   -------------------------------------------------------------------------- */

.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
}

.photo-strip figure {
  margin: 0;
  display: grid;
  gap: var(--space-2);
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15, 20, 33, 0.16);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.photo-strip figure:hover img {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 20, 33, 0.24);
}

.photo-strip figcaption {
  font-size: var(--text-sm);
  color: var(--muted);
}

.dark-section .photo-strip figcaption { color: var(--indigo-text-soft); }

/* --------------------------------------------------------------------------
   Gallery wall (about page) — masonry via CSS columns
   -------------------------------------------------------------------------- */

.gallery-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8) var(--space-6);
  align-items: start;
}

@media (max-width: 960px) { .gallery-wall { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-wall { grid-template-columns: 1fr; } }

.gallery-wall figure {
  margin: 0;
  display: grid;
  gap: var(--space-2);
}

@media (min-width: 561px) {
  .gallery-wall figure.wide { grid-column: span 2; }
}

.gallery-wall img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(15, 20, 33, 0.14);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.gallery-wall figure:hover img {
  transform: scale(1.02);
  box-shadow: 0 16px 36px rgba(15, 20, 33, 0.22);
}

.gallery-wall figcaption {
  font-size: var(--text-sm);
  color: var(--muted);
}

.dark-section .gallery-wall figcaption { color: var(--indigo-text-soft); }

/* --------------------------------------------------------------------------
   Mobile refinements (most traffic is mobile)
   -------------------------------------------------------------------------- */

@media (max-width: 640px) {
  .hero-poster .container { min-height: 0; padding-block: var(--space-12); }
  .hero-poster h1 { letter-spacing: 0.1em; }
  .page-hero__media { width: min(100%, 320px); }
  .float-img { width: min(100%, 300px); }
  .cta-band .hero__actions .btn { flex: 1 1 100%; }
  .order-box { padding: var(--space-4); }
  .retailer-card { padding: var(--space-3) var(--space-4); }
  section { padding-block: clamp(3rem, 10vw, 4rem); }
}

/* --------------------------------------------------------------------------
   Catalog photography (client studio shots)
   -------------------------------------------------------------------------- */

/* Studio garment shots are padded 4:5 on white; contain instead of crop */
.product-card__media--pad { background: #fff; border: 1px solid var(--line); }

.product-card__media--pad img {
  object-fit: contain;
  background: #fff;
}

/* Lifted-card treatment: catalog photos read as physical objects */
.product-card__media {
  box-shadow: 0 1px 3px rgba(15, 20, 33, 0.08);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.product-card:hover .product-card__media {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 20, 33, 0.16);
}

/* Floating cutout garment (transparent WebP) with 3D depth */
.float-img {
  width: min(100%, 420px);
  margin-inline: auto;
  filter: drop-shadow(0 30px 45px rgba(10, 14, 25, 0.5));
  transform: perspective(900px) rotateX(3deg) rotateY(-6deg);
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}

.float-img:hover {
  transform: perspective(900px) rotateX(0deg) rotateY(5deg) translateY(-6px) scale(1.02);
  filter: drop-shadow(0 42px 60px rgba(10, 14, 25, 0.55));
}

.light .float-img,
.float-img--light {
  filter: drop-shadow(0 24px 36px rgba(15, 20, 33, 0.28));
}

/* --------------------------------------------------------------------------
   Full-range strip (categories beyond the photographed lines)
   -------------------------------------------------------------------------- */

.range-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.range-list li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  background: var(--surface);
}

.range-list a {
  text-decoration: none;
  color: var(--ink);
}

.range-list a:hover { color: var(--brass); }

.dark-section .range-list li {
  background: transparent;
  border-color: var(--line-dark);
  color: var(--indigo-text);
}

/* --------------------------------------------------------------------------
   Retailer network
   -------------------------------------------------------------------------- */

.retailer-region { margin-bottom: var(--space-12); }

.retailer-region > h2 {
  font-size: var(--text-2xl);
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.retailer-region > h2 .count {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.retailer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-4);
}

/* Partner nameplate rather than a directory row: the shop's name is set in the
   display face, the same treatment the C-15 name gets, so the roster reads as
   an honour roll of real stockists instead of scraped contact data. */
.retailer-card {
  position: relative;
  display: grid;
  gap: var(--space-2);
  align-content: start;
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}

/* Brass rule sits above the name and draws across on hover. */
.retailer-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 34px;
  height: 2px;
  background: var(--brass);
  transition: width 0.45s var(--ease-out);
}

.retailer-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(15, 20, 33, 0.13);
}

.retailer-card:hover::before { width: 100%; }

.retailer-card strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--indigo);
}

.retailer-card .place {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--muted);
}

.retailer-card .branches {
  justify-self: start;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brass);
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
}

.retailer-card a {
  font-size: var(--text-sm);
  text-decoration: none;
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 32px;
}

.retailer-card a:hover { color: var(--brass); }

/* Compact name wall (home page) */
.retailer-wall {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
}

.retailer-wall li {
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--indigo-text);
  white-space: nowrap;
}

.retailer-wall li span { color: var(--indigo-text-soft); }

/* Category page photo gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-8) var(--space-6);
}

.gallery-grid figure {
  margin: 0;
  display: grid;
  gap: var(--space-3);
}

.gallery-grid figcaption {
  font-size: var(--text-sm);
  color: var(--ink-soft);
}

.gallery-grid figcaption strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.gallery-grid .frame {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 20, 33, 0.08);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.gallery-grid figure:hover .frame {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 20, 33, 0.16);
}

.gallery-grid .frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #fff;
}

.gallery-grid .frame--cover img { object-fit: cover; }
