/* ===================================================================
   ZERRE CUIR — stylesheet
   Palette: ink / bone / leather / oxblood / brass
   Signature: a dashed "stitch line" motif framing every full-bleed
   image and dividing sections — a nod to hand-stitched leather edges.
=================================================================== */

*{ margin:0; padding:0; box-sizing:border-box; }

:root{
  --ink:#15100b;
  --ink-soft:#221a12;
  --bone:#f3ece0;
  --bone-soft:#eae0cd;
  --leather:#6e3b26;
  --leather-dark:#4a2718;
  --oxblood:#7c2430;
  --brass:#b6905a;
  --camel:#c69a63;
  --lamb:#e6d9c3;
  --text:#241c15;
  --text-soft:#5c4d3d;

  --serif:'Cormorant Garamond', serif;
  --sans:'Inter', sans-serif;
}

html{ scroll-behavior:smooth; }

body{
  font-family:var(--sans);
  background:var(--bone);
  color:var(--text);
  overflow-x:hidden;
}

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

/* Kill the native "tap to play" affordance mobile browsers draw over an
   inline <video> before it starts playing (iOS Safari especially) — our
   videos are always autoplay/muted/looping ambient footage, never meant
   to show playback controls of any kind. */
video::-webkit-media-controls,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-play-button{
  display:none !important;
  -webkit-appearance:none;
  pointer-events:none;
}
video{ pointer-events:none; }
a{ color:inherit; }

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

/* ---------- reveal-on-scroll ---------- */
.reveal{
  opacity:0;
  transform:translateY(36px);
  transition:opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in{ opacity:1; transform:none; }

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

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  display:inline-block;
  font-size:12px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--brass);
  margin-bottom:18px;
}

/* ---------- stitch motifs ---------- */
.stitch-divider{
  width:100%;
  height:1px;
  background-image:repeating-linear-gradient(90deg, var(--brass) 0 10px, transparent 10px 22px);
  opacity:.7;
}
.stitch-divider.center-knot{
  position:relative;
}
.stitch-divider.center-knot::after{
  content:'';
  position:absolute;
  top:50%; left:50%;
  width:6px; height:6px;
  background:var(--brass);
  border-radius:50%;
  transform:translate(-50%,-50%);
}

/* stitch line that "sews itself in" as it scrolls into view */
.stitch-draw{
  width:100%;
  max-width:120px;
  height:1px;
  margin:0 auto 26px;
  background-image:repeating-linear-gradient(90deg, var(--brass) 0 10px, transparent 10px 22px);
  background-size:200% 100%;
  background-position:100% 0;
  opacity:0;
  transition:opacity .4s ease, background-position 1.1s cubic-bezier(.2,.7,.2,1);
}
.stitch-draw.in{ opacity:.85; background-position:0 0; }

.stitched-frame{ position:relative; overflow:hidden; }
.stitched-frame > *:not(.hero-bg):not(.scroll-cue):not(.hero-overlay){ position:relative; z-index:3; }
.stitched-frame::after{
  content:'';
  position:absolute;
  inset:22px;
  border:1px dashed rgba(243,236,224,.55);
  pointer-events:none;
  z-index:2;
}
/* cursor spotlight — a soft brass glow that follows the pointer */
.stitched-frame::before{
  content:'';
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:radial-gradient(280px circle at var(--mx,50%) var(--my,50%), rgba(182,144,90,.16), transparent 70%);
  opacity:0;
  transition:opacity .4s ease;
}
.stitched-frame:hover::before{ opacity:1; }

/* =====================================================
   NAV
===================================================== */
.site-header{
  position:fixed;
  top:0; left:0; width:100%;
  z-index:200;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:32px 64px;
  color:var(--bone);
  background:transparent;
  transition:background .45s ease, padding .45s ease, box-shadow .45s ease;
}
.site-header.solid,
.site-header.always-solid{
  background:var(--ink);
  padding:22px 64px;
  box-shadow:0 1px 0 rgba(182,144,90,.25);
}

