:root {
  --olive: #6F7759;
  --olive-deep: #586247;
  --matcha: #95A07A;
  --matcha-soft: rgba(149, 160, 122, 0.22);
  --oat: #F3EEE6;
  --taupe: #C5AF97;
  --espresso: #8C7866;
  --cream: #F8F4EE;
  --white: #FFFDF8;
  --ink: #2F3428;
  --muted: rgba(47, 52, 40, 0.72);
  --soft-text: rgba(47, 52, 40, 0.58);
  --line: rgba(140, 120, 102, 0.24);
  --line-strong: rgba(111, 119, 89, 0.28);
  --glass: rgba(255, 253, 248, 0.72);
  --glass-strong: rgba(255, 253, 248, 0.86);
  --shadow-soft: 0 18px 52px rgba(47, 52, 40, 0.09);
  --shadow-deep: 0 34px 90px rgba(47, 52, 40, 0.14);
  --shell: 1160px;
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -8%, rgba(149, 160, 122, 0.22), transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(197, 175, 151, 0.20), transparent 32rem),
    linear-gradient(180deg, var(--cream) 0%, var(--oat) 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(111, 119, 89, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 119, 89, 0.038) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
body::after {
  content: "";
  position: fixed;
  inset: auto -10vw -34vh -10vw;
  z-index: -1;
  height: 62vh;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(111, 119, 89, 0.13), transparent 68%);
  filter: blur(12px);
}
a { color: var(--olive); text-decoration: none; transition: color 180ms ease, opacity 180ms ease, transform 180ms ease; }
a:hover { color: var(--espresso); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid rgba(149, 160, 122, 0.36); outline-offset: 3px; }
img { display: block; max-width: 100%; height: auto; }
::selection { background: var(--olive); color: var(--cream); }

.ccc-shell { width: min(var(--shell), calc(100% - clamp(28px, 5vw, 72px))); margin-inline: auto; }
.screen-reader-text, .ccc-skip-link { position: absolute; left: -9999px; }
.ccc-skip-link:focus { left: 16px; top: 16px; z-index: 9999; background: var(--cream); color: var(--olive); padding: 0.75rem 1rem; border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-soft); }

