/* =========================================================
   Barn Born Furniture — Warm Workshop
   Custom furniture, cabinetry & woodworking · Indiana, PA
   ========================================================= */

:root {
  --espresso: #2b1d12;
  --bark:     #17110b;
  --bark-2:   #1f1710;
  --panel:    #211812;
  --cream:    #f5efe4;
  --cream-2:  #ede4d3;
  --ink:      #e9dcc8;
  --muted:    #b6a58e;
  --muted-2:  #8d7d67;
  --brass:    #c99a5b;
  --brass-d:  #b08344;
  --line:     rgba(201,154,91,.22);
  --line-soft:rgba(245,239,228,.10);
  --wrap:     1200px;
  --radius:   14px;
  --radius-lg:22px;
  --shadow:   0 20px 50px rgba(0,0,0,.45);
  --shadow-sm:0 8px 24px rgba(0,0,0,.35);
  --ease:     cubic-bezier(.22,.61,.36,1);
  --serif:    "Fraunces", Georgia, "Times New Roman", serif;
  --sans:     "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bark);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; margin: 0; letter-spacing: -.01em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block; font-family: var(--sans); font-weight: 600;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 18px;
}
.eyebrow.dark { color: var(--brass-d); }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--brass); color: #1a1108;
  padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 700; z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Icons ---------- */
.ic { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9;
  stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.ic-fill { fill: currentColor; stroke: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--sans); font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn-primary { background: var(--brass); color: #1c1207; box-shadow: 0 10px 30px rgba(201,154,91,.28); }
.btn-primary:hover { background: #d7a866; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(201,154,91,.4); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(245,239,228,.4); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); transform: translateY(-2px); }
.btn-dark { background: var(--espresso); color: var(--cream); }
.btn-dark:hover { background: #3a2818; transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(23,17,11,.82); backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.site-header .wrap { padding-inline: clamp(20px, 3.5vw, 46px); }
.brand img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav > a { font-size: .96rem; font-weight: 500; color: var(--ink); position: relative; padding: 4px 0; }
.nav > a:not(.header-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--brass); transition: width .3s var(--ease);
}
.nav > a:not(.header-cta):hover { color: var(--cream); }
.nav > a:not(.header-cta):hover::after { width: 100%; }
.header-cta {
  display: inline-flex; align-items: center; gap: 9px; background: var(--brass); color: #1c1207 !important;
  padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: .92rem;
  transition: transform .25s var(--ease), background .25s;
  white-space: nowrap; flex-shrink: 0;
}
.header-cta:hover { background: #d7a866; transform: translateY(-2px); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--cream); margin: 5px 0; transition: .3s; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center;
  color: var(--cream); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(20,13,7,.92) 0%, rgba(20,13,7,.7) 42%, rgba(20,13,7,.28) 78%, rgba(20,13,7,.5) 100%),
    linear-gradient(to top, rgba(20,13,7,.85), transparent 40%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero-inner { max-width: 720px; }
.hero h1 { font-size: clamp(2.8rem, 6.4vw, 5.3rem); font-weight: 500; letter-spacing: -.02em; }
.hero h1 em { font-style: italic; color: var(--brass); }
.hero .lede { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--cream-2);
  max-width: 560px; margin: 24px 0 34px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 40px;
  padding-top: 26px; border-top: 1px solid rgba(245,239,228,.16); }
.trust-row span { display: inline-flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--cream-2); font-weight: 500; }
.trust-row .ic { color: var(--brass); width: 18px; height: 18px; }
.scroll-hint { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 2;
  color: rgba(245,239,228,.6); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint svg { animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }

/* ---------- Section scaffolding ---------- */
.section { padding: 110px 0; }
.section.tight { padding: 84px 0; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 18px 0 0; }
.on-cream { background: var(--cream); color: var(--espresso); }
.on-cream .section-head p { color: #6f5b45; }
.on-cream h2, .on-cream h3, .on-cream h4 { color: var(--espresso); }
.on-panel { background: var(--bark-2); }

/* ---------- Makes / product grid ---------- */
.makes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.make {
  background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .4s var(--ease), border-color .4s, background .4s;
}
.make:hover { transform: translateY(-6px); border-color: var(--line); background: #261c14; }
.make .make-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(201,154,91,.14); color: var(--brass); margin-bottom: 20px; }
.make .make-ic .ic { width: 24px; height: 24px; }
.make h3 { font-size: 1.35rem; margin-bottom: 8px; }
.make p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- Featured work (editorial grid) ---------- */
.work-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 220px; gap: 16px;
  grid-auto-flow: dense;
}
.work-card {
  position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer;
  background: #100b06; box-shadow: var(--shadow-sm);
}
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.work-card:hover img { transform: scale(1.07); }
.work-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,11,6,.9) 0%, rgba(16,11,6,.15) 45%, transparent 70%);
  opacity: .9; transition: opacity .4s;
}
.work-card:hover::after { opacity: 1; }
.work-meta { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 22px; }
.work-tag { display: inline-block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: var(--brass); margin-bottom: 8px; }
.work-meta h3 { color: var(--cream); font-size: 1.28rem; line-height: 1.15; }
.work-plus { position: absolute; top: 16px; right: 16px; z-index: 2; width: 40px; height: 40px;
  border-radius: 50%; background: rgba(245,239,228,.14); backdrop-filter: blur(4px);
  display: grid; place-items: center; color: var(--cream); opacity: 0; transform: scale(.7);
  transition: opacity .35s var(--ease), transform .35s var(--ease); }
