/* ==========================================================================
   Benner's Woodworking — design system
   Lebanon, Ohio · 18th & 19th century reproduction furniture

   Type note: Libre Caslon is deliberate. Caslon is the typeface of 18th-century
   America, the same period the shop's joinery reproduces. Karla carries the
   interface so the serif stays reserved for voice.
   ========================================================================== */

:root {
  color-scheme: light;

  /* Ground + ink. Named from the shop's own stain library where it fit. */
  --paper:      #FAF7F1;
  --cream:      #F3EFE6;
  --linen:      #EBE4D6;
  --slate:      #333F43;
  --slate-deep: #262F32;

  --ink:        #1F1D19;
  --ink-mid:    #4A443B;
  --ink-soft:   #6E6759;
  --on-dark:    #F2EEE5;
  --on-dark-soft:#B3AC9C;

  --amber:      #96581F;   /* Country Amber */
  --amber-lift: #B06D2C;
  --barn:       #8A3324;   /* Barn Red */

  --rule:       #DCD3C0;
  --rule-soft:  #E7E0D0;

  /* Type */
  --display: "Libre Caslon Display", "Libre Caslon Text", Georgia, "Times New Roman", serif;
  --text:    "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Fluid scale */
  --t-hero:  clamp(2.75rem, 1.4rem + 5.6vw, 6rem);
  --t-h1:    clamp(2.25rem, 1.4rem + 3.4vw, 4rem);
  --t-h2:    clamp(1.75rem, 1.25rem + 2.1vw, 2.9rem);
  --t-h3:    clamp(1.25rem, 1.05rem + 0.85vw, 1.7rem);
  --t-body:  clamp(1rem, 0.97rem + 0.16vw, 1.09rem);
  --t-lead:  clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  --t-small: 0.875rem;
  --t-micro: 0.75rem;

  /* Rhythm */
  --gutter:  clamp(1.25rem, 0.6rem + 2.6vw, 3.5rem);
  --band:    clamp(4rem, 2.2rem + 7vw, 8.5rem);
  --shell:   1440px;
  --measure: 62ch;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: var(--t-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
h1,h2,h3,h4 { font-family: var(--display); font-weight: 400; line-height: 1.08; letter-spacing: -.015em; margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 2px; }

.skip {
  position: absolute; left: 0; top: 0; z-index: 200;
  background: var(--ink); color: var(--on-dark);
  padding: .75rem 1.25rem; transform: translateY(-120%);
}
.skip:focus { transform: none; }

/* ------------------------------------------------------------- layout -- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.shell--narrow { max-width: 940px; }
.band { padding-block: var(--band); }
.band--cream { background: var(--cream); }
.band--linen { background: var(--linen); }
.band--slate { background: var(--slate); color: var(--on-dark); }
.band--slate h1, .band--slate h2, .band--slate h3 { color: var(--on-dark); }
.band--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem); }

/* gap resolves on the parent, so a nested .stack setting its own --s cannot
   clobber the spacing of the stack containing it (margin-top could) */
.stack { display: grid; gap: var(--s, 1rem); align-content: start; }

/* ---------------------------------------------------------- typography -- */
.eyebrow {
  font-size: var(--t-micro);
  letter-spacing: .19em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--amber);
  margin: 0;
}
.band--slate .eyebrow { color: #D8A76A; }
.lead { font-size: var(--t-lead); line-height: 1.55; color: var(--ink-mid); max-width: var(--measure); }
.band--slate .lead { color: var(--on-dark-soft); }
.prose { max-width: var(--measure); color: var(--ink-mid); }
.prose > * + * { margin-top: 1.15em; }
.muted { color: var(--ink-soft); }

.section-head { display: grid; gap: .9rem; margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
.section-head h2 { font-size: var(--t-h2); }
.section-head--split {
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: minmax(0,1fr) auto; column-gap: 3rem; }
  .section-head--split .section-head__aside { justify-self: end; text-align: right; }
}

/* ------------------------------------------------------------ buttons -- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.9rem;
  font-size: var(--t-small); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
}
.btn--solid  { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.btn--solid:hover  { background: var(--amber); border-color: var(--amber); }
.btn--ghost  { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover  { background: var(--ink); color: var(--on-dark); }
.btn--light  { background: var(--on-dark); color: var(--ink); border-color: var(--on-dark); }
.btn--light:hover  { background: transparent; color: var(--on-dark); }
.btn--outline-light { background: transparent; color: var(--on-dark); border-color: rgba(242,238,229,.5); }
.btn--outline-light:hover { background: var(--on-dark); color: var(--ink); border-color: var(--on-dark); }

/* Understated text link with a rule that draws in on hover */
.tlink {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--t-small); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  padding-bottom: .35rem; position: relative; white-space: nowrap;
}
.tlink::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor; transform-origin: left;
  transform: scaleX(.32); transition: transform .4s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); }
