:root {
  --cream: #f7f0df;
  --paper: #fffaf0;
  --ink: #22251f;
  --red: #a82722;
  --red-dark: #741915;
  --gold: #f2bf47;
  --line: rgba(34, 37, 31, .24);
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.shell { width: min(100% - 40px, 1240px); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--paper);
  border: 2px solid var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.preview-ribbon {
  padding: 6px 20px;
  color: var(--cream);
  background: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 14px max(20px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--ink);
}
.brand {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: baseline;
  color: var(--red);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  line-height: .8;
  text-decoration: none;
  text-transform: uppercase;
}
.brand-mark { padding-inline: 2px; color: var(--gold); }
.brand small {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
}
.site-header nav ul { display: flex; gap: clamp(18px, 3vw, 44px); margin: 0; padding: 0; list-style: none; }
.site-header nav a {
  position: relative;
  padding-block: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-header nav a:hover::after,
.site-header nav a:focus-visible::after,
.site-header nav a[aria-current="page"]::after { transform: scaleX(1); }
.eyebrow {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, .87fr) minmax(460px, 1.13fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  min-height: 650px;
  padding-block: clamp(52px, 7vw, 100px);
}
.hero-copy { position: relative; z-index: 2; }
.hero h1,
.page-hero h1,
.visit-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 9.2vw, 140px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .82;
  text-transform: uppercase;
}
.hero h1 { margin-right: -135px; }
.hero h1 em,
.page-hero h1 em,
.visit-hero h1 em { color: var(--red); font-style: normal; }
.hero-lede {
  max-width: 520px;
  margin: 34px 0 0;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 22px;
  border: 2px solid var(--ink);
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button--dark { color: var(--cream); background: var(--ink); }
.button--dark:hover { background: var(--red); }
.button--red { color: var(--cream); background: var(--red); border-color: var(--red); }
.button--red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.button--outline { background: transparent; }
.button--outline:hover { color: var(--cream); background: var(--ink); }
.button--gold { background: var(--gold); }
.button--cream { color: var(--ink); background: var(--cream); border-color: var(--cream); }
.hero-image { position: relative; isolation: isolate; }
.hero-image::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 16px -16px -16px 0;
  background: var(--gold);
  border: 1px solid var(--ink);
}
.hero-image img { width: 100%; aspect-ratio: 1.1; object-fit: cover; object-position: 52% 50%; filter: saturate(.94) contrast(1.02); }
.hero-stamp,
.sun-badge {
  display: grid;
  place-content: center;
  width: clamp(126px, 13vw, 180px);
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 7px var(--gold), 0 0 0 9px var(--ink);
  font-family: var(--display);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}
.hero-stamp { position: absolute; right: 8px; bottom: -24px; }
.hero-stamp span { font-size: 17px; letter-spacing: .04em; }
.hero-stamp b { font-size: 30px; line-height: 1; }
.checker {
  height: 22px;
  border-block: 1px solid var(--ink);
  background-image: conic-gradient(var(--ink) 25%, transparent 0 50%, var(--ink) 0 75%, transparent 0);
  background-size: 22px 22px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 12vw, 170px);
  padding-block: clamp(72px, 10vw, 140px);
}
.intro-grid h2,
.section-heading h2,
.split-callout h2,
.address-panel h2,
.cta-band h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 78px);
  letter-spacing: -.035em;
  line-height: .98;
  text-transform: uppercase;
}
.intro-grid > div:last-child { max-width: 520px; padding-top: 28px; font-size: 19px; }
.text-link {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}
.featured { padding-block: clamp(60px, 8vw, 110px); border-top: 1px solid var(--ink); }
.section-heading { display: grid; grid-template-columns: 1fr 1.3fr auto; gap: 30px; align-items: end; margin-bottom: 48px; }
.section-heading h2 { font-size: clamp(40px, 5vw, 66px); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.feature-card { min-height: 320px; padding: 28px; background: var(--paper); }
.feature-card + .feature-card { border-left: 1px solid var(--ink); }
.feature-card--2 { color: var(--cream); background: var(--red); }
.feature-card--3 { background: var(--gold); }
.feature-number { margin: 0 0 74px; font-family: var(--display); font-size: 13px; }
.feature-card h3 { max-width: 300px; margin: 0 0 15px; font-family: var(--display); font-size: 33px; line-height: 1; text-transform: uppercase; }
.feature-card > p:not(.feature-number) { min-height: 48px; font-size: 14px; }
.feature-card .menu-price { font-size: 18px; }
.price-note { margin-top: 20px; color: #54564e; font-size: 12px; }
.split-callout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 580px;
  color: var(--cream);
  background: var(--ink);
}
.split-callout__number {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--gold);
  background: var(--red);
  font-family: var(--display);
  font-size: clamp(140px, 24vw, 350px);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .8;
}
.split-callout__number span { color: var(--cream); }
.split-callout > div:last-child { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(50px, 8vw, 110px); }
.split-callout p:not(.eyebrow) { max-width: 520px; margin-block: 24px 34px; font-size: 18px; }
.page-hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: end;
  min-height: 500px;
  padding-block: clamp(70px, 10vw, 135px);
}
.page-hero h1 { font-size: clamp(76px, 12vw, 168px); }
.page-hero > p { max-width: 460px; margin: 0 0 12px; font-size: 19px; }
.page-hero--breakfast { grid-template-columns: 1fr auto; align-items: center; }
.page-hero--breakfast > div:first-child > p:last-child { max-width: 620px; margin: 34px 0 0; font-size: 20px; }
.sun-badge { position: relative; width: clamp(190px, 21vw, 280px); transform: rotate(-6deg); }
.sun-badge::before,
.sun-badge::after { content: "✦"; position: absolute; font-size: 34px; }
.sun-badge::before { top: -34px; left: 20px; }
.sun-badge::after { right: 1px; bottom: -34px; }
.sun-badge span { font-size: 31px; line-height: .8; }
.sun-badge b { color: var(--red); font-size: 72px; line-height: 1; }
.sun-badge i { font-size: 18px; font-style: normal; letter-spacing: .1em; }
.menu-list { padding-block: clamp(70px, 9vw, 130px); }
.menu-group {
  display: grid;
  grid-template-columns: minmax(220px, .6fr) minmax(0, 1.4fr);
  gap: clamp(40px, 8vw, 130px);
  padding-block: 62px;
  border-top: 2px solid var(--ink);
  scroll-margin-top: 20px;
}
.menu-group:first-child { border-top-width: 5px; }
.menu-group__heading h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -.04em;
  line-height: .95;
  text-transform: uppercase;
}
.menu-group__heading > p:last-child { max-width: 280px; color: #5e6058; }
.menu-group ul { margin: 0; padding: 0; list-style: none; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
  padding: 15px 0 14px;
  border-bottom: 1px solid var(--line);
}
.menu-item:first-child { border-top: 1px solid var(--line); }
.menu-item h3 { margin: 0; font-size: 16px; font-weight: 700; }
.menu-item p { margin: 4px 0 0; color: #66685f; font-size: 13px; }
.menu-price { white-space: nowrap; font-variant-numeric: tabular-nums; font-weight: 700; }
.menu-price--ask { color: var(--red); font-size: 12px; letter-spacing: .03em; text-transform: uppercase; }
.menu-tools { position: relative; z-index: 3; padding-block: 42px; border-block: 1px solid var(--ink); }
.search-wrap { display: grid; grid-template-columns: 190px 1fr; align-items: center; gap: 30px; }
.search-wrap label { font-family: var(--display); font-size: 24px; font-weight: 700; text-transform: uppercase; }
.search-wrap > div { display: grid; grid-template-columns: 1fr auto; border-bottom: 2px solid var(--ink); }
.search-wrap input { width: 100%; padding: 13px 0; border: 0; background: transparent; font-size: 18px; }
.search-wrap input::placeholder { color: #5e6058; opacity: 1; }
.search-wrap input::-webkit-search-cancel-button { display: none; }
.search-wrap button { border: 0; background: transparent; color: var(--red); font-size: 11px; font-weight: 700; text-transform: uppercase; cursor: pointer; }
.filter-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.filter-wrap button {
  padding: 8px 13px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-wrap button[aria-pressed="true"] { color: var(--cream); background: var(--ink); }
.result-count { margin: 20px 0 0; font-size: 12px; font-weight: 700; }
.menu-empty { padding: 70px 20px; border-top: 5px solid var(--ink); text-align: center; }
.menu-empty h2 { margin: 0; font-family: var(--display); font-size: 42px; text-transform: uppercase; }
.menu-notes { padding-block: 42px; border-block: 1px solid var(--ink); }
.menu-notes h2 { font-family: var(--display); font-size: 26px; text-transform: uppercase; }
.menu-notes ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 50px; padding-left: 20px; }
.menu-page > main > .price-note { margin-bottom: 80px; }
.cta-band { padding: 80px 20px; color: var(--cream); background: var(--red); text-align: center; }
.cta-band h2 { margin-bottom: 30px; }
.visit-hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  padding-block: clamp(70px, 9vw, 125px);
}
.visit-hero > * { min-width: 0; }
.visit-hero h1 { font-size: clamp(40px, 5.5vw, 80px); overflow-wrap: normal; }
.visit-hero > div > p:not(.eyebrow) { max-width: 540px; margin: 32px 0; font-size: 19px; }
.visit-hero figure { position: relative; margin: 0; }
.visit-hero figure::after { content: ""; position: absolute; z-index: -1; inset: 16px -16px -16px 0; background: var(--gold); border: 1px solid var(--ink); }
.visit-hero img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; }
.visit-hero figcaption { margin-top: 30px; padding-inline: 16px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.address-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-block: clamp(75px, 10vw, 140px); }
.address-panel > div:last-child { padding-top: 34px; }
.address-panel address { max-width: 540px; font-family: var(--display); font-size: clamp(30px, 4vw, 48px); font-style: normal; font-weight: 600; line-height: 1.1; text-transform: uppercase; }
.address-panel > div:last-child > p { margin-block: 18px; }
.contact-line a { color: var(--red); font-family: var(--display); font-size: 26px; font-weight: 700; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr .8fr;
  gap: 40px;
  padding: 70px max(20px, calc((100vw - 1240px) / 2)) 28px;
  color: var(--cream);
  background: var(--ink);
  border-top: 8px solid var(--red);
}
.footer-lockup { align-self: start; color: var(--gold); font-family: var(--display); font-size: clamp(62px, 8vw, 110px); font-weight: 700; letter-spacing: -.08em; line-height: .75; }
.footer-lockup b { color: var(--red); }
.site-footer address { max-width: 340px; font-size: 18px; font-style: normal; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-links a { padding-bottom: 3px; border-bottom: 1px solid var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.footer-meta { grid-column: 1 / -1; margin: 35px 0 0; padding-top: 20px; border-top: 1px solid rgba(247, 240, 223, .24); color: rgba(247, 240, 223, .65); font-size: 11px; }
.mobile-dock { display: none; }
.footer-links a, .text-link { padding-block: 6px; min-height: 32px; }
.filter-wrap button { min-height: 40px; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; box-shadow: 0 0 0 6px var(--cream); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { z-index: auto; }
  .hero h1 { margin-right: 0; }
  .hero-image { width: 92%; margin-left: auto; }
  .hero-stamp { right: 8px; }
  .hero-image img { aspect-ratio: 5 / 4; }
  .section-heading { grid-template-columns: 1fr 1fr; }
  .section-heading .text-link { justify-self: start; }
  .split-callout { grid-template-columns: 1fr; }
  .split-callout__number { min-height: 350px; }
  .page-hero { grid-template-columns: 1fr; min-height: 0; }
  .page-hero--breakfast { grid-template-columns: 1fr auto; }
  .menu-group { gap: 45px; }
  .visit-hero { grid-template-columns: 1fr; }
  .visit-hero figure { width: 78%; margin-left: auto; }
}

@media (max-width: 680px) {
  body { padding-bottom: 64px; }
  .shell { width: min(100% - 28px, 1240px); }
  .site-header { align-items: flex-start; min-height: 0; padding: 17px 14px; }
  .brand { font-size: 24px; }
  .brand small { display: none; }
  .site-header nav ul { gap: 13px; }
  .site-header nav a { font-size: 10px; letter-spacing: .05em; }
  .hero { min-height: 0; gap: 45px; padding-block: 52px 70px; }
  .hero h1 { font-size: clamp(58px, 20vw, 90px); }
  .hero-lede { margin-top: 26px; font-size: 17px; }
  .button-row { flex-direction: column; align-items: stretch; }
  .hero-image { width: 94%; }
  .hero-image::before { inset: 12px -12px -12px 0; }
  .hero-stamp { right: -4px; bottom: -38px; }
  .intro-grid { grid-template-columns: 1fr; gap: 10px; padding-block: 80px; }
  .intro-grid > div:last-child { padding-top: 0; font-size: 17px; }
  .section-heading { display: block; }
  .section-heading h2 { margin-bottom: 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 250px; }
  .feature-card + .feature-card { border-top: 1px solid var(--ink); border-left: 0; }
  .feature-number { margin-bottom: 45px; }
  .split-callout__number { min-height: 270px; font-size: 49vw; }
  .split-callout > div:last-child { padding: 64px 24px; }
  .page-hero { padding-block: 68px; }
  .page-hero h1 { font-size: clamp(64px, 24vw, 100px); }
  .page-hero--breakfast { grid-template-columns: 1fr; gap: 70px; }
  .sun-badge { justify-self: center; }
  .menu-list { padding-block: 58px; }
  .menu-group { grid-template-columns: 1fr; gap: 22px; padding-block: 48px; }
  .menu-group__heading > p:last-child { margin-bottom: 0; }
  .menu-item { gap: 15px; }
  .menu-tools { width: 100%; padding: 34px 14px; }
  .search-wrap { grid-template-columns: 1fr; gap: 8px; }
  .filter-wrap { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; }
  .filter-wrap button { flex: 0 0 auto; }
  .menu-notes ul { grid-template-columns: 1fr; }
  .visit-hero { padding-bottom: 90px; }
  .visit-hero h1 { font-size: clamp(40px, 14vw, 64px); }
  .visit-hero figure { width: calc(100% - 16px); margin-inline: 0 16px; }
  .address-panel { grid-template-columns: 1fr; gap: 15px; }
  .address-panel > div:last-child { padding-top: 0; }
  .site-footer { grid-template-columns: 1fr; gap: 36px; padding-top: 58px; }
  .footer-meta { grid-column: auto; margin-top: 0; }
  .mobile-dock {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 64px;
    color: var(--cream);
    background: var(--ink);
    border-top: 1px solid var(--cream);
    box-shadow: 0 -8px 24px rgba(34, 37, 31, .18);
  }
  .mobile-dock a { display: grid; place-items: center; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
  .mobile-dock a + a { border-left: 1px solid rgba(247, 240, 223, .25); }
  .mobile-dock .mobile-dock__call { color: var(--cream); background: var(--red); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Compact menu board: readable rows and categories side by side. */
.footer-meta { display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px 24px; }
.footer-meta a { display:inline-block; padding-block:6px; color:var(--cream); text-underline-offset:4px; }
.menu-page .page-hero--menu { min-height:0; padding-block:32px; gap:20px; align-items:center; }
.menu-page .page-hero--menu h1 { font-size:clamp(48px,6vw,76px); line-height:1; }
.menu-page .page-hero--menu .eyebrow { margin-bottom:8px; }
.menu-order-bar { position:sticky; top:0; z-index:20; background:var(--cream); border-block:1px solid var(--ink); }
.menu-order-bar .shell { display:flex; justify-content:space-between; align-items:center; gap:12px; padding-block:8px; }
.menu-order-bar span { font-weight:700; }
.menu-order-bar .button { min-height:44px; padding:10px 16px; }
.menu-page .menu-tools { padding-block:18px; border-top:0; }
.menu-page .filter-wrap { margin-top:14px; gap:6px; }
.menu-page .result-count { margin-top:10px; }
.menu-page .menu-list { columns:2; column-gap:36px; padding-block:24px; }
.menu-page .menu-group { display:block; break-inside:avoid; padding:18px 0; border-top-width:2px; }
.menu-page .menu-group__heading .eyebrow { display:none; }
.menu-page .menu-group__heading h2 { font-size:30px; margin-bottom:6px; line-height:1.05; }
.menu-page .menu-group__heading > p:last-child { max-width:none; margin:0 0 12px; font-size:13px; }
.menu-page .menu-item { padding:8px 0; gap:12px; }
.menu-page .menu-item h3 { font-size:14px; }
.menu-page .menu-price { font-size:14px; }
.menu-page .menu-price--ask { font-size:11px; }
.menu-page .menu-empty { column-span:all; }
@media(max-width:650px) {
 .menu-page .page-hero--menu { display:block; padding-block:24px; }
 .menu-page .menu-order { display:none; }
 .menu-order-bar span { display:none; }
 .menu-order-bar .button { width:100%; }
 .menu-page .menu-list { columns:1; padding-block:12px; }
 .menu-page .menu-group { padding-block:18px; }
 .menu-page .filter-wrap { flex-wrap:wrap; overflow:visible; }
}

.reviews { padding-block:64px; border-top:1px solid var(--line); }
.reviews-heading { display:flex; justify-content:space-between; align-items:center; gap:32px; margin-bottom:28px; }
.reviews-heading > div { max-width:660px; }
.reviews h2 { margin:0; font-family:var(--display); font-size:clamp(32px,4vw,52px); line-height:1.1; letter-spacing:-.025em; text-transform:uppercase; }
.google-word { display:inline-flex; font-family:Arial,sans-serif; font-size:21px; font-weight:600; letter-spacing:-1px; line-height:1.2; }
.google-word span:nth-child(1),.google-word span:nth-child(4) { color:#4285f4; }
.google-word span:nth-child(2),.google-word span:nth-child(6) { color:#ea4335; }
.google-word span:nth-child(3) { color:#b57900; }
.google-word span:nth-child(5) { color:#188038; }
.google-rating { display:grid; grid-template-columns:auto auto; align-items:center; gap:5px 16px; padding:18px 22px; border:1px solid #e2ded4; border-radius:12px; background:#fff; text-decoration:none; flex-shrink:0; }
.google-rating-score { display:flex; align-items:center; gap:8px; }
.google-rating-score strong { font-size:23px; }
.google-rating-count { grid-column:1/-1; color:#555; font-size:13px; }
.review-stars { color:#b57900; font-size:20px; letter-spacing:2px; white-space:nowrap; }
.review-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.review-card { display:flex; flex-direction:column; margin:0; padding:24px; border:1px solid #e2ded4; border-radius:14px; background:#fff; box-shadow:0 4px 14px rgba(34,37,31,.045); }
.review-person { display:flex; align-items:center; gap:12px; }
.review-avatar { display:grid; place-items:center; width:44px; height:44px; flex:0 0 44px; border-radius:50%; color:#fff; font:500 23px Arial,sans-serif; }
.review-avatar--amanda { background:#874378; }
.review-avatar--nadeem { background:#296959; }
.review-avatar--sadikshya { background:#845530; }
.review-identity { min-width:0; }
.review-identity strong { display:block; font-size:15px; line-height:1.3; overflow-wrap:anywhere; }
.review-identity > span { display:block; color:#626262; font-size:12px; margin-top:3px; }
.review-card-rating { margin-top:18px; }
.review-card blockquote { margin:12px 0 24px; font-size:16px; line-height:1.65; }
.review-card blockquote p { margin:0; }
.review-card-footer { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:auto; padding-top:15px; border-top:1px solid #eee; }
.review-card-footer > span { font-size:11px; color:#626262; }
.review-card-footer a { display:inline-flex; align-items:center; gap:8px; min-height:32px; text-decoration:none; }
.review-card-footer .google-word { font-size:18px; }
.reviews-bottom { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:12px 24px; margin-top:24px; }
.reviews-bottom .text-link,.reviews-bottom .price-note { margin:0; }
@media(max-width:900px) { .reviews-heading { align-items:flex-start; flex-direction:column; gap:20px; } .review-grid { gap:12px; } .review-card { padding:18px; } }
@media(max-width:650px) { .review-grid { grid-template-columns:1fr; gap:16px; } .review-card { padding:22px; } .reviews { padding-block:44px; } }


/* Review treatment inspired by Santos's Casa Dorado reference. */
.reviews { padding-block:72px; border-top:0; }
.reviews-heading { align-items:center; gap:40px; margin-bottom:44px; }
.reviews-heading > div { max-width:820px; }
.reviews .eyebrow { color:var(--red); }
.reviews h2 { font-size:clamp(36px,4.8vw,64px); letter-spacing:-.035em; }
.reviews h2 em { color:var(--red); font-family:Georgia,serif; font-weight:600; text-transform:none; }
.reviews-intro { max-width:550px; margin:18px 0 0; font-size:15px; line-height:1.7; }
.google-rating { gap:18px; padding:22px 26px; background:var(--paper); border:3px solid var(--ink); border-radius:18px; box-shadow:6px 6px 0 var(--red); }
.google-rating-number { font-family:var(--display); font-size:60px; line-height:1; }
.google-rating-detail { display:flex; flex-direction:column; gap:4px; font-size:13px; font-weight:700; }
.google-rating-source { margin-top:3px; }
.google-rating-source .google-word { font-size:16px; }
.review-grid { gap:26px; padding-right:7px; }
.review-card { position:relative; padding:30px 25px 20px; border:3px solid var(--ink); border-radius:16px; background:var(--paper); box-shadow:6px 7px 0 #c7bea5; }
.review-quote-badge { position:absolute; top:-20px; left:18px; display:grid; place-items:center; width:38px; height:38px; border:3px solid var(--ink); border-radius:50%; color:var(--paper); background:var(--red); font:bold 35px Georgia,serif; padding-top:7px; line-height:1; }
.review-card:nth-child(2) .review-quote-badge { background:#296959; }
.review-card:nth-child(3) .review-quote-badge { background:var(--gold); color:var(--ink); }
.review-avatar { border:3px solid var(--ink); font-family:var(--display); font-weight:700; }
.review-avatar--amanda { background:var(--red); }
.review-avatar--sadikshya { background:#a57513; }
.review-card-rating { margin-top:22px; }
.review-card blockquote { min-height:82px; margin:16px 0 20px; font-size:16px; line-height:1.7; }
.review-card-footer { border-top:0; padding-top:8px; }
.review-card-footer .google-word { font-size:16px; }
.reviews-bottom { flex-direction:column; justify-content:center; gap:20px; margin-top:42px; }
.reviews-all { border:3px solid var(--ink); border-radius:999px; box-shadow:4px 4px 0 var(--ink); padding:16px 26px; text-transform:none; letter-spacing:0; font-size:15px; }
.reviews-bottom .price-note { text-align:center; }
@media(max-width:900px) { .reviews-heading { align-items:flex-start; gap:28px; } .review-grid { gap:20px; } .review-card { padding:28px 18px 18px; } }
@media(max-width:650px) { .reviews { padding-block:48px; } .review-grid { gap:36px; } .review-card { padding:30px 22px 20px; } .review-card blockquote { min-height:0; } .reviews-all { text-align:center; line-height:1.3; } .reviews-heading { margin-bottom:42px; } }
