/* ============================================================
   Sole Culture — Global Stylesheet
   Design system: Sole Culture Design System
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wdth,wght@0,75..125,100..900;1,75..125,100..900&family=Manrope:wght@400;500;600&display=swap");

/* ---- Design Tokens ---- */
:root {
  /* Grounds */
  --ink:            #0B0B0C;
  --ink-raised:     #16161A;
  --chalk:          #F5F4F0;
  --stone:          #E8E5DD;
  --paper:          #FFFFFF;

  /* Structure */
  --outline:        #121212;
  --outline-soft:   rgba(18,18,18,0.12);
  --text-on-ink:    #F5F4F0;
  --text-on-light:  #121212;
  --muted-on-light: #6E6A60;
  --muted-on-ink:   rgba(245,244,240,0.62);

  /* Heritage palette — sole/reveal use only, never UI chrome */
  --heritage-red:   #C5372C;
  --heritage-gold:  #D99A1E;
  --heritage-green: #1E7A4D;
  --heritage-blue:  #1C5C97;
  --heritage-pink:  #D26B96;
  --accent:         var(--heritage-gold);

  /* Typography */
  --font-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, -apple-system, sans-serif;
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;

  /* Type scale */
  --display-xl-size:    clamp(3rem, 8vw, 7rem);
  --display-xl-track:   -0.02em;
  --display-xl-leading: 1.0;
  --display-l-size:     clamp(2.25rem, 5vw, 4rem);
  --display-l-track:    -0.02em;
  --display-l-leading:  1.05;
  --h2-size:    clamp(1.5rem, 3vw, 2.25rem);
  --h2-track:   -0.01em;
  --h2-leading: 1.1;
  --h3-size:    1.25rem;
  --h3-leading: 1.25;
  --body-l-size:    1.125rem;
  --body-l-leading: 1.6;
  --body-size:    1rem;
  --body-leading: 1.6;
  --small-size:    0.875rem;
  --small-leading: 1.5;
  --label-size:    0.75rem;
  --label-track:   0.16em;
  --label-leading: 1;
  --measure: 68ch;

  /* Spacing — 8px base */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Geometry — hard edges are a brand rule */
  --radius:       0px;
  --radius-input: 2px;
  --keyline:      1.5px solid var(--outline);
  --hairline:     1px solid var(--outline-soft);

  /* Layout */
  --max-content: 1320px;
  --gutter: clamp(20px, 5vw, 80px);

  /* Motion */
  --ease-reveal:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-slow: 900ms;
  --dur:      500ms;
  --dur-fast: 220ms;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-slow: 1ms;
    --dur:      1ms;
    --dur-fast: 1ms;
  }
}

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

body {
  margin: 0;
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6, p, figure { margin: 0; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }
input, select, textarea { font: inherit; }

::selection { background: var(--heritage-gold); color: #0B0B0C; }

/* ---- Typography helpers ---- */
.t-display-xl {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--display-xl-size);
  letter-spacing: var(--display-xl-track);
  line-height: var(--display-xl-leading);
  font-stretch: 125%;
}
.t-display-l {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--display-l-size);
  letter-spacing: var(--display-l-track);
  line-height: var(--display-l-leading);
  font-stretch: 125%;
}
.t-h2 {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--h2-size);
  letter-spacing: var(--h2-track);
  line-height: var(--h2-leading);
  font-stretch: 125%;
}
.t-h3 {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: var(--h3-size);
  line-height: var(--h3-leading);
}
.t-body-l {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: var(--body-l-size);
  line-height: var(--body-l-leading);
}
.t-body {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: var(--body-size);
  line-height: var(--body-leading);
}
.t-small {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: var(--small-size);
  line-height: var(--small-leading);
}
.t-label {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: var(--label-size);
  letter-spacing: var(--label-track);
  line-height: var(--label-leading);
  text-transform: uppercase;
}

/* ---- Wordmark / display title ---- */
.wordmark {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-stretch: 125%;
  letter-spacing: 0.06em;
  line-height: 1;
}