.tlink .arw { transition: transform .4s var(--ease); }
.tlink:hover .arw { transform: translateX(4px); }
.band--slate .tlink { color: var(--on-dark); }

/* ============================================================ chrome === */
.utility {
  background: var(--slate-deep); color: var(--on-dark-soft);
  font-size: var(--t-micro); letter-spacing: .06em;
}
.utility__in { display: flex; flex-wrap: wrap; gap: .5rem 1.75rem; align-items: center; justify-content: center; padding-block: .6rem; }
@media (min-width: 860px) { .utility__in { justify-content: space-between; } }
.utility a { color: var(--on-dark); text-decoration: none; }
.utility a:hover { color: #D8A76A; }
.utility__group { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; align-items: center; }

.masthead {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--rule-soft);
  transition: box-shadow .3s var(--ease);
}
.masthead[data-stuck="true"] { box-shadow: 0 1px 24px rgba(31,29,25,.09); }
.masthead__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: clamp(.85rem, .6rem + .8vw, 1.35rem);
}
.brand picture { display: block; }
.brand { display: flex; align-items: center; text-decoration: none; line-height: 1; flex-shrink: 0; }
/* The master logo is 300px wide. Held at 200 or under so it stays crisp on
   2x displays; a vector original would let it run larger. */
.brand__logo { width: clamp(148px, 14vw, 200px); height: auto; }
.brand__logo--foot { width: clamp(180px, 18vw, 240px); }
.brand__name { font-family: var(--display); font-size: clamp(1.2rem,1rem + .75vw,1.6rem); letter-spacing: -.01em; }
.brand__tag { font-size: .58rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-soft); margin-top: .42rem; }

/* --- primary nav + mega menu --- */
.nav { display: none; }
@media (min-width: 1080px) { .nav { display: flex; align-items: center; gap: clamp(1.1rem, .2rem + 1.5vw, 2.1rem); } }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: .4rem;
  background: none; border: 0; padding: .5rem 0; cursor: pointer;
  font-size: var(--t-small); font-weight: 500; letter-spacing: .05em;
  text-decoration: none; color: var(--ink);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__link:hover::after,
.nav__item[data-open="true"] .nav__link::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link .chev { transition: transform .3s var(--ease); }
.nav__item[data-open="true"] .chev { transform: rotate(180deg); }

.mega {
  position: absolute; top: calc(100% + 1px); left: 50%; translate: -50% 0;
  background: var(--paper); border: 1px solid var(--rule-soft);
  box-shadow: 0 24px 60px rgba(31,29,25,.13);
  padding: 2.25rem 2.5rem; min-width: max-content;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.nav__item[data-open="true"] .mega { opacity: 1; visibility: visible; transform: none; }
.mega__cols { display: flex; gap: 3.5rem; }
.mega__col h3 { font-family: var(--text); font-size: var(--t-micro); letter-spacing: .17em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; margin-bottom: 1rem; }
.mega__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.mega__col a { text-decoration: none; font-size: .95rem; color: var(--ink-mid); transition: color .2s var(--ease); }
.mega__col a:hover { color: var(--amber); }
.mega__feature { width: 230px; border-left: 1px solid var(--rule-soft); padding-left: 2.25rem; }
.mega__feature img { aspect-ratio: 4/5; object-fit: contain; mix-blend-mode: multiply; margin-bottom: .9rem; }
.mega__feature p { font-size: .9rem; color: var(--ink-soft); margin-bottom: .75rem; }

.masthead__actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.masthead__actions .btn { display: none; }
@media (min-width: 1080px) { .masthead__actions .btn { display: inline-flex; } }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px; background: none; border: 0; cursor: pointer;
}
@media (min-width: 1080px) { .burger { display: none; } }
.burger span { display: block; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --- mobile drawer --- */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--paper);
  padding: 7rem var(--gutter) 3rem;
  overflow-y: auto;
  transform: translateY(-100%); visibility: hidden;
  transition: transform .45s var(--ease), visibility .45s;
}
.drawer[data-open="true"] { transform: none; visibility: visible; }
@media (min-width: 1080px) { .drawer { display: none; } }
.drawer__group + .drawer__group { border-top: 1px solid var(--rule-soft); }
.drawer__toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: 0; padding: 1.15rem 0; cursor: pointer;
  font-family: var(--display); font-size: 1.4rem; text-align: left;
}
.drawer__toggle .chev { transition: transform .3s var(--ease); }
.drawer__toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.drawer__panel { display: grid; gap: .85rem; padding-bottom: 1.4rem; }
.drawer__panel[hidden] { display: none; }
.drawer__panel a { text-decoration: none; color: var(--ink-mid); font-size: 1rem; }
.drawer__flat {
  display: block; padding: 1.15rem 0; text-decoration: none;
  font-family: var(--display); font-size: 1.4rem;
  border-top: 1px solid var(--rule-soft);
}
.drawer__foot { margin-top: 2.5rem; display: grid; gap: 1rem; }