.ccc-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 244, 238, 0.84);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  transition: box-shadow 220ms ease, background 220ms ease;
}
.ccc-site-header.is-scrolled { background: rgba(248, 244, 238, 0.94); box-shadow: 0 16px 42px rgba(47, 52, 40, 0.08); }
.ccc-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 78px; }
.ccc-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); min-width: 0; }
.ccc-brand-logo-link, .custom-logo-link { flex: 0 0 auto; display: block; }
.ccc-brand-logo, .custom-logo { width: 54px; height: 54px; object-fit: cover; border-radius: 50%; border: 1px solid rgba(197, 175, 151, 0.36); box-shadow: 0 12px 28px rgba(47, 52, 40, 0.12); }
.ccc-brand-text { min-width: 0; color: inherit; }
.ccc-brand-text:hover { color: inherit; }
.ccc-brand-name { display: block; color: var(--olive); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.02rem, 1.45vw, 1.25rem); line-height: 1.06; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 42vw; }
.ccc-brand-type { display: block; margin-top: 2px; color: var(--espresso); font-size: 0.68rem; font-weight: 850; letter-spacing: 0.14em; text-transform: uppercase; }
.ccc-nav ul, .ccc-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(12px, 1.8vw, 22px); flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.ccc-nav a { color: var(--olive); font-size: 0.73rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.ccc-nav a:hover { color: var(--espresso); transform: translateY(-1px); }
.ccc-nav-cta { display: inline-flex; align-items: center; min-height: 40px; padding: 0.68rem 1.05rem; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(255, 253, 248, 0.66); box-shadow: 0 10px 26px rgba(47, 52, 40, 0.06); }
.ccc-nav-cta:hover { background: var(--olive); color: var(--cream) !important; }
.ccc-menu-toggle { display: none; border: 1px solid var(--line); background: rgba(255, 253, 248, 0.72); color: var(--olive); border-radius: 999px; min-width: 44px; height: 44px; padding: 0; box-shadow: 0 10px 22px rgba(47, 52, 40, 0.07); }
.ccc-menu-toggle span:not(.screen-reader-text) { display: block; width: 18px; height: 2px; background: currentColor; margin: 4px auto; border-radius: 999px; transition: transform 180ms ease, opacity 180ms ease; }
.ccc-site-header.is-open .ccc-menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ccc-site-header.is-open .ccc-menu-toggle span:nth-child(2) { opacity: 0; }
.ccc-site-header.is-open .ccc-menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.ccc-main { isolation: isolate; }

.ccc-hero { position: relative; padding: clamp(48px, 7vw, 92px) 0 clamp(42px, 6vw, 84px); }
.ccc-hero::before { content: ""; position: absolute; inset: 10% 4vw auto auto; width: 38vw; max-width: 560px; aspect-ratio: 1 / 1; border: 1px solid rgba(111, 119, 89, 0.12); border-radius: 50%; pointer-events: none; }
.ccc-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.82fr); gap: clamp(32px, 6vw, 76px); align-items: center; }
.ccc-eyebrow { margin: 0 0 10px; color: var(--espresso); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.18em; line-height: 1.35; text-transform: uppercase; }
.ccc-hero-title { margin: 0; max-width: 680px; color: var(--olive); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.55rem, 4.65vw, 4.75rem); font-weight: 500; line-height: 0.98; letter-spacing: -0.018em; text-wrap: balance; }
.ccc-hero-text { margin: 20px 0 0; max-width: 640px; color: var(--muted); font-size: clamp(1.02rem, 1.35vw, 1.22rem); line-height: 1.62; }
.ccc-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.ccc-button, .wp-block-button__link, button, input[type="submit"] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.88rem 1.18rem;
  border: 1px solid var(--olive);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--olive), var(--olive-deep));
  color: var(--cream) !important;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(47, 52, 40, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.ccc-button::before, .wp-block-button__link::before, button::before, input[type="submit"]::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 46%);
  pointer-events: none;
}
.ccc-button::after, .wp-block-button__link::after, button::after, input[type="submit"]::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -60%;
  width: 42%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.46), transparent);
  opacity: 0;
}
.ccc-button:hover, .wp-block-button__link:hover, button:hover, input[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(47, 52, 40, 0.18); }
.ccc-button:hover::after, .wp-block-button__link:hover::after, button:hover::after, input[type="submit"]:hover::after { animation: ccc-sheen 760ms ease; }
@keyframes ccc-sheen { 0% { left: -60%; opacity: 0; } 20% { opacity: 1; } 100% { left: 130%; opacity: 0; } }
.ccc-button.is-secondary { background: rgba(255, 253, 248, 0.78); color: var(--olive) !important; border-color: var(--line-strong); box-shadow: 0 10px 24px rgba(47, 52, 40, 0.08); }
.ccc-button.is-secondary:hover { background: var(--white); color: var(--olive) !important; }
.ccc-button.is-ghost { background: transparent; color: var(--olive) !important; border-color: rgba(111, 119, 89, 0.32); box-shadow: none; }
.ccc-button.is-ghost:hover { background: rgba(255, 253, 248, 0.64); box-shadow: 0 14px 34px rgba(47, 52, 40, 0.10); }
.ccc-button.is-compact { min-height: 40px; padding: 0.72rem 0.94rem; font-size: 0.68rem; }
.ccc-button.is-light { background: var(--cream); color: var(--olive) !important; border-color: var(--cream); }
.ccc-button.is-outline-light { background: transparent; color: var(--cream) !important; border-color: rgba(248, 244, 238, 0.68); box-shadow: none; }

.ccc-spark-bars { display: grid; gap: 8px; width: min(100%, 380px); margin-top: 30px; }
.ccc-spark-bars span { display: block; height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--olive), var(--matcha), var(--taupe)); transform-origin: left center; animation: ccc-bar-breathe 3.8s ease-in-out infinite; opacity: 0.72; }
.ccc-spark-bars span:nth-child(1) { width: 76%; }
.ccc-spark-bars span:nth-child(2) { width: 54%; animation-delay: 0.35s; }
.ccc-spark-bars span:nth-child(3) { width: 88%; animation-delay: 0.7s; }
@keyframes ccc-bar-breathe { 0%, 100% { transform: scaleX(0.86); opacity: 0.42; } 50% { transform: scaleX(1); opacity: 0.9; } }

.ccc-hero-panel {
  position: relative;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.88), rgba(243, 238, 230, 0.58)),
    radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(149, 160, 122, 0.18), transparent 18rem);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.ccc-hero-panel:hover { transform: translateY(-3px); box-shadow: 0 38px 96px rgba(47, 52, 40, 0.16); }