/* ---- Gold accent line ---- */
.gold-line {
  display: inline-block;
  flex-shrink: 0;
  width: 22px;
  height: 2px;
  background: var(--heritage-gold);
}
.gold-line--sm { width: 18px; }

/* ---- Eyebrow row ---- */
.eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    background var(--dur-fast) var(--ease-standard),
    color var(--dur-fast) var(--ease-standard);
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }

/* on-ink: chalk fill, inverts on hover */
.btn--on-ink {
  background: var(--chalk);
  color: var(--ink);
  border-color: var(--chalk);
}
.btn--on-ink:hover {
  background: transparent;
  color: var(--chalk);
}

/* primary: outline fill, inverts on hover */
.btn--primary {
  background: var(--outline);
  color: var(--chalk);
  border-color: var(--outline);
}
.btn--primary:hover {
  background: transparent;
  color: var(--outline);
}

/* text-link style */
.btn--text-link {
  background: none;
  border: none;
  padding: 6px 0;
  color: var(--chalk);
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  text-transform: none;
  border-bottom: 1.5px solid rgba(245,244,240,0.45);
  cursor: pointer;
}
.btn--text-link:hover { border-bottom-color: var(--chalk); }

/* Sizes */
.btn--sm { font-size: 0.75rem;   padding: 10px 20px; }
.btn--md { font-size: 0.8125rem; padding: 14px 28px; }
.btn--lg { font-size: 0.875rem;  padding: 18px 36px; }

/* Focus ring */
*:focus-visible {
  outline: 2px solid var(--outline);
  outline-offset: 2px;
}

/* ---- Layout helpers ---- */
.container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-4);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(11,11,12,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,244,240,0.12);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 14px var(--gutter);
}
.site-nav__wordmark-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-right: auto;
}
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

/* Menu button */
.nav-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  margin-right: calc(-1 * var(--space-2));
}
.nav-menu-btn__line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--chalk);
  transition: opacity var(--dur-fast) var(--ease-standard);
}
.nav-menu-btn:hover .nav-menu-btn__line { opacity: 0.6; }

/* Fullscreen nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease-standard);
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 14px var(--gutter) clamp(32px, 6vw, 64px);
}
.nav-overlay__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-7);
  border-bottom: 1px solid rgba(245,244,240,0.12);
}
.nav-overlay__close {
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
  padding: 0;
  flex-shrink: 0;
}
.nav-overlay__close span {
  position: absolute;
  width: 20px;
  height: 1.5px;
  background: var(--chalk);
  top: 50%;
  left: 50%;
}
.nav-overlay__close span:first-child  { transform: translate(-50%,-50%) rotate(45deg); }
.nav-overlay__close span:last-child   { transform: translate(-50%,-50%) rotate(-45deg); }
.nav-overlay__links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-8) 0;
}
.nav-overlay__link {
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 200;
  font-stretch: 112%;
  color: var(--chalk);
  text-align: left;
  cursor: pointer;
  padding: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
  transition: opacity var(--dur-fast) var(--ease-standard);
}
.nav-overlay__link:hover { opacity: 0.5; }
.nav-overlay__footer {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(245,244,240,0.12);
}
.nav-overlay__email {
  color: var(--muted-on-ink);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.nav-overlay__email:hover { color: var(--chalk); }

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100dvh - 58px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(11,11,12,0.55) 0%,
      rgba(11,11,12,0.08) 30%,
      rgba(11,11,12,0)    60%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding:
    clamp(28px, 5vw, 48px)
    var(--gutter)
    clamp(40px, 7vw, 84px);
}
.hero__inner { max-width: 700px; }

.hero__h1 {
  color: var(--chalk);
  margin: 0 0 var(--space-5);
  max-width: 14ch;
  text-wrap: balance;
}
.hero__sub {
  color: rgba(245,244,240,0.88);
  max-width: 50ch;
  margin: 0 0 var(--space-7);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  align-items: center;
  margin-bottom: var(--space-7);
}
.hero__scarcity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Mobile editorial band (hidden on desktop) */
.mobile-editorial {
  display: none;
  background: var(--ink);
}
.mobile-editorial__img {
  display: block;
  width: 100%;
  height: 100vw;
  object-fit: cover;
  object-position: center 20%;
}
@media (max-width: 768px) {
  .mobile-editorial { display: block; }
}