.work-card:hover .work-plus { opacity: 1; transform: scale(1); }
.w-tall { grid-row: span 2; }
.w-wide { grid-column: span 2; }
.w-big  { grid-column: span 2; grid-row: span 2; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step .num { font-family: var(--serif); font-size: 2.6rem; color: var(--brass-d); line-height: 1; display: block; margin-bottom: 14px; }
.step h3 { font-size: 1.28rem; margin-bottom: 8px; }
.step p { color: #6f5b45; font-size: .97rem; margin: 0; }
.on-cream .step p { color: #6f5b45; }

/* ---------- Family ---------- */
.family-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.fam {
  background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 36px 30px; transition: transform .4s var(--ease), border-color .4s;
}
.fam:hover { transform: translateY(-6px); border-color: var(--line); }
.fam .fam-mono { font-family: var(--serif); font-size: 2.4rem; color: var(--brass);
  width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(201,154,91,.12); border: 1px solid var(--line); margin-bottom: 22px; }
.fam h3 { font-size: 1.6rem; }
.fam .role { color: var(--brass); font-weight: 600; font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase; margin: 6px 0 16px; }
.fam p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- Instagram feed ---------- */
.ig-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 20px; margin-bottom: 40px; }
.ig-id { display: flex; align-items: center; gap: 18px; }
.ig-avatar { width: 68px; height: 68px; border-radius: 50%; flex: 0 0 auto;
  background: conic-gradient(from 210deg, #c99a5b, #b08344, #e0b877, #b08344, #c99a5b);
  padding: 3px; display: grid; place-items: center; }
.ig-avatar span { width: 100%; height: 100%; border-radius: 50%; background: var(--espresso);
  display: grid; place-items: center; color: var(--brass); font-family: var(--serif); font-size: 1.5rem; border: 2px solid var(--bark); }
.ig-id h3 { font-size: 1.5rem; }
.ig-id .handle { color: var(--muted); font-size: .96rem; }
.ig-id .handle b { color: var(--ink); font-weight: 600; }
.ig-follow { display: inline-flex; align-items: center; gap: 9px; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.ig-cell { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 8px; background: #100b06; }
.ig-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ig-cell:hover img { transform: scale(1.08); }
.ig-cell .ig-over {
  position: absolute; inset: 0; display: grid; place-items: center; color: #fff;
  background: rgba(20,13,7,.55); opacity: 0; transition: opacity .3s;
}
.ig-cell:hover .ig-over { opacity: 1; }
.ig-over .ic { width: 30px; height: 30px; }
.ig-note { text-align: center; margin-top: 30px; color: var(--muted); font-size: .95rem; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: #fff; border: 1px solid rgba(43,29,18,.1); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: 0 10px 30px rgba(43,29,18,.06); position: relative;
  display: flex; flex-direction: column;
}
.quote .mark { font-family: var(--serif); font-size: 4rem; line-height: .6; color: var(--brass);
  height: 30px; margin-bottom: 10px; }
.quote p { color: #4b3a29; font-size: 1.02rem; line-height: 1.6; margin: 0 0 22px; }
.quote .stars { color: var(--brass); letter-spacing: 3px; margin-bottom: 12px; font-size: .95rem; }
.quote .who { margin-top: auto; font-weight: 700; color: var(--espresso); font-family: var(--serif); font-size: 1.05rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; text-align: center; color: var(--cream); overflow: hidden;
  background: var(--espresso); }
.cta-band::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(1200px 400px at 50% -20%, rgba(201,154,91,.22), transparent 60%); }
.cta-band .wrap { position: relative; padding: 96px 24px; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 760px; margin: 0 auto 16px; }
.cta-band p { color: var(--cream-2); max-width: 560px; margin: 0 auto 34px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-loc-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 34px; margin-top: 34px; }
.cta-loc { color: var(--muted); font-size: .95rem;
  display: inline-flex; align-items: center; gap: 9px; }
.cta-loc .ic { color: var(--brass); flex: 0 0 auto; }

/* ---------- Footer ---------- */
.site-footer { background: #0f0a06; color: var(--muted); padding: 68px 0 30px; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 44px; }
.footer-grid img.flogo { height: 52px; width: auto; margin-bottom: 20px; }
.footer-grid p { margin: 0 0 18px; max-width: 320px; line-height: 1.65; }
.site-footer h4 { color: var(--cream); font-size: 1rem; letter-spacing: .06em; margin-bottom: 18px; font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.site-footer a:hover { color: var(--brass); }
.foot-social { display: flex; gap: 12px; margin-top: 4px; }
.foot-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-soft);
  display: grid; place-items: center; color: var(--muted); transition: .3s; }
.foot-social a:hover { color: #1c1207; background: var(--brass); border-color: var(--brass); transform: translateY(-3px); }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; color: var(--muted-2); }

/* ---------- Lightbox ---------- */
.lb { position: fixed; inset: 0; z-index: 300; background: rgba(12,8,4,.94);
  display: none; align-items: center; justify-content: center; padding: 30px; }
.lb.open { display: flex; animation: fade .3s var(--ease); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lb img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow); }
.lb-close, .lb-nav { position: absolute; background: rgba(245,239,228,.1); border: 1px solid rgba(245,239,228,.2);
  color: var(--cream); width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  cursor: pointer; transition: .25s; }
.lb-close:hover, .lb-nav:hover { background: var(--brass); color: #1c1207; border-color: var(--brass); }
.lb-close { top: 24px; right: 24px; }
.lb-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: var(--cream-2); font-size: .95rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-hint svg { animation: none; }
}

/* ---------- Float action ---------- */
.float-ig { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 56px; height: 56px;
  border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-sm);
  background: linear-gradient(45deg, #b08344, #c99a5b); transition: transform .3s var(--ease); }
.float-ig:hover { transform: scale(1.08) translateY(-2px); }

/* =========================================================
   Interior pages: collections, gallery, project case studies
   ========================================================= */

/* Breadcrumbs */
.crumbs { font-size: .85rem; color: var(--muted-2); padding: 22px 0 0; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brass); }
.crumbs .sep { margin: 0 8px; color: var(--brass-d); }

/* Compact page hero (interior pages) */
.page-hero { position: relative; overflow: hidden; background: var(--bark-2); }
.page-hero.has-img { color: var(--cream); }
.page-hero .ph-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero.has-img::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(20,13,7,.94) 0%, rgba(20,13,7,.78) 45%, rgba(20,13,7,.45) 100%); }
.page-hero .wrap { position: relative; z-index: 2; padding: 64px 24px 56px; }
.page-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); max-width: 16ch; }
.page-hero .ph-intro { max-width: 60ch; margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.page-hero.has-img .ph-intro { color: var(--cream-2); }
.page-hero .ph-intro + .ph-intro { margin-top: 14px; }
.page-hero .ph-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Piece grid (named pieces within a collection) */
.piece-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.piece {
  display: flex; flex-direction: column; background: var(--panel);
  border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s;
}
.piece:hover { transform: translateY(-6px); border-color: var(--line); }
.piece .piece-img { aspect-ratio: 4 / 3; overflow: hidden; background: #100b06; }
.piece .piece-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.piece:hover .piece-img img { transform: scale(1.06); }
.piece .piece-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.piece h3 { font-size: 1.24rem; }
.piece .piece-cta { margin-top: auto; font-weight: 600; font-size: .9rem; color: var(--brass);
  display: inline-flex; align-items: center; gap: 7px; }
.piece .piece-cta .ic { width: 16px; height: 16px; }
.piece.no-photo .piece-img { display: grid; place-items: center; }
.piece.no-photo .piece-img span { font-family: var(--serif); color: var(--brass-d); font-size: 2.4rem; }

/* Gallery filter chips */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.chip { font-family: var(--sans); font-weight: 600; font-size: .88rem; cursor: pointer;
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line);
  background: transparent; color: var(--muted); transition: .25s; }
.chip:hover { color: var(--cream); border-color: var(--brass); }
.chip.active { background: var(--brass); color: #1c1207; border-color: var(--brass); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.g-item { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius);
  background: #100b06; cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.g-item:hover img { transform: scale(1.07); }
.g-item::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,11,6,.85), transparent 55%); opacity: .85; transition: opacity .35s; }
.g-item:hover::after { opacity: 1; }
.g-cap { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 16px; }
.g-cap .tag { display: block; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--brass); margin-bottom: 5px; }
.g-cap h3 { color: var(--cream); font-size: 1.05rem; line-height: 1.15; }
.g-item[hidden] { display: none; }
.g-empty { color: var(--muted); padding: 30px 0; }

