/* ============================================================
   SMOKEY MOUNTAIN LEATHERWORKS — STYLES
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Inter:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

/* Wildridge — bold vintage flared-serif display face (headlines carry the personality) */
@font-face {
  font-family: 'Wildridge';
  src: url('assets/fonts/AyrWildridgeBold.woff2') format('woff2'),
       url('assets/fonts/AyrWildridgeBold.woff') format('woff');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

/* ========================
   VARIABLES
   ======================== */
:root {
  --espresso:   #1A0D08;
  --bark:       #271510;
  --leather:    #6B3A20;
  --cognac:     #8B4A27;
  --brass:      #C49830;
  --cream:      #F0E2C4;
  --parchment:  #FBF5E8;
  --thread:     #D4B890;
  --sand:       #B89870;
  --muted-lt:   #7A6050;
  --header-h:   76px;
  --grain:      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.042'/%3E%3C/svg%3E");
}

/* ========================
   RESET + BASE
   ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: url(assets/leather-surface.jpg) 50% 50% / cover fixed no-repeat;
  background-color: #0E0604;
}
/* iOS/touch: fixed bg attachment broken — fall back to scroll */
@media (pointer: coarse) {
  html { background-attachment: scroll; }
}
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: transparent;
  color: var(--espresso);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
figure { margin: 0; }

/* Accessibility — visible keyboard focus on every interactive element */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip link — first tab stop, hidden until focused */
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 2000;
  background: var(--brass);
  color: var(--espresso);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 12px 20px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

.wrap { width: min(1180px, 92%); margin: 0 auto; }

/* Leather video — fixed, scrubbed frame-by-frame via scroll */
#leather-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Manifesto section — Smoky Mountains sunrise, same wash as the hero */
.manifesto-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.20;
  mix-blend-mode: screen;
}

@media (prefers-reduced-motion: reduce) {
  .manifesto-video, .hero-smokey, .section-smokey { display: none; }
  html { scroll-behavior: auto; }
  /* Reveal animations are skipped in JS under reduced-motion (see initReveal) */
}

/* ========================
   SCROLL STITCH CANVAS (injected by JS — both sides)
   Belt anatomy: burnished edge → crease → leather → hole → thread
   ======================== */
#stitch-left,
#stitch-right {
  position: fixed;
  top: 0;
  width: 48px;
  z-index: 40;
  pointer-events: none;
}
#stitch-left  { left:  0; }
#stitch-right { right: 0; }

@media (max-width: 600px) {
  #stitch-left, #stitch-right { width: 16px; } /* thin, hugging the edge (JS matches) */
}

/* ========================
   TYPOGRAPHY
   ======================== */
.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: 'Wildridge', Georgia, serif; font-weight: 400; }

.stitch-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 12px;
}
.stitch-rule::before,
.stitch-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, currentColor 0, currentColor 5px, transparent 5px, transparent 10px);
  opacity: 0.32;
}
.stitch-rule-label {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-head {
  text-align: center;
  margin-bottom: 52px;
  color: var(--espresso);
}
.section-head.light-head { color: var(--cream); }
.section-head.light-head .stitch-rule { color: var(--brass); }
.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-top: 12px;
}
.section-head.light-head h2 { color: var(--cream); }
.section-sub {
  font-size: 0.95rem;
  margin-top: 14px;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .section-sub { color: var(--muted-lt); }
.section-head.light-head .section-sub { color: rgba(240,226,196,0.65); }

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
  cursor: pointer;
  min-height: 44px; /* accessible touch target */
}
.btn-primary   { background: var(--leather);  color: var(--cream);    border-color: var(--cognac); }
.btn-primary:hover   { background: var(--cognac); }
.btn-ghost     { background: transparent;     color: var(--cream);    border-color: rgba(240,226,196,0.45); }
.btn-ghost:hover     { background: rgba(255,255,255,0.07); border-color: var(--cream); }
.btn-brass     { background: var(--brass);    color: var(--espresso); border-color: var(--brass); }
.btn-brass:hover     { filter: brightness(1.1); }
/* Leather-edge secondary — burnished double border + inset, reads tactile not default-web */
.btn-leather {
  background: rgba(26,13,8,0.35);
  color: var(--cream);
  border-color: rgba(196,152,48,0.5);
  box-shadow: inset 0 0 0 1px rgba(196,152,48,0.14), inset 0 1px 3px rgba(0,0,0,0.32);
}
.btn-leather:hover {
  background: rgba(196,152,48,0.12);
  border-color: var(--brass);
  box-shadow: inset 0 0 0 1px rgba(196,152,48,0.28), inset 0 1px 3px rgba(0,0,0,0.32);
}
.btn-xs {
  padding: 10px 18px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  min-height: 0;
  background: var(--leather);
  color: var(--cream);
  border-color: var(--cognac);
}
.btn-xs:hover { background: var(--cognac); }

/* ========================
   HEADER
   ======================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--espresso);
  background-image: var(--grain);
  border-bottom: 1px solid rgba(196,152,48,0.2);
  overflow: visible; /* let the oversized logo hang below the bar at the top */
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
  overflow: visible;
}
.logo-link { flex-shrink: 0; line-height: 0; overflow: visible; }
.logo-link img {
  height: 60px; width: auto;
  transform-origin: top left;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform 0.5s cubic-bezier(0.2,0.85,0.28,1), filter 0.3s;
  will-change: transform;
}
/* At the top of the page, the mark is large and drops below the bar; it
   settles into the nav as you scroll (JS toggles .at-top on the header). */