.logo{
  font-family:var(--serif);
  font-size:30px;
  letter-spacing:5px;
  text-decoration:none;
  color:var(--bone);
}
.logo span{ color:var(--brass); }

.menu{
  display:flex;
  gap:42px;
  list-style:none;
}
.menu a{
  color:var(--bone);
  text-decoration:none;
  font-size:12.5px;
  letter-spacing:2px;
  text-transform:uppercase;
  position:relative;
  padding-bottom:6px;
}
.menu a::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:0; height:1px;
  background:var(--brass);
  transition:width .3s ease;
}
.menu a:hover::after,
.menu a.active::after{ width:100%; }

.nav-right{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:11px;
  letter-spacing:1.5px;
  text-transform:uppercase;
}

.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
  z-index:210;
}
.menu-toggle span{
  width:24px; height:1px;
  background:var(--bone);
  transition:transform .35s ease, opacity .25s ease;
}
.menu-toggle.active span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2){ opacity:0; }
.menu-toggle.active span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

/* =====================================================
   HERO (index)
===================================================== */
.hero{
  height:100vh;
  min-height:640px;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:-80px;
  background:
    linear-gradient(180deg, rgba(21,16,11,.35) 0%, rgba(21,16,11,.75) 100%),
    url("../images/hero.jpg") center/cover no-repeat;
  will-change:transform;
  z-index:0;
}
video.hero-bg{
  width:calc(100% + 160px);
  height:calc(100% + 160px);
  object-fit:cover;
  background:none;
}
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(180deg, rgba(21,16,11,.32) 0%, rgba(21,16,11,.78) 100%);
  pointer-events:none;
}
.hero-text{ position:relative; z-index:3; }

/* shorter variant used for the Collection page video showcase */
.hero.showcase{
  height:78vh;
  min-height:460px;
}
.hero.showcase .hero-text p{ max-width:520px; }

.hero-text{
  color:var(--bone);
  text-align:center;
  padding:0 24px;
}
.hero-text .eyebrow{ color:var(--brass); }

.hero-text h1{
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(52px, 9vw, 108px);
  letter-spacing:clamp(6px, 1.6vw, 16px);
  line-height:1;
}

.hero-text h2{
  font-family:var(--serif);
  font-weight:400;
  font-style:italic;
  font-size:clamp(20px, 2.6vw, 34px);
  margin:22px 0 14px;
  color:var(--bone-soft);
}

.hero-text p{
  font-size:14px;
  letter-spacing:1px;
  color:rgba(243,236,224,.75);
  max-width:440px;
  margin:0 auto;
}

.btn{
  display:inline-block;
  margin-top:42px;
  padding:17px 46px;
  background:transparent;
  border:1px solid var(--bone);
  color:var(--bone);
  font-family:var(--sans);
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  text-decoration:none;
  cursor:pointer;
  transition:background .35s ease, color .35s ease, letter-spacing .35s ease;
}
.btn:hover{
  background:var(--bone);
  color:var(--ink);
  letter-spacing:3.5px;
}
.btn-dark{ border-color:var(--ink); color:var(--ink); }
.btn-dark:hover{ background:var(--ink); color:var(--bone); }

.scroll-cue{
  position:absolute;
  bottom:38px; left:50%;
  z-index:3;
  transform:translateX(-50%);
  width:1px; height:60px;
  background:linear-gradient(to bottom, rgba(243,236,224,.9), transparent);
  overflow:hidden;
}
.scroll-cue::after{
  content:'';
  position:absolute;
  top:-100%; left:0;
  width:100%; height:100%;
  background:linear-gradient(to bottom, transparent, var(--brass), transparent);
  animation:scrollcue 2.2s ease-in-out infinite;
}
@keyframes scrollcue{
  0%{ top:-100%; }
  100%{ top:100%; }
}

/* =====================================================
   STORY
===================================================== */
.story{
  display:flex;
  align-items:center;
  gap:90px;
  padding:150px 90px;
  max-width:1400px;
  margin:0 auto;
}
.story img{ width:48%; object-fit:cover; aspect-ratio:4/5; }
.story video{ width:48%; object-fit:cover; aspect-ratio:4/5; }
.story .story-copy{ flex:1; }