/* ============================================================== hero === */
.hero { background: var(--cream); overflow: hidden; }
.hero__in {
  display: grid; gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 1.5rem + 6vw, 6.5rem);
}
@media (min-width: 900px) { .hero__in { grid-template-columns: 1.05fr .95fr; } }
.hero__copy { display: grid; gap: 1.5rem; justify-items: start; }
.hero h1 { font-size: var(--t-hero); }
.hero h1 em { font-style: italic; color: var(--amber); }
.hero__figure { position: relative; justify-self: center; }
/* multiply lets the seamless white backdrop dissolve into the band */
.hero__figure img { mix-blend-mode: multiply; max-height: min(72vh, 640px); width: auto; margin-inline: auto; }
.hero__caption {
  margin-top: 1.5rem;
  font-size: var(--t-micro); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
  border-left: 2px solid var(--amber); padding-left: .8rem; line-height: 1.5;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ============================================================= strip === */
.creed { border-block: 1px solid var(--rule); background: var(--paper); }
.creed__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.creed__list li { padding: clamp(1.5rem,1rem + 1.6vw,2.4rem) 1.5rem; text-align: center; }
.creed__list li + li { border-left: 1px solid var(--rule-soft); }
@media (max-width: 719px) {
  .creed__list li + li { border-left: 0; border-top: 1px solid var(--rule-soft); }
}
.creed__k { font-family: var(--display); font-size: 1.15rem; display: block; margin-bottom: .3rem; }
.creed__v { font-size: var(--t-small); color: var(--ink-soft); }

/* ============================================================== grid === */
.grid { display: grid; gap: clamp(1.5rem, .8rem + 2.2vw, 2.75rem); grid-template-columns: 1fr; }
@media (min-width: 560px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 620px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 760px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* --- room card: photo-led, Joinery-style --- */
.room { position: relative; display: block; text-decoration: none; overflow: hidden; background: var(--linen); }
.room__img { aspect-ratio: 4/5; width: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.room:hover .room__img { transform: scale(1.045); }
.room__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(24,22,19,.78) 0%, rgba(24,22,19,.25) 42%, rgba(24,22,19,0) 68%);
}
.room__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem; color: #fff; }
.room__body h3 { font-size: var(--t-h3); color: #fff; }
.room__body p { font-size: var(--t-small); color: rgba(255,255,255,.8); margin-top: .3rem; }

/* --- product card: Moser-style, object on ground --- */
.piece { display: block; text-decoration: none; color: inherit; }
.piece__frame {
  background: var(--cream);
  aspect-ratio: 4/5;
  display: grid; place-items: center;
  padding: clamp(1.25rem, .8rem + 1.5vw, 2.25rem);
  overflow: hidden;
}
.piece__frame img {
  max-height: 100%; width: auto; object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .7s var(--ease);
}
.piece:hover .piece__frame img { transform: scale(1.05); }
/* Some catalog entries are room photographs rather than seamless cutouts.
   Those fill the frame and must not be multiplied against the ground. */
.piece__frame--photo { padding: 0; }
.piece__frame--photo img {
  mix-blend-mode: normal;
  width: 100%; height: 100%; max-height: none;
  object-fit: cover;
}
.piece__body { padding-top: 1rem; display: grid; gap: .2rem; }
.piece__name { font-family: var(--display); font-size: 1.15rem; }
.piece__meta { font-size: var(--t-small); color: var(--ink-soft); }
.piece__price { font-size: var(--t-small); color: var(--ink-mid); }

/* --- discipline card: the four shop lines --- */
.disc { display: block; text-decoration: none; color: inherit; }
.disc__img { aspect-ratio: 3/2; width: 100%; object-fit: cover; }
.disc__body { padding-top: 1.15rem; }
.disc__body h3 { font-size: var(--t-h3); margin-bottom: .45rem; }
.disc__body p { font-size: var(--t-small); color: var(--ink-soft); margin-bottom: .9rem; }

/* ========================================================== features === */
/* Full-bleed editorial band with photo + copy */
.feature { display: grid; align-items: center; gap: 0; }
@media (min-width: 940px) { .feature { grid-template-columns: 1fr 1fr; } }
.feature__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (min-width: 940px) { .feature__media img { aspect-ratio: auto; min-height: 620px; } }
.feature__copy { padding: clamp(2.5rem, 1.5rem + 5vw, 6rem) clamp(1.5rem, .8rem + 4vw, 5rem); display: grid; gap: 1.35rem; justify-items: start; }
.feature__copy h2 { font-size: var(--t-h2); }
@media (min-width: 940px) { .feature--flip .feature__media { order: 2; } }

/* --- process steps --- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; counter-reset: step; }
.steps li { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; padding-block: 1.6rem; border-top: 1px solid var(--rule); }
.steps li:last-child { border-bottom: 1px solid var(--rule); }
.steps__n {
  font-family: var(--display); font-size: 1rem; color: var(--amber);
  padding-top: .2rem; font-variant-numeric: tabular-nums;
}
.steps h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.steps p { font-size: var(--t-small); color: var(--ink-soft); }

/* ========================================================== finishes === */
.swatches { display: grid; grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); gap: clamp(.9rem, .5rem + 1vw, 1.5rem); }
.swatch { display: grid; gap: .55rem; text-align: left; background: none; border: 0; padding: 0; cursor: pointer; }
.swatch__chip {
  aspect-ratio: 1; width: 100%;
  border: 1px solid rgba(31,29,25,.16);
  box-shadow: inset 0 0 34px rgba(31,29,25,.2);
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease);
}
/* a faint grain so a flat color still reads as a finished board */
.swatch__chip::after {
  content: ""; position: absolute; inset: 0; opacity: .32;
  background:
    repeating-linear-gradient(97deg, rgba(255,255,255,.16) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(93deg, rgba(0,0,0,.13) 0 1px, transparent 1px 9px);
}
.swatch:hover .swatch__chip, .swatch[aria-pressed="true"] .swatch__chip { transform: translateY(-3px); }
.swatch[aria-pressed="true"] .swatch__chip { outline: 1.5px solid var(--ink); outline-offset: 3px; }
.swatch__name { font-size: var(--t-small); line-height: 1.35; }
.swatch__note { font-size: var(--t-micro); color: var(--ink-soft); }

.species { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%,250px),1fr)); }
.species__card { background: var(--paper); border: 1px solid var(--rule-soft); }
.band--cream .species__card { background: var(--paper); }
.species__chip { height: 130px; position: relative; overflow: hidden; }
.species__chip::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background: repeating-linear-gradient(88deg, rgba(255,255,255,.2) 0 2px, transparent 2px 7px),
              repeating-linear-gradient(92deg, rgba(0,0,0,.11) 0 1px, transparent 1px 13px);
}
.species__body { padding: 1.25rem 1.35rem 1.5rem; }
.species__body h3 { font-size: 1.25rem; margin-bottom: .45rem; }
.species__body p { font-size: var(--t-small); color: var(--ink-soft); }