#site-header.at-top .logo-link img {
  transform: scale(1.8);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.6));
}
.logo-link:hover img { filter: drop-shadow(0 2px 14px rgba(196,152,48,0.35)); }
/* Once the final stitch is finished, the mark is pressed into the nav bar too */
#site-header .logo-link img.stitched {
  filter:
    brightness(0.55) sepia(0.34) contrast(1.06)
    drop-shadow(1px 1.5px 1px rgba(0,0,0,0.6))
    drop-shadow(-1px -1px 1px rgba(240,226,196,0.18));
}

.main-nav { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--thread);
  text-decoration: none;
  padding: 8px 11px;
  transition: color 0.18s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 10px; right: 10px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transition: transform 0.22s;
  transform-origin: left;
}
.main-nav a:hover { color: var(--cream); }
.main-nav a:hover::after { transform: scaleX(1); }

.btn-quote {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--leather);
  color: var(--cream);
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid var(--cognac);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
  position: relative;
}
.btn-quote::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px dashed rgba(240,226,196,0.2);
  pointer-events: none;
}
.btn-quote:hover { background: var(--cognac); }

.hamburger {
  display: none;
  background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--thread); margin: 5px 0; transition: all 0.28s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  background: var(--bark);
  border-top: 1px solid rgba(196,152,48,0.1);
}
.mobile-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--thread); text-decoration: none;
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover { color: var(--cream); background: rgba(255,255,255,0.03); }
.mobile-nav a.mobile-call { color: var(--brass); padding: 16px 24px; border-top: 1px solid rgba(196,152,48,0.18); border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--espresso);
}
/* Hands-stitching-leather video as the hero environment */
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 78% center; /* keep the needle + stitching action in frame */
  z-index: 0;
  /* warm the oxblood-red leather toward the brand's saddle brown */
  filter: saturate(0.7) sepia(0.28) brightness(0.98);
}
/* Warm cognac wash — pulls the oxblood-red leather toward the brand's saddle brown */
.hero-tint {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: var(--leather); /* #6B3A20 cognac/saddle */
  mix-blend-mode: multiply;
  opacity: 0.25;
}
/* Dark leather/coffee gradient: heavy left (behind copy) → clear over the image */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(95deg, rgba(14,6,4,0.96) 0%, rgba(14,6,4,0.8) 32%, rgba(14,6,4,0.3) 66%, rgba(14,6,4,0) 100%),
    linear-gradient(to top, rgba(14,6,4,0.65) 0%, rgba(14,6,4,0) 28%);
}
/* Shared Smoky Mountains overlay — 20% screen wash over plain leather sections */
.section-smokey {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.20;
  mix-blend-mode: screen;
}
/* About Caleb section — slightly stronger wash */
.story .section-smokey { opacity: 0.25; }
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
  padding: 110px 0;
}
/* Small, clean tracked kicker — not the editorial serif eyebrow */
.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.7rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--cream);
  margin-bottom: 22px;
  letter-spacing: 0.005em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  overflow-wrap: break-word;
}
.hero-sub {
  color: rgba(240,226,196,0.72);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 420px;
  line-height: 1.75;
  padding-bottom: 26px;
  border-bottom: 1px dashed rgba(196,152,48,0.22);
  text-wrap: pretty; /* never leave a single-word orphan on the last line */
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-spec {
  margin-top: 26px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212,184,144,0.55);
}

/* Engraved plaque near the lower image edge */
.hero-plaque {
  position: absolute;
  bottom: clamp(20px, 4vh, 40px);
  right: clamp(20px, 5vw, 64px);
  z-index: 2;
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sand);
  background: rgba(14,6,4,0.5);
  border: 1px solid rgba(196,152,48,0.4);
  padding: 11px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}


/* ========================
   WORK SECTION
   ======================== */
.work-section {
  background: rgba(251,245,232,0.91);
  padding: 60px 0 84px;   /* tighter top — continuous with the hero above */
  margin-top: -22px;      /* layer up under the hero so it reads as one object */
  position: relative;
  z-index: 3;
  overflow: hidden;
}
/* Stitched seam where the hero joins the work — the page is sewn together */
.work-section::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(107,58,32,0.5) 0 7px, transparent 7px 14px);
  z-index: 4;
}
.work-section .section-head h2 { margin-bottom: 8px; color: var(--espresso); }
.work-section .section-head .section-sub { color: var(--muted-lt); }
.work-section .stitch-rule { color: var(--muted-lt); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

.work-card {
  position: relative;
  overflow: hidden;
  background: var(--espresso);
  box-shadow: 0 0 0 1px rgba(196,152,48,0.16), 0 6px 24px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s, transform 0.3s;
}
.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(196,152,48,0.4), 0 12px 40px rgba(0,0,0,0.28);
}
.work-card::before {
  content: '';
  position: absolute; inset: 5px;
  border: 1px dashed rgba(196,152,48,0.14);
  z-index: 2; pointer-events: none;
}

.work-img { position: relative; overflow: hidden; }
.work-img img {
  width: 100%; height: 256px; object-fit: cover;
  transition: transform 0.55s ease;
}
.work-card:hover .work-img img { transform: scale(1.06); }

/* Hover reveal panel */
.work-hover {
  position: absolute; inset: 0;
  background: rgba(26,13,8,0.88);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
  pointer-events: none; /* don't intercept taps unless revealed on hover */
}
.work-card:hover .work-hover { opacity: 1; pointer-events: auto; }
.work-img { cursor: zoom-in; }

.work-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
  display: block;
}
.work-hover p {
  color: rgba(240,226,196,0.8);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 16px;
}

