/* =======================================================================
   Black Wax Coffee & Records — design tokens + shared styles
   Retro-modern record-shop café. Vinyl warmth meets specialty coffee.
   ======================================================================= */

:root {
  /* ---- Palette ---- */
  --cream:        #F4EAD8;   /* base background */
  --cream-card:   #EADDBF;   /* card / raised surface on cream */
  --cream-line:   #DCCBA6;   /* hairlines on cream */
  --ink:          #171310;   /* vinyl black — dark sections + text */
  --ink-soft:     #221C16;   /* dark section alt surface */
  --ink-card:     #2B2319;   /* card surface on ink */
  --ink-line:     #3A3025;   /* hairlines on ink */
  --orange:       #D9622B;   /* burnt orange — primary accent */
  --orange-dark:  #B84E20;   /* hover / pressed */
  --mustard:      #D9A521;   /* mustard — secondary accent */
  --mustard-dark: #B5860E;

  --text:            #201A14; /* body text on cream — ~14:1 */
  --text-muted:       #4E4032; /* secondary text on cream — ~7.6:1 */
  --text-on-ink:       #F4EAD8; /* body text on ink — ~15:1 */
  --text-on-ink-muted: #C9BBA0; /* secondary text on ink — ~8.6:1 */

  /* ---- Type ---- */
  --font-head: 'Space Grotesk', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- Layout ---- */
  --container: 1180px;
  --radius: 4px;
  --radius-lg: 10px;

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =======================================================================
   Reset
   ======================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; line-height: 1.12; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* Visible focus for keyboard users everywhere */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 600;
  padding: 12px 18px;
  border-radius: var(--radius);
  z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Subtle film-grain texture, layered wherever .grain is applied */
.grain { position: relative; isolation: isolate; }
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  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");
  z-index: 1;
}

/* =======================================================================
   Buttons
   ======================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform 0.15s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn--primary {
  background: var(--orange);
  color: var(--ink);
}
.btn--primary:hover { background: var(--orange-dark); }
.btn--ghost-cream {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost-cream:hover { background: var(--ink); color: var(--text-on-ink); }
.btn--ghost-ink {
  background: transparent;
  border-color: var(--text-on-ink-muted);
  color: var(--text-on-ink);
}
.btn--ghost-ink:hover { background: var(--text-on-ink); color: var(--ink); border-color: var(--text-on-ink); }
.btn--mustard { background: var(--mustard); color: var(--ink); }
.btn--mustard:hover { background: var(--mustard-dark); }
.btn--lg { min-height: 54px; padding: 14px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

/* =======================================================================
   Header / Nav
   ======================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(23, 19, 16, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--ink-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  color: var(--text-on-ink);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand__mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--orange) 0 5px, transparent 5.5px),
    repeating-radial-gradient(circle at center, var(--ink) 0 2px, #3a3025 2px 3px);
  border: 1px solid #4a3d2c;
  flex: none;
}
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.6rem; color: var(--text-on-ink-muted); letter-spacing: 0.08em; text-transform: uppercase; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: var(--text-on-ink-muted);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 6px 2px;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--orange);
  transition: right 0.25s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--text-on-ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }

.header__actions { display: flex; align-items: center; gap: 14px; }
.header__cta { display: none; }
@media (min-width: 860px) { .header__cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
}
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 0 auto; background: var(--text-on-ink); transition: transform 0.25s var(--ease), opacity 0.25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 859px) {
  .nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    overflow-y: auto;
  }
  .nav a { width: 100%; padding: 14px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--ink-line); }
  .nav.is-open { transform: translateX(0); }
}
@media (min-width: 860px) { .nav-toggle { display: none; } }

/* =======================================================================
   Vinyl record — signature element
   ======================================================================= */