/* ======================================================== testimonial === */
.quote { max-width: 900px; margin-inline: auto; text-align: center; display: grid; gap: 1.75rem; justify-items: center; }
.quote blockquote { margin: 0; font-family: var(--display); font-size: var(--t-h2); line-height: 1.25; }
.quote figcaption { font-size: var(--t-small); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.band--slate .quote figcaption { color: var(--on-dark-soft); }
.rule-mark { width: 46px; height: 1px; background: var(--amber); }

/* ============================================================ journal === */
.post { display: block; text-decoration: none; color: inherit; }
.post__img { aspect-ratio: 3/2; width: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post__wrap { overflow: hidden; }
.post:hover .post__img { transform: scale(1.04); }
.post__body { padding-top: 1.1rem; display: grid; gap: .4rem; }
.post__kicker { font-size: var(--t-micro); letter-spacing: .16em; text-transform: uppercase; color: var(--amber); }
.post__body h3 { font-size: 1.3rem; }
.post__body p { font-size: var(--t-small); color: var(--ink-soft); }

/* ========================================================== newsletter == */
.signup { display: grid; gap: 1.75rem; justify-items: center; text-align: center; max-width: 640px; margin-inline: auto; }
.signup h2 { font-size: var(--t-h2); }
.signup__form { display: flex; flex-wrap: wrap; gap: .75rem; width: 100%; justify-content: center; }
.signup__form input {
  flex: 1 1 260px; min-width: 0;
  background: transparent; border: 0; border-bottom: 1px solid rgba(242,238,229,.42);
  color: var(--on-dark); padding: .85rem .25rem; font: inherit;
}
.signup__form input::placeholder { color: rgba(179,172,156,.9); }
.signup__form input:focus { outline: 0; border-bottom-color: var(--on-dark); }

/* ============================================================== forms == */
.field { display: grid; gap: .5rem; }
.field label { font-size: var(--t-micro); letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--ink-mid); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: .8rem .9rem; width: 100%;
  transition: border-color .25s var(--ease);
}
.band--cream .field input, .band--cream .field select, .band--cream .field textarea { background: var(--paper); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--ink); }
.field textarea { min-height: 150px; resize: vertical; }
.field__hint { font-size: var(--t-micro); color: var(--ink-soft); }
.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 700px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } .form-grid .span-2 { grid-column: 1 / -1; } }
.form-note { font-size: var(--t-micro); color: var(--ink-soft); }