.work-label {
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(196,152,48,0.18);
  position: relative; z-index: 1;
}
.work-label h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 5px;
}
.work-label p {
  font-size: 0.875rem;
  color: rgba(212,184,144,0.72);
  margin: 0; line-height: 1.5;
}

.work-card-special .work-label h3 { color: var(--brass); }

/* ========================
   MANIFESTO DIVIDER
   ======================== */
.manifesto-divider {
  background:
    var(--grain),
    linear-gradient(rgba(14,6,4,0.74), rgba(14,6,4,0.74)),
    url(assets/leather-surface.jpg) center / cover no-repeat;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto-divider::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(107,58,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto-text {
  font-family: 'Wildridge', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 18px;
  position: relative;
}
.manifesto-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.88rem;
  color: rgba(212,184,144,0.55);
  letter-spacing: 0.08em;
  font-style: italic;
  position: relative;
}

/* ========================
   CRAFT SECTION — Cinematic process experience
   ======================== */
.craft-section {
  background: rgba(240,226,196,0.90);
  position: relative;
  overflow: hidden;
  padding: 0; /* cinematic handles its own padding */
}

/* ── Process intro — static leather panel ── */
.craft-cinematic {
  position: relative;
  overflow: hidden;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  padding: 72px 0 56px;
  background:
    var(--grain),
    linear-gradient(rgba(14,6,4,0.62), rgba(14,6,4,0.62)),
    url(assets/leather-surface.jpg) center / cover no-repeat;
}
.craft-cine-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(14,6,4,0.88) 0%,
    rgba(14,6,4,0.52) 35%,
    rgba(14,6,4,0.22) 100%
  );
}
.craft-cine-inner {
  position: relative; z-index: 2;
  max-width: 680px;
}
.craft-cine-eyebrow { color: var(--brass); margin-bottom: 20px; }
.craft-cine-headline {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 0.92;
  margin-bottom: 24px;
}
.craft-cine-sub {
  font-size: 1rem;
  color: rgba(240,226,196,0.62);
  max-width: 440px;
  line-height: 1.8;
}

/* ── Craftsmanship callouts ── */
.craft-details-band {
  padding: 64px 0;
  background:
    var(--grain),
    linear-gradient(rgba(14,6,4,0.80), rgba(14,6,4,0.80)),
    url(assets/leather-surface.jpg) center / cover no-repeat;
}
.craft-details-eyebrow { color: var(--brass); margin-bottom: 40px; text-align: center; }
.craft-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.craft-detail-item {
  text-align: center;
  padding: 28px 18px;
  border: 1px solid rgba(196,152,48,0.16);
  background: rgba(14,6,4,0.35);
}
.craft-detail-item h3 {
  font-family: 'Wildridge', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.craft-detail-item p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(240,226,196,0.62);
}

/* ── Ordering band ── */
.ordering-band {
  padding: 80px 0 72px;
}
.ordering-band .section-head h2 { color: var(--espresso); }
.ordering-band .stitch-rule { color: var(--muted-lt); }

/* Process grid (shared) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step { text-align: center; }
.step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.25em; color: var(--brass); margin-bottom: 8px;
  display: block;
}
.process-step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--espresso); margin-bottom: 10px;
}
.process-step p { font-size: 0.9rem; color: var(--muted-lt); line-height: 1.65; }

/* ========================
   GALLERY
   ======================== */
.gallery-section {
  background:
    var(--grain),
    linear-gradient(rgba(14,6,4,0.74), rgba(14,6,4,0.74)),
    url(assets/leather-surface.jpg) center / cover no-repeat;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.gallery-section .stitch-rule { color: var(--brass); }
.gallery-section .section-head h2 { color: var(--cream); }
.gallery-section-sub {
  color: rgba(212,184,144,0.6);
  font-size: 0.9rem;
  margin-top: 10px;
  font-style: italic;
}

/* ── Belt filter tabs ── */
.belt-filter {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin: 28px 0 2px;
}
.gfilter {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(212,184,144,0.7);
  background: rgba(26,13,8,0.3);
  border: 1px solid rgba(196,152,48,0.28);
  padding: 10px 18px; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.12s ease;
  min-height: 40px;
}
.gfilter:hover { border-color: var(--brass); color: var(--cream); }
.gfilter:active { transform: scale(0.97); }
.gfilter.active { background: var(--brass); color: var(--espresso); border-color: var(--brass); }

/* ── The pieces mounted along a leather strap ── */
.belt-carousel {
  position: relative;
  margin-top: 28px;
  padding: 44px 0;
  background:
    linear-gradient(rgba(18,9,5,0.5), rgba(18,9,5,0.5)),
    url(assets/leather-surface.jpg) center / cover no-repeat;
  border-top: 3px solid rgba(0,0,0,0.45);
  border-bottom: 3px solid rgba(0,0,0,0.45);
  box-shadow: inset 0 16px 34px rgba(0,0,0,0.4), inset 0 -16px 34px rgba(0,0,0,0.4);
}
/* stitched seams running the length of the strap */
.belt-carousel::before, .belt-carousel::after {
  content: ''; position: absolute; left: 0; right: 0; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(150,102,62,0.6) 0 9px, transparent 9px 18px);
  z-index: 3; pointer-events: none;
}
.belt-carousel::before { top: 15px; }
.belt-carousel::after  { bottom: 15px; }