.story h2{
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(38px, 4.4vw, 60px);
  margin-bottom:28px;
  line-height:1.1;
}

.story p{
  line-height:1.9;
  color:var(--text-soft);
  margin-bottom:20px;
  max-width:480px;
}

/* =====================================================
   HERITAGE band (index)
===================================================== */
.heritage{
  min-height:440px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:var(--ink);
  color:var(--bone);
  padding:100px 24px;
}
.heritage h2{
  font-family:var(--serif);
  font-weight:500;
  font-style:italic;
  font-size:clamp(34px, 5vw, 62px);
  line-height:1.25;
  margin:20px 0 22px;
}
.heritage p{
  color:rgba(243,236,224,.7);
  max-width:520px;
  font-size:15px;
  letter-spacing:.4px;
}
.heritage .stitch-divider{ max-width:80px; margin-bottom:26px; }

/* =====================================================
   CRAFTSMANSHIP
===================================================== */
.craftsmanship{
  padding:150px 90px;
  text-align:center;
  max-width:1400px;
  margin:0 auto;
}
.craftsmanship h2{
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(38px, 4.4vw, 64px);
  margin-bottom:26px;
}
.craftsmanship > p{
  color:var(--text-soft);
  max-width:520px;
  margin:0 auto 76px;
}

.craft-grid{
  display:flex;
  justify-content:center;
  gap:36px;
  flex-wrap:wrap;
}
.craft-card{
  background:#fff;
  padding:54px 44px;
  width:320px;
  text-align:left;
  position:relative;
  border-top:2px solid transparent;
  transition:transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.craft-card:hover{
  transform:translateY(-10px);
  border-top-color:var(--brass);
  box-shadow:0 24px 48px rgba(21,16,11,.12);
}
.craft-card .num{
  font-family:var(--serif);
  font-size:14px;
  letter-spacing:2px;
  color:var(--brass);
  margin-bottom:22px;
  display:block;
}
.craft-card h3{
  font-family:var(--serif);
  font-weight:600;
  font-size:32px;
  margin-bottom:16px;
}
.craft-card p{ color:var(--text-soft); line-height:1.8; font-size:14.5px; }

/* =====================================================
   COLLECTION grid (shared: index + collection page)
===================================================== */
.collection{
  padding:150px 90px;
  text-align:center;
  background:var(--bone-soft);
}
.collection h2{
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(38px, 4.4vw, 64px);
  margin-bottom:70px;
}

.products, .luxury-products{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
  max-width:1300px;
  margin:0 auto;
}

.product, .luxury-product{
  width:320px;
  text-align:left;
}
.product .frame, .luxury-product .frame{
  position:relative;
  overflow:hidden;
  aspect-ratio:1/1;
  background:var(--bone);
  border:1px solid rgba(36,28,21,.14);
  padding:22px;
  box-sizing:border-box;
  box-shadow:0 1px 3px rgba(21,16,11,.05);
  transform-style:preserve-3d;
  transition:transform .35s ease, box-shadow .45s ease, border-color .45s ease;
}
/* trendy brass corner-bracket frame — sits inset from the border, like a
   loupe mark on an appraised piece. Pulls in tighter on hover. */
.product .frame::after, .luxury-product .frame::after{
  content:'';
  position:absolute;
  inset:10px;
  pointer-events:none;
  background:
    linear-gradient(var(--brass),var(--brass)) top left / 20px 2px no-repeat,
    linear-gradient(var(--brass),var(--brass)) top left / 2px 20px no-repeat,
    linear-gradient(var(--brass),var(--brass)) top right / 20px 2px no-repeat,
    linear-gradient(var(--brass),var(--brass)) top right / 2px 20px no-repeat,
    linear-gradient(var(--brass),var(--brass)) bottom left / 20px 2px no-repeat,
    linear-gradient(var(--brass),var(--brass)) bottom left / 2px 20px no-repeat,
    linear-gradient(var(--brass),var(--brass)) bottom right / 20px 2px no-repeat,
    linear-gradient(var(--brass),var(--brass)) bottom right / 2px 20px no-repeat;
  opacity:.65;
  transition:inset .4s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
}
.product:hover .frame, .luxury-product:hover .frame{
  border-color:rgba(182,144,90,.5);
  box-shadow:0 22px 44px rgba(21,16,11,.14);
}
.product:hover .frame::after, .luxury-product:hover .frame::after{ inset:6px; opacity:1; }

.product img, .luxury-product img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  transition:transform .7s cubic-bezier(.2,.7,.2,1);
}
.product:hover img, .luxury-product:hover img{ transform:scale(1.045); }

