/* ============================================================
   BASALT & BARLEY BREWING CO. — Bengaluru
   Rugged craft-brewery visual system
   Timber · Steel · Basalt stone
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { min-height: 100vh; overflow-x: hidden; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }
ul { list-style: none; padding: 0; }

/* ---------- Tokens ---------- */
:root {
  --forest:   #2B2E25;
  --forest-2: #23261E;
  --forest-3: #1A1C16;
  --hop:      #7FA53E;
  --hop-lite: #9DC258;
  --rust:     #A6552E;
  --rust-lite:#C56B3F;
  --bone:     #E8E3D6;
  --bone-2:   #DCD6C6;
  --bone-dim: #B7B0A0;
  --ink:      #171812;

  --stone-line: rgba(232,227,214,.10);
  --shadow: 0 18px 50px -22px rgba(0,0,0,.65);

  --serif: "Oswald", "Arial Narrow", sans-serif;
  --body:  "Roboto Condensed", "Arial Narrow", sans-serif;

  --pad: clamp(1.15rem, 5vw, 2.5rem);
  --maxw: 1200px;
  --r: 3px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--body);
  background: var(--bone);
  color: var(--ink);
  font-size: clamp(1rem, .96rem + .25vw, 1.12rem);
  line-height: 1.6;
  letter-spacing: .01em;
}

/* film grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: .045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: .01em;
  text-transform: uppercase;
}

/* ---------- Skip link ---------- */
.skip {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 500;
  background: var(--hop);
  color: var(--forest-3);
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  padding: .7rem 1.4rem;
  border-radius: var(--r);
  transition: top .2s ease;
}
.skip:focus-visible { top: .6rem; }

/* ---------- Focus ---------- */
:focus-visible {
  outline: 3px solid var(--hop-lite);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(3.5rem, 9vw, 7rem); position: relative; }

.on-forest { background: var(--forest); color: var(--bone); }
.on-forest-2 { background: var(--forest-2); color: var(--bone); }
.on-bone { background: var(--bone); color: var(--ink); }

/* timber pinstripe divider used on dark panels */
.on-forest, .on-forest-2 {
  background-image:
    repeating-linear-gradient(90deg, rgba(232,227,214,.028) 0 1px, transparent 1px 46px);
}

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--serif);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  color: var(--hop);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--rust);
}
.eyebrow--center { justify-content: center; }
.on-bone .eyebrow { color: var(--rust); }
.on-bone .eyebrow::before { background: var(--hop); }

.section-title { font-size: clamp(2rem, 5.2vw, 3.6rem); }
.section-title .amp { color: var(--rust-lite); font-weight: 400; }
.lead { font-size: clamp(1.05rem, 1rem + .5vw, 1.35rem); color: var(--bone-dim); max-width: 56ch; }
.on-bone .lead { color: #55584a; }

.head-center { text-align: center; max-width: 62ch; margin-inline: auto; }

/* corner-bracket framed block */
.framed { position: relative; }
.framed::before, .framed::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid currentColor;
  opacity: .5;
}
.framed::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.framed::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--hop);
  --fg: var(--forest-3);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--serif);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .92rem;
  padding: .85rem 1.6rem;
  background: var(--bg);
  color: var(--fg);
  border: 2px solid var(--bg);
  border-radius: var(--r);
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 22px -12px rgba(0,0,0,.6); }
.btn:active { transform: translateY(0); }
.btn--rust { --bg: var(--rust); --fg: var(--bone); }
.btn--ghost {
  --bg: transparent;
  --fg: var(--bone);
  border-color: rgba(232,227,214,.45);
}
.btn--ghost:hover { background: rgba(232,227,214,.08); }
.on-bone .btn--ghost { --fg: var(--ink); border-color: rgba(23,24,18,.35); }
.on-bone .btn--ghost:hover { background: rgba(23,24,18,.05); }
.btn--block { width: 100%; justify-content: center; }
.btn svg { width: 1.1em; height: 1.1em; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26,28,22,.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--bone);
  border-bottom: 1px solid var(--stone-line);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-stuck { background: rgba(26,28,22,.97); box-shadow: 0 10px 30px -18px #000; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
  padding-block: .5rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--bone); }
.brand .badge-mini { width: 42px; height: 42px; flex: 0 0 auto; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word b {
  font-family: var(--serif);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1.02rem;
}
.brand-word span {
  font-family: var(--serif);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .56rem;
  color: var(--hop);
  margin-top: .2rem;
}

.primary-nav { display: flex; align-items: center; gap: 1.6rem; }
.primary-nav a {
  font-family: var(--serif);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .82rem;
  text-decoration: none;
  color: var(--bone);
  position: relative;
  padding: .3rem 0;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--hop);
  transition: width .22s ease;
}
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { width: 100%; }
.nav-cta { display: inline-flex; }