/* Project case study */
.proj-layout { display: grid; grid-template-columns: 1.35fr 1fr; gap: 48px; align-items: start; }
.proj-gallery { position: sticky; top: 96px; }
.proj-main { border-radius: var(--radius-lg); overflow: hidden; background: #100b06; box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3; }
.proj-main img { width: 100%; height: 100%; object-fit: cover; }
.proj-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.proj-thumb { aspect-ratio: 1; border-radius: 9px; overflow: hidden; background: #100b06; cursor: pointer;
  border: 2px solid transparent; transition: border-color .25s; }
.proj-thumb img { width: 100%; height: 100%; object-fit: cover; }
.proj-thumb.active { border-color: var(--brass); }
.proj-info .eyebrow { margin-bottom: 12px; }
.proj-info h1 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
.proj-info .prose { margin: 22px 0; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.proj-info .prose p { margin: 0 0 14px; }
.spec-list { list-style: none; padding: 22px 0 0; margin: 22px 0 0; border-top: 1px solid var(--line-soft);
  display: grid; gap: 14px; }
.spec-list li { display: grid; grid-template-columns: 130px 1fr; gap: 14px; font-size: .96rem; }
.spec-list .k { color: var(--brass); font-weight: 600; letter-spacing: .04em; }
.spec-list .v { color: var(--ink); }
.proj-info .btn { margin-top: 28px; }

/* Collections strip on the homepage */
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.coll-card { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3 / 2;
  background: #100b06; display: block; }
.coll-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.coll-card:hover img { transform: scale(1.06); }
.coll-card::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,11,6,.9), rgba(16,11,6,.1) 60%); transition: opacity .35s; }
.coll-card .coll-meta { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 22px; }
.coll-card h3 { color: var(--cream); font-size: 1.3rem; }
.coll-card .go { color: var(--brass); font-size: .85rem; font-weight: 600; margin-top: 6px;
  display: inline-flex; align-items: center; gap: 6px; opacity: 0; transform: translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease); }