.product-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(21,16,11,.75) 100%);
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding-bottom:26px;
  opacity:0;
  transition:opacity .4s ease;
}
.product:hover .product-overlay, .luxury-product:hover .product-overlay{ opacity:1; }
.product-overlay button{
  background:none;
  border:none;
  color:var(--bone);
  font-family:var(--sans);
  font-size:11px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  border-bottom:1px solid var(--brass);
  padding-bottom:4px;
  cursor:pointer;
  transition:letter-spacing .3s ease;
}
.product-overlay button:hover{ letter-spacing:3px; }

.product h3, .luxury-product h3{
  font-family:var(--serif);
  font-weight:600;
  font-size:26px;
  margin-top:22px;
}
.product .price, .luxury-product .price{
  font-size:13px;
  color:var(--text-soft);
  letter-spacing:.5px;
  margin-top:6px;
}

/* category nav (collection page) — sticky pill links with scrollspy */
.category-nav{
  position:sticky;
  top:78px;
  z-index:150;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  padding:22px 24px;
  background:var(--bone);
  border-bottom:1px solid rgba(36,28,21,.1);
}
.category-nav a{
  padding:10px 22px;
  border:1px solid rgba(36,28,21,.16);
  border-radius:999px;
  font-size:11.5px;
  letter-spacing:1.8px;
  text-transform:uppercase;
  text-decoration:none;
  color:var(--text-soft);
  transition:background .3s ease, color .3s ease, border-color .3s ease;
  white-space:nowrap;
}
.category-nav a:hover{ border-color:var(--leather); color:var(--text); }
.category-nav a.active{
  background:var(--ink);
  color:var(--bone);
  border-color:var(--ink);
}

/* =====================================================
   CATEGORY SECTIONS (collection page)
===================================================== */
.category-section{
  position:relative;
  padding:130px 90px 100px;
  overflow:hidden;
}
.category-section:nth-of-type(even){ background:var(--bone-soft); }

.category-watermark{
  position:absolute;
  top:6px; left:50%;
  transform:translateX(-50%);
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(90px, 15vw, 230px);
  line-height:1;
  color:transparent;
  -webkit-text-stroke:1px rgba(36,28,21,.07);
  white-space:nowrap;
  pointer-events:none;
  z-index:0;
  user-select:none;
}

.category-heading{
  position:relative;
  z-index:1;
  text-align:center;
  max-width:560px;
  margin:0 auto 64px;
}
.category-heading h2{
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(34px, 4vw, 54px);
  margin-bottom:16px;
}
.category-heading p{ color:var(--text-soft); line-height:1.8; }

.category-section .products{
  position:relative;
  z-index:1;
  max-width:1300px;
}

/* staggered entrance for product cards as they render in */
.category-section .product,
.collection .product{
  opacity:0;
  animation:cardPop .7s cubic-bezier(.2,.7,.2,1) forwards;
}
.products .product:nth-child(1){ animation-delay:.05s; }
.products .product:nth-child(2){ animation-delay:.14s; }
.products .product:nth-child(3){ animation-delay:.23s; }
.products .product:nth-child(4){ animation-delay:.32s; }
.products .product:nth-child(5){ animation-delay:.41s; }
@keyframes cardPop{
  from{ opacity:0; transform:translateY(28px) scale(.97); }
  to{ opacity:1; transform:none; }
}
@media (prefers-reduced-motion: reduce){
  .category-section .product, .collection .product{ opacity:1; animation:none; }
}