/* ============================================================
   SECTION 2 — BRAND STATEMENT
   ============================================================ */
.statement-section {
  background: var(--ink);
  padding: clamp(80px, 14vw, 160px) var(--gutter);
  display: flex;
  align-items: center;
  min-height: 80vh;
  border-top: 1px solid rgba(245,244,240,0.08);
}
.statement-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: end;
}
.statement-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 200;
  font-stretch: 112%;
  color: var(--chalk);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0;
}
.statement-body-group {
  padding-bottom: 0.5em;
}
.statement-body-group p {
  color: var(--muted-on-ink);
  font-size: var(--body-l-size);
  line-height: var(--body-l-leading);
  margin: 0 0 var(--space-5);
}
.statement-body-group p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .statement-inner {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
}

/* ============================================================
   SECTION 3 — SIGNATURE REVEAL
   ============================================================ */
.reveal-section {
  background: var(--ink);
  border-top: 1px solid rgba(245,244,240,0.12);
  padding: clamp(56px, 9vw, 128px) var(--gutter);
  scroll-margin-top: 80px;
}
.reveal-grid {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.reveal-copy h2 {
  color: var(--chalk);
  margin: 0 0 var(--space-7);
}
.reveal-copy p {
  color: var(--muted-on-ink);
  max-width: 48ch;
  margin-bottom: var(--space-5);
}
.reveal-copy p:last-child { margin-bottom: 0; }
.reveal-close {
  border-top: 1px solid rgba(245,244,240,0.12);
  padding-top: var(--space-6);
  margin-top: var(--space-3) !important;
}

.reveal-stage-wrap {
  display: flex;
  justify-content: center;
}
.reveal-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  border: 1.5px solid rgba(245,244,240,0.22);
  background: var(--ink);
}
.reveal-badge {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}
.reveal-badge span {
  display: inline-block;
  padding: 6px 10px;
  background: var(--outline);
  color: var(--chalk);
}

/* The surface that clips away to expose the pattern */
.sole-surface {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--ink);
  clip-path: inset(0 0 0 0);
  transition: clip-path var(--dur-slow) var(--ease-reveal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.sole-surface.revealed {
  clip-path: inset(0 0 100% 0);
}
.sole-surface__line {
  width: 42px;
  height: 2px;
  background: rgba(245,244,240,0.5);
  display: block;
}
.sole-surface__hint {
  color: rgba(245,244,240,0.42);
  max-width: 22ch;
  text-align: center;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .sole-surface {
    transition: opacity var(--dur) var(--ease-standard);
    clip-path: none !important;
  }
  .sole-surface.revealed { opacity: 0; }
}

/* ============================================================
   HERITAGE PATTERNS (CSS sole geometry — placeholder)
   ============================================================ */
.heritage-pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heritage-pattern__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.heritage-pattern--coming-soon {
  background: var(--ink-raised);
}
.heritage-pattern svg {
  width: 100%;
  height: 100%;
}

/* ============================================================
   SECTION 3 — COLLECTIONS
   ============================================================ */
.collections-section {
  background: var(--ink);
  border-top: 1px solid rgba(245,244,240,0.12);
  padding: clamp(56px, 9vw, 128px) var(--gutter);
  scroll-margin-top: 80px;
}
.collections-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: clamp(32px, 5vw, 64px);
}
.collections-header__left { }
.collections-header h2 {
  color: var(--chalk);
  margin: 0;
  max-width: 18ch;
}
.collections-header__body {
  color: var(--muted-on-ink);
  max-width: 40ch;
  margin: 0;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-5);
}
.collection-card { display: flex; flex-direction: column; gap: var(--space-4); }
.collection-card__link {
  display: block;
  text-decoration: none;
  border: 1.5px solid var(--chalk);
  background: var(--ink-raised);
  padding: 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
}
.collection-card__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink);
}
.collection-card__label {
  position: absolute;
  z-index: 1;
  left: var(--space-4);
  bottom: var(--space-4);
  padding: 6px 10px;
  background: var(--outline);
  color: var(--chalk);
  font-size: 0.625rem;
}
.collection-card__hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--ink);
  clip-path: inset(0 0 0 0);
  transition: clip-path var(--dur-slow) var(--ease-reveal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
}
.collection-card__hover-line {
  width: 34px;
  height: 2px;
  background: rgba(245,244,240,0.4);
  display: block;
}
.collection-card__link:hover .collection-card__hover,
.collection-card__link:focus .collection-card__hover,
.collection-card__link.is-revealed .collection-card__hover {
  clip-path: inset(0 0 100% 0);
}
.collection-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4);
  border-top: 1.5px solid rgba(245,244,240,0.18);
}
.collection-card__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--chalk);
}
.collection-card__num {
  font-size: 0.625rem;
  white-space: nowrap;
  color: var(--muted-on-ink);
}
.collection-card__theme {
  color: var(--heritage-gold);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 var(--space-2);
}
.collection-card__desc {
  color: var(--muted-on-ink);
  margin: 0;
  max-width: 30ch;
}
.collections-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-5);
  margin-top: clamp(32px, 5vw, 56px);
}
.collections-disclaimer {
  color: rgba(245,244,240,0.42);
  max-width: 42ch;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .collection-card__hover {
    transition: opacity var(--dur) var(--ease-standard);
    clip-path: none !important;
  }
  .collection-card__link:hover .collection-card__hover,
  .collection-card__link:focus .collection-card__hover {
    opacity: 0;
  }
}

