/* ==========================================================================
   ALTER KNABE — Bespoke Tailors
   Editorial lookbook design system
   ========================================================================== */

:root {
  /* Palette — quiet luxury: bone, ink, racing green, brass */
  --bone:        #f4f1ea;
  --bone-soft:   #ece7dd;
  --paper:       #faf8f4;
  --ink:         #14161a;
  --ink-soft:    #2b2f35;
  --graphite:    #33373d;
  --mute:        #63666c;
  --line:        #d8d2c6;
  --line-dark:   rgba(244, 241, 234, 0.18);
  --green:       #17372c;
  --green-deep:  #0f241d;
  --brass:       #a8853f;

  /* Typography */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --display: "Italiana", "Cormorant Garamond", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --pad: clamp(1.25rem, 5vw, 5.5rem);
  --section: clamp(5rem, 12vw, 11rem);
  --max: 1560px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17.5px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* German compounds are long — allow clean breaks instead of gaps */
[lang="de"] p,
[lang="de"] li,
[lang="de"] .lede,
[lang="de"] .cat-note {
  hyphens: auto;
  -webkit-hyphens: auto;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.08;
  margin: 0;
}

p { margin: 0; }

::selection { background: var(--green); color: var(--bone); }

/* ---------- Utility type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
}

.eyebrow.on-dark { color: rgba(244, 241, 234, 0.78); }

.display {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6.5vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.display-sm {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.8vw, 1.58rem);
  line-height: 1.7;
  color: var(--graphite);
  font-weight: 500;
}

.lede.on-dark { color: rgba(244, 241, 234, 0.88); }

.rule {
  width: 46px;
  height: 1px;
  background: var(--ink);
  border: 0;
  margin: 0;
  opacity: 0.35;
}

.rule.on-dark { background: var(--bone); opacity: 0.4; }

.center { text-align: center; }

/* ---------- Layout ---------- */
.shell {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.shell-narrow {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding-inline: var(--pad);
}

section { position: relative; }

.pad-y { padding-block: var(--section); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 1.35rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease),
              box-shadow 0.5s var(--ease);
  mix-blend-mode: normal;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 20, 18, 0.55), transparent);
  opacity: 1;
  transition: opacity 0.5s var(--ease);
  z-index: -1;
  pointer-events: none;
}

.site-header.is-solid {
  background: var(--paper);
  padding-block: 0.9rem;
  box-shadow: 0 1px 0 var(--line);
}

.site-header.is-solid::after { opacity: 0; }

/* brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
}

.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: filter 0.5s var(--ease);
  filter: brightness(0) invert(1);
}

.site-header.is-solid .brand-mark { filter: none; }

.brand-word {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bone);
  transition: color 0.5s var(--ease);
  white-space: nowrap;
}

.site-header.is-solid .brand-word { color: var(--ink); }

/* nav */
.site-nav { display: flex; align-items: center; gap: 2.4rem; }

.site-nav a {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.85);
  position: relative;
  padding-block: 0.35rem;
  transition: color 0.4s var(--ease);
}

.site-header.is-solid .site-nav a { color: var(--ink-soft); }

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

/* header cta */
.header-cta {
  font-size: 0.63rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border: 1px solid rgba(244, 241, 234, 0.5);
  color: var(--bone);
  padding: 0.72rem 1.35rem;
  background: transparent;
  transition: all 0.45s var(--ease);
  white-space: nowrap;
}

.header-cta:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

.site-header.is-solid .header-cta {
  border-color: var(--ink);
  color: var(--ink);
}

.site-header.is-solid .header-cta:hover { background: var(--ink); color: var(--bone); }

/* language switch */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
}

.lang-btn {
  border: 0;
  background: transparent;
  padding: 0.35rem 0.15rem;
  font-family: var(--sans);
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.55);
  transition: color 0.4s var(--ease);
}

.lang-btn.is-active { color: var(--bone); }

.site-header.is-solid .lang-btn { color: var(--mute); }
.site-header.is-solid .lang-btn.is-active { color: var(--ink); }

.lang-sep {
  font-size: 0.6rem;
  color: rgba(244, 241, 234, 0.35);
  transition: color 0.4s var(--ease);
}

.site-header.is-solid .lang-sep { color: var(--line); }

/* language switch inside the mobile drawer */
.nav-drawer .lang-switch { margin-top: 0.4rem; }
.nav-drawer .lang-btn { color: rgba(244, 241, 234, 0.55); font-size: 0.7rem; }
.nav-drawer .lang-btn.is-active { color: var(--bone); }

/* burger */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
  z-index: 320;
}

.burger span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 1px;
  background: var(--bone);
  transition: all 0.4s var(--ease);
}

.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 25px; }

.site-header.is-solid .burger span { background: var(--ink); }