.belt-strap {
  display: flex;
  align-items: center;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 4px clamp(20px, 7vw, 90px);
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.belt-strap::-webkit-scrollbar { display: none; }
.belt-strap.dragging { cursor: grabbing; scroll-behavior: auto; }

.belt-piece {
  flex: 0 0 auto;
  width: clamp(190px, 22vw, 270px);
  scroll-snap-align: center;
  cursor: zoom-in;
  margin: 0;
  position: relative;
}
/* Brass rivet set into the strap between each piece — domed, catches light upper-left */
.belt-piece:not(:first-child)::before {
  content: '';
  position: absolute;
  left: -11px; top: 42%;
  transform: translate(-50%, -50%);
  width: 15px; height: 15px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #f6e6ab 0%, #d9ad42 34%, #a67c24 66%, #5c4310 100%);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.7),
    inset 0 -1px 2px rgba(0,0,0,0.35),
    inset 0 1px 1px rgba(255,244,214,0.55);
  z-index: 4;
  pointer-events: none;
}
.belt-piece-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(196,152,48,0.3);
  box-shadow: 0 16px 34px rgba(0,0,0,0.55);
  background: var(--espresso);
}
.belt-piece-frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(0.05) contrast(1.03);
  transition: transform 0.5s ease;
}
.belt-piece:hover .belt-piece-frame img { transform: scale(1.06); }
.belt-piece-frame::after {
  content: ''; position: absolute; inset: 8px;
  border: 1px dashed rgba(240,226,196,0.18);
  pointer-events: none;
}
.belt-piece-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--thread); text-align: center; margin-top: 14px;
}
.belt-piece.hidden { display: none; }

/* arrows */
.belt-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(18,9,5,0.9);
  border: 1px solid rgba(196,152,48,0.45);
  color: var(--cream); font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.12s ease;
}
.belt-arrow:hover { background: rgba(196,152,48,0.2); border-color: var(--brass); }
.belt-arrow:active { transform: translateY(-50%) scale(0.94); }
.belt-prev { left: clamp(6px, 2vw, 24px); }
.belt-next { right: clamp(6px, 2vw, 24px); }

.belt-note { text-align: center; margin-top: 24px; color: rgba(212,184,144,0.55); }

/* ========================
   LIGHTBOX
   ======================== */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,4,2,0.97);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.lightbox.active { display: flex; }

.lb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 92vw;
}

/* Zoom container */
.lb-zoom-wrap {
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  max-width: 82vw;
  max-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196,152,48,0.12);
  box-shadow: 0 0 80px rgba(0,0,0,0.9);
}
.lb-zoom-wrap.is-zoomed { cursor: grab; }
.lb-zoom-wrap.is-zoomed.is-dragging { cursor: grabbing; }

#lb-img {
  display: block;
  max-width: 82vw;
  max-height: 72vh;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.22s ease;
  user-select: none;
  pointer-events: none;
}
#lb-img.no-transition { transition: none; }

.lb-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.lb-inspect-hint {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(212,184,144,0.42);
  margin-bottom: 2px;
  transition: opacity 0.3s;
}
.lb-inspect-hint.hidden { opacity: 0; }
.lb-inspect-hint svg { opacity: 0.6; flex-shrink: 0; }
.lb-category {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}
.lb-desc {
  font-size: 0.9rem;
  color: rgba(212,184,144,0.68);
  font-style: italic;
  margin-bottom: 10px;
}
.lb-provenance {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(196,152,48,0.6);
  border: 1px solid rgba(196,152,48,0.28);
  padding: 6px 14px;
  margin: 4px 0 12px;
}
.lb-cta { font-size: 0.82rem; padding: 12px 24px; }

.lb-close {
  position: absolute; top: 20px; right: 26px;
  background: none;
  border: 1px solid rgba(240,226,196,0.3);
  color: var(--cream); font-size: 1.5rem;
  width: 42px; height: 42px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  line-height: 1;
  z-index: 10;
}
.lb-close:hover { border-color: var(--cream); background: rgba(255,255,255,0.06); }

/* Prev / Next */
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid rgba(240,226,196,0.22);
  color: var(--cream); font-size: 2.2rem; line-height: 1;
  width: 52px; height: 72px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  z-index: 10;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-nav:hover { border-color: rgba(240,226,196,0.55); background: rgba(255,255,255,0.04); }
.lb-nav:disabled { opacity: 0.2; pointer-events: none; }

/* Gallery hover — magnifying glass cue */
.gallery-overlay { cursor: zoom-in; }
.gallery-plus {
  font-size: 0; /* hide the + */
  width: 32px; height: 32px;
  border: 1px solid rgba(240,226,196,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.gallery-plus::after {
  content: '';
  display: block;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23F0E2C4' stroke-width='1.8'%3E%3Ccircle cx='8' cy='8' r='5'/%3E%3Cline x1='13' y1='13' x2='18' y2='18'/%3E%3C/svg%3E") center/contain no-repeat;
}
.gallery-item:hover .gallery-plus { border-color: var(--brass); background: rgba(196,152,48,0.15); }

/* ========================
   STORY
   ======================== */
.story {
  background:
    var(--grain),
    linear-gradient(rgba(14,6,4,0.72), rgba(14,6,4,0.72)),
    url(assets/leather-surface.jpg) center / cover no-repeat;
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.story::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 90%, rgba(107,58,32,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative; z-index: 1;
}
/* Photo left, text right */
.story-inner .story-img-wrap { order: 1; }
.story-inner .story-text { order: 2; }
.story-eyebrow { color: var(--brass); margin-bottom: 18px; }
.story h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800; color: var(--cream); line-height: 1;
  margin-bottom: 28px;
}
.story p {
  color: rgba(240,226,196,0.65);
  font-size: 0.97rem; line-height: 1.85; margin-bottom: 18px; max-width: 460px;
}
.story-quote {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3.4rem, 6.5vw, 5.6rem); color: var(--brass);
  font-weight: 700;
  margin-top: 36px; line-height: 1.15;
  border-left: 2px solid var(--leather);
  padding-left: 24px;
}
.story-img-wrap { position: relative; aspect-ratio: 3 / 2; }
.story-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 50%;
  filter: sepia(0.1) contrast(1.04);
}
.story-img-wrap::before {
  content: '';
  position: absolute; inset: -8px;
  border: 1px solid rgba(196,152,48,0.18);
  z-index: 1; pointer-events: none;
}
.story-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px dashed rgba(196,152,48,0.16);
  z-index: 2; pointer-events: none;
}
.story-watermark {
  position: absolute; right: -12px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Oswald', sans-serif;
  font-size: 0.48rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: rgba(196,152,48,0.09); font-weight: 700; white-space: nowrap;
  pointer-events: none; user-select: none;
}