.ccc-hero-panel::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(197, 175, 151, 0.30); border-radius: 26px; pointer-events: none; }
.ccc-hero-panel::after { content: ""; position: absolute; right: -16%; bottom: -18%; width: 46%; aspect-ratio: 1 / 1; border-radius: 50%; background: rgba(149, 160, 122, 0.10); filter: blur(4px); }
.ccc-hero-logo { position: relative; z-index: 1; width: min(100%, 360px); margin: 0 auto; filter: drop-shadow(0 18px 28px rgba(47, 52, 40, 0.08)); }
.ccc-hero-status { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 18px; }
.ccc-glass, .ccc-hero-status div, .ccc-stop-card, .ccc-menu-card, .ccc-content-card, .ccc-mini-card { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--glass); box-shadow: var(--shadow-soft); backdrop-filter: blur(14px) saturate(130%); -webkit-backdrop-filter: blur(14px) saturate(130%); }
.ccc-hero-status div { padding: 16px; }
.ccc-hero-status span, .ccc-mini-card span { display: block; color: var(--espresso); font-size: 0.66rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.ccc-hero-status strong, .ccc-mini-card strong { display: block; margin-top: 4px; color: var(--olive); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1rem, 1.55vw, 1.2rem); font-weight: 500; line-height: 1.15; }

.ccc-section { position: relative; padding: clamp(54px, 7vw, 94px) 0; }
.ccc-section-light { background: rgba(255, 253, 248, 0.34); border-block: 1px solid rgba(140, 120, 102, 0.18); }
.ccc-section-intro { max-width: 760px; margin-bottom: 30px; }
.ccc-section-intro.is-centred { margin-inline: auto; text-align: center; }
.ccc-section-intro h2, .ccc-qr-copy h2, .ccc-booking-band h2, .ccc-page-hero h1, .ccc-content-card h1, .ccc-content-card h2 { margin: 0; color: var(--olive); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3.45vw, 3.3rem); font-weight: 500; line-height: 1.06; letter-spacing: -0.012em; text-wrap: balance; }
.ccc-section-intro p:not(.ccc-eyebrow), .ccc-qr-copy p, .ccc-booking-band p, .ccc-page-hero p { margin: 14px 0 0; max-width: 66ch; color: var(--muted); font-size: clamp(1rem, 1.18vw, 1.13rem); }
.ccc-section-intro.is-centred p { margin-inline: auto; }

.ccc-location-system { display: grid; grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr); gap: 22px; align-items: stretch; }
.ccc-location-cards { display: grid; gap: 16px; }
.ccc-stop-card { padding: clamp(22px, 3vw, 30px); }
.ccc-stop-card h3 { margin: 0; color: var(--olive); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.55rem, 2.2vw, 2.1rem); font-weight: 500; line-height: 1.08; }
.ccc-stop-card p { margin: 9px 0 0; color: var(--muted); }
.ccc-stop-card .ccc-stop-time { color: var(--ink); font-weight: 750; }
.ccc-stop-note { font-size: 0.95rem; }
.ccc-stop-card .ccc-button { margin-top: 18px; }
.ccc-map-panel { min-height: 390px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,253,248,0.78), rgba(243,238,230,0.58)); box-shadow: var(--shadow-soft); }
.ccc-map { width: 100%; height: 100%; min-height: 390px; }
.ccc-map-fallback { display: grid; place-content: center; height: 100%; min-height: 390px; padding: 28px; text-align: center; background: radial-gradient(circle at center, rgba(149,160,122,0.18), transparent 16rem); }
.ccc-map-pin { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-width: 82px; min-height: 34px; padding: 0.42rem 0.7rem; border: 1px solid rgba(111,119,89,0.38); border-radius: 999px; background: rgba(248,244,238,0.96); box-shadow: 0 12px 28px rgba(47,52,40,0.18); color: var(--olive); font-size: 0.67rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.ccc-map-pin span { width: 10px; height: 10px; border-radius: 50%; background: var(--matcha); box-shadow: 0 0 0 5px rgba(149,160,122,0.17); }
.ccc-map-pin.is-next { color: var(--espresso); }
.ccc-map-pin.is-next span { background: var(--taupe); box-shadow: 0 0 0 5px rgba(197,175,151,0.19); }
.ccc-map .leaflet-control-attribution { font-size: 0.68rem; }
.ccc-map-empty-note { max-width: 260px; padding: 0.72rem 0.82rem; border: 1px solid rgba(140,120,102,0.28); border-radius: 14px; background: rgba(255,253,248,0.94); color: var(--muted); font-size: 0.78rem; font-weight: 700; box-shadow: 0 10px 28px rgba(47,52,40,0.12); }

.ccc-menu-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.ccc-menu-grid.is-page { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ccc-menu-card { position: relative; display: flex; flex-direction: column; min-height: 260px; padding: 24px; overflow: hidden; transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease; }
.ccc-menu-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 18% 0%, rgba(149,160,122,0.14), transparent 16rem); opacity: 0; transition: opacity 190ms ease; pointer-events: none; }
.ccc-menu-card:hover { transform: translateY(-4px); border-color: rgba(111,119,89,0.32); box-shadow: 0 28px 72px rgba(47,52,40,0.13); }
.ccc-menu-card:hover::before { opacity: 1; }
.ccc-menu-card h3 { margin: 10px 0 8px; color: var(--olive); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 2vw, 1.9rem); font-weight: 500; line-height: 1.1; }
.ccc-menu-card p { margin: 0; color: var(--muted); }
.ccc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 22px; }
.ccc-tags span { padding: 0.38rem 0.58rem; border: 1px solid rgba(197,175,151,0.54); border-radius: 999px; color: var(--espresso); background: rgba(255,253,248,0.48); font-size: 0.68rem; font-weight: 850; letter-spacing: 0.04em; }
.ccc-centred-action { display: flex; justify-content: center; margin-top: 28px; }

