/* =============================================================
   PAT Testing Course — design system
   Self-hosted, framework-free. Brand: Skills Training Group.
   ============================================================= */

/* ---------- Font (self-hosted, GDPR-friendly) ---------- */
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-variable.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  --navy:        #082a4d;
  --navy-800:    #0a3866;
  --brand:       #1470cc;
  --brand-600:   #1162b3;
  --brand-700:   #0d4f93;
  --accent:      #3898ec;
  --green:       #12b250;
  --green-600:   #0e9344;
  --light-blue:  #cce5ff;
  --pale-blue:   #e5f2ff;
  --muted:       #506780;
  --ink:         #1e1e1e;
  --white:       #ffffff;
  --bg-alt:      #f6f9fc;
  --bg-alt-2:    #eef4fb;
  --border:      #e2e8f0;
  --shadow-sm:   0 1px 3px rgba(8,42,77,.08), 0 1px 2px rgba(8,42,77,.06);
  --shadow-md:   0 6px 18px rgba(8,42,77,.10);
  --shadow-lg:   0 18px 40px rgba(8,42,77,.16);
  --radius:      14px;
  --radius-sm:   10px;
  --radius-lg:   22px;
  --maxw:        1180px;
  --gradient:    linear-gradient(135deg, #1470cc 0%, #3898ec 100%);
  --space:       clamp(3.5rem, 7vw, 6rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, picture, video { display: block; max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-700); text-decoration: underline; }
ul, ol { padding-left: 1.25rem; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--navy); font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 700; }
p { color: #25405c; }
strong { font-weight: 700; color: var(--navy); }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--navy); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section { padding-block: var(--space); }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: #dbe7f3; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section__head { max-width: 760px; margin-bottom: 2.5rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand); margin-bottom: .6rem;
}
.lead { font-size: 1.15rem; color: var(--muted); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.grid-2--text-first { }
@media (max-width: 860px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: inherit; font-weight: 700; font-size: 1rem; line-height: 1;
  padding: .95rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  text-decoration: none; text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(18,178,80,.30); }
.btn--primary:hover { background: var(--green-600); color: #fff; }
.btn--brand { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(20,112,204,.28); }
.btn--brand:hover { background: var(--brand-700); color: #fff; }
.btn--outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn--outline:hover { background: var(--brand); color: #fff; }
.btn--ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-light:hover { background: #fff; color: var(--navy); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }
/* Icons scale with the button text and never stretch */
.btn svg { width: 1.15em; height: 1.15em; flex: 0 0 auto; }
.topbar svg { width: 17px; height: 17px; flex: 0 0 auto; }
.footer__contact svg { width: 18px; height: 18px; flex: 0 0 auto; }
.infobox h3 svg, .infobox address svg { width: 20px; height: 20px; flex: 0 0 auto; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: #cfe0f0; font-size: .9rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 42px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar__phone { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__links { display: flex; gap: 1.25rem; }
@media (max-width: 600px) { .topbar__links { display: none; } }

/* ---------- Header / nav ---------- */
.header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }
.nav__logo img { height: 46px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav__menu a:not(.btn) { color: var(--navy); font-weight: 600; font-size: .98rem; }
.nav__menu a:not(.btn):hover { color: var(--brand); text-decoration: none; }
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__toggle { display: none; background: none; border: 0; padding: .55rem; cursor: pointer; color: var(--navy); line-height: 0; }
.nav__toggle svg { width: 30px; height: 30px; }  /* total target ~47px — meets WCAG 2.5.5 AAA */
@media (max-width: 900px) {
  .nav__cta-phone { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: absolute; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); padding: .5rem 0; display: none;
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu li { border-top: 1px solid var(--border); }
  .nav__menu a { display: block; padding: .95rem clamp(1rem,4vw,2rem); }
  .nav__menu .btn { margin: .75rem clamp(1rem,4vw,2rem); }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--bg-alt-2); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(1100px 480px at 85% -10%, rgba(56,152,236,.18), transparent 60%);
}
.hero .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; padding-block: clamp(2.5rem, 6vw, 4rem); }
.hero__copy { padding-top: .5rem; }
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
.hero__lead { font-size: 1.15rem; color: var(--muted); margin-top: 1.1rem; max-width: 46ch; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 1.6rem 0; }
.hero__meta-item { display: flex; flex-direction: column; }
.hero__meta-item .k { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.hero__meta-item .v { font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: .5rem; }
.hero__trust { display: flex; align-items: center; gap: .8rem; margin-top: 1.6rem; flex-wrap: wrap; color: var(--muted); font-size: .92rem; }
.hero__trust img { height: 26px; width: auto; }

/* Hero media collage */
.hero__media { position: relative; }
.hero__media-main { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.hero__media-badge {
  position: absolute; left: -14px; bottom: -18px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: .8rem 1rem; display: flex; align-items: center; gap: .6rem; max-width: 230px;
}
.hero__media-badge .stars { color: #00b67a; font-size: 1.1rem; letter-spacing: 1px; }
.hero__media-badge .t { font-size: .8rem; line-height: 1.3; color: var(--navy); font-weight: 600; }
@media (max-width: 940px) { .hero__media-badge { left: auto; right: 8px; } }

/* ---------- Price / booking card ---------- */
.bookcard {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: clamp(1.4rem, 3vw, 2rem); position: relative; overflow: hidden;
}
.bookcard::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 6px; background: var(--gradient); }
.bookcard__tag { display: inline-block; background: var(--pale-blue); color: var(--brand-700); font-weight: 700; font-size: .8rem; padding: .35rem .75rem; border-radius: 999px; }
.bookcard__price { display: flex; align-items: baseline; gap: .4rem; margin: .9rem 0 .2rem; }
.bookcard__price .amt { font-size: 2.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.bookcard__price .vat { color: var(--muted); font-weight: 600; }
.bookcard__list { list-style: none; padding: 0; margin: 1.1rem 0 1.4rem; display: grid; gap: .6rem; }
.bookcard__list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .96rem; color: #25405c; }
.bookcard__note { font-size: .82rem; color: var(--muted); text-align: center; margin-top: .8rem; }

/* ---------- Check lists ---------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.checklist li { display: flex; gap: .75rem; align-items: flex-start; }
.check-ico { flex: 0 0 auto; width: 24px; height: 24px; margin-top: 1px; color: var(--green); }
.checklist--2col { grid-template-columns: 1fr 1fr; gap: .8rem 2rem; }
@media (max-width: 640px) { .checklist--2col { grid-template-columns: 1fr; } }

/* ---------- Feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__ico { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--pale-blue); color: var(--brand); margin-bottom: 1rem; }
.card__ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .96rem; }

/* ---------- Numbered course content ---------- */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; gap: 1rem; }
.steps li { counter-increment: step; display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.3rem; box-shadow: var(--shadow-sm); }
.steps li::before { content: counter(step); display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: var(--gradient); color: #fff; font-weight: 800; }

/* ---------- Media + text section ---------- */
.media-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: #fff; }
.illus { background: var(--bg-alt-2); border-radius: var(--radius-lg); padding: clamp(1.5rem,4vw,2.5rem); }
.illus img { margin-inline: auto; max-height: 320px; width: auto; }

/* ---------- Info / venue box ---------- */
.infobox { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem 1.8rem; box-shadow: var(--shadow-sm); }
.infobox address { font-style: normal; color: #25405c; line-height: 1.7; }

/* ---------- FAQ (native <details>, zero JS) ---------- */
.faq { display: grid; gap: .8rem; max-width: 840px; margin-inline: auto; }
.faq details { border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; font-weight: 700; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--brand); line-height: 1; flex: 0 0 auto; }
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { color: var(--brand); }
.faq .faq__a { padding: 0 1.3rem 1.2rem; color: #25405c; }
.faq .faq__a p { margin-bottom: .6rem; }

/* ---------- Trust strip / stats ---------- */
.trust-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.25rem; }
.trust-item { display: flex; gap: .75rem; align-items: flex-start; }
.trust-item .check-ico { color: #fff; }
.section--navy .trust-item p { color: #cfe0f0; }

/* ---------- Other venues ---------- */
.venues { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: .8rem; }
.venue-link { display: flex; align-items: center; gap: .6rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .85rem 1.1rem; font-weight: 700; color: var(--navy); box-shadow: var(--shadow-sm); }
.venue-link:hover { color: var(--brand); border-color: var(--brand); text-decoration: none; transform: translateY(-2px); transition: transform .12s ease; }
.venue-link svg { width: 18px; height: 18px; color: var(--brand); flex: 0 0 auto; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--gradient); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.2rem); text-align: center; box-shadow: var(--shadow-lg); }
.cta-band h1, .cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
.cta-band p { color: rgba(255,255,255,.92); max-width: 620px; margin: .8rem auto 1.6rem; }
.cta-band .hero__cta { justify-content: center; }

/* ---------- Contact form ---------- */
.form-grid { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 600; font-size: .95rem; color: var(--navy); }
.field input, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--navy); background: #fff;
  border: 1.5px solid var(--border); border-radius: 10px; padding: .8rem .95rem; width: 100%;
}
.field input:focus, .field textarea:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 3px rgba(20,112,204,.15); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Rich text (legal pages) ---------- */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.4rem; margin: 2rem 0 .8rem; }
.prose h3 { font-size: 1.15rem; margin: 1.5rem 0 .6rem; }
.prose p, .prose li { color: #2a3f57; margin-bottom: .8rem; }
.prose ul, .prose ol { margin: 0 0 1rem; padding-left: 1.4rem; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: .88rem; color: var(--muted); padding-top: 1.5rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; }
.breadcrumbs li::after { content: "›"; margin-left: .4rem; color: var(--border); }
.breadcrumbs li:last-child::after { content: ""; }

/* ---------- Page header (sub pages) ---------- */
.pagehead { background: var(--bg-alt-2); border-bottom: 1px solid var(--border); }
.pagehead .container { padding-block: clamp(2rem, 5vw, 3.5rem); }
.pagehead h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
.pagehead p { color: var(--muted); max-width: 640px; margin-top: .8rem; font-size: 1.1rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #aebfd2; padding-block: 3.5rem 2rem; font-size: .95rem; }
.footer a { color: #d6e3f2; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__logo img { height: 42px; width: auto; margin-bottom: 1rem; }
.footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer__contact a { display: inline-flex; align-items: center; gap: .5rem; }
.footer__social { display: flex; gap: .8rem; margin-top: 1rem; }
.footer__social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.08); }
.footer__social a:hover { background: var(--brand); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: #8da4bf; }
.footer__bottom a { color: #aebfd2; }

/* ============================================================
   Rich components (v2) — hero pills, offer card, tabs, stats,
   feature grid, rating panel, map
   ============================================================ */

/* ---- Hero pills (Duration / Cost / Certificate) ---- */
.pills { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.5rem 0; }
.pill {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: .55rem .9rem .55rem .6rem; box-shadow: var(--shadow-sm);
}
.pill__ic { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 999px; background: var(--pale-blue); color: var(--brand); flex: 0 0 auto; }
.pill__ic svg { width: 18px; height: 18px; }
.pill__t { display: flex; flex-direction: column; line-height: 1.15; }
.pill__t .k { font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; }
.pill__t .v { font-size: .98rem; font-weight: 800; color: var(--navy); }

/* ---- Offer card: tabs + badge ---- */
.offer__badge {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem;
  background: #fff7e6; color: #8a5a00; border: 1px solid #ffe2a8;
  border-radius: 10px; padding: .55rem .8rem; font-size: .85rem; font-weight: 600; width: 100%;
}
.offer__badge svg { width: 18px; height: 18px; flex: 0 0 auto; color: #e2920a; }

/* Zero-JS tabs (radio + sibling selectors) */
.tabs { margin: 1.1rem 0 .4rem; }
.tabs__radio { position: absolute; opacity: 0; pointer-events: none; }
.tabs__labels { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 999px; padding: .3rem; }
.tabs__labels label { text-align: center; padding: .5rem .6rem; border-radius: 999px; font-weight: 700; font-size: .92rem; color: var(--muted); cursor: pointer; transition: background .15s, color .15s; }
.tabs__panel { display: none; padding-top: 1rem; }
#tab-me:checked ~ .tabs__labels label[for="tab-me"],
#tab-team:checked ~ .tabs__labels label[for="tab-team"] { background: var(--white); color: var(--brand); box-shadow: var(--shadow-sm); }
#tab-me:checked ~ .tabs__panel--me { display: block; }
#tab-team:checked ~ .tabs__panel--team { display: block; }
.tabs__radio:focus-visible ~ .tabs__labels { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ---- Stats band ---- */
.statband { background: var(--gradient); color: #fff; }
.statband .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding-block: 2.4rem; text-align: center; }
.statband .stat .num { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; line-height: 1; }
.statband .stat .lbl { font-size: .9rem; opacity: .92; margin-top: .4rem; }
@media (max-width: 700px) { .statband .container { grid-template-columns: 1fr 1fr; gap: 1.6rem 1rem; } }

/* ---- Feature icon grid ---- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.1rem; }
.feature {
  display: flex; gap: 1rem; align-items: flex-start; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature__ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--gradient); color: #fff; }
.feature__ic svg { width: 24px; height: 24px; }
.feature p { font-weight: 600; color: var(--navy); margin: 0; align-self: center; }

/* ---- Rating / trust panel ---- */
.rating-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(1.6rem, 4vw, 2.4rem); text-align: center; }
.rating-panel .score { font-size: 3.2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.rating-panel .stars-lg { color: #00b67a; font-size: 1.6rem; letter-spacing: 3px; margin: .4rem 0; }
.rating-panel .stars-lg svg { width: 28px; height: 28px; display: inline-block; vertical-align: middle; }
.rating-panel img { height: 30px; width: auto; margin: .6rem auto 0; }

/* ---- Venue map ---- */
.map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.map iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ---- Section header tweaks for rich layout ---- */
.section__head .lead { margin-top: .6rem; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-1 { margin-bottom: 1rem; } .mt-2 { margin-top: 1.5rem; }
.text-center { text-align: center; }
.stack > * + * { margin-top: 1.1rem; }