/* ========================
   MATERIAL BREAK — Full-viewport hide before the hands touch it
   ======================== */
.material-break {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: url(assets/leather-hide.jpg) center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 12vh;
}

.material-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,6,4,0.88) 0%,
    rgba(14,6,4,0.45) 35%,
    rgba(14,6,4,0.08) 75%,
    rgba(14,6,4,0.0) 100%
  );
  pointer-events: none;
}

.material-break-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 0 clamp(24px, 6vw, 72px);
}

.material-break-eyebrow {
  color: var(--brass);
  margin-bottom: 20px;
}

.material-break-headline {
  font-family: 'Wildridge', serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 0.92;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.material-break-sub {
  font-size: 1rem;
  color: rgba(240,226,196,0.58);
  max-width: 400px;
  line-height: 1.8;
}

/* ========================
   COMMISSION FORM
   ======================== */
.commission-section {
  background: var(--espresso);
  background-image: var(--grain);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.commission-section .stitch-rule { color: var(--brass); }

.commission-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(39,21,16,0.7);
  border: 1px solid rgba(196,152,48,0.2);
  padding: 48px 52px;
  position: relative;
}
/* Stitched inset */
.commission-form-wrap::before {
  content: '';
  position: absolute; inset: 8px;
  border: 1px dashed rgba(196,152,48,0.1);
  pointer-events: none;
}
/* Corner conchos */
.commission-form-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 3.5px at 12px 12px, rgba(196,152,48,0.45) 50%, transparent 51%),
    radial-gradient(circle 3.5px at calc(100% - 12px) 12px, rgba(196,152,48,0.45) 50%, transparent 51%),
    radial-gradient(circle 3.5px at 12px calc(100% - 12px), rgba(196,152,48,0.45) 50%, transparent 51%),
    radial-gradient(circle 3.5px at calc(100% - 12px) calc(100% - 12px), rgba(196,152,48,0.45) 50%, transparent 51%);
  pointer-events: none;
}

/* Step dots */
.form-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}
.form-step-dot {
  width: 32px; height: 32px;
  border: 1px solid rgba(196,152,48,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: rgba(212,184,144,0.4);
  transition: all 0.3s;
  position: relative; z-index: 1;
  background: var(--espresso);
  flex-shrink: 0;
}
.form-step-dot.active {
  border-color: var(--brass);
  color: var(--brass);
  box-shadow: 0 0 0 3px rgba(196,152,48,0.12);
}
.form-step-dot.done {
  border-color: var(--leather);
  color: var(--leather);
  background: rgba(107,58,32,0.2);
}
.form-step-line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(196,152,48,0.2) 0, rgba(196,152,48,0.2) 4px, transparent 4px, transparent 8px);
  max-width: 80px;
}

/* Fieldsets / panels */
.form-panel { display: none; border: none; padding: 0; }
.form-panel.active { display: block; }

.form-legend {
  font-family: 'Wildridge', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.form-legend-num {
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--brass);
  padding-top: 8px;
}

/* Tile select (step 1) */
.form-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
.form-tile { cursor: pointer; }
.form-tile input { position: absolute; opacity: 0; width: 0; height: 0; }

.tile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  border: 1px solid rgba(196,152,48,0.18);
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}
.form-tile:hover .tile-content { border-color: rgba(196,152,48,0.5); background: rgba(196,152,48,0.05); }
.form-tile input:checked + .tile-content {
  border-color: var(--brass);
  background: rgba(196,152,48,0.1);
}
.tile-icon {
  font-size: 1.2rem;
  color: rgba(212,184,144,0.5);
  line-height: 1;
}
.form-tile input:checked + .tile-content .tile-icon { color: var(--brass); }
.tile-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212,184,144,0.7);
}
.form-tile input:checked + .tile-content .tile-name { color: var(--cream); }
.form-tile-wide { grid-column: 1 / -1; }
.form-tile-wide .tile-content { flex-direction: row; padding: 14px 20px; }
.form-tile-wide .tile-name { font-size: 0.82rem; }

/* Tag select (step 2) */
.form-hint {
  font-size: 0.9rem;
  color: rgba(212,184,144,0.58);
  font-style: italic;
  margin-bottom: 20px;
}
.form-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 32px;
}
.form-tag { cursor: pointer; }
.form-tag input { position: absolute; opacity: 0; width: 0; height: 0; }
.form-tag span {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212,184,144,0.7);
  padding: 11px 18px;
  border: 1px solid rgba(196,152,48,0.18);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.form-tag:hover span { border-color: rgba(196,152,48,0.5); color: var(--cream); }
.form-tag input:checked + span {
  border-color: var(--brass);
  background: rgba(196,152,48,0.12);
  color: var(--cream);
}