/* ============================================================= filter == */
.filters { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2.5rem; }
.chip {
  background: transparent; border: 1px solid var(--rule);
  padding: .5rem 1.1rem; cursor: pointer;
  font-size: var(--t-small); letter-spacing: .04em;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--on-dark); }
.count { font-size: var(--t-small); color: var(--ink-soft); margin-bottom: 1.5rem; }

/* ================================================================ faq == */
.faq { border-top: 1px solid var(--rule); }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 1.4rem 0; font-family: var(--display); font-size: 1.2rem;
}
.faq__q .chev { flex-shrink: 0; transition: transform .3s var(--ease); }
.faq__q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq__a { padding-bottom: 1.5rem; max-width: var(--measure); color: var(--ink-mid); font-size: .98rem; }
.faq__a[hidden] { display: none; }

/* ============================================================= pagehd == */
.pagehead { background: var(--cream); padding-block: clamp(2.75rem, 1.5rem + 5vw, 5.5rem); }
.pagehead__in { display: grid; gap: 1.1rem; max-width: 780px; }
.pagehead h1 { font-size: var(--t-h1); }
.crumbs { font-size: var(--t-micro); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--amber); }

/* ============================================================= footer == */
.foot { background: var(--slate-deep); color: var(--on-dark-soft); padding-block: clamp(3rem,2rem + 4vw,5rem) 2rem; }
.foot a { color: var(--on-dark); text-decoration: none; }
.foot a:hover { color: #D8A76A; }
.foot__cols { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%,180px),1fr)); }
.foot__brand { grid-column: 1 / -1; }
@media (min-width: 980px) { .foot__brand { grid-column: span 2; padding-right: 3rem; } }
.foot__brand .brand__name { color: var(--on-dark); font-size: 1.5rem; }
.foot__brand .brand__tag { color: var(--on-dark-soft); }
.foot__brand .brand__logo { margin-bottom: .55rem; }
.foot__brand .brand__tag { margin-top: 0; }
.foot h3 { font-family: var(--text); font-size: var(--t-micro); letter-spacing: .17em; text-transform: uppercase; color: var(--on-dark); font-weight: 700; margin-bottom: 1.1rem; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; font-size: .93rem; }
.foot__social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.foot__social a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(242,238,229,.25); transition: background .25s var(--ease), border-color .25s var(--ease); }
.foot__social a:hover { background: rgba(242,238,229,.1); border-color: rgba(242,238,229,.5); }
.foot__base {
  margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid rgba(242,238,229,.14);
  display: flex; flex-wrap: wrap; gap: .75rem 2rem; justify-content: space-between;
  font-size: var(--t-micro); color: var(--on-dark-soft);
}
.foot__base ul { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; font-size: var(--t-micro); }

/* ============================================================= motion == */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* ============================================================== utils == */
.vh { position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }
[hidden] { display: none !important; }
.hr { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* -------------------------------------------------------- photo gallery -- */
.gallery img { aspect-ratio: 4/3; width: 100%; object-fit: cover; }
.gallery figcaption {
  font-size: var(--t-micro); margin-top: .75rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft);
}
