/* ============================================================
   IL POSTO ACCANTO — style.css
   Aesthetic: Editorial-Narrative / Warm Italian Trattoria
   Palette: Terracotta #b8503a · Cream #f5f0e8 · Near-black #1a1208
   Fonts: Playfair Display (display) + Lora (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600;1,700&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap');

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --clr-brand:         #b8503a;
  --clr-brand-dark:    #8f3b29;
  --clr-brand-light:   #d4725c;
  --clr-brand-pale:    rgba(184, 80, 58, 0.10);

  --clr-bg:            #f5f0e8;
  --clr-bg-alt:        #ede6d8;
  --clr-bg-warm:       #e5dccc;

  --clr-text:          #1a1208;
  --clr-text-muted:    #4a3f34;
  --clr-text-faint:    #7a6e63;

  --clr-border:        rgba(26, 18, 8, 0.14);
  --clr-shadow:        rgba(26, 18, 8, 0.12);

  --font-display:      'Playfair Display', Georgia, serif;
  --font-body:         'Lora', Georgia, serif;

  --max-w:             72rem;
  --page-px:           clamp(1.25rem, 5vw, 2.75rem);
  --section-py:        clamp(4rem, 8vw, 7rem);

  --ease:              cubic-bezier(.25,.46,.45,.94);
  --ease-out:          cubic-bezier(.22,1,.36,1);
  --ease-snap:         cubic-bezier(.34,1.56,.64,1);

  --shadow-sm:         0 2px 8px var(--clr-shadow);
  --shadow-md:         0 8px 32px var(--clr-shadow);
}

@media (prefers-color-scheme: dark) {
  :root {
    --clr-brand:         #d4725c;
    --clr-brand-dark:    #b8503a;
    --clr-brand-light:   #e8917e;
    --clr-brand-pale:    rgba(212, 114, 92, 0.12);

    --clr-bg:            #17110a;
    --clr-bg-alt:        #211710;
    --clr-bg-warm:       #2a1e14;

    --clr-text:          #f0e8dc;
    --clr-text-muted:    #c0b0a0;
    --clr-text-faint:    #7a6e63;

    --clr-border:        rgba(240, 232, 220, 0.12);
    --clr-shadow:        rgba(0, 0, 0, 0.35);
  }
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
html.menu-open  { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--clr-brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--clr-brand-dark); }
ul, ol { list-style: none; }

/* ── Subtle grain texture ─────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--clr-text);
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.0625rem; font-weight: 600; }
p  { font-size: clamp(.95rem, 1.5vw, 1.0625rem); color: var(--clr-text-muted); max-width: 65ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-brand);
  margin-bottom: .85rem;
}
.eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 1.5px;
  background: var(--clr-brand);
  flex-shrink: 0;
}

/* ── Layout ──────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-px);
}
.section { padding: var(--section-py) 0; }

/* ── Navigation ──────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: .85rem var(--page-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--clr-text);
  line-height: 1.1;
}
.nav-brand span {
  display: block;
  font-size: .62rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
  margin-top: .12rem;
}

/* Desktop links */
.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  position: relative;
  padding-bottom: .2rem;
  transition: color .22s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--clr-brand);
  transition: width .28s var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--clr-brand);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  position: fixed;
  top: .8rem;
  right: 1.25rem;
  z-index: 1001;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--clr-brand);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: background .2s ease, transform .2s var(--ease-snap);
}
.nav-hamburger:hover { background: var(--clr-brand-dark); }
.nav-hamburger span {
  display: block;
  width: 1.3rem;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .2s ease;
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: var(--clr-bg);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s var(--ease-out);
}
.nav-overlay::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--clr-brand);
}
body.menu-open .nav-overlay {
  display: flex;
  opacity: 1;
}
.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}
.nav-overlay-links a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3.5rem);
  font-weight: 700;
  color: var(--clr-text);
  padding: .45rem 1rem;
  display: block;
  transition: color .2s ease;
}
.nav-overlay-links a:hover,
.nav-overlay-links a[aria-current="page"] {
  color: var(--clr-brand);
}
.nav-overlay-sub {
  margin-top: 2rem;
  font-size: .72rem;
  font-family: var(--font-body);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
}