/* Text fields (step 3 & 4) */
.form-fields { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.form-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212,184,144,0.72);
}
.req { color: var(--brass); }
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(26,13,8,0.6);
  border: 1px solid rgba(196,152,48,0.22);
  color: var(--cream);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem; /* 16px — prevents iOS auto-zoom on focus */
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(196,152,48,0.25);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(212,184,144,0.3); font-style: italic; }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field select { cursor: pointer; }
.form-field select option { background: var(--bark); }

/* ── Optional photo upload ── */
.form-optional { color: rgba(212,184,144,0.45); font-size: 0.85em; letter-spacing: 0.08em; }
.upload-input { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.upload-drop {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  border: 1px dashed rgba(196,152,48,0.35);
  background: rgba(26,13,8,0.4);
  color: rgba(212,184,144,0.7);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.upload-drop:hover { border-color: var(--brass); color: var(--cream); background: rgba(196,152,48,0.06); }
.upload-drop svg { color: var(--brass); flex-shrink: 0; }
.upload-preview {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(196,152,48,0.28);
  background: rgba(26,13,8,0.5);
}
.upload-preview img {
  width: 54px; height: 54px; object-fit: cover;
  border: 1px solid rgba(196,152,48,0.3);
  flex-shrink: 0;
}
.upload-name {
  font-family: 'Oswald', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sand); flex: 1;
}
.upload-remove {
  background: none; border: 1px solid rgba(196,152,48,0.3);
  color: var(--thread); cursor: pointer;
  font-family: 'Oswald', sans-serif; font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 14px; transition: border-color 0.2s, color 0.2s;
}
.upload-remove:hover { border-color: var(--brass); color: var(--cream); }

/* Form nav */
.form-nav { display: flex; gap: 12px; align-items: center; }

/* Success state */
.form-success {
  text-align: center;
  padding: 48px 20px;
}
.success-mark {
  font-size: 2rem;
  color: var(--brass);
  margin-bottom: 20px;
}
.form-success h3 {
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 14px;
}
.form-success p {
  color: rgba(212,184,144,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}
.form-success a { color: var(--brass); }

/* Alt contact line */
.commission-alt {
  text-align: center;
  margin-top: 32px;
}
.commission-alt p {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212,184,144,0.5);
  margin-bottom: 12px;
}

/* ========================
   TRUST STRIP
   ======================== */
.trust-strip {
  background-color: rgba(14,6,4,0.83);
  border-top: 1px solid rgba(196,152,48,0.16);
  border-bottom: 1px solid rgba(196,152,48,0.16);
  padding: 28px 0;
  position: relative;
}
.trust-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 28px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon {
  width: 32px; height: 32px;
  stroke: var(--brass); stroke-width: 1.4;
  fill: none; flex-shrink: 0;
  stroke-linecap: round; stroke-linejoin: round;
}
.trust-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream); display: block; line-height: 1.2;
}
.trust-sub {
  font-size: 0.82rem; color: var(--sand); display: block;
  line-height: 1.3; margin-top: 2px;
}

/* ========================
   CONTACT
   ======================== */
.contact-section {
  background:
    var(--grain),
    linear-gradient(rgba(14,6,4,0.74), rgba(14,6,4,0.74)),
    url(assets/leather-surface.jpg) center / cover no-repeat;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.contact-inner {
  max-width: 580px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.contact-section h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800; color: var(--cream); margin-bottom: 10px;
  line-height: 1.05;
}
.contact-who {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 10px;
}
.contact-area {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.82rem; line-height: 1.6;
  color: rgba(240,226,196,0.5);
  max-width: 520px; margin: 0 auto 34px;
}
.contact-phone-link {
  display: inline-block;
  font-family: 'Wildridge', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--cream); text-decoration: none;
  margin-bottom: 10px; transition: color 0.2s;
}
.contact-phone-link:hover { color: var(--brass); }
.contact-note {
  font-size: 0.9rem;
  color: rgba(240,226,196,0.52);
  margin-bottom: 40px; line-height: 1.75; font-style: italic;
}
.contact-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========================
   FAQ — objection killer
   ======================== */
.faq-section {
  background-color: rgba(14,6,4,0.80);
  background-image: var(--grain);
  padding: 90px 0;
  position: relative;
}
.faq-section .stitch-rule { color: var(--brass); }
.faq-section .section-head h2 { color: var(--cream); }
.faq-section .section-sub { color: rgba(240,226,196,0.6); }

.faq-inner { max-width: 760px; margin: 0 auto; }

.faq-list {
  margin-top: 40px;
  border-top: 1px solid rgba(196,152,48,0.16);
}
.faq-item {
  border-bottom: 1px solid rgba(196,152,48,0.16);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brass); }
/* Plus/minus indicator */
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C49830' stroke-width='2.2' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--brass); }
.faq-body {
  padding: 0 4px 24px;
}
.faq-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(240,226,196,0.68);
  max-width: 640px;
}
.faq-body a { color: var(--brass); text-decoration: underline; text-underline-offset: 3px; }

.faq-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px dashed rgba(196,152,48,0.2);
}
.faq-cta-text {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212,184,144,0.55);
  margin-bottom: 18px;
}
.faq-cta-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ========================
   STICKY MOBILE ACTION BAR
   ======================== */
.mobile-action-bar {
  display: none; /* shown on mobile only via media query */
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300;
  background: rgba(20,10,6,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(196,152,48,0.28);
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
}
.mab-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 52px;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(196,152,48,0.3);
  color: var(--cream);
  padding: 6px 4px;
}
.mab-btn svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.mab-call { color: var(--thread); }
.mab-text { color: var(--thread); }
.mab-start {
  flex: 1.3;
  background: var(--brass);
  color: var(--espresso);
  border-color: var(--brass);
  letter-spacing: 0.08em;
}
.mab-btn:active { filter: brightness(0.9); }