.vinyl {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center,
      #1c1712 0 3px,
      #241e17 3px 5px,
      #171310 5px 7px
    );
  box-shadow:
    0 0 0 1px rgba(244, 234, 216, 0.06),
    0 30px 60px -20px rgba(0,0,0,0.6),
    inset 0 0 40px rgba(0,0,0,0.5);
}
.vinyl::before {
  /* sheen */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 210deg at 40% 35%, rgba(255,255,255,0.10), transparent 35%, transparent 70%, rgba(255,255,255,0.05));
  pointer-events: none;
}
.vinyl__label {
  position: absolute;
  top: 50%; left: 50%;
  width: 36%; height: 36%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--orange-dark), var(--orange) 65%, var(--orange-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.vinyl__label svg { width: 100%; height: 100%; }
.vinyl__label-text { font-family: var(--font-head); font-size: 6.2px; font-weight: 700; letter-spacing: 1.5px; fill: var(--ink); }
.vinyl__hole {
  position: absolute;
  top: 50%; left: 50%;
  width: 5%; height: 5%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.8);
}
.vinyl__spin { animation: vinyl-spin 60s linear infinite; }
@keyframes vinyl-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .vinyl__spin { animation: none; }
}

/* =======================================================================
   Groove divider — inline SVG, evokes concentric record grooves
   ======================================================================= */
.groove-divider { display: block; width: 100%; height: 44px; }
.groove-divider--on-cream path { stroke: var(--ink); opacity: 0.12; }
.groove-divider--on-ink path { stroke: var(--cream); opacity: 0.10; }
.groove-divider path { fill: none; stroke-width: 1.5; }

/* =======================================================================
   Sections
   ======================================================================= */
.section { padding: 88px 0; position: relative; }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: var(--text-on-ink); }
.section--soft { background: var(--ink-soft); color: var(--text-on-ink); }
.section--tight { padding: 56px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--orange); display: inline-block; }
.section--ink .eyebrow, .section--soft .eyebrow { color: var(--mustard); }
.section--ink .eyebrow::before, .section--soft .eyebrow::before { background: var(--mustard); }

.section__head { max-width: 640px; margin: 0 0 48px; }
.section__head--center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.section__title { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 700; margin-bottom: 14px; }
.section__lede { font-size: 1.08rem; color: var(--text-muted); max-width: 56ch; }
.section--ink .section__lede, .section--soft .section__lede { color: var(--text-on-ink-muted); }

/* =======================================================================
   Hero
   ======================================================================= */
.hero {
  background: var(--ink);
  color: var(--text-on-ink);
  position: relative;
  overflow: hidden;
  padding: 64px 0 96px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(217,98,43,0.16), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.15fr 0.85fr; gap: 32px; }
}
.hero__eyebrow { color: var(--mustard); }
.hero__eyebrow::before { background: var(--mustard); }
.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 3.9rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero__lede {
  font-size: 1.18rem;
  color: var(--text-on-ink-muted);
  max-width: 52ch;
  margin-bottom: 32px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 22px; font-size: 0.9rem; color: var(--text-on-ink-muted); }
.hero__meta li { display: flex; align-items: center; gap: 8px; }
.hero__meta svg { width: 16px; height: 16px; flex: none; color: var(--mustard); }

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual .vinyl { width: min(340px, 78vw); }
.hero__visual .vinyl-peek {
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  right: -18%;
  background: linear-gradient(135deg, #2a2015, #171310);
  border: 1px solid var(--ink-line);
  z-index: 0;
}

/* Page hero (interior pages — coffee/records/about/contact) */
.page-hero {
  background: var(--ink);
  color: var(--text-on-ink);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -30%; left: -8%;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(217,165,33,0.14), transparent 70%);
}
.page-hero__inner { position: relative; z-index: 2; max-width: 720px; }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.2rem); margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: var(--text-on-ink-muted); max-width: 56ch; }
.page-hero__crumb { font-size: 0.85rem; color: var(--text-on-ink-muted); margin-bottom: 18px; }
.page-hero__crumb a { color: var(--mustard); }
.page-hero__crumb a:hover { text-decoration: underline; }

/* =======================================================================
   "What we are" strips (café / records)
   ======================================================================= */