@media (max-width: 767px) {
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Page entry animation ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fade-up .7s var(--ease-out) forwards;
}
.fade-up:nth-child(1) { animation-delay: .05s; }
.fade-up:nth-child(2) { animation-delay: .15s; }
.fade-up:nth-child(3) { animation-delay: .25s; }
.fade-up:nth-child(4) { animation-delay: .35s; }
.fade-up:nth-child(5) { animation-delay: .45s; }
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .85rem 1.9rem;
  border-radius: 2px;
  transition: background .22s var(--ease), color .22s var(--ease), transform .18s var(--ease-snap), box-shadow .22s var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--clr-brand);
  color: #fff;
  box-shadow: 0 4px 18px rgba(184,80,58,.30);
}
.btn-primary:hover {
  background: var(--clr-brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,80,58,.40);
}
.btn-outline {
  background: transparent;
  color: #f5f0e8;
  border: 1.5px solid rgba(245,240,232,.55);
}
.btn-outline:hover {
  background: rgba(245,240,232,.1);
  color: #f5f0e8;
  border-color: rgba(245,240,232,.85);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--clr-brand);
  border: 1.5px solid var(--clr-brand);
}
.btn-ghost:hover {
  background: var(--clr-brand);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: hero-scale 10s var(--ease) forwards;
}
@keyframes hero-scale { to { transform: scale(1); } }
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,18,8,.92) 0%,
    rgba(26,18,8,.4) 55%,
    rgba(26,18,8,.08) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem,6vw,5rem) var(--page-px);
  padding-bottom: clamp(2.5rem,7vw,5.5rem);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clr-brand-light);
  margin-bottom: .875rem;
  opacity: 0;
  animation: fade-up .8s .3s var(--ease-out) forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 1.5px;
  background: var(--clr-brand-light);
}
.hero-content h1 {
  color: #f5f0e8;
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  max-width: 13ch;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fade-up .9s .5s var(--ease-out) forwards;
}
.hero-content h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--clr-brand-light);
}
.hero-desc {
  font-size: clamp(1rem,2vw,1.2rem);
  color: rgba(245,240,232,.80);
  font-style: italic;
  max-width: 50ch;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fade-up .9s .7s var(--ease-out) forwards;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fade-up .9s .85s var(--ease-out) forwards;
}
.badge {
  background: rgba(245,240,232,.1);
  border: 1px solid rgba(245,240,232,.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(245,240,232,.88);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 2px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  opacity: 0;
  animation: fade-up .9s 1s var(--ease-out) forwards;
}

/* ── Stars ───────────────────────────────────────────────────── */
.stars { color: #c8922a; font-size: 1rem; letter-spacing: .05em; }

/* ── Intro strip (hardcoded dark per spec) ───────────────────── */
.intro-strip { background: #111111; padding: 2.75rem 0; }
.intro-strip-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.75rem;
}
.intro-strip-quote {
  flex: 1;
  min-width: 240px;
}
.intro-strip-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem,2vw,1.3rem);
  font-style: italic;
  color: #e8dfd0;
  line-height: 1.65;
  max-width: 64ch;
  margin: 0;
}
.intro-strip-meta {
  flex-shrink: 0;
  text-align: center;
}
.rating-big {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  color: #f5f0e8;
  line-height: 1;
  display: block;
}
.rating-label {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #6a6059;
  margin-top: .25rem;
  display: block;
}

/* ── Editorial pair (alternating text/image) ─────────────────── */
.editorial-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem,5vw,4.5rem);
  align-items: center;
}
@media (min-width: 768px) {
  .editorial-pair { grid-template-columns: 1fr 1fr; }
  .editorial-pair.reverse .ep-text { order: 2; }
  .editorial-pair.reverse .ep-visual { order: 1; }
}
@media (min-width: 1100px) {
  .editorial-pair { grid-template-columns: 5fr 4fr; }
}
.ep-text { display: flex; flex-direction: column; gap: 1.25rem; }
.ep-text h2 { margin: 0; }
.ep-text p { line-height: 1.8; }
.ep-visual { position: relative; }
.ep-img {
  width: 100%;
  height: clamp(260px,40vw,460px);
  object-fit: cover;
  border-radius: 2px;
  display: block;
  transition: transform .5s var(--ease);
}
.ep-img:hover { transform: scale(1.015); }
.ep-label {
  position: absolute;
  bottom: -1.1rem;
  right: 0;
  background: var(--clr-brand);
  color: #fff;
  padding: .45rem 1.15rem;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
}