/* ========================
   FOOTER — ONE LAST STITCH
   ======================== */
.last-stitch {
  position: relative;
  padding: clamp(60px, 9vw, 100px) 20px clamp(48px, 7vw, 80px);
  background:
    var(--grain),
    linear-gradient(rgba(14,6,4,0.72), rgba(14,6,4,0.82)),
    url(assets/leather-surface.jpg) center / cover no-repeat;
  border-top: 1px solid rgba(196,152,48,0.12);
  text-align: center;
  overflow: hidden;
}
.ls-panel {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.ls-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}
.ls-logo {
  width: clamp(120px, 15vw, 168px); height: auto;
  display: block;
  transition: filter 0.6s ease, transform 0.5s cubic-bezier(0.2,0.9,0.3,1), opacity 0.6s ease;
}
/* Pressed-in maker's mark — debossed into the leather (opposing shadows = depth) */
.ls-logo.stamped {
  filter:
    brightness(0.46) sepia(0.32) contrast(1.06)
    drop-shadow(1.5px 2px 1px rgba(0,0,0,0.6))
    drop-shadow(-1px -1.5px 1px rgba(240,226,196,0.18));
  opacity: 0.82;
}
.ls-emboss {
  position: absolute; inset: -12%;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  box-shadow:
    inset 2px 3px 6px rgba(0,0,0,0.6),
    inset -2px -2px 5px rgba(240,226,196,0.12),
    0 1px 1px rgba(240,226,196,0.08);
  transition: opacity 0.5s ease;
}
.ls-emboss.show { opacity: 1; }
@keyframes lsStamp {
  0%   { transform: scale(1.16); }
  55%  { transform: scale(0.97); }
  100% { transform: scale(1); }
}
.ls-logo.stamping { animation: lsStamp 0.5s cubic-bezier(0.2,0.9,0.3,1); }

.ls-title {
  font-family: 'Wildridge', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.ls-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  color: rgba(240,226,196,0.66);
  margin-bottom: 40px;
}

/* The seam the visitor sews shut */
.ls-seam {
  position: relative;
  height: 70px;
  max-width: 760px;
  margin: 0 auto 40px;
  cursor: grab;
  touch-action: pan-y;
  outline: none;
}
.ls-seam.dragging { cursor: grabbing; }
.ls-seam:focus-visible { box-shadow: 0 0 0 3px rgba(196,152,48,0.4); border-radius: 6px; }
#ls-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.ls-hint {
  position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(212,184,144,0.6);
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.ls-hint.hidden { opacity: 0; }
.ls-done {
  position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  white-space: nowrap;
}
.ls-done.show { opacity: 1; }

.ls-copy {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(196,152,48,0.42);
}

/* ========================
   MAKER'S NOTES — hand-margin annotations (reward curiosity)
   ======================== */
.makers-note {
  font-family: 'Inter', system-ui, sans-serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(212,184,144,0.62);
}
.gallery-note {
  margin-top: 14px;
  color: rgba(212,184,144,0.55);
}

/* ========================
   ON THE BENCH — living presence
   ======================== */
.on-bench {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 32px;
  padding: 11px 18px;
  border: 1px solid rgba(196,152,48,0.24);
  background: rgba(14,6,4,0.4);
  font-family: 'Oswald', sans-serif;
  max-width: 100%;
}
.on-bench-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(196,152,48,0.55);
  animation: benchPulse 2.6s ease-out infinite;
}
@keyframes benchPulse {
  0%   { box-shadow: 0 0 0 0 rgba(196,152,48,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(196,152,48,0); }
  100% { box-shadow: 0 0 0 0 rgba(196,152,48,0); }
}
.on-bench-label {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sand); white-space: nowrap;
}
.on-bench-piece {
  font-family: 'Inter', system-ui, sans-serif; font-style: italic;
  font-size: 0.95rem; color: var(--cream);
}
@media (prefers-reduced-motion: reduce) { .on-bench-dot { animation: none; } }

/* ========================
   WHY HAVE IT MADE — reasons + gift
   ======================== */
.why-section {
  background: rgba(251,245,232,0.93);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.why-item {
  padding: 30px 24px;
  border: 1px solid rgba(107,58,32,0.14);
  background: rgba(255,255,255,0.4);
  position: relative;
}
.why-num {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.3em;
  color: var(--brass); display: block; margin-bottom: 14px;
}
.why-item h3 {
  font-family: 'Wildridge', serif;
  font-size: 1.45rem; color: var(--espresso);
  margin-bottom: 12px;
}
.why-item p {
  font-size: 0.95rem; line-height: 1.7; color: var(--muted-lt);
}
.why-gift {
  margin-top: 44px;
  text-align: center;
  padding: 46px 28px;
  border: 1px solid rgba(196,152,48,0.3);
  background: rgba(26,13,8,0.92);
  background-image: var(--grain);
  position: relative;
}
.why-gift-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 14px;
}
.why-gift-line {
  color: rgba(240,226,196,0.82);
  font-size: 1.08rem; line-height: 1.75;
  max-width: 640px; margin: 0 auto 26px;
}

/* ========================
   MADE TO CHANGE WITH YOU — age/wear emotional spine
   ======================== */