body.nav-open .burger span { background: var(--bone); }
body.nav-open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.nav-open .burger span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

/* drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--green-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem var(--pad) 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--ease), visibility 0.55s;
}

body.nav-open .nav-drawer { opacity: 1; visibility: visible; }

.nav-drawer ul { list-style: none; margin: 0; padding: 0; }

.nav-drawer li { overflow: hidden; }

.nav-drawer a {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.9rem, 9vw, 3rem);
  color: var(--bone);
  padding-block: 0.35rem;
  transform: translateY(110%);
  transition: transform 0.7s var(--ease);
}

body.nav-open .nav-drawer a { transform: translateY(0); }
body.nav-open .nav-drawer li:nth-child(2) a { transition-delay: 0.06s; }
body.nav-open .nav-drawer li:nth-child(3) a { transition-delay: 0.12s; }
body.nav-open .nav-drawer li:nth-child(4) a { transition-delay: 0.18s; }
body.nav-open .nav-drawer li:nth-child(5) a { transition-delay: 0.24s; }

.nav-drawer-foot {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  color: rgba(244, 241, 234, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: grayscale(100%) contrast(1.06) brightness(0.82);
  transform: scale(1.06);
  animation: heroDrift 22s var(--ease) forwards;
}

@keyframes heroDrift { to { transform: scale(1); } }

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(12, 16, 14, 0.5) 0%, rgba(12, 16, 14, 0.15) 40%, rgba(12, 16, 14, 0.88) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--pad) clamp(3rem, 8vh, 6rem);
  color: var(--bone);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(3rem, 13vw, 11rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin: 0.6rem 0 0;
  text-transform: uppercase;
}

.hero-title span { display: block; }

.hero-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
}

.hero-tag {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 30ch;
  color: rgba(244, 241, 234, 0.78);
  font-style: italic;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.6);
}

.hero-scroll i { animation: nudge 2.4s var(--ease) infinite; }

@keyframes nudge {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(5px); opacity: 1; }
}

/* ==========================================================================
   STATEMENT / PHILOSOPHY
   ========================================================================== */
.statement { background: var(--paper); }

.statement-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .statement-grid { grid-template-columns: 0.85fr 1.15fr; }
}

.statement-body p + p { margin-top: 1.4rem; }

.statement-quote {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 2.7rem);
  line-height: 1.22;
  color: var(--ink);
}

.statement-quote em { font-style: italic; font-family: var(--serif); }

/* ==========================================================================
   FULL-BLEED EDITORIAL SPLIT
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr;
}

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

.split-media { position: relative; min-height: 62vh; overflow: hidden; }

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.04);
  transition: transform 1.4s var(--ease);
}

.split:hover .split-media img { transform: scale(1.04); }

.split-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
  padding: clamp(3rem, 8vw, 7rem) var(--pad);
  background: var(--bone);
}

.split-body.dark { background: var(--green); color: var(--bone); }
.split-body.dark .lede { color: rgba(244, 241, 234, 0.72); }

/* ==========================================================================
   LOOKBOOK GRID / CARDS
   ========================================================================== */
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-head-stack { display: flex; flex-direction: column; gap: 0.9rem; }

.look-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1rem, 2.2vw, 2rem);
}

.look-card { position: relative; display: block; overflow: hidden; background: var(--bone-soft); }

.look-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.look-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 1.3s var(--ease), filter 0.9s var(--ease);
}

.look-card:hover .look-card-media img { transform: scale(1.05); filter: grayscale(100%) contrast(1.12) brightness(0.78); }

.look-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 16, 14, 0.72), transparent 58%);
}

.look-card-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  color: var(--bone);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.look-card-title {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.1;
}

.look-card-meta {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.look-card-meta::after {
  content: "";
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.6s var(--ease);
}

.look-card:hover .look-card-meta::after { width: 28px; }

/* tall variant for masonry feel */
.look-card.tall .look-card-media { aspect-ratio: 3 / 4.6; }

/* ==========================================================================
   CATEGORY LIST (informational, boutique only)
   ========================================================================== */
.cat-list { border-top: 1px solid var(--line); }

.cat-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.6rem;
  align-items: baseline;
  padding: clamp(1.5rem, 3vw, 2.4rem) 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.5s var(--ease);
  position: relative;
}

@media (min-width: 860px) {
  .cat-row { grid-template-columns: 4.5rem 1.1fr 1.4fr auto; align-items: center; }
}

.cat-row:hover { background: var(--bone); }

.cat-num {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--mute);
}

.cat-name {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.12;
}

.cat-note {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--graphite);
  line-height: 1.62;
}

.cat-flag {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(23, 55, 44, 0.28);
  padding: 0.4rem 0.75rem;
  white-space: nowrap;
  justify-self: start;
}