.coll-card:hover .go { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .makes-grid, .steps, .family-grid, .quotes { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .w-wide, .w-big { grid-column: span 2; }
  .w-big, .w-tall { grid-row: span 1; }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .piece-grid, .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .proj-layout { grid-template-columns: 1fr; gap: 30px; }
  .proj-gallery { position: static; }
}
/* Collapse to hamburger before the horizontal nav gets crowded (also covers zoomed-in viewports) */
@media (max-width: 1080px) {
  .nav {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: rgba(23,17,11,.98); backdrop-filter: blur(14px);
    padding: 12px 24px 24px; border-bottom: 1px solid var(--line);
    transform: translateY(-140%); transition: transform .4s var(--ease); max-height: 85vh; overflow: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav > a { padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
  .nav > a:not(.header-cta)::after { display: none; }
  .header-cta { justify-content: center; margin-top: 12px; align-self: stretch; }
  .nav-toggle { display: block; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 76px 0; }
  .makes-grid, .steps, .family-grid, .quotes { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .w-wide, .w-big { grid-column: span 1; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero { min-height: 88vh; }
  .lb-nav.prev { left: 12px; } .lb-nav.next { right: 12px; }
  .piece-grid, .collections-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .proj-thumbs { grid-template-columns: repeat(5, 1fr); }
  .spec-list li { grid-template-columns: 110px 1fr; }
}