/* ── Pull quote block ────────────────────────────────────────── */
.pull-quote {
  background: var(--clr-bg-alt);
  padding: clamp(3rem,6vw,5rem) 0;
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -2rem;
  left: clamp(1rem,4vw,3rem);
  font-family: var(--font-display);
  font-size: clamp(9rem,18vw,16rem);
  font-weight: 900;
  line-height: 1;
  color: var(--clr-brand);
  opacity: .07;
  pointer-events: none;
  user-select: none;
}
.pull-quote-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--page-px);
}
.pull-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem,3vw,1.9rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--clr-text);
  margin-bottom: 1.25rem;
  max-width: none;
}
.pull-quote-attr {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-brand);
}

/* ── Feature grid ────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,200px), 1fr));
  border-top: 1px solid var(--clr-border);
  border-left: 1px solid var(--clr-border);
}
.feature-item {
  padding: 1.75rem;
  border-right: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  transition: background .22s var(--ease);
}
.feature-item:hover { background: var(--clr-bg-alt); }
.feature-icon { font-size: 1.65rem; margin-bottom: .7rem; display: block; }
.feature-item h4 {
  font-family: var(--font-display);
  font-size: 1.0375rem;
  color: var(--clr-text);
  margin-bottom: .3rem;
}
.feature-item p { font-size: .875rem; line-height: 1.5; margin: 0; max-width: none; }

/* ── Image strip ─────────────────────────────────────────────── */
.image-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: .6rem;
  overflow: hidden;
  height: 400px;
  border-radius: 2px;
}
.image-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.image-strip img:hover { transform: scale(1.04); }
.image-strip .main { grid-row: 1 / 3; }
@media (max-width: 767px) {
  .image-strip {
    grid-template-columns: 1fr 1fr;
    height: 300px;
  }
  .image-strip .main { grid-column: 1/3; grid-row: 1; height: 190px; }
  .image-strip img:nth-child(2),
  .image-strip img:nth-child(3) { height: 110px; }
}
@media (max-width: 479px) {
  .image-strip { grid-template-columns: 1fr; height: auto; }
  .image-strip .main,
  .image-strip img { grid-column: auto; grid-row: auto; height: 210px; }
}

/* ── Reviews grid ────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,22rem), 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: 2px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--clr-text);
  flex: 1;
  max-width: none;
}
.review-card blockquote::before {
  content: '\201C';
  font-size: 3rem;
  line-height: 1;
  color: var(--clr-brand);
  display: block;
  margin-bottom: -.4rem;
  opacity: .5;
}
.review-author {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
}
.review-author .stars { font-size: .85rem; margin-bottom: .2rem; display: block; }

/* ── Hours table ─────────────────────────────────────────────── */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9375rem;
}
.hours-table tr { border-bottom: 1px solid var(--clr-border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table tr:hover { background: var(--clr-bg-alt); }
.hours-table th, .hours-table td {
  padding: .7rem .4rem;
  text-align: left;
  vertical-align: top;
}
.hours-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .03em;
  text-transform: capitalize;
  color: var(--clr-text);
  width: 38%;
}
.hours-table td { color: var(--clr-text-muted); }
.hours-table .closed { color: var(--clr-brand); font-style: italic; }

/* ── Menu page ───────────────────────────────────────────────── */
.menu-cat { margin-bottom: 3.5rem; }
.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--clr-brand);
}
.menu-cat-icon { font-size: 1.75rem; }
.menu-cat-header h2 {
  font-size: clamp(1.35rem,3vw,2rem);
  color: var(--clr-brand);
}
.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 640px) { .menu-items { grid-template-columns: 1fr 1fr; } }
.menu-item {
  padding: 1.1rem 0;
  border-bottom: 1px dotted var(--clr-border);
}
.menu-item:last-child { border-bottom: none; }
@media (min-width: 640px) {
  .menu-item:nth-last-child(-n+2) { border-bottom: none; }
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.0375rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: .2rem;
}
.menu-item-desc {
  font-size: .875rem;
  color: var(--clr-text-muted);
  font-style: italic;
  margin: 0;
  max-width: none;
}
.menu-note {
  background: var(--clr-bg-alt);
  border-left: 3px solid var(--clr-brand);
  padding: 1.25rem 1.5rem;
  color: var(--clr-text-muted);
  font-style: italic;
  font-size: .92rem;
  border-radius: 0 2px 2px 0;
  margin-bottom: 2.5rem;
}