.ccc-qr-section { background: linear-gradient(180deg, transparent, rgba(255,253,248,0.46)); }
.ccc-qr-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.74fr); gap: clamp(28px, 5vw, 62px); align-items: center; }
.ccc-qr-copy { max-width: 560px; }
.ccc-qr-live-card { justify-self: center; width: min(100%, 430px); padding: clamp(14px, 2.2vw, 22px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,253,248,0.88), rgba(243,238,230,0.62)); box-shadow: var(--shadow-deep); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.ccc-qr-live-inner { display: grid; gap: 14px; place-items: center; aspect-ratio: 1 / 1; padding: clamp(18px, 5vw, 30px); border: 1px solid rgba(197,175,151,0.42); border-radius: 26px; background: radial-gradient(circle at center, rgba(149,160,122,0.10), transparent 16rem), var(--white); }
.ccc-qr-live-inner img { width: min(100%, 318px); aspect-ratio: 1 / 1; height: auto; object-fit: contain; image-rendering: auto; border-radius: 12px; filter: drop-shadow(0 16px 32px rgba(47,52,40,0.10)); }
.ccc-qr-live-label { margin: 0; color: var(--olive); font-size: 0.82rem; font-weight: 900; letter-spacing: 0.14em; text-align: center; text-transform: uppercase; }
.ccc-qr-frame { padding: clamp(12px, 2vw, 20px); border: 1px solid var(--line); border-radius: 30px; background: rgba(255,253,248,0.64); box-shadow: var(--shadow-soft); }
.ccc-qr-frame img { border-radius: 22px; }

.ccc-booking-band { color: var(--cream); background: radial-gradient(circle at 86% 0%, rgba(248,244,238,0.16), transparent 24rem), linear-gradient(135deg, var(--olive), #596346); overflow: hidden; }
.ccc-booking-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent); transform: translateX(-100%); animation: ccc-wide-sheen 8s ease-in-out infinite; }
@keyframes ccc-wide-sheen { 0%, 50% { transform: translateX(-100%); } 70%, 100% { transform: translateX(100%); } }
.ccc-booking-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr); gap: clamp(24px, 5vw, 56px); align-items: center; }
.ccc-booking-band .ccc-eyebrow, .ccc-booking-band h2, .ccc-booking-band p { color: var(--cream); }
.ccc-booking-band p { opacity: 0.92; }
.ccc-booking-checklist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.ccc-booking-checklist div { padding: 18px; border: 1px solid rgba(248,244,238,0.25); border-radius: 20px; background: rgba(248,244,238,0.12); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 14px 36px rgba(25,30,20,0.10); }
.ccc-booking-checklist strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.18rem; font-weight: 500; }
.ccc-booking-checklist span { display: block; margin-top: 4px; opacity: 0.84; font-size: 0.92rem; }

