/* =========================================================
   Mouton's Bistro & Bar — stylesheet
   ========================================================= */

:root {
  --bg-dark: #151110;
  --bg-deep: #0c0a09;
  --bg-cream: #f5ecd9;
  --bg-cream-soft: #faf3e4;
  --ink: #221812;
  --ink-soft: #4a3a2e;
  --ink-muted: #7a6757;
  --line: #2a211c;
  --line-light: #e3d6bc;
  --brick: #a3341c;
  --brick-dark: #802513;
  --brass: #c9a86a;
  --brass-light: #dfc08a;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
  --radius: 4px;
  --maxw: 1200px;
  --ff-display: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 1.2em;
  display: inline-block;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--brass);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}

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

section { padding: 80px 0; }

.section-head { text-align: center; margin-bottom: 60px; }
.section-head p { color: var(--ink-soft); max-width: 600px; margin: 0 auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}

.btn:hover { background: var(--ink); color: var(--bg-cream); }

.btn-primary {
  background: var(--brick);
  border-color: var(--brick);
  color: var(--bg-cream);
}
.btn-primary:hover { background: var(--brick-dark); border-color: var(--brick-dark); color: var(--bg-cream); }

.btn-ghost {
  color: var(--bg-cream);
  border-color: var(--bg-cream);
}
.btn-ghost:hover { background: var(--bg-cream); color: var(--ink); }

.btn-gold {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
}
.btn-gold:hover { background: var(--brass-light); border-color: var(--brass-light); color: var(--ink); }

/* ---------- Top bar ---------- */

.topbar {
  background: var(--bg-deep);
  color: var(--bg-cream);
  font-size: 0.8rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--brass-light); transition: color .2s; }
.topbar a:hover { color: var(--bg-cream); }
.topbar-right { display: flex; gap: 18px; align-items: center; }

/* ---------- Navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21,17,16,.96);
  backdrop-filter: blur(8px);
  color: var(--bg-cream);
  border-bottom: 1px solid rgba(201,168,106,.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--bg-cream);
}
.brand img {
  height: 58px;
  width: auto;
  display: block;
}
.brand-name {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 4px;
}
.footer-logo {
  max-width: 210px;
  width: 100%;
  height: auto;
  margin-bottom: 14px;
  display: block;
}
@media (max-width: 540px) {
  .brand img { height: 46px; }
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg-cream);
  transition: color .2s;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover,
.nav-links a.active { color: var(--brass); }

.nav-cta {
  display: flex;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--bg-cream);
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 28px; height: 28px; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 100;
  flex-direction: column;
  padding: 80px 32px 32px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }

@media (max-width: 960px) {
  .nav-links,
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav a {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    color: var(--bg-cream);
    padding: 14px 0;
    border-bottom: 1px solid rgba(201,168,106,.15);
  }
  .mobile-nav .btn { margin-top: 24px; text-align: center; }
  .mobile-close {
    position: absolute;
    top: 22px;
    right: 22px;
    background: none;
    border: 0;
    color: var(--bg-cream);
    cursor: pointer;
  }
  .mobile-close svg { width: 32px; height: 32px; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--bg-cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.55);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,10,9,.3), rgba(12,10,9,.7));
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }

.hero-inner { max-width: 720px; }
.hero h1 {
  font-family: var(--ff-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--brass);
  font-weight: 400;
}
.hero-lede {
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 36px;
  opacity: 0.92;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* small hero (page headers) */
.page-header {
  background: var(--bg-dark);
  color: var(--bg-cream);
  padding: 120px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .28;
  z-index: 0;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-family: var(--ff-display); font-style: italic; font-weight: 300; }
.page-header p { color: rgba(245,236,217,.85); max-width: 640px; margin: 0 auto; }

/* ---------- Intro / welcome ---------- */

.intro { background: var(--bg-cream-soft); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
}
@media (max-width: 820px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Feature cards (3-up) ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  color: var(--bg-cream);
  box-shadow: var(--shadow);
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
  z-index: 0;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,10,9,.9) 0%, rgba(12,10,9,.15) 55%, rgba(12,10,9,0) 100%);
  z-index: 1;
}
.feature-card:hover::before { transform: scale(1.05); }
.feature-card-body {
  position: relative;
  z-index: 2;
  padding: 32px;
  width: 100%;
}
.feature-card h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.95rem; opacity: 0.9; margin-bottom: 16px; }
.feature-card .link-arrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap .25s;
}
.feature-card:hover .link-arrow { gap: 16px; }

@media (max-width: 820px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 340px; }
}

/* ---------- Dark band ---------- */

.band-dark {
  background: var(--bg-dark);
  color: var(--bg-cream);
  padding: 90px 0;
}
.band-dark h2 { color: var(--bg-cream); }
.band-dark p { color: rgba(245,236,217,.8); }
.band-dark .eyebrow { color: var(--brass); }

/* ---------- Info columns (events etc.) ---------- */

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.info-card {
  background: rgba(245,236,217,.04);
  border: 1px solid rgba(201,168,106,.18);
  padding: 32px 28px;
  border-radius: var(--radius);
  transition: border-color .25s;
}
.info-card:hover { border-color: var(--brass); }
.info-card .day {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--brass);
  margin-bottom: 6px;
}
.info-card h3 { color: var(--bg-cream); font-size: 1.25rem; margin-bottom: 8px; }
.info-card .time {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 14px;
}
.info-card p { font-size: 0.95rem; }

@media (max-width: 820px) {
  .info-grid { grid-template-columns: 1fr; }
}