.strips { display: grid; grid-template-columns: 1fr; }
@media (min-width: 760px) { .strips { grid-template-columns: 1fr 1fr; } }
.strip { padding: 64px 0; position: relative; }
.strip__inner { padding: 0 24px; max-width: 560px; }
@media (min-width: 760px) {
  .strip:first-child .strip__inner { margin-left: auto; }
  .strip:last-child .strip__inner { margin-right: auto; }
}
.strip--cafe { background: var(--cream); }
.strip--records { background: var(--ink-soft); color: var(--text-on-ink); }
.strip__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 4 / 3;
}
.strip__media img { width: 100%; height: 100%; object-fit: cover; }
.strip h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 14px; }
.strip p { color: var(--text-muted); margin-bottom: 10px; }
.strip--records p { color: var(--text-on-ink-muted); }
.strip__list { margin-top: 18px; display: grid; gap: 10px; }
.strip__list li { display: flex; gap: 10px; font-size: 0.95rem; }
.strip__list svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--orange); }
.strip--records .strip__list svg { color: var(--mustard); }

/* =======================================================================
   Cards (menu items / record categories / value props)
   ======================================================================= */
.grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 760px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 760px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--cream-card);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.section--ink .card, .section--soft .card {
  background: var(--ink-card);
  border-color: var(--ink-line);
}
@media (prefers-reduced-motion: no-preference) {
  .card:hover, .menu-item:hover, .record-cat:hover, .photo-card:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: 0 20px 34px -18px rgba(0,0,0,0.35);
  }
}
.card__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 0.96rem; }
.section--ink .card p, .section--soft .card p { color: var(--text-on-ink-muted); }

/* Menu items (coffee.html) */
.menu-item {
  background: var(--cream-card);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.menu-item__row { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.menu-item__row h3 { font-size: 1.08rem; }
.menu-item__price { font-family: var(--font-head); font-weight: 600; color: var(--orange-dark); white-space: nowrap; }
.menu-item p { color: var(--text-muted); font-size: 0.94rem; margin-top: 6px; }
.menu-group { margin-bottom: 52px; }
.menu-group:last-child { margin-bottom: 0; }
.menu-group__title { font-size: 1.5rem; margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.menu-group__title svg { width: 24px; height: 24px; color: var(--orange); }

/* Record categories (records.html) */
.record-cat {
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.record-cat h3 { color: var(--text-on-ink); font-size: 1.12rem; margin-bottom: 8px; }
.record-cat p { color: var(--text-on-ink-muted); font-size: 0.94rem; }
.record-cat__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mustard);
  border: 1px solid var(--mustard);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 14px;
}

/* Photo grid (gallery-style panels used across pages) */
.photo-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .photo-grid { grid-template-columns: repeat(4, 1fr); } }
.photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.photo-card:nth-child(2n) { aspect-ratio: 1 / 1; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 12px 10px;
  font-size: 0.78rem;
  color: var(--text-on-ink);
  background: linear-gradient(to top, rgba(23,19,16,0.85), transparent);
}

/* =======================================================================
   Instagram callout band
   ======================================================================= */
.ig-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--ink);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.ig-band__inner {
  display: grid;
  gap: 36px;
  align-items: center;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 2;
}
@media (min-width: 860px) { .ig-band__inner { grid-template-columns: 1.2fr 0.8fr; } }
.ig-band .eyebrow { color: var(--ink); }
.ig-band .eyebrow::before { background: var(--ink); }
.ig-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.ig-band p { font-size: 1.05rem; max-width: 48ch; margin-bottom: 26px; opacity: 0.88; }
.ig-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.ig-band__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ig-band__grid .photo-card { aspect-ratio: 1/1; border: 3px solid rgba(23,19,16,0.15); }
.ig-band__grid .photo-card:nth-child(2n) { aspect-ratio: 1/1; }

/* =======================================================================
   Reviews
   ======================================================================= */
