/* Bricolage Bakery — Korean minimalist white theme: whitespace, thin rules, Noto KR */

:root {
  --white: #ffffff;
  --cream: #f9f7f2;
  --butter: #f0e9d8;
  --bg: #f2efe8;
  --bg-subtle: #ebe6dc;
  --border: #e2ddd4;
  --border-strong: #c9c2b5;
  --text: #1a1816;
  --text-secondary: #3d3a35;
  --text-muted: #7a756c;
  --accent: #1a1816;
  --footer-dark: #141210;
  --footer-text: #e8e4dc;
  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 18px;
  --font-sans: "Noto Sans KR", system-ui, -apple-system, sans-serif;
  --font-serif: "Noto Serif KR", "Noto Serif", Georgia, serif;
  /* Matches owner logo: slab / typewriter stamp (Courier Prime ≈ logo lettering) */
  --font-brand: "Courier Prime", "Courier New", Courier, monospace;
  --header-h: 3.75rem;
  --max: 1080px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  background-color: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--text);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--text-muted);
}

:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  padding: 0.5rem 0.9rem;
  background: var(--text);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8125rem;
  z-index: 1000;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

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

/* Ticker — address / hours strip */
.ticker-bar {
  background: var(--text);
  color: var(--cream);
  overflow: hidden;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-segment {
  flex-shrink: 0;
  padding-right: 3rem;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    justify-content: center;
    width: auto;
    margin: 0 auto;
  }

  .ticker-segment:last-child {
    display: none;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  background: rgba(240, 233, 216, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.brand:hover {
  color: var(--text);
  opacity: 0.7;
}

.brand-logo {
  width: 40px;
  height: auto;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.brand-wordmark {
  display: none;
}

/* Same typewriter/slab voice as the circular logo (Courier Prime) */
.brand-name {
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: 0.03em;
}

@media (min-width: 480px) {
  .brand-wordmark {
    display: inline;
  }
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.25rem 1.75rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}

.nav-external {
  opacity: 0.85;
}

.header-cta {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border-strong);
}

.header-cta:hover {
  border-bottom-color: var(--text);
  color: var(--text);
}

/* Immersive hero stack (Artemis-style) + Teeter CTAs */
.hero-stack {
  position: relative;
  min-height: min(92vh, 900px);
}

.site-header--on-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
}

.brand--on-dark {
  color: var(--white);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.brand--on-dark .brand-logo {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.site-nav--on-dark a {
  color: rgba(255, 255, 255, 0.88);
  border-bottom-color: transparent;
}

.site-nav--on-dark a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

.header-cta--on-dark {
  color: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.header-cta--on-dark:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.hero-full {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: min(92vh, 900px);
  padding: 6rem 1.5rem 3.5rem;
  text-align: center;
}

.hero-full__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-full__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-full__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 8, 6, 0.45) 0%,
    rgba(10, 8, 6, 0.25) 35%,
    rgba(10, 8, 6, 0.65) 100%
  );
}

.hero-full__inner {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  margin: 0 auto;
}

.hero-full__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hero-full__title {
  margin: 0 0 0.75rem;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero-full__tag {
  margin: 0 0 1.75rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-full__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn-wire {
  background: transparent;
}

.btn-wire--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-wire--light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-outline-dark:hover {
  background: var(--text);
  color: var(--white);
}

.hero-full__meta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
}

.rating-badge--light .rating-stars {
  color: #fff;
}

.rating-badge--light .rating-copy {
  color: rgba(255, 255, 255, 0.7);
}

.press-line--light {
  color: rgba(255, 255, 255, 0.55);
}

.press-line--light .press-names {
  color: rgba(255, 255, 255, 0.85);
}

/* Teeter-style split promo */
.band-pure {
  background: var(--white);
}

.promo-split {
  padding: 5rem 1.5rem;
}

.promo-split__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .promo-split__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.promo-split__label {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.promo-split__title {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.25;
}

.promo-split__text {
  margin: 0 0 1.5rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 34ch;
}

.promo-split__figure {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  aspect-ratio: 4 / 5;
}

.promo-split__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Artemis-style mission band */
.mission-band {
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mission {
  margin: 0 auto;
  max-width: 38rem;
  padding: 0;
  border: none;
  text-align: center;
}

.mission__text {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.mission__text strong {
  font-weight: 600;
  color: var(--text);
}

/* Teeter-style soft marquee */
.marquee-soft {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.65rem 0;
}

.marquee-soft__track {
  display: flex;
  width: max-content;
  animation: marquee-soft-scroll 32s linear infinite;
}

.marquee-soft__segment {
  flex-shrink: 0;
  padding-right: 2.5rem;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--text-muted);
}

@keyframes marquee-soft-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-soft__track {
    animation: none;
    justify-content: center;
    margin: 0 auto;
    width: auto;
  }

  .marquee-soft__segment:last-child {
    display: none;
  }
}

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow-num {
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.15em;
}

.lede {
  margin: 0 0 2rem;
  color: var(--text-muted);
  max-width: 32rem;
  font-weight: 300;
  line-height: 1.9;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  border: 1px solid var(--text);
  background: transparent;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease);
}

.btn-primary {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--text);
}

.btn-ghost {
  background: var(--white);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--text);
  color: var(--text);
}

.press-line {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.08em;
}

.press-names {
  color: var(--text-secondary);
  font-weight: 400;
}

.rating-badge {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  font-size: 0.8125rem;
}

.rating-stars {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.rating-copy {
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Image frames — minimal */
.frame-min {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.frame-min img {
  display: block;
  width: 100%;
  height: auto;
}

/* Section rhythm */
.band {
  padding: 4.5rem 1.5rem;
}

.band-white {
  background: var(--white);
}

.band-muted {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-meta {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 0;
}

.section-meta--center {
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-num {
  color: var(--text);
  font-weight: 500;
  margin-right: 0.5rem;
}

.split {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.split-figure {
  max-width: 100%;
  margin: 0;
}

.split-text h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  color: var(--text);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.split-text p {
  margin: 0 0 1.25rem;
  font-weight: 300;
  color: var(--text-secondary);
}

.split-text strong {
  font-weight: 500;
  color: var(--text);
}

.split-links {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 !important;
}

.split-links a {
  text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
}

.split-links a:hover {
  border-bottom-color: var(--text);
}

.section-head {
  max-width: 28rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  color: var(--text);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-deck {
  margin: 0;
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.section-head--wide {
  max-width: 40rem;
}

.section-deck--wide a {
  text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
}

.section-deck--wide a:hover {
  border-bottom-color: var(--text);
}

/* Menu — PETIT-style (( categories )) on butter panel */
.band-butter {
  background: var(--butter);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.menu-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.menu-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.menu-cat {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
  margin: 0 0 0.65rem;
}

.menu-blurb {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 1rem;
}

.menu-items {
  margin: 0;
  padding: 0 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.75;
}

.menu-items li {
  margin-bottom: 0.35rem;
}

/* Gallery — uniform cell heights; captions align across each row */
.mosaic {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr;
  background: var(--border);
  border: 1px solid var(--border);
  align-items: stretch;
}

@media (min-width: 600px) {
  .mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .mosaic {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: none;
  padding: 0;
  margin: 0;
  min-height: 0;
}

.tile-media {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  height: clamp(220px, 38vw, 340px);
  overflow: hidden;
  background: var(--bg-subtle);
}

@media (min-width: 1000px) {
  .tile-media {
    height: 340px;
  }
}

.tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tile figcaption {
  flex: 0 0 auto;
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 1rem 1.1rem 1.15rem;
  color: var(--text);
  border-top: 1px solid var(--border);
  background: var(--white);
  margin-top: auto;
  line-height: 1.35;
}

/* Featured pair — breathing room, title + line of context */
.gallery-featured {
  max-width: var(--max);
  margin: 2.25rem auto 0;
  display: grid;
  gap: 1.75rem 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 880px) {
  .gallery-featured {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.25rem;
    margin-top: 2.75rem;
  }
}

.tile-feature {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}

.tile-feature__media {
  position: relative;
  width: 100%;
  height: clamp(240px, 42vw, 380px);
  overflow: hidden;
  background: var(--bg-subtle);
}

@media (min-width: 880px) {
  .tile-feature__media {
    height: min(380px, 36vw);
  }
}

.tile-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.02) saturate(0.97);
}

.tile-feature__cap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.35rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--white);
  margin: 0;
}

.tile-feature__title {
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1.3;
}

.tile-feature__desc {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 36ch;
}

.visit-contact-link {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
}

.visit-contact-link a {
  text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
}

/* Contact page */
.contact-page .contact-hero {
  padding-top: 3rem;
  text-align: center;
}

.contact-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--text);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.contact-intro {
  max-width: 32rem;
  margin: 0 auto;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .contact-card--hours {
    grid-column: 1 / -1;
    max-width: 36rem;
  }
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
}

.contact-card h2 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 0 0 1rem;
  color: var(--text);
}

.contact-phone-big {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.contact-note {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

.contact-actions {
  margin: 1.25rem 0 0;
}

.hours-table--full {
  max-width: none;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.contact-back {
  text-align: center;
  margin: 2rem 0 0;
  font-size: 0.875rem;
}

.contact-back a {
  text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
}

.contact-map-band {
  padding-top: 0;
}

.map-wrap--contact {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 320px;
}

.map-wrap--contact iframe {
  min-height: 320px;
}

/* Visit — light, not inverted */
.band-visit {
  padding-bottom: 5rem;
}

.visit-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 880px) {
  .visit-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: stretch;
  }
}

.visit-copy .section-meta {
  margin-left: 0;
  margin-bottom: 1rem;
}

.visit-grid h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  margin: 0 0 1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.visit-lede {
  margin: 0 0 1.25rem;
  font-weight: 300;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.85;
}

.visit-address {
  font-style: normal;
  margin: 0 0 1rem;
  line-height: 1.85;
  font-weight: 300;
  color: var(--text-secondary);
}

.visit-address strong {
  font-weight: 500;
  color: var(--text);
}

.visit-phone {
  margin: 0 0 1.5rem;
}

.inline-tel {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--border-strong);
}

.inline-tel:hover {
  border-bottom-color: var(--text);
}

.band-visit .btn-primary {
  margin-top: 0.25rem;
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--border);
  background: var(--white);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  filter: grayscale(20%) contrast(0.95);
}

@media (min-width: 880px) {
  .map-wrap {
    min-height: 320px;
  }

  .map-wrap iframe {
    min-height: 320px;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
}

.site-footer:not(.site-footer--rich) {
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--white);
}

.site-footer:not(.site-footer--rich) p {
  margin: 0;
}

.site-footer--rich {
  background: var(--footer-dark);
  color: var(--footer-text);
  padding: 3.5rem 1.5rem 2rem;
  text-align: left;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-quote {
  margin: 0 0 2.5rem;
  padding: 0;
  border: none;
  text-align: center;
}

.footer-quote p {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(232, 228, 220, 0.92);
}

.footer-quote cite {
  font-size: 0.6875rem;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 228, 220, 0.5);
}

.footer-brand-row {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 56px;
  height: auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.95;
}

.footer-columns {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list a {
  color: var(--footer-text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-list a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.footer-list li {
  margin-bottom: 0.45rem;
  font-size: 0.875rem;
  font-weight: 300;
}

.footer-address {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(232, 228, 220, 0.85);
}

.footer-address a {
  color: var(--footer-text);
}

.footer-copy {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 228, 220, 0.45);
}

.footer-links {
  margin-top: 0.85rem !important;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
}

.footer-links a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  color: inherit;
}

.footer-links a:hover {
  border-bottom-color: var(--border-strong);
}

/* Gallery tabs (editorial, Teeter-inspired) */
.gallery-tabs {
  max-width: var(--max);
  margin: 0 auto 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-tab {
  color: var(--text-muted);
  padding-bottom: 0.35rem;
  border-bottom: 2px solid transparent;
}

.gallery-tab--on {
  color: var(--text);
  border-bottom-color: var(--text);
}

/* Reviews */
.review-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  margin: 0;
  padding: 1.5rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
}

.review-card p {
  margin: 0 0 1rem;
}

.review-card footer {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Hours table */
.hours-table-wrap {
  margin: 0 0 1.5rem;
}

.hours-table {
  width: 100%;
  max-width: 22rem;
  border-collapse: collapse;
  font-size: 0.8125rem;
  font-weight: 300;
}

.hours-table th,
.hours-table td {
  padding: 0.5rem 0.65rem 0.5rem 0;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.hours-table th {
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