/* =====================================================
   PAGE HERO / PAGE HEADER (inner pages)
===================================================== */
.page-hero, .page-header, .heritage-hero{
  min-height:62vh;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:var(--bone);
  padding:180px 24px 90px;
  background:
    linear-gradient(180deg, rgba(21,16,11,.55) 0%, rgba(21,16,11,.82) 100%),
    url("../images/leather.jpg") center/cover no-repeat;
}
.page-hero .hero-bg, .page-header .hero-bg, .heritage-hero .hero-bg{
  inset:-80px;
  background:
    linear-gradient(180deg, rgba(21,16,11,.55) 0%, rgba(21,16,11,.82) 100%),
    url("../images/leather.jpg") center/cover no-repeat;
}
.page-hero h1, .page-header h1, .heritage-hero h1{
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(44px, 6vw, 80px);
  letter-spacing:2px;
  line-height:1.1;
}
.page-hero p, .page-header p, .heritage-hero p{
  color:rgba(243,236,224,.75);
  margin-top:18px;
  font-size:15px;
  letter-spacing:.5px;
}
.heritage-hero .eyebrow{ color:var(--brass); }

.page-intro{
  max-width:640px;
  margin:110px auto 80px;
  text-align:center;
  padding:0 24px;
}
.page-intro h2{
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(30px, 3.6vw, 46px);
  margin-bottom:20px;
}
.page-intro p{ color:var(--text-soft); line-height:1.8; }

/* =====================================================
   HERITAGE PAGE
===================================================== */
.heritage-story{
  display:flex;
  align-items:center;
  gap:90px;
  padding:150px 90px;
  max-width:1400px;
  margin:0 auto;
}
.heritage-story .media-frame{
  width:48%;
  aspect-ratio:4/5;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(36,28,21,.18);
  box-shadow:0 30px 70px rgba(21,16,11,.16);
}
.heritage-story .media-frame::after{
  content:'';
  position:absolute;
  inset:12px;
  border:1px solid rgba(182,144,90,.5);
  pointer-events:none;
}
.heritage-story .media-frame video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.heritage-text{ flex:1; }
.heritage-text h2{
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(36px, 4.2vw, 56px);
  margin-bottom:26px;
  line-height:1.15;
}
.heritage-text p{
  line-height:1.9;
  color:var(--text-soft);
  margin-bottom:18px;
  max-width:480px;
}

.dark-story{
  background:var(--ink);
  color:var(--bone);
  min-height:340px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 24px;
}
.dark-story h2{
  font-family:var(--serif);
  font-weight:500;
  font-style:italic;
  font-size:clamp(30px, 4.4vw, 56px);
  line-height:1.35;
}

.values{
  display:flex;
  justify-content:center;
  gap:70px;
  flex-wrap:wrap;
  padding:150px 90px;
  max-width:1300px;
  margin:0 auto;
  text-align:left;
}
.values > div{ max-width:280px; }
.values .mark{
  width:34px; height:1px;
  background:var(--brass);
  margin-bottom:22px;
}
.values h3{
  font-family:var(--serif);
  font-weight:600;
  font-size:28px;
  margin-bottom:14px;
}
.values p{ color:var(--text-soft); line-height:1.8; font-size:14.5px; }

/* =====================================================
   HERITAGE — origins band + leather-types grid
===================================================== */
.origins{
  padding:150px 90px 60px;
  max-width:1300px;
  margin:0 auto;
  text-align:center;
}
.origins .stitch-draw{ margin-bottom:26px; }
.origins h2{
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(36px, 4.2vw, 58px);
  margin-bottom:30px;
  line-height:1.15;
}
.origins .lede{
  max-width:760px;
  margin:0 auto;
  font-size:16px;
  line-height:2;
  color:var(--text-soft);
}
.origins .lede strong{ color:var(--text); font-weight:600; }

.hub-row{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:44px;
}
.hub-row span{
  border:1px solid rgba(36,28,21,.18);
  border-radius:999px;
  padding:9px 20px;
  font-size:11.5px;
  letter-spacing:1.8px;
  text-transform:uppercase;
  color:var(--text-soft);
}