.ccc-page-hero { padding: clamp(54px, 8vw, 104px) 0 clamp(26px, 4vw, 44px); }
.ccc-page-hero h1 { max-width: 820px; }
.ccc-content-section { padding: clamp(42px, 6vw, 82px) 0; }
.ccc-content-card { padding: clamp(26px, 4vw, 44px); }
.ccc-content-card a { font-weight: 750; }
.ccc-post-list { display: grid; gap: 18px; }
.ccc-booking-page-grid, .ccc-contact-grid, .ccc-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
.ccc-list { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.ccc-list li { position: relative; padding-left: 24px; color: var(--muted); }
.ccc-list li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 8px; height: 8px; border-radius: 50%; background: var(--matcha); box-shadow: 0 0 0 4px rgba(149,160,122,0.16); }
.ccc-mini-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.ccc-mini-card { padding: 18px; }
input, textarea, select { width: 100%; padding: 0.92rem 1rem; border: 1px solid rgba(140,120,102,0.38); border-radius: 16px; background: #fffaf3; color: var(--ink); font: inherit; }
input:focus, textarea:focus, select:focus { border-color: var(--olive); box-shadow: 0 0 0 4px rgba(111,119,89,0.14); outline: none; }

.ccc-site-footer { padding: 54px 0 30px; border-top: 1px solid var(--line); background: rgba(255,253,248,0.56); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.ccc-footer-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(180px, 0.55fr) minmax(180px, 0.55fr); gap: 28px; align-items: start; }
.ccc-footer-logo { width: min(248px, 100%); opacity: 0.96; }
.ccc-footer-copy { max-width: 48ch; margin: 12px 0 0; color: var(--muted); }
.ccc-footer-heading { margin: 0 0 12px; color: var(--olive); font-family: Georgia, "Times New Roman", serif; font-size: 1.28rem; font-weight: 500; }
.ccc-footer-nav ul, .ccc-footer-nav, .ccc-contact-list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.ccc-footer-nav a, .ccc-contact-list a { color: var(--muted); }
.ccc-footer-bottom { margin-top: 30px; color: rgba(47,52,40,0.56); font-size: 0.86rem; }

/* Location Board plugin: theme-level polish */
.clb-board { background: rgba(255,253,248,0.34) !important; border-block: 1px solid rgba(140,120,102,0.18); }
.clb-inner { width: min(var(--shell), calc(100% - clamp(28px, 5vw, 72px))) !important; max-width: var(--shell) !important; }
.clb-stop-card, .clb-map-shell, .clb-menu-qr-card { background: var(--glass-strong) !important; border-color: var(--line) !important; box-shadow: var(--shadow-soft) !important; backdrop-filter: blur(14px) saturate(130%); -webkit-backdrop-filter: blur(14px) saturate(130%); }
.clb-stop-card { transition: transform 190ms ease, box-shadow 190ms ease; }
.clb-stop-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-deep) !important; }
.clb-button { background: linear-gradient(135deg, var(--olive), var(--olive-deep)) !important; border-color: var(--olive) !important; box-shadow: 0 12px 28px rgba(47,52,40,0.12); }
.clb-map { border-radius: 22px !important; }
.clb-front-marker { background: rgba(255,253,248,0.96) !important; border-color: rgba(111,119,89,0.42) !important; box-shadow: 0 14px 32px rgba(47,52,40,0.18) !important; }