/* ============================================================
   SECTION 4 — BRAND STORY
   ============================================================ */
.story-section {
  background: var(--chalk);
  color: var(--outline);
  padding: clamp(64px, 10vw, 144px) var(--gutter);
  scroll-margin-top: 80px;
}
.story-inner {
  max-width: 760px;
  margin: 0 auto;
}
.story-section h2 {
  color: var(--outline);
  margin: 0 0 var(--space-8);
  max-width: 18ch;
}
.story-body-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.story-body-group p {
  color: var(--outline);
  margin: 0;
}
.story-pull {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--outline);
  margin: var(--space-9) 0;
  max-width: 20ch;
}
.story-divider {
  margin-top: var(--space-9);
  padding-top: var(--space-7);
  border-top: 1.5px solid var(--outline);
}
.story-close {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--outline);
  margin: 0;
  max-width: 26ch;
}
.story-tagline {
  color: var(--muted-on-light);
  margin: var(--space-5) 0 0;
}

/* ============================================================
   COLORS BAND
   ============================================================ */
.colors-section {
  background: var(--ink);
  position: relative;
}
.colors-section__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: cover;
  object-position: center;
}
.colors-section__caption {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* ============================================================
   LIFESTYLE BAND
   ============================================================ */
.lifestyle-band {
  background: var(--ink);
  padding: 0;
}
.lifestyle-band__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 78vh;
  overflow: hidden;
  border-top: 1px solid rgba(245,244,240,0.12);
  border-bottom: 1px solid rgba(245,244,240,0.12);
}
.lifestyle-band__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

/* ============================================================
   SECTION 5 — CRAFTSMANSHIP
   ============================================================ */
.craft-section {
  background: var(--chalk);
  color: var(--outline);
  padding: clamp(64px, 10vw, 144px) var(--gutter);
  scroll-margin-top: 80px;
}
.craft-header {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.craft-header h2 {
  color: var(--outline);
  margin: 0 0 var(--space-6);
}
.craft-header p {
  color: var(--outline);
  margin: 0;
  max-width: 44ch;
}
.craft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}
.craft-grid figure { margin: 0; }
.craft-grid figcaption {
  color: var(--outline);
  margin-top: var(--space-4);
}
.craft-placeholder {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1.5px solid var(--outline);
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
  overflow: hidden;
}
.craft-placeholder--diagonal {
  background: repeating-linear-gradient(
    135deg,
    #efece6 0 9px,
    #e7e3da 9px 18px
  );
}
.craft-placeholder--vertical {
  background: repeating-linear-gradient(
    90deg,
    #efece6 0 1px,
    #e7e3da 1px 14px
  );
}
.craft-placeholder--sole {
  background: var(--chalk);
}
.craft-placeholder__overlay {
  position: absolute;
  inset: 0;
  background: rgba(245,244,240,0.62);
}