.leather-intro{
  max-width:640px;
  margin:0 auto 70px;
  text-align:center;
  padding:0 24px;
}
.leather-intro h2{
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(34px, 4vw, 54px);
  margin-bottom:18px;
}
.leather-intro p{ color:var(--text-soft); line-height:1.85; }

.leather-grid{
  display:flex;
  justify-content:center;
  gap:36px;
  flex-wrap:wrap;
  max-width:1300px;
  margin:0 auto;
  padding:0 90px 150px;
}
.leather-card{
  background:#fff;
  width:340px;
  text-align:left;
  overflow:hidden;
  transition:transform .4s ease, box-shadow .4s ease;
}
.leather-card:hover{ transform:translateY(-10px); box-shadow:0 24px 48px rgba(21,16,11,.12); }
.leather-card .swatch{
  height:8px;
  width:100%;
}
.leather-card .swatch.cow{ background:var(--leather-dark); }
.leather-card .swatch.lamb{ background:var(--lamb); }
.leather-card .swatch.camel{ background:var(--camel); }
.leather-card .body{ padding:38px 34px 42px; }
.leather-card .origin-tag{
  display:block;
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--brass);
  margin-bottom:16px;
}
.leather-card h3{
  font-family:var(--serif);
  font-weight:600;
  font-size:30px;
  margin-bottom:14px;
}
.leather-card p{ color:var(--text-soft); line-height:1.85; font-size:14.5px; }

/* =====================================================
   SHARED — split story (reverse), timeline, pull-quote
   (used on heritage.html + about.html)
===================================================== */
.story.reverse{ flex-direction:row-reverse; }

.timeline{
  max-width:760px;
  margin:0 auto;
  padding:150px 24px;
  position:relative;
}
.timeline-line{
  position:absolute;
  left:50px;
  top:154px; bottom:154px;
  width:1px;
  background-image:repeating-linear-gradient(180deg, var(--brass) 0 8px, transparent 8px 18px);
  opacity:.55;
}
.timeline-item{
  position:relative;
  padding-left:88px;
  margin-bottom:64px;
}
.timeline-item:last-child{ margin-bottom:0; }
.timeline-dot{
  position:absolute;
  left:44px; top:6px;
  width:13px; height:13px;
  border-radius:50%;
  background:var(--bone);
  border:2px solid var(--brass);
}
.timeline-item .timeline-tag{
  font-family:var(--serif);
  font-style:italic;
  color:var(--brass);
  font-size:15px;
  letter-spacing:.5px;
  margin-bottom:10px;
  display:block;
}
.timeline-item h3{
  font-family:var(--serif);
  font-weight:600;
  font-size:27px;
  margin-bottom:12px;
}
.timeline-item p{ color:var(--text-soft); line-height:1.85; max-width:500px; }

.pull-quote{
  padding:140px 24px 130px;
  text-align:center;
  max-width:840px;
  margin:0 auto;
}
.pull-quote .quote-mark{
  font-family:var(--serif);
  font-size:110px;
  line-height:1;
  color:var(--brass);
  opacity:.4;
  display:block;
  margin-bottom:-14px;
}
.pull-quote p{
  font-family:var(--serif);
  font-style:italic;
  font-weight:500;
  font-size:clamp(24px, 3.2vw, 40px);
  line-height:1.5;
  color:var(--leather-dark);
}
.pull-quote .attribution{
  display:block;
  margin-top:30px;
  font-family:var(--sans);
  font-style:normal;
  font-size:11.5px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--text-soft);
}

/* =====================================================
   ABOUT PAGE — mission strip + closing CTA
===================================================== */
.mission-intro{
  max-width:680px;
  margin:150px auto 70px;
  text-align:center;
  padding:0 24px;
}
.mission-intro h2{
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(34px, 4vw, 54px);
  margin-bottom:18px;
}
.mission-intro p{ color:var(--text-soft); line-height:1.85; }