.nav-toggle {
  display: none;
  width: 46px; height: 42px;
  background: transparent;
  border: 2px solid rgba(232,227,214,.4);
  border-radius: var(--r);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--bone);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--forest-3);
    border-bottom: 3px solid var(--hop);
    padding: .5rem var(--pad) 1.6rem;
    clip-path: inset(0 0 100% 0);
    transition: clip-path .3s ease;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .primary-nav.is-open { clip-path: inset(0 0 0 0); }
  .primary-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--stone-line);
    font-size: 1.05rem;
  }
  .primary-nav a::after { display: none; }
  .nav-cta { margin-top: 1.1rem; }
  .nav-cta.btn { padding-block: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .primary-nav { transition: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  color: var(--bone);
  background: var(--forest-3);
  isolation: isolate;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,28,22,.55) 0%, rgba(26,28,22,.72) 55%, rgba(26,28,22,.94) 100%),
    radial-gradient(120% 80% at 78% 30%, transparent 40%, rgba(26,28,22,.6) 100%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 4vw, 2.5rem);
  align-items: center;
  padding-block: clamp(3.5rem, 12vh, 7.5rem);
  min-height: min(88vh, 780px);
}
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.35fr .65fr; }
}
.hero__eyebrow {
  display: inline-flex;
  gap: .7rem;
  align-items: center;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .74rem;
  font-weight: 500;
  color: var(--bone-2);
  margin-bottom: 1.3rem;
}
.hero__eyebrow b { color: var(--hop-lite); font-weight: 600; }
.hero__eyebrow .dot { width: 6px; height: 6px; background: var(--rust-lite); transform: rotate(45deg); }
.hero h1 {
  font-size: clamp(2.7rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: .005em;
  text-wrap: balance;
}
.hero h1 .rust { color: var(--rust-lite); }
.hero h1 .out {
  color: transparent;
  -webkit-text-stroke: 2px var(--bone);
  text-stroke: 2px var(--bone);
}
.hero__tag {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1rem + .6vw, 1.4rem);
  max-width: 40ch;
  color: var(--bone-2);
}
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .9rem; }

.hero__stats {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 4vw, 2.6rem);
  border-top: 1px solid var(--stone-line);
  padding-top: 1.5rem;
}
.hero__stat b {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--bone);
  line-height: 1;
}
.hero__stat span {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .66rem;
  color: var(--hop-lite);
}

.hero__crest { justify-self: center; }
.hero__crest .crest { width: clamp(180px, 34vw, 300px); height: auto; }
@media (max-width: 899px) {
  .hero__crest { display: none; }
}