/* ============================================================
   SECTION 6 — RESERVATION FORM
   ============================================================ */
.reserve-section {
  background: var(--chalk);
  color: var(--outline);
  border-top: 1.5px solid var(--outline);
  padding: clamp(64px, 10vw, 144px) var(--gutter);
  scroll-margin-top: 80px;
}
.reserve-grid {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.reserve-sidebar {
  position: sticky;
  top: 96px;
}

@media (max-width: 768px) {
  .reserve-grid {
    grid-template-columns: 1fr;
  }
  .reserve-sidebar {
    position: static;
  }
}
.reserve-sidebar h2 {
  color: var(--outline);
  margin: 0 0 var(--space-6);
  max-width: 16ch;
}
.reserve-sidebar p {
  color: var(--outline);
  margin: 0 0 var(--space-7);
  max-width: 42ch;
}
.reserve-count-box {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  border: 1.5px solid var(--outline);
}
.reserve-count-box__num {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  color: var(--outline);
  font-variant-numeric: tabular-nums;
}
.reserve-count-box__label {
  color: var(--outline);
  max-width: 18ch;
}

/* Form */
#reservation-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
#reservation-form.sc-hidden { display: none; }

.form-section-label {
  display: block;
  color: var(--muted-on-light);
  margin-bottom: var(--space-4);
}
.form-divider {
  border-top: 1px solid var(--outline-soft);
  padding-top: var(--space-6);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field__label-text {
  color: var(--outline);
}
.sc-input {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--outline);
  background: var(--paper);
  border: 1.5px solid var(--outline);
  border-radius: var(--radius-input);
  padding: 13px 14px;
  outline: none;
  width: 100%;
  transition: box-shadow var(--dur-fast) var(--ease-standard);
}
.sc-input:focus { box-shadow: 0 0 0 2px var(--outline); }

.sc-select-wrap { position: relative; }
.sc-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--outline);
  pointer-events: none;
  font-size: 0.7rem;
}
.sc-select {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--outline);
  background: var(--paper);
  border: 1.5px solid var(--outline);
  border-radius: var(--radius-input);
  padding: 13px 36px 13px 14px;
  outline: none;
  width: 100%;
  cursor: pointer;
}
.sc-select:focus { box-shadow: 0 0 0 2px var(--outline); }

.error-msg {
  font-family: var(--font-body);
  font-size: var(--small-size);
  line-height: var(--small-leading);
  color: var(--heritage-red);
  min-height: 1.2em;
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--outline);
  flex-shrink: 0;
  cursor: pointer;
}
.form-consent__text {
  color: var(--outline);
  line-height: 1.5;
}

.submit-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  line-height: 1;
  background: var(--outline);
  color: var(--chalk);
  border: 1.5px solid var(--outline);
  border-radius: 0;
  padding: 18px 34px;
  cursor: pointer;
  transition:
    background var(--dur-fast) var(--ease-standard),
    color var(--dur-fast) var(--ease-standard);
}
.submit-btn:hover {
  background: transparent;
  color: var(--outline);
}
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-note {
  color: var(--muted-on-light);
  text-align: center;
}

/* Success state */
#form-success { display: none; }
#form-success.sc-visible { display: block; }

.success-box {
  border: 1.5px solid var(--outline);
  padding: clamp(28px, 5vw, 48px);
  background: var(--paper);
}
.success-box h3 {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--outline);
  margin: 0 0 var(--space-5);
}
.success-box p {
  color: var(--outline);
  margin: 0 0 var(--space-6);
  max-width: 40ch;
}
.success-box .form-note { text-align: left; }