.ccc-reveal { opacity: 0; transform: translateY(18px); transition: opacity 560ms ease, transform 560ms ease; transition-delay: var(--reveal-delay, 0ms); }
.ccc-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .ccc-reveal { opacity: 1; transform: none; }
}
@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .ccc-glass, .ccc-hero-status div, .ccc-stop-card, .ccc-menu-card, .ccc-content-card, .ccc-mini-card, .ccc-hero-panel, .ccc-qr-live-card { background: rgba(255,253,248,0.94); }
}
@media (max-width: 1120px) { .ccc-menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 980px) {
  .ccc-hero-grid, .ccc-location-system, .ccc-qr-grid, .ccc-booking-grid, .ccc-booking-page-grid, .ccc-contact-grid, .ccc-about-grid { grid-template-columns: 1fr; }
  .ccc-hero-panel, .ccc-map-panel { max-width: 680px; width: 100%; margin-inline: auto; }
  .ccc-qr-copy { max-width: 720px; }
}
@media (max-width: 820px) {
  .ccc-header-inner { min-height: 70px; }
  .ccc-menu-toggle { display: inline-block; flex: 0 0 auto; }
  .ccc-nav { position: absolute; left: clamp(14px, 5vw, 28px); right: clamp(14px, 5vw, 28px); top: calc(100% + 10px); display: none; justify-content: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,253,248,0.97); box-shadow: var(--shadow-deep); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
  .ccc-site-header.is-open .ccc-nav { display: flex; }
  .ccc-nav ul { justify-content: flex-start; gap: 13px 18px; }
  .ccc-hero-status, .ccc-booking-checklist, .ccc-mini-grid { grid-template-columns: 1fr; }
  .ccc-footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 15px; }
  .ccc-shell { width: min(100% - 28px, var(--shell)); }
  .ccc-brand-logo, .custom-logo { width: 46px; height: 46px; }
  .ccc-brand-name { max-width: 58vw; font-size: 0.98rem; }
  .ccc-brand-type { font-size: 0.58rem; letter-spacing: 0.1em; }
  .ccc-hero { padding-top: 38px; }
  .ccc-hero-title { font-size: clamp(2.1rem, 10.5vw, 3.18rem); }
  .ccc-hero-text { font-size: 1rem; }
  .ccc-section-intro h2, .ccc-qr-copy h2, .ccc-booking-band h2, .ccc-page-hero h1, .ccc-content-card h1, .ccc-content-card h2 { font-size: clamp(1.85rem, 8.3vw, 2.55rem); }
  .ccc-actions { align-items: stretch; }
  .ccc-actions .ccc-button { width: 100%; }
  .ccc-menu-grid, .ccc-menu-grid.is-page { grid-template-columns: 1fr; }
  .ccc-map, .ccc-map-fallback, .ccc-map-panel { min-height: 330px; }
  .ccc-hero-panel, .ccc-qr-live-card { border-radius: 26px; }
  .ccc-qr-live-card { width: min(100%, 360px); }
  .ccc-qr-live-inner { border-radius: 20px; padding: 16px; }
  .ccc-qr-live-inner img { width: min(100%, 280px); }
  .clb-inner { width: min(100% - 28px, var(--shell)) !important; }
}
@media (max-width: 390px) {
  .ccc-shell, .clb-inner { width: min(100% - 22px, var(--shell)) !important; }
  .ccc-button { font-size: 0.66rem; }
}


/* v8.1.0 — decorative latte orb for inner page heroes only. */
.ccc-page-hero .ccc-shell {
  position: relative;
  min-height: clamp(130px, 18vw, 190px);
  padding-right: clamp(92px, 17vw, 190px);
}

.ccc-page-hero .ccc-shell > * {
  position: relative;
  z-index: 2;
}

.ccc-page-hero .ccc-shell::before {
  content: "";
  position: absolute;
  right: clamp(8px, 2vw, 26px);
  top: clamp(6px, 1.6vw, 20px);
  width: clamp(82px, 12vw, 138px);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 26%, rgba(255,255,255,.92), rgba(243,238,230,.54)),
    linear-gradient(145deg, rgba(248,244,238,.84), rgba(197,175,151,.16));
  border: 1px solid rgba(111,119,89,.18);
  box-shadow:
    inset 0 0 0 7px rgba(255,255,255,.28),
    0 20px 52px rgba(47,52,40,.12);
  pointer-events: none;
  z-index: 0;
}

.ccc-page-hero .ccc-shell::after {
  content: "";
  position: absolute;
  right: clamp(16px, 2.5vw, 36px);
  top: clamp(14px, 2.15vw, 30px);
  width: clamp(66px, 9.8vw, 108px);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: url('../images/latte-orb.png') center / cover no-repeat;
  filter: saturate(1.02) contrast(1.02) drop-shadow(0 10px 20px rgba(47,52,40,.10));
  pointer-events: none;
  z-index: 1;
  animation: ccc-latte-orb-float 5.4s ease-in-out infinite;
}

@keyframes ccc-latte-orb-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 720px) {
  .ccc-page-hero .ccc-shell {
    min-height: 0;
    padding-right: clamp(76px, 26vw, 104px);
  }

  .ccc-page-hero .ccc-shell::before {
    right: 0;
    top: 4px;
    width: clamp(66px, 21vw, 84px);
  }

  .ccc-page-hero .ccc-shell::after {
    right: 8px;
    top: 12px;
    width: clamp(52px, 16vw, 66px);
  }
}

@media (max-width: 420px) {
  .ccc-page-hero .ccc-shell {
    padding-right: 0;
    padding-top: 74px;
  }

  .ccc-page-hero .ccc-shell::before {
    left: 0;
    right: auto;
    top: 0;
    width: 64px;
  }

  .ccc-page-hero .ccc-shell::after {
    left: 7px;
    right: auto;
    top: 7px;
    width: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ccc-page-hero .ccc-shell::after {
    animation: none !important;
  }
}