.age-section {
  background:
    var(--grain),
    linear-gradient(rgba(14,6,4,0.82), rgba(14,6,4,0.82)),
    url(assets/leather-surface.jpg) center / cover no-repeat;
  padding: clamp(90px, 14vh, 150px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.age-inner { max-width: 720px; margin: 0 auto; }
.age-eyebrow { color: var(--brass); margin-bottom: 20px; }
.age-headline {
  font-family: 'Wildridge', serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 800; color: var(--cream);
  line-height: 0.95; margin-bottom: 26px;
}
.age-sub {
  font-size: 1.05rem; line-height: 1.85;
  color: rgba(240,226,196,0.68);
  max-width: 600px; margin: 0 auto 24px;
}
.age-note { margin-top: 8px; color: rgba(196,152,48,0.7); }

/* ========================
   MICRO-INTERACTIONS — pressed, seated, stamped (leatherwork feel)
   Motion expresses force, not float. Light source stays upper-left.
   ======================== */

/* Buttons press into the surface like a stamp */
.btn {
  transition: background 0.2s, color 0.2s, border-color 0.2s,
              transform 0.12s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px) scale(0.985); box-shadow: inset 0 2px 7px rgba(0,0,0,0.38); }

/* Form choices seat when chosen — the tab presses down and sets */
.tile-content { transition: border-color 0.2s, background 0.2s, transform 0.12s ease, box-shadow 0.16s ease; }
.form-tile:active .tile-content { transform: scale(0.98); }
.form-tile input:checked + .tile-content { box-shadow: inset 0 1px 5px rgba(0,0,0,0.28); }
.form-tag span { transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.12s ease; }
.form-tag:active span { transform: scale(0.96); }
.form-tag input:checked + span { box-shadow: inset 0 1px 4px rgba(0,0,0,0.25); }

/* Sticky bar buttons compress under the thumb */
.mab-btn { transition: filter 0.15s, transform 0.12s ease; }
.mab-btn:active { transform: translateY(1px) scale(0.98); }

/* Pieces settle under a press, like leather laid on the bench */
.belt-piece, .work-card { transition: box-shadow 0.3s, transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1); }
.belt-piece:active { transform: scale(0.985); }
.work-card:active { transform: translateY(-1px) scale(0.995); }

/* FAQ rows give slightly when opened */
.faq-item summary:active { transform: translateX(1px); }

/* Maker's stamp — the seal presses in on a finished commission */
@keyframes stampPress {
  0%   { transform: scale(1.6); opacity: 0; }
  55%  { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1);   opacity: 1; }
}
.form-success:not([hidden]) .success-mark {
  animation: stampPress 0.55s cubic-bezier(0.2, 0.9, 0.3, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover, .btn:active,
  .form-tile:active .tile-content, .form-tag:active span,
  .mab-btn:active, .belt-piece:active, .work-card:active,
  .faq-item summary:active { transform: none; }
  .form-success:not([hidden]) .success-mark { animation: none; }
}

/* ========================
   FROSTED FOG — soft-blur whatever shows through semi-transparent surfaces
   (no color change, just a slight diffusion of the background behind)
   ======================== */
.gfilter, .on-bench, .lb-provenance {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.btn-ghost, .btn-leather,
.commission-form-wrap, .why-item, .why-gift, .craft-detail-item,
.trust-strip, .faq-section {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

/* ========================
   RESPONSIVE — TABLET
   ======================== */
@media (max-width: 960px) {
  .main-nav, .btn-quote { display: none; }
  .hamburger { display: block; }

  /* Sticky action bar visible; pad page so it never covers content */
  .mobile-action-bar { display: flex; }
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }

  /* Cinematic mobile hero: image fills the screen, copy sits over the bottom */
  .hero { min-height: 86vh; align-items: flex-end; }
  .hero-bg-img { object-position: 72% center; filter: saturate(0.74) sepia(0.24) brightness(1.1); }
  .hero-tint { opacity: 0.18; }
  /* Needle sits high in the mobile crop — darken the bottom for the copy, clear above */
  .hero-scrim {
    background: linear-gradient(to top, rgba(14,6,4,0.96) 0%, rgba(14,6,4,0.85) 30%, rgba(14,6,4,0.35) 48%, rgba(14,6,4,0.05) 62%, rgba(14,6,4,0) 100%);
  }
  .hero-content { text-shadow: 0 1px 10px rgba(0,0,0,0.55); }
  .hero-content { max-width: 100%; padding: 0 0 56px; }
  .hero-eyebrow  { font-size: 0.64rem; letter-spacing: 0.18em; }
  .hero h1       { font-size: clamp(1.85rem, 6.5vw, 2.6rem); }
  .hero-sub      { max-width: 100%; }
  .hero-plaque   { display: none; }

  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .craft-details-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .on-bench { flex-wrap: wrap; }

  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-inner .story-img-wrap { order: -1; }

  .belt-piece { width: clamp(180px, 40vw, 240px); }

  .commission-form-wrap { padding: 36px 28px; }
  .form-tiles { grid-template-columns: repeat(2, 1fr); }
  .form-field-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .work-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .craft-details-grid { grid-template-columns: repeat(2, 1fr); }
  .belt-arrow { display: none; }  /* swipe on touch */
  .belt-piece { width: 74vw; max-width: 300px; }
  .belt-piece:not(:first-child)::before { left: -8px; }
  .belt-strap { padding: 4px 16px; gap: 16px; }
  .trust-inner { flex-direction: column; gap: 18px; }
  .form-tiles { grid-template-columns: 1fr 1fr; }
  .commission-form-wrap { padding: 28px 18px; }
  /* side stitching stays visible on mobile, hugging the edges (see initStitch) */
}