/* ── Info bar ────────────────────────────────────────────────── */
.info-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,14rem), 1fr));
  border: 1px solid var(--clr-border);
  border-radius: 2px;
  overflow: hidden;
  background: var(--clr-bg-alt);
}
.info-bar-item {
  padding: 1.5rem 1.75rem;
  border-right: 1px solid var(--clr-border);
}
.info-bar-item:last-child { border-right: none; }
@media (max-width: 639px) {
  .info-bar-item { border-right: none; border-bottom: 1px solid var(--clr-border); }
  .info-bar-item:last-child { border-bottom: none; }
}
.info-bar-item .lbl {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--clr-brand);
  margin-bottom: .3rem;
}
.info-bar-item .val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.35;
}

/* ── Page header (inner pages) ───────────────────────────────── */
.page-header {
  padding: clamp(3rem,6vw,5.5rem) 0 clamp(2rem,4vw,3.5rem);
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: clamp(2.5rem,5vw,4rem);
}
.page-header h1 { font-size: clamp(2rem,5vw,3.8rem); margin-bottom: .5rem; }

/* ── Contact page ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 767px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }
.contact-info dt {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clr-brand);
  margin-bottom: .2rem;
}
.contact-info dd {
  font-size: 1rem;
  color: var(--clr-text);
  margin-bottom: 1.5rem;
}
.contact-info a { color: var(--clr-text); text-decoration: underline; text-decoration-color: var(--clr-border); }
.contact-info a:hover { color: var(--clr-brand); text-decoration-color: var(--clr-brand); }
.map-embed {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Two-column layout ───────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,5vw,4rem);
  align-items: start;
}
@media (max-width: 767px) { .two-col { grid-template-columns: 1fr; } }

/* ── Services tags ───────────────────────────────────────────── */
.services-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.service-tag {
  background: var(--clr-brand-pale);
  border: 1px solid rgba(184,80,58,.22);
  color: var(--clr-brand);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .32rem .8rem;
  border-radius: 2px;
}

/* ── About page ──────────────────────────────────────────────── */
.about-lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem,2.2vw,1.5rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--clr-text);
  max-width: 62ch;
}
.about-body p {
  font-size: 1.0rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  max-width: 66ch;
}
.about-body p:last-child { margin-bottom: 0; }
.rating-display { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.rating-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--clr-brand);
  line-height: 1;
}

/* ── Rule / Divider ──────────────────────────────────────────── */
.rule { border: none; border-top: 1px solid var(--clr-border); margin: 0; }

/* ── Utility ─────────────────────────────────────────────────── */
.mt-1  { margin-top: .5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mt-6  { margin-top: 3rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.text-center { text-align: center; }
.text-small  { font-size: .85rem; }
.color-brand { color: var(--clr-brand); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--clr-border);
  padding: 1.35rem var(--page-px);
  text-align: center;
  font-size: .78rem;
  color: var(--clr-text-faint);
}
.site-footer a { color: var(--clr-text-faint); text-decoration: underline; text-decoration-color: var(--clr-border); transition: color .18s var(--ease); }
.site-footer a:hover { color: var(--clr-brand); }

/* ── Focus (accessibility) ───────────────────────────────────── */
:focus-visible {
  outline: 2.5px solid var(--clr-brand);
  outline-offset: 3px;
  border-radius: 2px;
}