/* Crest animation (rotate ring slowly) */
.crest .ring-text { animation: spin 60s linear infinite; transform-origin: 100px 100px; }
@media (prefers-reduced-motion: reduce) { .crest .ring-text { animation: none; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   STORY
   ============================================================ */
.story__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 820px) { .story__grid { grid-template-columns: 1fr 1fr; } }
.story__media { position: relative; }
.story__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--stone-line);
}
.story__stamp {
  position: absolute;
  right: clamp(-.5rem, 2vw, 1.5rem);
  bottom: -1.4rem;
  background: var(--rust);
  color: var(--bone);
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
  font-size: .82rem;
  padding: .8rem 1.2rem;
  box-shadow: var(--shadow);
  border-radius: var(--r);
}
.story__stamp b { display: block; font-size: 1.35rem; letter-spacing: .05em; }
.story__body p + p { margin-top: 1.1rem; }
.story__body .drop::first-letter {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 3.4rem;
  float: left;
  line-height: .8;
  padding: .3rem .5rem .1rem 0;
  color: var(--hop);
}
.pillars {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(23,24,18,.14);
  padding-top: 1.4rem;
}
.pillars li b {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rust);
  display: block;
  font-size: 1rem;
}
.pillars li span { font-size: .86rem; color: #5a5c4d; }

/* ============================================================
   ON TAP — signature block
   ============================================================ */
.tap-scale {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  color: var(--bone-dim);
  margin-top: 1.2rem;
}
.tap-scale .key { display: inline-flex; align-items: center; gap: .5rem; }
.tap-scale .swatch { width: 26px; height: 8px; border-radius: 2px; }
.swatch--abv { background: var(--hop); }
.swatch--ibu { background: var(--rust-lite); }

.tap-grid {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .tap-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .tap-grid { grid-template-columns: 1fr 1fr; } }

.tap {
  position: relative;
  background: var(--forest-2);
  border: 1px solid var(--stone-line);
  border-left: 4px solid var(--hop);
  border-radius: var(--r);
  padding: 1.5rem 1.5rem 1.4rem;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.tap:nth-child(odd) { border-left-color: var(--hop); }
.tap:nth-child(even) { border-left-color: var(--rust); }
.tap:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tap__head { display: flex; justify-content: space-between; align-items: baseline; gap: .8rem; flex-wrap: wrap; }
.tap__name { font-size: 1.35rem; color: var(--bone); }
.tap__style {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  color: var(--hop-lite);
  white-space: nowrap;
}
.tap:nth-child(even) .tap__style { color: var(--rust-lite); }
.tap__desc { color: var(--bone-dim); font-size: .95rem; margin-top: .5rem; }

.tap__meters { margin-top: 1.1rem; display: grid; gap: .7rem; }
.meter__top {
  display: flex;
  justify-content: space-between;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
}
.meter__label { color: var(--bone-dim); }
.meter__val { color: var(--bone); font-weight: 600; }
.meter__track {
  margin-top: .3rem;
  height: 9px;
  background: rgba(232,227,214,.12);
  border-radius: 6px;
  overflow: hidden;
}
.meter__fill {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: 6px;
  background: linear-gradient(90deg, var(--hop), var(--hop-lite));
  transition: width 1s cubic-bezier(.22,.61,.36,1);
}
.meter__fill--ibu { background: linear-gradient(90deg, var(--rust), var(--rust-lite)); }
/* JS-gated animation: start empty only when JS is present */
html.js .meter__fill { width: 0; }
html.js .meter__fill.is-filled { width: var(--w); }
@media (prefers-reduced-motion: reduce) { .meter__fill { transition: none; } }

.tap__price {
  margin-top: 1.2rem;
  padding-top: .9rem;
  border-top: 1px dashed rgba(232,227,214,.2);
  display: flex;
  gap: 1.4rem;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  color: var(--bone-dim);
}
.tap__price b { color: var(--bone); font-size: 1rem; letter-spacing: .02em; }

/* ============================================================
   KITCHEN
   ============================================================ */
.kitchen__grid {
  margin-top: clamp(1.6rem, 4vw, 2.6rem);
  display: grid;
  gap: 0 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .kitchen__grid { grid-template-columns: 1fr 1fr; } }
.dish {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: .5rem 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(23,24,18,.14);
}
.dish__name { font-family: var(--serif); text-transform: uppercase; letter-spacing: .04em; font-size: 1.12rem; color: var(--ink); }
.dish__price { font-family: var(--serif); font-weight: 600; color: var(--rust); font-size: 1.1rem; white-space: nowrap; }
.dish__desc { grid-column: 1 / -1; font-size: .9rem; color: #5a5c4d; margin-top: .15rem; }
.dish .tag {
  display: inline-block;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .58rem;
  color: var(--hop);
  border: 1px solid rgba(127,165,62,.5);
  padding: .05rem .4rem;
  border-radius: 2px;
  margin-left: .5rem;
  vertical-align: middle;
}
.kitchen__note { margin-top: 1.6rem; font-size: .86rem; color: #5a5c4d; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  margin-top: clamp(1.6rem, 4vw, 2.6rem);
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
}
@media (min-width: 820px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--r); background: var(--forest-3); }
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform .5s ease;
}
.gallery figure:hover img { transform: scale(1.06); }
.gallery .wide { grid-column: span 2; }
.gallery .wide img { aspect-ratio: 2 / 1; }
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .7rem .8rem;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .68rem;
  color: var(--bone);
  background: linear-gradient(0deg, rgba(26,28,22,.85), transparent);
}
@media (prefers-reduced-motion: reduce) { .gallery figure:hover img { transform: none; } }

/* ============================================================
   BREWER
   ============================================================ */
.brewer__grid {
  display: grid;
  gap: clamp(1.8rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 820px) { .brewer__grid { grid-template-columns: .8fr 1.2fr; } }
.brewer__media { position: relative; }
.brewer__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--r);
  filter: saturate(.9) contrast(1.03);
}
.brewer__media .framed { color: var(--hop); }
.brewer h3 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-top: .4rem; }
.brewer__role {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--hop);
  font-size: .8rem;
  margin-top: .6rem;
}
.brewer blockquote {
  margin: 1.4rem 0 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.25;
  color: var(--bone);
  text-transform: none;
  border-left: 3px solid var(--rust);
  padding-left: 1.2rem;
}
.brewer__sign { margin-top: 1.3rem; font-size: .92rem; color: var(--bone-dim); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes {
  margin-top: clamp(1.8rem, 4vw, 2.8rem);
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--bone);
  color: var(--ink);
  border: 1px solid rgba(23,24,18,.12);
  border-top: 4px solid var(--hop);
  border-radius: var(--r);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.quote:nth-child(2) { border-top-color: var(--rust); }
.quote:nth-child(3) { border-top-color: var(--forest); }
.quote .stars { color: var(--rust); letter-spacing: .15em; font-size: .9rem; }
.quote p { margin-top: .7rem; font-size: 1.02rem; }
.quote footer { margin-top: auto; padding-top: 1rem; }
.quote cite {
  font-style: normal;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  color: var(--forest);
  display: block;
}
.quote .who { font-size: .78rem; color: #6a6c5c; }

/* ============================================================
   VISIT + FORM
   ============================================================ */
.visit__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (min-width: 900px) { .visit__grid { grid-template-columns: 1fr 1fr; } }

.info-block + .info-block { margin-top: 1.6rem; }
.info-block h3 {
  font-size: 1rem;
  letter-spacing: .16em;
  color: var(--hop);
  margin-bottom: .5rem;
}
.info-block p { color: var(--bone-2); }
.hours { display: grid; gap: .35rem; margin-top: .4rem; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--stone-line);
  font-size: .95rem;
}
.hours li span:first-child { color: var(--bone-2); font-family: var(--serif); text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; }
.hours li span:last-child { color: var(--bone); }
.hours li.closed span:last-child { color: var(--rust-lite); }

.contact-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }

/* Form */
.form-card {
  background: var(--forest-2);
  border: 1px solid var(--stone-line);
  border-top: 4px solid var(--rust);
  border-radius: var(--r);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
}
.form-card h3 { color: var(--bone); font-size: 1.4rem; }
.form-card .sub { color: var(--bone-dim); font-size: .92rem; margin-top: .4rem; margin-bottom: 1.4rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .74rem;
  color: var(--bone-2);
  margin-bottom: .4rem;
}
.field label .req { color: var(--rust-lite); }
.field input, .field textarea {
  width: 100%;
  background: var(--forest-3);
  border: 1px solid rgba(232,227,214,.18);
  border-radius: var(--r);
  color: var(--bone);
  padding: .8rem .9rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #7f8272; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--hop);
  box-shadow: 0 0 0 3px rgba(127,165,62,.22);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 520px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-reassure {
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--bone-dim);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.form-reassure svg { width: 1.1em; height: 1.1em; color: var(--hop); flex: 0 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--forest-3);
  color: var(--bone);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  border-top: 3px solid var(--hop);
  background-image: repeating-linear-gradient(90deg, rgba(232,227,214,.025) 0 1px, transparent 1px 40px);
}
.footer-top {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--stone-line);
}
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .badge-mini { width: 54px; height: 54px; margin-bottom: 1rem; }
.footer-brand p { color: var(--bone-dim); max-width: 40ch; margin-top: .6rem; font-size: .95rem; }
.footer-col h4 { font-size: .82rem; letter-spacing: .16em; color: var(--hop); margin-bottom: .9rem; }
.footer-col ul { display: grid; gap: .5rem; }
.footer-col a { text-decoration: none; color: var(--bone-2); font-size: .95rem; }
.footer-col a:hover { color: var(--hop-lite); }
.socials { display: flex; gap: .7rem; margin-top: 1rem; }
.socials a {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stone-line);
  border-radius: var(--r);
  color: var(--bone);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.socials a:hover { background: var(--hop); color: var(--forest-3); transform: translateY(-2px); }
.socials svg { width: 20px; height: 20px; }
.footer-bottom {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--bone-dim);
}
.footer-bottom a { color: var(--hop-lite); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }
.studio-line { font-family: var(--serif); text-transform: uppercase; letter-spacing: .08em; }

/* ============================================================
   MOTION / REVEAL (JS + motion-safe gated)
   ============================================================ */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
html.js .reveal.is-visible { opacity: 1; transform: none; }
html.js .reveal-delay-1 { transition-delay: .08s; }
html.js .reveal-delay-2 { transition-delay: .16s; }
html.js .reveal-delay-3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Thank-you page ---------- */
.thanks {
  min-height: 82vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: clamp(3rem, 10vw, 7rem);
}
.thanks .crest { width: clamp(120px, 22vw, 170px); margin: 0 auto 1.8rem; }
.thanks h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
.thanks p { color: var(--bone-2); max-width: 46ch; margin: 1.1rem auto 0; font-size: 1.1rem; }
.thanks .thanks-actions { margin-top: 2rem; display: flex; gap: .9rem; flex-wrap: wrap; justify-content: center; }

/* ---------- Sub-page hero (contact) ---------- */
.page-hero {
  background: var(--forest);
  color: var(--bone);
  padding-block: clamp(3rem, 8vw, 5.5rem) clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid var(--stone-line);
  background-image: repeating-linear-gradient(90deg, rgba(232,227,214,.028) 0 1px, transparent 1px 46px);
}
.page-hero h1 { font-size: clamp(2.3rem, 6vw, 4.2rem); margin-top: .4rem; }
.page-hero p { color: var(--bone-2); max-width: 56ch; margin-top: 1rem; font-size: 1.1rem; }
.crumb { font-family: var(--serif); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; color: var(--hop); }
.crumb a { color: var(--hop); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