.closing-cta{
  background:var(--ink);
  color:var(--bone);
  text-align:center;
  padding:150px 24px;
}
.closing-cta .stitch-draw{ margin:0 auto 26px; }
.closing-cta h2{
  font-family:var(--serif);
  font-weight:500;
  font-style:italic;
  font-size:clamp(32px, 4.6vw, 58px);
  line-height:1.3;
  max-width:760px;
  margin:0 auto 40px;
}
.closing-cta .cta-row{
  display:flex;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
}

/* =====================================================
   CONTACT PAGE
===================================================== */
.contact{
  display:flex;
  gap:100px;
  padding:130px 90px 160px;
  max-width:1300px;
  margin:0 auto;
  flex-wrap:wrap;
}
.contact-form{ flex:1.2; min-width:320px; }
.contact-form h2{
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(32px, 3.6vw, 48px);
  margin-bottom:36px;
}
.field{ margin-bottom:26px; }
.field label{
  display:block;
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--text-soft);
  margin-bottom:10px;
}
.field input, .field textarea{
  width:100%;
  border:none;
  border-bottom:1px solid rgba(36,28,21,.25);
  background:transparent;
  padding:12px 2px;
  font-family:var(--sans);
  font-size:15px;
  color:var(--text);
  resize:vertical;
}
.field input:focus, .field textarea:focus{
  outline:none;
  border-bottom-color:var(--brass);
}
.form-note{
  margin-top:18px;
  font-size:13px;
  color:var(--text-soft);
  min-height:18px;
}

.contact-info{ flex:1; min-width:280px; }
.contact-info h3{
  font-family:var(--serif);
  font-weight:600;
  font-size:26px;
  margin-bottom:22px;
}
.contact-info .row{
  padding:20px 0;
  border-top:1px solid rgba(36,28,21,.12);
}
.contact-info .row:last-of-type{ border-bottom:1px solid rgba(36,28,21,.12); }
.contact-info .row span{
  display:block;
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--brass);
  margin-bottom:6px;
}
.contact-info .row a, .contact-info .row p{
  font-size:16px;
  text-decoration:none;
  color:var(--text);
}
.contact-info .note{
  margin-top:30px;
  font-size:14px;
  line-height:1.8;
  color:var(--text-soft);
}

/* =====================================================
   FOOTER
===================================================== */
footer{
  background:var(--ink);
  color:var(--bone);
  padding:90px 90px 40px;
}
.footer-top{
  display:flex;
  justify-content:space-between;
  gap:60px;
  flex-wrap:wrap;
  padding-bottom:60px;
}
.footer-brand h2{
  font-family:var(--serif);
  font-size:32px;
  letter-spacing:4px;
  margin-bottom:14px;
}
.footer-brand p{
  color:rgba(243,236,224,.6);
  font-size:14px;
  max-width:300px;
  font-family:var(--sans);
  line-height:1.7;
}
.footer-col h4{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--brass);
  margin-bottom:18px;
  font-family:var(--sans);
  font-weight:500;
}
.footer-col a{
  display:block;
  color:rgba(243,236,224,.75);
  text-decoration:none;
  font-size:14px;
  margin-bottom:12px;
  font-family:var(--sans);
  width:fit-content;
}
.footer-col a:hover{ color:var(--bone); }

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:28px;
  font-family:var(--sans);
  font-size:12px;
  color:rgba(243,236,224,.45);
  letter-spacing:.5px;
  flex-wrap:wrap;
  gap:12px;
}

/* =====================================================
   MARQUEE TICKER
===================================================== */
.marquee{
  background:var(--leather-dark);
  color:var(--bone);
  overflow:hidden;
  white-space:nowrap;
  padding:20px 0;
  border-top:1px solid rgba(182,144,90,.35);
  border-bottom:1px solid rgba(182,144,90,.35);
}
.marquee-track{
  display:inline-flex;
  gap:60px;
  animation:marquee 26s linear infinite;
}
.marquee-track span{
  font-family:var(--serif);
  font-style:italic;
  font-size:22px;
  letter-spacing:1px;
  color:rgba(243,236,224,.85);
  display:inline-flex;
  align-items:center;
  gap:60px;
}
.marquee-track span::after{
  content:'\2022';
  color:var(--brass);
  margin-left:60px;
  font-style:normal;
}
@keyframes marquee{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation:none; }
}

