/* Acropolis Parking */
:root {
  --red: #d71920;          /* buttons, accents (logo red, darkened for contrast) */
  --red-bright: #e61f28;   /* logo red */
  --red-dark: #b3121a;
  --char: #161616;
  --char-2: #222222;
  --char-3: #2e2e2e;
  --paper: #faf8f6;
  --stone: #f1ede8;
  --line: #e3ddd5;
  --ink: #1a1a1a;
  --muted: #5f5b57;
  --radius: 14px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, Segoe UI, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.65 var(--sans); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
svg { max-width: 100%; }
a { color: inherit; }
h1, h2, h3, .h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3, .h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
figure { margin: 0; }
.wrap { width: min(1160px, 100% - 32px); margin-inline: auto; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip { position: absolute; left: -999px; top: 8px; background: var(--red); color: #fff; padding: 8px 14px; z-index: 99; }
.skip:focus { left: 8px; }

.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .75rem; font-weight: 800; color: var(--red); margin-bottom: .8rem; display: flex; align-items: center; gap: .6rem; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.section-head.center .eyebrow { justify-content: center; }
.lead { font-size: 1.15rem; opacity: .85; max-width: 60ch; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.3rem; border-radius: 999px; font-weight: 700; font-size: .95rem; white-space: nowrap;
  text-decoration: none; border: 2px solid transparent; cursor: pointer; font-family: inherit;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-dark { background: var(--char); color: #fff; }
.btn-dark:hover { background: var(--char-3); }
.btn-outline { border-color: var(--char); color: var(--char); background: transparent; }
.btn-outline:hover { background: var(--char); color: #fff; }
.btn-ghost-light { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn.block { display: flex; width: 100%; margin-top: .6rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.text-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--char); margin-top: 2rem; text-decoration: none; border-bottom: 2px solid var(--red); padding-bottom: 2px; white-space: nowrap; }
.text-link svg { width: 18px; fill: var(--red); }
.text-link:hover { color: var(--red); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 1px 0 rgba(0,0,0,.02); }
.site-header::before { content: ""; display: block; height: 4px; background: var(--red-bright); }
.nav-bar { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1rem; }
.brand img { height: 52px; width: auto; }
.nav { display: flex; align-items: center; gap: 1.25rem; }
.nav > ul { list-style: none; display: flex; gap: .15rem; margin: 0; padding: 0; }
.nav > ul > li { position: relative; }
.nav > ul > li > a { display: block; padding: .6rem .7rem; text-decoration: none; font-weight: 700; font-size: .93rem; color: var(--ink); border-radius: 8px; white-space: nowrap; }
.nav > ul > li > a:hover, .nav a[aria-current="page"] { color: var(--red); }
.has-sub > a::after { content: ""; display: inline-block; margin-left: .4rem; border: 4px solid transparent; border-top-color: currentColor; transform: translateY(2px); }
.sub { list-style: none; margin: 0; padding: .5rem; position: absolute; top: 100%; left: 0; min-width: 260px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 18px 40px rgba(0,0,0,.12); opacity: 0; visibility: hidden; transform: translateY(6px); transition: .18s; }
.sub a { display: block; white-space: nowrap; padding: .55rem .75rem; border-radius: 8px; text-decoration: none; font-size: .92rem; font-weight: 600; }
.sub a:hover { background: var(--stone); color: var(--red); }
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: none; }
.nav-call { padding: .6rem 1.1rem; }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--char); margin: 5px 0; transition: .2s; }

@media (max-width: 1180px) {
  .nav-toggle { display: block; }
  .nav { position: fixed; inset: 80px 0 0 0; background: #fff; flex-direction: column; align-items: stretch; padding: 1rem 16px 2rem; overflow-y: auto; display: none; }
  .nav.open { display: flex; }
  .nav > ul { flex-direction: column; }
  .nav > ul > li > a { font-size: 1.1rem; padding: .85rem 0; border-bottom: 1px solid var(--line); border-radius: 0; }
  .sub { position: static; opacity: 1; visibility: visible; transform: none; border: 0; box-shadow: none; padding: .25rem 0 .5rem 1rem; min-width: 0; }
  .sub a { color: var(--muted); }
  .has-sub > a::after { display: none; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* Hero */
.hero { background: radial-gradient(ellipse at 90% 10%, #3a1214 0%, transparent 55%), var(--char); color: #fff; padding: clamp(3rem, 7vw, 5.5rem) 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { color: #fff; }
.hero .eyebrow { color: #ff6b6f; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 2rem 0; }
.hero-facts { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; color: rgba(255,255,255,.7); font-size: .92rem; }
.hero-facts b { display: block; font-family: var(--serif); font-size: 1.6rem; color: #fff; font-weight: 600; }
.hero-photo { position: relative; justify-self: end; width: min(100%, 420px); }
.hero-photo::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--red-bright); border-radius: 22px; }
.hero-photo img { position: relative; border-radius: 20px; aspect-ratio: 4 / 5; object-fit: cover; width: 100%; box-shadow: 0 30px 60px rgba(0,0,0,.45); }
.hero-photo figcaption { position: absolute; left: 16px; bottom: 16px; background: rgba(22,22,22,.85); backdrop-filter: blur(6px); color: #fff; font-size: .85rem; font-weight: 700; padding: .5rem .85rem; border-radius: 999px; display: flex; align-items: center; gap: .5rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 0 4px rgba(61,220,132,.2); }

/* Page hero */
.page-hero { background: var(--char); color: #fff; padding: clamp(2.75rem, 6vw, 4.5rem) 0; position: relative; border-bottom: 4px solid var(--red-bright); }
.page-hero.has-photo { background: linear-gradient(90deg, rgba(22,22,22,.94) 0%, rgba(22,22,22,.8) 55%, rgba(22,22,22,.45) 100%), var(--hero-img) center / cover no-repeat, var(--char); padding: clamp(3.5rem, 8vw, 6rem) 0; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); }
.page-hero .eyebrow { color: #ff6b6f; }

/* Sections */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-stone { background: var(--stone); }
.section-head { max-width: 640px; margin-bottom: 2.5rem; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 1rem 2rem; flex-wrap: wrap; }
.section-head.row h2 { margin: 0; }
.section-head.row .text-link { margin: 0; }
.section-head p:last-child:not(.eyebrow) { color: var(--muted); }

/* Lot cards */
.lot-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.lot-card { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; padding: 1.1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; transition: transform .2s, box-shadow .2s, border-color .2s; }
.lot-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.08); border-color: var(--red); }
.lot-card h3 { font-size: 1.05rem; margin: 0; }
.lot-card p { margin: 0; font-size: .85rem; color: var(--muted); }
.lot-num { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: #fff; background: var(--red); border-radius: 10px; width: 56px; height: 48px; display: grid; place-items: center; }
.lot-go svg { width: 20px; fill: var(--red); }

/* Services */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.svc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.svc-img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.svc-body { padding: 1.5rem 1.6rem 1.75rem; border-top: 4px solid var(--red-bright); }
.svc p { color: var(--muted); margin: 0; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-photo { order: 2; }
.split-photo img { border-radius: 18px; aspect-ratio: 4 / 3; object-fit: cover; width: 100%; box-shadow: 0 20px 45px rgba(0,0,0,.12); }
.split-photo img.tall { aspect-ratio: 4 / 5; max-height: 620px; }
.prose p:not(.eyebrow) { color: var(--muted); }
.prose h2 + p { margin-top: .25rem; }
.prose p + h2 { margin-top: 1.8rem; }
.checks { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: .6rem; }
.checks li { display: flex; gap: .6rem; align-items: center; font-weight: 600; }
.checks svg { width: 22px; height: 22px; fill: #fff; background: var(--red); border-radius: 50%; padding: 3px; flex: none; }

.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.feature { background: #fff; border-radius: var(--radius); padding: 2rem; border: 1px solid var(--line); }
.feature p:not(.eyebrow) { color: var(--muted); }

/* Clients */
.clients { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.clients li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); aspect-ratio: 1; display: grid; place-items: center; padding: 1rem; overflow: hidden; }
.clients img { max-height: 100%; width: auto; object-fit: contain; border-radius: 6px; filter: grayscale(.15); transition: filter .2s, transform .2s; }
.clients li:hover img { filter: none; transform: scale(1.03); }

/* CTA */
.cta-band { background: var(--red); color: #fff; padding: clamp(2.5rem, 6vw, 4rem) 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; margin-bottom: .3rem; }
.cta-inner p { color: rgba(255,255,255,.85); margin: 0; }
.cta-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.cta-band .btn-red { background: #fff; color: var(--red); }
.cta-band .btn-red:hover { background: var(--char); color: #fff; }
.cta-band .btn-ghost-light { border-color: rgba(255,255,255,.6); }

/* Lots page */
.lot-rows { display: grid; gap: 1.25rem; }
.lot-row { display: grid; grid-template-columns: 260px 1fr; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.lot-thumb { position: relative; min-height: 220px; }
.lot-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lot-thumb-num { background: var(--char); display: grid; place-items: center; background-image: radial-gradient(circle at 30% 20%, #3a1214, transparent 60%); }
.lot-thumb-num span { font-family: var(--serif); font-size: 3.4rem; color: #fff; font-weight: 600; border-bottom: 4px solid var(--red-bright); line-height: 1.1; }
.lot-row-body { padding: 1.75rem; }
.lot-row h3 { margin-bottom: .5rem; }
.lot-row h3 a { text-decoration: none; }
.lot-row h3 a:hover { color: var(--red); }
.lot-row p { color: var(--muted); margin-bottom: .9rem; }
.lot-cross { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; color: var(--red) !important; margin-bottom: .35rem !important; }
.lot-row .btn-row { margin-top: 1.1rem; }
.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.chips li { font-size: .8rem; font-weight: 700; padding: .3rem .7rem; border-radius: 999px; background: var(--stone); color: var(--char-3); }
.chips.big li { font-size: .9rem; padding: .45rem .9rem; background: #fff; border: 1px solid var(--line); }

/* Lot detail */
.lot-detail, .form-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; }
.lot-main > * + * { margin-top: 1.5rem; }
.lot-media { display: grid; gap: 1rem; }
.lot-media.has-photo { grid-template-columns: .75fr 1.25fr; }
.lot-photo img { border-radius: var(--radius); width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.lot-media.has-photo .map, .lot-media.has-photo .map iframe { height: 100%; }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--stone); min-height: 320px; }
.map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.side-card .map { min-height: 220px; margin-top: 1rem; }
.side-card .map iframe { min-height: 220px; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 0; }
.facts div { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.25rem; }
.facts dt { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; color: var(--red); }
.facts dd { margin: .3rem 0 0; font-family: var(--serif); font-size: 1.12rem; line-height: 1.35; }
.side-card { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--red-bright); border-radius: var(--radius); padding: 1.75rem; position: sticky; top: 100px; }
.side-card p { color: var(--muted); }
.side-card h4 { margin: 1.5rem 0 .5rem; font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; color: var(--red); }
.plain { list-style: none; padding: 0; margin: 0; }
.plain a { display: block; padding: .45rem 0; text-decoration: none; border-bottom: 1px solid var(--line); font-weight: 600; }
.plain a:hover { color: var(--red); }

/* Forms */
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.25rem, 4vw, 2.25rem); display: grid; gap: 1.1rem; }
.form label { display: grid; gap: .35rem; font-weight: 700; font-size: .92rem; }
.form fieldset { border: 0; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.form legend { font-weight: 700; font-size: .92rem; margin-bottom: .5rem; width: 100%; }
.form .choice { display: inline-flex; align-items: center; gap: .45rem; font-weight: 500; }
.form input:not([type=radio]), .form select, .form textarea { font: inherit; font-weight: 400; padding: .75rem .9rem; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); color: var(--ink); width: 100%; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; background: #fff; }
.form input[type=radio] { accent-color: var(--red); width: 18px; height: 18px; }
.form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form button { justify-self: start; }
.form-status { margin: 0; font-weight: 700; color: var(--red-dark); }
.form-status:empty { display: none; }

/* Footer */
.site-footer { background: var(--char); color: rgba(255,255,255,.72); padding: 3.5rem 0 1.5rem; font-size: .94rem; border-top: 4px solid var(--red-bright); }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; }
.foot-logo img { height: 64px; width: auto; margin-bottom: 1rem; }
.site-footer h4 { color: #fff; font-size: .75rem; text-transform: uppercase; letter-spacing: .16em; margin: .6rem 0 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--red-bright); }
.contact-list li { display: flex; gap: .7rem; align-items: flex-start; }
.contact-list svg { width: 18px; height: 18px; fill: var(--red-bright); flex: none; margin-top: 4px; }
.contact-list.dark { margin: 0 0 .5rem; display: grid; gap: .7rem; list-style: none; padding: 0; }
.foot-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.25rem; font-size: .85rem; color: rgba(255,255,255,.5); }

/* Responsive */
@media (max-width: 1000px) {
  .lot-list { grid-template-columns: 1fr 1fr; }
  .clients { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hero-grid, .lot-detail, .form-wrap, .split { grid-template-columns: 1fr; }
  .split.reverse .split-photo { order: 0; }
  .hero-photo { justify-self: start; width: min(100% - 18px, 420px); }
  .svc-grid { grid-template-columns: 1fr; }
  .svc { display: grid; grid-template-columns: 40% 1fr; }
  .svc-img { height: 100%; aspect-ratio: auto; }
  .svc-body { border-top: 0; border-left: 4px solid var(--red-bright); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .side-card { position: static; }
}
@media (max-width: 680px) {
  .brand img { height: 44px; }
  .duo, .foot-grid, .facts, .form .two, .lot-list, .lot-media.has-photo { grid-template-columns: 1fr; }
  .lot-row { grid-template-columns: 1fr; }
  .lot-thumb { min-height: 200px; }
  .lot-thumb:not(.lot-thumb-num) { min-height: 260px; }
  .svc { display: flex; }
  .svc-img { aspect-ratio: 16 / 10; }
  .svc-body { border-left: 0; border-top: 4px solid var(--red-bright); }
  .clients { grid-template-columns: repeat(2, 1fr); }
  .lot-photo img { aspect-ratio: 4 / 3; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto !important; } }
.lot-main > .facts { margin-top: 1.5rem; }

/* Menu: valet locations label */
.sub .sub-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; color: var(--red); padding: .75rem .75rem .25rem; margin-top: .35rem; border-top: 1px solid var(--line); }
@media (max-width: 1180px) { .sub .sub-label { padding: .75rem 0 .25rem; } }

/* Clients: centered rows, building-photo tiles */
.clients { display: flex; flex-wrap: wrap; justify-content: center; }
.clients li { flex: 0 0 calc((100% - 3rem) / 4); }
.clients li.client-photo { padding: 0; position: relative; }
.client-photo img { position: absolute; inset: 0; width: 100%; height: 100%; max-height: none; object-fit: cover; border-radius: 0; filter: none; }
.client-photo span { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem .9rem .8rem; color: #fff; font-weight: 800; font-size: .92rem; line-height: 1.25; text-align: center; background: linear-gradient(transparent, rgba(0,0,0,.8)); }
@media (max-width: 1000px) { .clients li { flex-basis: calc((100% - 2rem) / 3); } }
@media (max-width: 680px) { .clients li { flex-basis: calc((100% - 1rem) / 2); } }

/* Valet venue cards */
.venue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.venue-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; transition: transform .2s, box-shadow .2s, border-color .2s; }
.venue-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.08); border-color: var(--red); }
.venue-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.venue-card > div { padding: 1.3rem 1.4rem 1.5rem; border-top: 4px solid var(--red-bright); }
.venue-card h3 { margin-bottom: .25rem; }
.venue-card p { color: var(--muted); margin: 0; font-size: .95rem; }
.venue-card .text-link { margin-top: 1rem; }
.venue-logo { width: 110px; aspect-ratio: 1; margin-bottom: 1rem; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.venue-logo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .venue-grid { grid-template-columns: 1fr; } }

/* Footer extras */
.site-footer h4.foot-sub { margin-top: 1.75rem; }
.foot-base a { color: #fff; text-decoration: underline; text-decoration-color: var(--red-bright); text-underline-offset: 3px; }

/* Reviews */
.review-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.chip-btn { font: inherit; font-weight: 700; font-size: .9rem; padding: .55rem 1rem; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; transition: .15s; }
.chip-btn span { color: var(--muted); font-weight: 600; margin-left: .2rem; }
.chip-btn:hover { border-color: var(--char); }
.chip-btn.is-active { background: var(--char); border-color: var(--char); color: #fff; }
.chip-btn.is-active span { color: rgba(255,255,255,.7); }
.review-grid { columns: 3 300px; column-gap: 1.25rem; }
.review { break-inside: avoid; margin: 0 0 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.5rem 1.25rem; position: relative; }
.review::before { content: "\201C"; position: absolute; top: .4rem; right: 1.1rem; font-family: var(--serif); font-size: 3.5rem; line-height: 1; color: var(--red-bright); opacity: .18; }
.review[hidden] { display: none; }
.review blockquote { margin: 0 0 1.1rem; font-size: 1rem; line-height: 1.6; color: var(--ink); }
.review figcaption { display: flex; align-items: center; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.review figcaption b { display: block; font-size: .95rem; }
.review figcaption small { color: var(--red); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--char); color: #fff; font-weight: 800; font-size: .85rem; display: grid; place-items: center; flex: none; }
.rating-bar { display: inline-flex; align-items: center; gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.5rem; margin-bottom: 1.75rem; }
.rating-num { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; line-height: 1; color: var(--char); }
.rating-bar .stars { color: #f5a623; font-size: 1.2rem; letter-spacing: .1em; }
.rating-bar p { margin: 0; color: var(--muted); font-size: .9rem; font-weight: 600; }