/* ============================================================
   SECTION 7 — FAQ
   ============================================================ */
.faq-section {
  background: var(--chalk);
  color: var(--outline);
  border-top: 1px solid var(--outline-soft);
  padding: clamp(56px, 9vw, 128px) var(--gutter);
  scroll-margin-top: 80px;
}
.faq-grid {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.faq-grid h2 { color: var(--outline); margin: 0; max-width: 14ch; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { padding: var(--space-6) 0; border-top: 1px solid var(--outline-soft); }
.faq-item:first-child { border-top: 1.5px solid var(--outline); }
.faq-item:last-child  { border-bottom: 1.5px solid var(--outline); }
.faq-item h3 { color: var(--outline); margin: 0 0 var(--space-3); }
.faq-item p  { color: var(--outline); margin: 0; max-width: 54ch; }

/* ============================================================
   SECTION 8 — FINAL CAMPAIGN
   ============================================================ */
.campaign-section {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.campaign-section__bg {
  position: absolute;
  inset: 0;
}
.campaign-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}
.campaign-section__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,11,12,0.94) 8%,
    rgba(11,11,12,0.35) 55%,
    rgba(11,11,12,0.7)  100%
  );
}
.campaign-section__content {
  position: relative;
  max-width: var(--max-content);
  margin: 0 auto;
  padding:
    clamp(72px, 14vw, 200px)
    var(--gutter)
    clamp(56px, 9vw, 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.campaign-section h2 {
  color: var(--chalk);
  margin: 0 0 var(--space-3);
  max-width: 18ch;
}
.campaign-section h2:last-of-type { margin-bottom: var(--space-7); }

/* Countdown */
.countdown {
  display: flex;
  gap: clamp(16px, 4vw, 36px);
  margin-bottom: var(--space-7);
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.countdown__num {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1;
  color: var(--chalk);
  font-variant-numeric: tabular-nums;
}
.countdown__num--accent { color: var(--heritage-gold); }
.countdown__label {
  font-size: 0.5625rem;
  color: var(--muted-on-ink);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(245,244,240,0.12);
  padding: clamp(48px, 7vw, 96px) var(--gutter) clamp(36px, 5vw, 72px);
  color: var(--text-on-ink);
}
.footer-grid {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: var(--space-8);
}
.footer-col__wordmark {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--chalk);
  margin-bottom: var(--space-4);
}
.footer-col p { color: var(--muted-on-ink); margin: 0 0 var(--space-5); max-width: 30ch; }
.footer-col__caption { color: var(--muted-on-ink); }
.footer-col__nav { display: flex; flex-direction: column; gap: 12px; }
.footer-col__nav span { color: var(--chalk); }
.footer-col__nav-note { color: rgba(245,244,240,0.42); margin: var(--space-5) 0 0; max-width: 26ch; }
.footer-col__links { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  color: var(--chalk);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,244,240,0.24);
  padding-bottom: 2px;
  width: fit-content;
  transition: border-color var(--dur-fast) var(--ease-standard);
}
.footer-link:hover { border-color: var(--chalk); }
.footer-be-first p { color: var(--muted-on-ink); margin: 0 0 var(--space-5); max-width: 26ch; }
.footer-bottom {
  max-width: var(--max-content);
  margin: 0 auto;
  border-top: 1px solid rgba(245,244,240,0.12);
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span { color: rgba(245,244,240,0.42); }
.footer-legal-link {
  color: rgba(245,244,240,0.42);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer-legal-link:hover { color: var(--chalk); }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
#sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(11,11,12,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(245,244,240,0.16);
  padding: 10px var(--gutter);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta__label { color: var(--muted-on-ink); font-size: 0.5625rem; }
.sticky-cta__time {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1;
  color: var(--chalk);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
  #sticky-cta { display: flex; }
  /* give breathing room above the sticky bar */
  body { padding-bottom: 70px; }
}