/* ==========================================================================
   MILL / FABRIC MARQUEE
   ========================================================================== */
.mills {
  background: var(--green-deep);
  color: var(--bone);
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  overflow: hidden;
}

.mills-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
  padding-inline: var(--pad);
}

.marquee {
  position: relative;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
}

.marquee::-webkit-scrollbar { display: none; }

.marquee.is-dragging { cursor: grabbing; }

.marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-inline: clamp(2.5rem, 6vw, 6rem);
  animation: marqueeScroll 42s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track,
.marquee.is-dragging .marquee-track { animation-play-state: paused; }

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

.mill {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  opacity: 0.82;
  transition: opacity 0.5s var(--ease);
  user-select: none;
}

.mill:hover { opacity: 1; }

.mill-name {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.6vw, 2.05rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.mill-origin {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.72);
}

.mills-foot {
  text-align: center;
  margin-top: clamp(2rem, 5vw, 3.4rem);
  padding-inline: var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}



/* "selection only" disclaimer */
.selection-note {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.12rem, 1.5vw, 1.26rem);
  line-height: 1.7;
  color: rgba(244, 241, 234, 0.82);
  max-width: 62ch;
  margin-inline: auto;
}

.selection-note.on-light { color: var(--graphite); }

.marquee-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.42);
}

/* ==========================================================================
   QUOTE BAND
   ========================================================================== */
.band {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: var(--bone);
}

.band-media { position: absolute; inset: 0; }

.band-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.5) contrast(1.1);
}

.band-inner {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 8vw, 6rem) var(--pad);
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.band-quote {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4.4vw, 3.6rem);
  line-height: 1.18;
}

/* ==========================================================================
   BUTTONS / LINKS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.63rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 1.05rem 2rem;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  transition: all 0.5s var(--ease);
  align-self: flex-start;
}

.btn:hover { background: var(--ink); color: var(--bone); }

.btn.on-dark { border-color: rgba(244, 241, 234, 0.5); color: var(--bone); }
.btn.on-dark:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

.btn.solid { background: var(--ink); color: var(--bone); }
.btn.solid:hover { background: var(--green); border-color: var(--green); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.63rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid currentColor;
  transition: gap 0.4s var(--ease);
}

.link-arrow:hover { gap: 1.2rem; }

/* ==========================================================================
   PAGE HERO (subpages)
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-deep);
  color: var(--bone);
}

.page-hero-media { position: absolute; inset: 0; }

.page-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.62) contrast(1.08);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad) clamp(2.5rem, 6vh, 4.5rem);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-hero-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 8vw, 6rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ==========================================================================
   LOOKBOOK FILTER
   ========================================================================== */
.filter-bar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 1rem var(--pad);
}

.filter-bar::-webkit-scrollbar { display: none; }

.filter-btn {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 0.6rem 1rem;
  position: relative;
  transition: color 0.4s var(--ease);
}

.filter-btn::after {
  content: "";
  position: absolute;
  left: 1rem; right: 1rem; bottom: 0.25rem;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform 0.45s var(--ease);
}

.filter-btn:hover { color: var(--ink); }
.filter-btn.is-active { color: var(--ink); }
.filter-btn.is-active::after { transform: scaleX(1); }

/* editorial masonry-ish lookbook layout */
.lookbook-set { margin-bottom: clamp(3rem, 8vw, 6rem); }

.set-head {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: clamp(1.6rem, 3.5vw, 2.6rem);
  max-width: 640px;
}

.plate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.6rem, 1.6vw, 1.6rem);
}

@media (min-width: 900px) {
  .plate-grid { grid-template-columns: repeat(6, 1fr); }
  .plate.w3 { grid-column: span 3; }
  .plate.w2 { grid-column: span 2; }
  .plate.w4 { grid-column: span 4; }
  .plate.w6 { grid-column: span 6; }
}

.plate { position: relative; overflow: hidden; background: var(--bone-soft); }

.plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 1.4s var(--ease);
}

.plate:hover img { transform: scale(1.04); }

.plate.r-portrait { aspect-ratio: 3 / 4; }
.plate.r-square { aspect-ratio: 1 / 1; }
.plate.r-wide { aspect-ratio: 16 / 10; }

.plate-caption {
  position: absolute;
  left: 0; bottom: 0;
  padding: 1rem 1.2rem;
  color: var(--bone);
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(12, 16, 14, 0.75), transparent);
  width: 100%;
}

/* ==========================================================================
   ATELIER SERVICE BLOCKS
   ========================================================================== */
.service {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-block: clamp(2.5rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
  align-items: center;
}

@media (min-width: 900px) {
  .service { grid-template-columns: 0.9fr 1.1fr; }
  .service.flip .service-media { order: 2; }
}

.service-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }

.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.04);
  transition: transform 1.4s var(--ease);
}

.service:hover .service-media img { transform: scale(1.05); }

.service-body { display: flex; flex-direction: column; gap: 1.1rem; }

.spec-list {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.spec-list li {
  display: flex;
  gap: 0.85rem;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--graphite);
  line-height: 1.6;
}

.spec-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 1px;
  background: var(--brass);
  margin-top: 0.85em;
}

/* ==========================================================================
   SHOE CONFIGURATOR
   ========================================================================== */
.configurator {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  background: var(--bone);
  padding: clamp(1.8rem, 4vw, 3.5rem);
}

@media (min-width: 960px) {
  .configurator { grid-template-columns: 1fr 1fr; align-items: start; }
}

.config-preview {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.config-stage {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper);
}

.config-stage img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: filter 0.8s var(--ease);
}

.config-swatch-strip {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--graphite);
}

.config-summary {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  display: grid;
  gap: 0.5rem;
}

.config-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
}

.config-summary-row strong {
  font-weight: 400;
  color: var(--ink);
  text-align: right;
}

.config-group { margin-bottom: 1.8rem; }

.config-group-label {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.9rem;
}

.config-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.config-chip {
  border: 1px solid var(--line);
  background: transparent;
  padding: 0.62rem 1.05rem;
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite);
  transition: all 0.4s var(--ease);
}

.config-chip:hover { border-color: var(--ink); color: var(--ink); }

.config-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bone);
}

.config-leathers { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.leather-chip {
  border: 1px solid var(--line);
  background: transparent;
  padding: 0.4rem 0.7rem 0.4rem 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite);
  transition: all 0.4s var(--ease);
}

.leather-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12);
}

.leather-chip:hover { border-color: var(--ink); color: var(--ink); }
.leather-chip.is-active { border-color: var(--ink); color: var(--ink); background: var(--paper); }

/* ==========================================================================
   ACCESSORIES STRIP
   ========================================================================== */
.acc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.acc-item {
  background: var(--paper);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: background 0.5s var(--ease);
}

.acc-item:hover { background: var(--bone); }

.acc-name {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.15;
}

.acc-note {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--graphite);
  line-height: 1.6;
}

/* ==========================================================================
   BOUTIQUE / ENQUIRY
   ========================================================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
}

.info-block { display: flex; flex-direction: column; gap: 0.5rem; }

.info-label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
}

.info-value {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
}

.info-value a { border-bottom: 1px solid var(--line); }
.info-value a:hover { border-color: var(--ink); }

/* form */
.enquiry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

@media (min-width: 720px) {
  .enquiry { grid-template-columns: 1fr 1fr; }
  .enquiry .field-wide { grid-column: 1 / -1; }
}

.field { display: flex; flex-direction: column; gap: 0.45rem; }

.field label {
  font-size: 0.57rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mute);
}

.field input,
.field select,
.field textarea {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
  transition: border-color 0.4s var(--ease);
  border-radius: 0;
  width: 100%;
}

.field select { appearance: none; cursor: pointer; }

.field textarea { resize: vertical; min-height: 96px; }

.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--ink); }

.form-note {
  font-size: 0.78rem;
  color: var(--mute);
  line-height: 1.6;
  font-family: var(--serif);
}

.form-status {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  display: none;
  font-family: var(--serif);
}

.form-status.is-visible { display: block; }
.form-status.is-ok { border-color: var(--green); color: var(--green); background: rgba(23,55,44,0.05); }
.form-status.is-err { border-color: #9a3b2f; color: #9a3b2f; background: rgba(154,59,47,0.05); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--green-deep);
  color: var(--bone);
  padding: clamp(3.5rem, 8vw, 6rem) 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line-dark);
}

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

.footer-brand { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }

.footer-mark { width: 56px; filter: brightness(0) invert(1); opacity: 0.9; }

.footer-word {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.7);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }

.footer-col a, .footer-col span {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.16rem;
  color: rgba(244, 241, 234, 0.92);
  transition: color 0.4s var(--ease);
}

.footer-col a:hover { color: var(--bone); }

.footer-bottom {
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.62);
}

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

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

.reveal-d1 { transition-delay: 0.09s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.27s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .hero-media img { animation: none; transform: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .site-nav, .header-cta { display: none; }
  .burger { display: block; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }

  .brand-word { font-size: 0.82rem; letter-spacing: 0.24em; }
  .brand-mark { width: 32px; height: 32px; }

  .hero { min-height: 92svh; }
  .hero-foot { flex-direction: column; align-items: flex-start; }

  .split-media { min-height: 54vh; }

  .cat-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .cat-num { order: -1; }

  .btn { width: 100%; justify-content: space-between; }

  .config-preview { position: static; }

  .footer-bottom { flex-direction: column; }
}