.reviews { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .reviews { grid-template-columns: 1fr 1fr; } }
.review-card {
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.review-card__stars { color: var(--mustard); letter-spacing: 2px; margin-bottom: 14px; font-size: 0.95rem; }
.review-card p { font-size: 1.02rem; color: var(--text-on-ink); margin-bottom: 16px; }
.review-card__author { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--text-on-ink-muted); }
.review-card__author span { font-weight: 400; opacity: 0.8; }
.review-note { font-size: 0.9rem; color: var(--text-on-ink-muted); margin-bottom: 28px; }

/* =======================================================================
   Hours / visit
   ======================================================================= */
.visit {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .visit { grid-template-columns: 1fr 1fr; } }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 18px; }
.hours-table td { padding: 11px 0; border-bottom: 1px solid var(--cream-line); font-size: 0.98rem; }
.section--ink .hours-table td, .section--soft .hours-table td { border-color: var(--ink-line); }
.hours-table td:first-child { font-family: var(--font-head); font-weight: 600; }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }
.section--ink .hours-table td:last-child, .section--soft .hours-table td:last-child { color: var(--text-on-ink-muted); }
.addr-card {
  background: var(--cream-card);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.section--ink .addr-card, .section--soft .addr-card { background: var(--ink-card); border-color: var(--ink-line); }
.addr-card__row { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.addr-card__row:last-child { margin-bottom: 0; }
.addr-card__row svg { width: 20px; height: 20px; flex: none; color: var(--orange); margin-top: 2px; }
.addr-card__row strong { display: block; font-family: var(--font-head); margin-bottom: 2px; }

/* =======================================================================
   Map placeholder (contact page)
   ======================================================================= */
.map-placeholder {
  border-radius: var(--radius-lg);
  border: 1px dashed var(--ink-line);
  background:
    linear-gradient(135deg, rgba(217,98,43,0.08), rgba(217,165,33,0.08)),
    var(--ink-card);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 32px;
  color: var(--text-on-ink-muted);
}
.map-placeholder svg { width: 40px; height: 40px; color: var(--mustard); }
.map-placeholder strong { color: var(--text-on-ink); font-family: var(--font-head); }

/* =======================================================================
   About page — story + stats
   ======================================================================= */
.story { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .story { grid-template-columns: 1.1fr 0.9fr; align-items: start; } }
.story p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.05rem; }
.story p:last-child { margin-bottom: 0; }
.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 28px; }
.stat {
  background: var(--cream-card);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.stat strong { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--orange-dark); }
.stat span { font-size: 0.85rem; color: var(--text-muted); }

/* =======================================================================
   Contact form
   ======================================================================= */
.form-card {
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-on-ink);
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--ink-line);
  background: var(--ink);
  color: var(--text-on-ink);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--text-on-ink-muted); opacity: 0.7; }
.form-note { margin-top: 16px; font-size: 0.9rem; color: var(--mustard); min-height: 1.2em; }

/* =======================================================================
   Footer
   ======================================================================= */
.site-footer { background: var(--ink); color: var(--text-on-ink-muted); padding: 64px 0 32px; }
.footer__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ink-line);
  margin-bottom: 28px;
}
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer__brand { display: flex; align-items: center; gap: 10px; color: var(--text-on-ink); font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; margin-bottom: 14px; }
.footer p { font-size: 0.92rem; margin-bottom: 10px; }
.footer h4 { font-family: var(--font-head); color: var(--text-on-ink); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer__links { display: grid; gap: 10px; }
.footer__links a:hover { color: var(--mustard); }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--ink-line);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.footer__social a:hover { border-color: var(--mustard); color: var(--mustard); }
.footer__social svg { width: 17px; height: 17px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.82rem; }
.footer__bottom a:hover { color: var(--mustard); }

/* =======================================================================
   Scroll reveal (content visible without JS; JS gates the hidden state)
   ======================================================================= */
html.js .reveal { opacity: 0; transform: translateY(16px); }
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  }
}
html.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; }
}

/* =======================================================================
   Misc utility
   ======================================================================= */
.center-copy { max-width: 620px; margin: 0 auto; text-align: center; }
.mt-lg { margin-top: 48px; }
.text-accent { color: var(--orange); }
.section--ink .text-accent, .section--soft .text-accent { color: var(--mustard); }