/* ---------- Split (image + text) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split-image {
  background-size: cover;
  background-position: center;
  min-height: 360px;
}
.split-body {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split.reverse .split-image { order: 2; }
.split.dark { background: var(--bg-dark); color: var(--bg-cream); }
.split.dark h2 { color: var(--bg-cream); }
.split.dark p { color: rgba(245,236,217,.82); }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split-body { padding: 56px 24px; }
  .split.reverse .split-image { order: 0; }
}

/* ---------- Menu page ---------- */

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 0;
}
.menu-tab {
  padding: 14px 22px;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all .2s;
  margin-bottom: -1px;
}
.menu-tab:hover { color: var(--ink); }
.menu-tab.active {
  color: var(--brick);
  border-bottom-color: var(--brick);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn .35s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-section { margin-bottom: 64px; }
.menu-section-head {
  text-align: center;
  margin-bottom: 40px;
}
.menu-section-head h2 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 2.2rem;
}
.menu-section-head p { color: var(--ink-soft); }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
  max-width: 960px;
  margin: 0 auto;
}
.menu-item h4 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.menu-item .dots {
  flex: 1;
  border-bottom: 1px dotted var(--ink-muted);
  margin: 0 8px 5px;
  min-width: 20px;
}
.menu-item .price {
  color: var(--brick);
  white-space: nowrap;
  font-weight: 500;
}
.menu-item .price-alt {
  color: var(--ink-muted);
  font-size: 0.85rem;
  font-weight: 400;
  margin-left: 4px;
}
.menu-item p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin: 0;
}
.menu-item .addon {
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: 4px;
  display: block;
}

@media (max-width: 720px) {
  .menu-grid { grid-template-columns: 1fr; gap: 28px; }
}

.menu-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: 24px;
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  cursor: pointer;
  transition: opacity .25s, transform .4s;
}
.gallery-grid img:hover { opacity: 0.85; transform: scale(1.02); }

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12,10,9,.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: 0;
  color: var(--bg-cream);
  cursor: pointer;
  padding: 8px;
}
.lightbox-close svg { width: 32px; height: 32px; }

/* ---------- Contact / map ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--brick);
  margin-top: 32px;
  margin-bottom: 8px;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info address { font-style: normal; line-height: 1.8; }
.contact-info .hours-list { list-style: none; padding: 0; margin: 0; }
.contact-info .hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dotted var(--line-light);
}
.contact-info .hours-list li:last-child { border: 0; }
.contact-info .day-name { font-weight: 500; }

.map-embed {
  width: 100%;
  aspect-ratio: 4/5;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Forms ---------- */

.contact-form {
  background: var(--bg-cream-soft);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid var(--line-light);
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
}
.contact-form .eyebrow { display: inline-block; }
.contact-form h2 { font-family: var(--ff-display); font-style: italic; font-weight: 400; }
.contact-form form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; margin-top: 8px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.contact-form label.full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: 14px 16px;
  width: 100%;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%237a6757' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--brick);
  box-shadow: 0 0 0 3px rgba(163,52,28,.12);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--ink-muted); opacity: .7; }
.contact-form .form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.contact-form .form-note {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
}
.contact-form button[type="submit"] { cursor: pointer; font-family: var(--ff-body); }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-embed { aspect-ratio: 4/3; }
  .contact-form { padding: 28px; }
  .contact-form form { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Reservations embed ---------- */

.embed-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-cream-soft);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.embed-wrap iframe {
  width: 100%;
  height: 720px;
  border: 0;
}

/* ---------- Events page ---------- */

.events-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.event-row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 32px;
  padding: 28px;
  background: var(--bg-cream-soft);
  border-left: 3px solid var(--brick);
  align-items: center;
  transition: transform .25s, box-shadow .25s;
}
.event-row:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.event-day {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--brick);
}
.event-row h3 { margin: 0 0 4px; font-size: 1.2rem; }
.event-row .time {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.event-row p { margin: 8px 0 0; font-size: 0.93rem; color: var(--ink-soft); }

@media (max-width: 720px) {
  .event-row { grid-template-columns: 1fr; gap: 8px; padding: 22px; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg-deep);
  color: rgba(245,236,217,.7);
  padding: 70px 0 28px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-grid h4 {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--bg-cream); }
.footer-brand .brand-name { color: var(--bg-cream); font-size: 1.9rem; }
.footer-brand p { font-size: 0.92rem; max-width: 300px; margin-top: 18px; }

.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,168,106,.3);
  border-radius: 50%;
  transition: all .25s;
}
.footer-social a:hover {
  background: var(--brass);
  color: var(--bg-deep);
  border-color: var(--brass);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(201,168,106,.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(245,236,217,.5);
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Reviews ---------- */

.reviews { background: var(--bg-cream-soft); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.review-card {
  background: var(--bg-cream);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,.04);
  position: relative;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: -6px;
  left: 18px;
  font-family: var(--ff-display);
  font-size: 5.2rem;
  line-height: 1;
  color: var(--brass);
  opacity: 0.35;
}
.review-stars {
  display: inline-flex;
  gap: 3px;
  color: #e8b43b;
  font-size: 1.05rem;
  letter-spacing: 2px;
  line-height: 1;
}
.review-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--ink-muted);
  border-top: 1px dotted var(--line-light);
  padding-top: 14px;
  margin-top: auto;
}
.review-meta strong { color: var(--ink-soft); font-weight: 600; }
.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.reviews-summary .review-stars { font-size: 1.15rem; }

@media (max-width: 820px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ---------- Utility ---------- */

.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 40px 0;
  color: var(--brass);
}
.divider-ornament::before,
.divider-ornament::after {
  content: "";
  height: 1px;
  background: var(--brass);
  flex: 1;
  max-width: 80px;
  opacity: 0.5;
}