/* =====================================================
   STATS / COUNT-UP
===================================================== */
.stats{
  display:flex;
  justify-content:center;
  gap:100px;
  flex-wrap:wrap;
  text-align:center;
  padding:110px 40px;
  max-width:1100px;
  margin:0 auto;
}
.stat .count-up{
  display:block;
  font-family:var(--serif);
  font-weight:600;
  font-size:clamp(46px, 6vw, 72px);
  color:var(--leather-dark);
}
.stat p{
  margin-top:10px;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--text-soft);
}

/* =====================================================
   QUOTE MODAL
===================================================== */
.modal{
  position:fixed;
  inset:0;
  z-index:500;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(21,16,11,.78);
  opacity:0;
  visibility:hidden;
  transition:opacity .35s ease, visibility .35s ease;
}
.modal.open{ opacity:1; visibility:visible; }
.modal-panel{
  background:var(--bone);
  width:100%;
  max-width:480px;
  padding:52px 44px;
  position:relative;
  transform:translateY(24px) scale(.97);
  transition:transform .4s cubic-bezier(.2,.7,.2,1);
  max-height:88vh;
  overflow-y:auto;
}
.modal.open .modal-panel{ transform:translateY(0) scale(1); }
.modal-panel .stitch-divider{ margin-bottom:24px; }
.modal-close{
  position:absolute;
  top:20px; right:22px;
  background:none;
  border:none;
  font-size:22px;
  line-height:1;
  color:var(--text-soft);
  cursor:pointer;
}
.modal-panel h3{
  font-family:var(--serif);
  font-weight:600;
  font-size:30px;
  margin-bottom:6px;
}
.modal-panel .modal-sub{
  font-size:13px;
  color:var(--text-soft);
  margin-bottom:28px;
}
.modal-panel .field input[readonly]{ color:var(--leather-dark); font-family:var(--serif); font-size:17px; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 980px){
  .site-header{ padding:24px 28px; }
  .site-header.solid, .site-header.always-solid{ padding:18px 28px; }
  .menu{
    position:fixed;
    top:0; right:0;
    height:100vh;
    width:min(78vw, 340px);
    background:var(--ink);
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    gap:34px;
    padding:0 48px;
    transform:translateX(100%);
    transition:transform .45s ease;
  }
  .menu.open{ transform:translateX(0); }
  .nav-right{ display:none; }
  .menu-toggle{ display:flex; }

  .story, .heritage-story{ flex-direction:column; padding:100px 28px; gap:50px; }
  .story.reverse{ flex-direction:column; }
  .story img, .story video, .heritage-story .media-frame{ width:100%; }
  .craftsmanship, .collection{ padding:100px 28px; }
  .category-nav{ top:66px; gap:8px; padding:16px 16px; }
  .category-nav a{ padding:8px 16px; font-size:11px; }
  .category-section{ padding:90px 28px 70px; }
  .category-heading{ margin-bottom:44px; }
  .contact{ padding:100px 28px 120px; }
  .values{ padding:100px 28px; gap:44px; }
  footer{ padding:70px 28px 30px; }
  .stats{ gap:50px; padding:80px 28px; }
  .modal-panel{ padding:40px 26px; }
  .origins{ padding:100px 28px 40px; }
  .leather-grid{ padding:0 28px 100px; gap:28px; }
  .leather-card{ width:100%; max-width:380px; }
  .timeline{ padding:100px 20px; }
  .timeline-line{ left:26px; }
  .timeline-item{ padding-left:56px; }
  .timeline-dot{ left:20px; }
  .pull-quote{ padding:100px 24px; }
  .mission-intro{ margin:100px auto 50px; }
  .closing-cta{ padding:100px 24px; }
}

@media (max-width: 560px){
  .hero-text h1{ letter-spacing:6px; }
  .craft-card{ width:100%; }
  .product, .luxury-product{ width:100%; max-width:360px; }
}
