/* Burnetts Fish and Chips: cream on black from the logo, green/turquoise from the shop walls as the accent. */
:root {
    --black: #0b0b0b;
    --ink: #171614;
    --cream: #efdcb5;
    --cream-light: #f7ecd4;
    --paper: #fbf7ee;
    --paper-2: #f3ecdc;
    --teal: #1f8f88;
    --teal-dark: #146b66;
    --teal-light: #d9efec;
    --text: #1d1b18;
    --muted: #6e675f;
    --line: #e4dccb;
    --danger: #b3261e;
    --font-display: "Montserrat", "Segoe UI", Arial, sans-serif;
    --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(0,0,0,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); color: var(--text); background: var(--paper); line-height: 1.55; font-size: 17px; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); }
a:hover { color: var(--teal); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
.wrap { width: min(1140px, 100% - 2.5rem); margin-inline: auto; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.eyebrow { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; color: var(--teal); margin-bottom: .6em; }
.lead { font-size: 1.2rem; max-width: 62ch; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 0; background: var(--teal); color: #fff; padding: .5rem 1rem; z-index: 100; }
.skip:focus { left: 0; }
.two-col { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 820px) { .two-col { grid-template-columns: 1fr 1fr; } }
section { padding: 3.5rem 0; }
.prose { max-width: 70ch; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-family: var(--font-display); font-weight: 600; font-size: .95rem; padding: .8rem 1.4rem; border-radius: 999px; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: transform .12s ease, background .15s ease, color .15s ease; line-height: 1.1; }
.btn:hover { transform: translateY(-1px); }
.btn-lg { font-size: 1.05rem; padding: 1rem 1.8rem; }
.btn-accent { background: var(--teal); color: #fff; }
.btn-accent:hover { background: var(--teal-dark); color: #fff; }
.btn-outline { background: transparent; border-color: currentColor; color: var(--cream); }
.btn-outline:hover { background: rgba(255,255,255,.08); color: var(--cream-light); }
.page-head .btn-outline, .hours-section .btn-outline, .gf-hours-card .btn-outline, .about-gf .btn-outline, .about-community .btn-outline, .find-map-links .btn-outline { color: var(--teal-dark); }
.page-head .btn-outline:hover, .hours-section .btn-outline:hover, .gf-hours-card .btn-outline:hover, .about-gf .btn-outline:hover, .about-community .btn-outline:hover, .find-map-links .btn-outline:hover { background: var(--teal-light); }
.btn-ghost { background: var(--paper-2); color: var(--text); }
.btn-ghost:hover { background: var(--line); color: var(--text); }
.btn-disabled { background: #cfc8b8; color: #5b554c; cursor: not-allowed; }

/* Preview bar */
.preview-bar { background: #ffcf4d; color: #2b2300; font-size: .9rem; text-align: center; padding: .45rem 1rem; }
.preview-bar a { color: inherit; font-weight: 600; }

/* Header */
.site-header { background: var(--black); color: var(--cream); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(239,220,181,.12); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; color: var(--cream); text-decoration: none; }
.brand img { width: 48px; height: 48px; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; font-family: var(--font-display); line-height: 1; }
.brand-text span { font-weight: 800; font-size: 1.25rem; letter-spacing: .06em; text-transform: uppercase; }
.brand-text small { font-weight: 600; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; opacity: .8; margin-top: .25rem; }
.nav { display: flex; align-items: center; gap: .2rem; }
.nav a { color: var(--cream); text-decoration: none; font-family: var(--font-display); font-weight: 600; font-size: .92rem; padding: .55rem .8rem; border-radius: 999px; }
.nav a:hover, .nav a.active { background: rgba(239,220,181,.12); }
.nav .nav-order { margin-left: .5rem; background: var(--teal); color: #fff; }
.nav .nav-order:hover { background: var(--teal-dark); }
.nav-toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span:not(.visually-hidden) { display: block; width: 26px; height: 3px; background: var(--cream); border-radius: 2px; }
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--black); flex-direction: column; align-items: stretch; padding: .75rem 1.25rem 1.25rem; border-bottom: 1px solid rgba(239,220,181,.15); }
    .nav.open { display: flex; }
    .nav a { padding: .8rem 1rem; font-size: 1.05rem; }
    .nav .nav-order { margin: .5rem 0 0; text-align: center; }
}

/* Notice banner */
.notice { padding: .7rem 0; font-weight: 600; }
.notice .wrap { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; align-items: center; }
.notice-info { background: var(--teal-light); color: var(--teal-dark); }
.notice-warning { background: #fde9c9; color: #6a3d00; }
.notice a { color: inherit; }

/* Hero */
.hero { position: relative; color: var(--cream); background: var(--black); padding: 0; overflow: hidden; min-height: min(78vh, 720px); display: grid; align-items: center; }
.hero-plain { background:
    radial-gradient(ellipse at 20% 10%, rgba(31,143,136,.35), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(239,220,181,.18), transparent 50%),
    var(--black); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.78) 100%); }
.hero-plain .hero-overlay { background: none; }
.hero-content { position: relative; text-align: center; padding: 3.5rem 0 4rem; display: flex; flex-direction: column; align-items: center; }
.hero-logo { width: clamp(120px, 20vw, 190px); border-radius: 50%; box-shadow: 0 0 0 6px rgba(239,220,181,.12), 0 20px 50px rgba(0,0,0,.5); margin-bottom: 1.5rem; }
.hero h1 { color: var(--cream-light); max-width: 18ch; margin-inline: auto; text-wrap: balance; }
.strapline { font-family: var(--font-display); font-weight: 600; font-size: clamp(1rem, 2vw, 1.25rem); color: var(--cream); opacity: .9; max-width: 50ch; margin-inline: auto; text-wrap: balance; }
.hero-intro { max-width: 60ch; margin-inline: auto; opacity: .85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.2rem; }

/* Info strip */
.info-strip { background: var(--cream); color: var(--ink); padding: 1.2rem 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.info-grid { display: grid; gap: 1rem 2rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .info-grid { grid-template-columns: 1.2fr 1fr auto; } }
.info-status { display: flex; align-items: center; gap: .8rem; font-size: 1.05rem; }
.info-status strong { display: block; font-family: var(--font-display); }
.info-status .sub { color: var(--muted); font-size: .9rem; }
.dot { width: 14px; height: 14px; border-radius: 50%; background: #999; flex: none; box-shadow: 0 0 0 4px rgba(0,0,0,.05); }
.dot.open { background: #2fa84f; box-shadow: 0 0 0 4px rgba(47,168,79,.2); }
.dot.closed { background: #c8463a; box-shadow: 0 0 0 4px rgba(200,70,58,.2); }
.info-gf { display: flex; align-items: center; gap: .6rem; color: var(--teal-dark); font-weight: 600; }
.info-order { display: flex; flex-direction: column; gap: .3rem; align-items: flex-start; }
.info-order .muted { font-size: .85rem; }
.info-upcoming { margin-top: .8rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; font-weight: 600; color: #6a3d00; }
.info-upcoming span::before { content: "\26A0  "; }

/* Order buttons */
.order-buttons { display: flex; flex-wrap: wrap; gap: .6rem; }
.order-paused { display: flex; flex-direction: column; gap: .25rem; }
.order-msg { font-size: .88rem; color: var(--muted); max-width: 32ch; }
.order-note { color: var(--muted); font-size: .9rem; margin: .6rem 0 0; }
.order-none { margin: 0; }

/* Tiles */
.tiles { background: var(--paper); }
.tile-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.tile { background: #fff; border-radius: var(--radius); padding: 0; text-decoration: none; color: var(--text); box-shadow: var(--shadow); border: 1px solid var(--line); display: flex; flex-direction: column; overflow: hidden; transition: transform .15s ease; }
.tile-body { display: flex; flex-direction: column; gap: .4rem; padding: 1.8rem; flex: 1; }
.tile-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.tile:hover { transform: translateY(-3px); color: var(--text); }
.tile-icon { color: var(--teal); }
.tile h2 { font-size: 1.4rem; margin: .3rem 0 .2rem; }
.tile p { color: var(--muted); margin: 0; flex: 1; }
.tile-link { color: var(--teal-dark); font-weight: 600; margin-top: .6rem; }
.tile-gf { background: var(--black); color: var(--cream); border-color: var(--black); }
.tile-gf:hover { color: var(--cream); }
.tile-gf p { color: rgba(239,220,181,.8); }
.tile-gf .tile-icon, .tile-gf .tile-link { color: var(--teal-light); }

/* Photo grids */
.photo-grid { display: grid; gap: .8rem; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.photo-grid-small { grid-template-columns: repeat(2, 1fr); }
.photo-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--paper-2); aspect-ratio: 4 / 3; position: relative; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; }
.photo-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(transparent, rgba(0,0,0,.7)); color: #fff; padding: 1.2rem .8rem .6rem; font-size: .85rem; }
.photo-strip { padding-top: 0; }

/* Reviews */
.reviews { background: var(--black); color: var(--cream); }
.reviews h2 { color: var(--cream-light); text-align: center; }
.review-track { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: .5rem .2rem 1rem; scrollbar-width: none; }
.review-track::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 min(88%, 380px); scroll-snap-align: start; margin: 0; background: #151412; border: 1px solid rgba(239,220,181,.14); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: .8rem; }
.stars span { color: #4a4438; font-size: 1.15rem; }
.stars span.on { color: #f4b73a; }
.review-card blockquote { margin: 0; font-size: 1.02rem; flex: 1; }
.review-quote { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.review-quote.expanded { display: block; -webkit-line-clamp: unset; overflow: visible; }
.review-more { align-self: flex-start; background: none; border: 0; padding: 0; color: var(--teal-light); font-family: var(--font-display); font-weight: 600; font-size: .9rem; cursor: pointer; margin-top: -.4rem; }
.review-more:hover { text-decoration: underline; }
.review-card figcaption { display: flex; align-items: center; gap: .7rem; font-size: .95rem; }
.review-card small { color: rgba(239,220,181,.7); }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: .85rem; flex: none; }
.carousel-controls { display: flex; justify-content: center; gap: .6rem; }
.carousel-btn { background: transparent; color: var(--cream); border: 2px solid rgba(239,220,181,.4); border-radius: 50%; width: 44px; height: 44px; font-size: 1.2rem; cursor: pointer; }
.carousel-btn:hover { border-color: var(--cream); }

/* Latest */
.section-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.section-head h2 { margin: 0; }
.social-links { display: flex; gap: .5rem; flex-wrap: wrap; }
.news-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.news-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.news-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.news-body { padding: 1.2rem 1.4rem 1.4rem; }
.news-body time { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.news-body h3 { margin: .3rem 0 .4rem; }
.news-body p:last-of-type { margin-bottom: .5rem; }

/* Awards */
.awards-strip { background: var(--paper-2); }
.awards-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.5rem; }
.awards-list li { display: flex; align-items: center; gap: .8rem; }
.awards-list img { width: 64px; height: 64px; object-fit: contain; }
.awards-detail { flex-direction: column; }

/* Sponsor */
.sponsor { background: var(--teal); color: #fff; }
.sponsor .eyebrow { color: rgba(255,255,255,.75); }
.sponsor h2 { color: #fff; }
.sponsor-inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.sponsor-inner img { width: 96px; height: 96px; object-fit: contain; background: #fff; border-radius: 50%; padding: .4rem; }
.sponsor .btn-outline { color: #fff; }
.sponsor .btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; }

/* Large orders line */
.large-orders { background: var(--cream); padding: 1.6rem 0; text-align: center; font-family: var(--font-display); font-weight: 600; }
.large-orders p { margin: 0; }

/* Page head */
.page-head { background: var(--black); color: var(--cream); padding: 3.5rem 0 3rem; }
.page-head h1 { color: var(--cream-light); text-wrap: balance; }
.page-head .lead { color: rgba(239,220,181,.85); }
.page-head-gf { background: linear-gradient(135deg, var(--black), #103f3c); }

/* Menu page */
.badge-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.badge-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0; box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; }
.badge-body { padding: 1.6rem; flex: 1; }
.badge-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* Page header with a slot photo behind it */
.page-head-img { position: relative; background-size: cover; background-position: center; }
.page-head-img::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.6) 60%, rgba(0,0,0,.35) 100%); }
.page-head-img .wrap { position: relative; }

/* About page portrait */
.about-photo-wrap { margin: 0; }
.about-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-photo-wrap figcaption { font-size: .9rem; color: var(--muted); margin-top: .5rem; }
.badge-icon { color: var(--teal); display: block; margin-bottom: .6rem; }
.badge-card h2 { font-size: 1.3rem; }
.badge-card p { color: var(--muted); }
.badge-gf { border-color: var(--teal); background: var(--teal-light); }
.badge-gf p { color: var(--teal-dark); }
.menu-cta { background: var(--paper-2); text-align: center; }
.menu-cta .order-block { margin-top: 1.5rem; display: flex; flex-direction: column; align-items: center; }
.menu-cta .order-buttons { justify-content: center; }

/* Gluten free page */
.pull-quote { margin: 1.5rem 0 0; padding: 1.2rem 1.5rem; border-left: 4px solid var(--teal); background: var(--paper-2); font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; border-radius: 0 var(--radius) var(--radius) 0; }
.pull-quote cite { display: block; font-style: normal; font-size: .85rem; color: var(--muted); margin-top: .5rem; font-family: var(--font-body); font-weight: 400; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.checklist li { display: flex; align-items: center; gap: .7rem; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: .7rem .9rem; font-weight: 600; }
.checklist svg { color: var(--teal); flex: none; background: var(--teal-light); border-radius: 50%; padding: 3px; }
.gallery { background: var(--paper-2); }
.menu-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.menu-list li { padding: .6rem 0; border-bottom: 1px dashed var(--line); }
.gf-hours-card { background: var(--black); color: var(--cream); border-radius: var(--radius); padding: 1.8rem; }
.gf-hours-card h2 { color: var(--cream-light); }
.gf-hours-card .btn-outline { color: var(--cream); }
.honesty { background: var(--teal-light); color: var(--teal-dark); padding: 2rem 0; }
.honesty p { max-width: 75ch; font-weight: 600; }

/* Find us */
.find-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .find-grid { grid-template-columns: 1.1fr 1fr; } }
.find-map iframe { width: 100%; aspect-ratio: 4 / 3; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--paper-2); }
.find-map-links { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.find-details h3 { margin-top: 1.2rem; color: var(--teal-dark); }
.parking { display: flex; align-items: center; gap: .5rem; font-weight: 600; margin-top: 1rem; }
.facilities { columns: 2; padding-left: 1.2rem; }
.hours-section { background: var(--paper-2); }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.hours-table th, .hours-table td { text-align: left; padding: .55rem .4rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.hours-table thead th { font-family: var(--font-display); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.hours-table tbody th { font-weight: 600; }
.hours-table tr.today { background: var(--teal-light); }
.hours-table tr.today th, .hours-table tr.today td { color: var(--teal-dark); }
.today-tag { display: inline-block; background: var(--teal); color: #fff; font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; padding: .15rem .45rem; border-radius: 999px; margin-left: .4rem; vertical-align: middle; }
.hours-table tr.unusual th { box-shadow: inset 4px 0 0 #e0a300; }
.hours-table tr.unusual td, .hours-table tr.unusual th { background: #fff4d6; }
.hours-table tr.today.unusual th, .hours-table tr.today.unusual td { background: var(--teal-light); }
.hours-note { font-size: .85rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; margin: -.4rem 0 1rem; }
.unusual-key { display: inline-block; width: 14px; height: 14px; background: #fff4d6; box-shadow: inset 4px 0 0 #e0a300; border-radius: 3px; }

/* Special days: closures, different hours, bank holidays */
.special-days { display: grid; gap: .6rem; margin-top: 1rem; }
.special-day { display: flex; align-items: center; gap: .9rem; background: #fff; border: 1px solid var(--line); border-left: 5px solid #e0a300; border-radius: 10px; padding: .6rem .9rem; }
.special-day.is-closed { border-left-color: #c8463a; }
.special-day.as-usual { border-left-color: var(--teal); }
.special-date { display: flex; flex-direction: column; align-items: center; min-width: 46px; line-height: 1; font-family: var(--font-display); }
.special-date b { font-size: 1.35rem; font-weight: 800; }
.special-date small { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: .15rem; }
.special-body { display: flex; flex-direction: column; gap: .1rem; }
.special-body strong { font-family: var(--font-display); }
.special-body span { font-size: .9rem; color: var(--muted); }
.info-strip .special-days { margin-top: 1rem; }
.site-footer .special-day { background: rgba(255,255,255,.06); border-color: rgba(239,220,181,.15); border-left-color: #e0a300; padding: .45rem .7rem; }
.site-footer .special-day.is-closed { border-left-color: #e5675c; }
.site-footer .special-day.as-usual { border-left-color: var(--teal); }
.site-footer .special-date small, .site-footer .special-body span { color: rgba(239,220,181,.7); }
.site-footer .special-body span { font-size: .82rem; }

/* Sponsors */
.sponsor-list { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 1.2rem; }
.sponsor-item { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,.12); border-radius: var(--radius); padding: 1rem 1.2rem; color: #fff; }
.sponsor-item img { width: 72px; height: 72px; object-fit: contain; background: #fff; border-radius: 50%; padding: .35rem; flex: none; }
.sponsor-item h3 { margin: 0 0 .2rem; color: #fff; }
.sponsor-item p { margin: 0 0 .4rem; font-size: .92rem; opacity: .9; }
.sponsor-item a { color: #fff; font-weight: 600; }
.about-community .sponsor-item { background: #fff; color: var(--text); border: 1px solid var(--line); }
.about-community .sponsor-item h3, .about-community .sponsor-item a { color: var(--teal-dark); }
.footer-sponsors { display: flex; flex-direction: column; gap: .5rem; }
.hygiene-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }

/* Hygiene badge */
.hygiene { display: inline-flex; flex-direction: column; gap: .4rem; text-decoration: none; color: inherit; }
.hygiene-frame { display: block; background: #fff; border-radius: 12px; padding: 4px; width: 190px; max-width: 100%; }
.hygiene-img { display: block; width: 100%; height: auto; }
.hygiene-large .hygiene-frame { width: 280px; padding: 6px; border-radius: 14px; }
.hygiene-date { font-size: .85rem; color: var(--muted); }

/* About */
.about-logo { border-radius: 50%; margin-inline: auto; box-shadow: var(--shadow); }
.about-accreditation { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-accreditation .two-col { align-items: center; }
.accreditation-logos { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; padding: 2rem; background: var(--paper-2); border-radius: var(--radius); }
.accreditation-logos img { height: auto; }
.accreditation-logos img:first-child { width: min(200px, 40vw); }
.accreditation-logos img:last-child { width: min(150px, 30vw); }
.about-gf { background: var(--paper-2); }
.stat-card { background: var(--black); color: var(--cream); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; gap: .5rem; justify-content: center; }
.stat-card .stat { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--teal-light); text-transform: uppercase; letter-spacing: .05em; }
.about-community { background: var(--teal-light); }

/* Contact */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.3fr 1fr; } }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; margin-bottom: .3rem; font-size: .95rem; }
.field input, .field select, .field textarea { width: 100%; font: inherit; padding: .7rem .9rem; border: 1.5px solid var(--line); border-radius: 10px; background: var(--paper); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--teal); border-color: var(--teal); background: #fff; }
.field-error, .form-errors ul { color: var(--danger); font-size: .88rem; }
.form-errors ul { padding-left: 1.2rem; }
.hp { position: absolute; left: -9999px; }
.contact-aside h2 { font-size: 1.2rem; margin-top: 1.4rem; }
.contact-aside h2:first-child { margin-top: 0; }
.contact-aside address { font-style: normal; }

/* Footer */
.site-footer { background: var(--black); color: var(--cream); padding: 3.5rem 0 2rem; margin-top: 0; }
.site-footer a { color: var(--cream); }
.site-footer h3 { color: var(--cream-light); font-size: .85rem; text-transform: uppercase; letter-spacing: .15em; margin-bottom: .8rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1.35fr 1.1fr 1fr; } }
.site-footer address, .site-footer p { font-size: .95rem; }
.footer-brand img { border-radius: 50%; margin-bottom: 1rem; }
.footer-brand .strap { font-family: var(--font-display); font-weight: 600; font-size: .95rem; opacity: .85; }
.site-footer address { font-style: normal; margin-bottom: .8rem; }
.site-footer .muted { color: rgba(239,220,181,.65); }
.site-footer .hours-table th, .site-footer .hours-table td { border-color: rgba(239,220,181,.15); padding: .35rem .3rem; font-size: .92rem; }
.site-footer .hours-table tr.today { background: rgba(31,143,136,.25); }
.site-footer .hours-table tr.today th, .site-footer .hours-table tr.today td { color: var(--cream-light); }
.site-footer .hours-exceptions { color: #ffd27a; font-size: .9rem; }
/* Branded social buttons: colourful, glow on hover */
.social-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1rem; border-radius: 999px; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .92rem; text-decoration: none; line-height: 1; transition: transform .15s ease, box-shadow .2s ease, filter .2s ease; }
.social-btn:hover, .social-btn:focus-visible { color: #fff; transform: translateY(-2px); filter: brightness(1.08); }
.social-btn svg { flex: none; }
.social-icon { width: 44px; height: 44px; padding: 0; justify-content: center; }
.social-fb { background: #1877f2; }
.social-fb:hover, .social-fb:focus-visible { box-shadow: 0 0 0 3px rgba(24,119,242,.25), 0 0 20px rgba(24,119,242,.75); }
.social-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-ig:hover, .social-ig:focus-visible { box-shadow: 0 0 0 3px rgba(214,36,159,.25), 0 0 20px rgba(253,89,73,.75); }
.social-tt { background: #000; border: 1px solid #333; }
.social-tt:hover, .social-tt:focus-visible { box-shadow: 0 0 0 3px rgba(105,201,208,.35), 0 0 14px rgba(105,201,208,.8), 0 0 26px rgba(238,29,82,.6); }
.social-gg { background: #fff; }
.social-gg:hover, .social-gg:focus-visible { box-shadow: 0 0 0 3px rgba(66,133,244,.25), 0 0 20px rgba(66,133,244,.6); }
.site-footer .social-links { margin-top: .4rem; }
.footer-badges { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.2rem; }
.sponsor-mini { display: flex; align-items: center; gap: .6rem; text-decoration: none; font-size: .85rem; line-height: 1.3; }
.sponsor-mini img { border-radius: 50%; background: #fff; }
.accreditation-mini { display: flex; align-items: center; gap: .8rem; text-decoration: none; font-size: .9rem; line-height: 1.3; }
.accreditation-mini img { height: 72px; width: auto; flex: none; }
.accreditation-mini strong { font-family: var(--font-display); font-weight: 600; }
.accreditation-mini:hover strong { text-decoration: underline; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1.5rem; margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(239,220,181,.15); font-size: .85rem; color: rgba(239,220,181,.7); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .btn, .tile { transition: none; }
}

/* Cookie banner (only rendered when Google Analytics is on and the banner is enabled) */
.consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: var(--black); color: var(--cream); border-top: 2px solid var(--teal); box-shadow: 0 -6px 24px rgba(0,0,0,.25); font-size: .95rem; }
.consent[hidden] { display: none; }
.consent-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem 1.5rem; padding-top: .9rem; padding-bottom: .9rem; }
.consent p { margin: 0; flex: 1 1 320px; line-height: 1.45; }
.consent a { color: var(--cream-light); text-decoration: underline; }
.consent-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.consent .btn { padding: .55rem 1.1rem; font-size: .9rem; }
@media (max-width: 600px) {
    .consent-inner { flex-direction: column; align-items: stretch; }
    .consent p { flex: 0 0 auto; }
    .consent-actions .btn { flex: 1 1 auto; text-align: center; }
}
