/* ===========================================================================
   Recyclo Bike Café & Shop — stylesheet
   Editorial serif headings + clean sans body. Earthy green + cream + terracotta.
   Self-contained: no external fonts or CDNs.
   =========================================================================== */

:root {
  --green-900: #102a1f;
  --green-800: #16382a;
  --green-700: #1f6b48;
  --green-600: #257a52;
  --green-500: #2e9e66;
  --cream:     #faf7f0;
  --cream-2:   #f1ece0;
  --paper:     #ffffff;
  --ink:       #1a201d;
  --ink-soft:  #4f5a54;
  --line:      #e4ddcd;
  --accent:    #cf6a3a;   /* terracotta */
  --accent-dk: #b1572d;
  --maroon:    #7a2331;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(16, 42, 31, .06);
  --shadow:    0 14px 40px rgba(16, 42, 31, .10);
  --shadow-lg: 0 24px 60px rgba(16, 42, 31, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: #f1ead9;
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .4em; letter-spacing: -.01em; }
p { margin: 0 0 1.1em; }
a { color: var(--green-700); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--green-700); color: #fff; padding: 10px 16px; z-index: 200; }
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 240, .88);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--sans); font-weight: 800; font-size: 1.2rem; color: var(--green-700); letter-spacing: -.02em; }
.brand:hover { color: var(--green-700); }
.brand-mark { color: var(--green-700); display: inline-flex; }
.brand-text { color: var(--ink); }
.brand-accent { color: var(--green-600); margin-left: 5px; font-weight: 700; }
.brand-logo { height: 42px; width: auto; display: block; }

/* Obfuscated email links (assembled by JS) */
a.eml { cursor: pointer; word-break: break-word; }
.contact-logo { width: 82px; height: auto; display: block; margin: 0 auto 20px; }

.site-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.site-nav a { color: var(--ink-soft); font-weight: 600; font-size: .98rem; padding: 9px 14px; border-radius: 9px; }
.site-nav a:hover { color: var(--green-700); background: var(--cream-2); }
.nav-cta { background: var(--green-700); color: #fff !important; }
.nav-cta:hover { background: var(--green-800); color: #fff !important; }

.lang-switch { display: inline-flex; align-items: center; gap: 6px; margin-left: 10px; padding-left: 14px; border-left: 1px solid var(--line); font-size: .85rem; font-weight: 700; }
.lang-switch .lang-active { color: var(--green-700); }
.lang-switch a { color: var(--ink-soft); padding: 4px 6px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 25px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--cream);
  background:
    radial-gradient(900px 500px at 78% -10%, rgba(46,158,102,.35), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(207,106,58,.20), transparent 55%),
    linear-gradient(155deg, var(--green-900) 0%, var(--green-800) 55%, #1c4a35 100%);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .6; pointer-events: none;
}
.hero-inner { position: relative; padding: 104px 0 96px; z-index: 1; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 800; color: #f0b48c; margin: 0 0 18px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); max-width: 14ch; color: #fff; letter-spacing: -.02em; }
.lede { font-size: 1.2rem; color: rgba(250,247,240,.82); max-width: 54ch; margin: 22px 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
/* Dark green top bar with the Recyclo wordmark (replaces the white header) */
.topbar { position: sticky; top: 0; z-index: 100; background: var(--green-900); border-bottom: 1px solid rgba(255,255,255,.10); padding: 14px 0; }
.topbar-inner { display: flex; align-items: center; justify-content: center; min-height: 40px; }
.topbar-home { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--cream); font-family: var(--sans); font-weight: 700; font-size: .9rem; padding: 8px 18px; border: 2px solid rgba(255,255,255,.42); border-radius: 999px; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.topbar-home:hover { background: #fff; color: var(--green-800); border-color: #fff; animation: logo-vibrate .28s linear infinite; }
.topbar-right { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); display: flex; align-items: center; gap: 14px; }
.topbar-ig { display: inline-flex; align-items: center; color: var(--cream); }
.topbar-ig:hover { color: var(--accent); }
.topbar-ig .ig-icon { width: 23px; height: 23px; }
.topbar-cafe { color: var(--cream); font-family: var(--sans); font-weight: 700; font-size: .9rem; padding: 8px 18px; border: 2px solid var(--accent); background: var(--accent); border-radius: 999px; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.topbar-cafe:hover { background: var(--accent-dk); border-color: var(--accent-dk); color: #fff; }
.topbar-brand { display: inline-block; }
.topbar-logo { height: 38px; width: auto; display: block; margin: 0 auto; }
/* Shop hero: section links as buttons (replaces the white header nav) */
.hero-brand { display: inline-block; }
.hero-logo { height: 92px; width: auto; display: block; margin: 0 auto 26px; }
.hero-sections { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
/* Section buttons as a bar directly under the green header */
.shop-nav { background: var(--green-900); padding: 13px 0 15px; border-bottom: 1px solid rgba(255,255,255,.10); }
.shop-nav .hero-sections { margin-top: 0; }
/* Services ticker — scrolling marquee under the sub-nav */
.ticker { overflow: hidden; background: var(--accent); color: var(--cream); white-space: nowrap; text-align: left; }
.ticker-track { display: inline-flex; will-change: transform; animation: ticker-scroll 22s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-group { display: inline-block; padding: 11px 0; padding-right: 0.9rem; font-family: var(--sans); font-weight: 600; font-size: .92rem; letter-spacing: .01em; }
.ticker-group strong { text-transform: uppercase; letter-spacing: .1em; margin-right: 8px; font-weight: 800; }
/* 6 identical copies in the track; move exactly one copy (100%/6) for a gapless loop */
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-16.6667%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }
.hero-sections a { display: inline-block; padding: 11px 22px; border-radius: 999px; border: 2px solid rgba(255,255,255,.42); color: #fff; font-family: var(--sans); font-weight: 700; font-size: .9rem; transition: transform .15s, background .2s, color .2s, border-color .2s; }
.hero-sections a:hover { background: #fff; color: var(--green-800); border-color: #fff; animation: logo-vibrate .28s linear infinite; }
.hero-sections a.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
/* Sales dropdown inside the hero section-nav */
.hero-dd { position: relative; display: inline-block; }
.hero-dd-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 999px; border: 2px solid rgba(255,255,255,.42); background: transparent; color: #fff; font-family: var(--sans); font-weight: 700; font-size: .9rem; cursor: pointer; transition: transform .15s, background .2s, color .2s, border-color .2s; }
.hero-dd-btn:hover, .hero-dd.open .hero-dd-btn { background: #fff; color: var(--green-800); border-color: #fff; }
.hero-dd-btn:hover { animation: logo-vibrate .28s linear infinite; }
.hero-dd-btn.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.hero-dd-caret { width: 11px; height: 11px; flex: none; transition: transform .2s ease; }
.hero-dd.open .hero-dd-caret { transform: rotate(180deg); }
.hero-dd-menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-6px); min-width: 190px; background: #fff; border-radius: 14px; box-shadow: 0 18px 40px rgba(16,42,31,.28); padding: 7px; display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transition: opacity .16s ease, transform .16s ease; z-index: 60; }
.hero-dd.open .hero-dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.hero-dd-menu a { padding: 11px 16px; border-radius: 9px; color: var(--ink); font-family: var(--sans); font-weight: 700; font-size: .9rem; text-align: center; white-space: nowrap; transition: background .15s, color .15s; }
.hero-dd-menu a:hover { background: var(--cream-2); color: var(--green-800); }
.hero-dd-menu a.is-active { background: var(--accent); color: #fff; }

.btn { display: inline-block; padding: 14px 30px; border-radius: 999px; font-weight: 700; font-family: var(--sans); transition: transform .15s, background .2s, color .2s; border: 2px solid transparent; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dk); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--green-800); border-color: #fff; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-alt { background: #f1ead9; }
/* Rental accessories reuse the fleet-card style */
.sale-price.is-free { color: var(--accent); text-transform: uppercase; font-size: 1.15rem; letter-spacing: .03em; }
.fleet-media-empty svg { width: 42px; height: 42px; opacity: .85; }
/* Fleet image gallery — swipe / scroll through multiple photos */
.fleet-gallery { position: relative; }
.gal-track { display: flex; height: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.gal-track::-webkit-scrollbar { display: none; }
.gal-track img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; scroll-snap-align: center; }
.gal-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border: none; border-radius: 50%; background: rgba(16,42,31,.55); color: #fff; font-size: 1.3rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; opacity: 0; transition: opacity .2s ease, background .2s ease; z-index: 3; }
.fleet-gallery:hover .gal-arrow { opacity: 1; }
.gal-arrow:hover { background: var(--accent); }
.gal-prev { left: 8px; }
.gal-next { right: 8px; }
@media (hover: none) { .gal-arrow { opacity: .8; } }
/* Shop home: eggshell background (scoped to shop.html) */
body.shop-home { background: #f1ead9; }
body.shop-home .section-alt { background: #f1ead9; }
.section-dark { background: linear-gradient(155deg, var(--green-800), var(--green-700)); color: #fff; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--ink); }
.section-dark .section-title { color: #fff; }
.section-sub { color: var(--ink-soft); font-size: 1.12rem; margin: -.2em 0 2.4em; }
.muted { color: var(--ink-soft); }

/* ---------- Split (café) ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: center; }
.ticks { list-style: none; padding: 0; margin: 1.3em 0; }
.ticks li { padding: 9px 0 9px 34px; position: relative; color: var(--ink-soft); }
.ticks li::before { content: ""; position: absolute; left: 0; top: 14px; width: 18px; height: 18px; border-radius: 50%; background: var(--green-600); }
.ticks li::after { content: "✓"; position: absolute; left: 4px; top: 9px; color: #fff; font-size: .72rem; font-weight: 800; }

.callout { background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: var(--radius-sm); padding: 20px 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 6px; }
.callout strong { color: var(--ink); }
.callout-phone { font-size: 1.5rem; font-weight: 800; font-family: var(--serif); color: var(--green-700); }
.callout .muted { font-size: .9rem; }
.callout-inline { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 34px; }

/* ---------- Media placeholders (until real photos) ---------- */
.media-placeholder {
  border-radius: var(--radius); min-height: 320px; display: grid; place-items: center; text-align: center;
  color: rgba(255,255,255,.9); font-weight: 600;
  background: linear-gradient(135deg, var(--green-700), var(--green-500)); box-shadow: var(--shadow);
}
.media-placeholder small { font-weight: 400; opacity: .8; }
.media-tall { min-height: 420px; }

/* Real photo filling a media slot */
.media-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.media-photo img { display: block; width: 100%; height: auto; }

/* ---------- Cards (shop) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); gap: 24px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s, border-color .18s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--green-500); }
.card-icon { font-size: 1.9rem; margin-bottom: 12px; }
.card h3 { font-size: 1.22rem; color: var(--ink); }
.card p { color: var(--ink-soft); margin: 0; }
.card-link { margin-top: 14px !important; }
.card-link a { font-weight: 700; font-size: .95rem; }

/* ---------- Locations ---------- */
.locations { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.location-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.loc-tag { display: inline-block; background: var(--cream-2); color: var(--green-700); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: 6px 12px; border-radius: 999px; margin-bottom: 14px; }
.location-card h3 { font-size: 1.5rem; color: var(--ink); }
.location-card address { font-style: normal; color: var(--ink-soft); line-height: 1.7; margin-bottom: 14px; }
.loc-line { margin: 4px 0; font-weight: 600; }
.appointment-only { margin: 16px 0 4px; color: #c0392b; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: .95rem; }
.hours { width: 100%; border-collapse: collapse; margin: 16px 0; }
.hours th, .hours td { text-align: left; padding: 9px 2px; border-bottom: 1px solid var(--line); font-size: .96rem; }
.hours th { font-weight: 700; color: var(--ink); width: 42%; }
.hours td { color: var(--ink-soft); }
.map-placeholder { margin-top: 8px; height: 150px; border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--cream-2), #e7ecdf); display: grid; place-items: center; color: var(--ink-soft); font-weight: 600; border: 1px solid var(--line); }
.card-map { margin-top: 14px; height: 220px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); background: var(--cream-2); }
.card-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; }
.about-stat { display: grid; gap: 16px; }
.stat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); text-align: center; }
.stat-num { display: block; font-family: var(--serif); font-size: 2.1rem; font-weight: 700; color: var(--green-700); }
.stat-label { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Contact ---------- */
.contact-inner { text-align: center; }
.contact-inner .section-title, .lede-light { margin-left: auto; margin-right: auto; }
.lede-light { font-size: 1.2rem; color: rgba(255,255,255,.9); max-width: 48ch; }
.contact-methods { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 30px 0 12px; }
.contact-pill { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.12); color: #fff; padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 1.08rem; border: 1px solid rgba(255,255,255,.28); }
.contact-pill:hover { background: #fff; color: var(--green-800); }
.contact-note { color: rgba(255,255,255,.78); margin-top: 18px; font-size: .96rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: #b9c9bf; padding: 34px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .95rem; }
.footer-inner p { margin: 0; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: inherit; opacity: .85; font-weight: 600; }
.footer-links a:hover { color: #fff; opacity: 1; }
.container-narrow { max-width: 760px; }
.legal-page { text-align: left; }
.legal-page h1 { margin-bottom: .5em; }
.legal-page h2 { margin-top: 1.7em; font-size: 1.3rem; color: var(--green-800); }
.legal-page a { color: var(--green-700); }
.legal-page a:hover { color: var(--accent); }
.fillin { color: var(--accent-dk); background: rgba(207,106,58,.12); padding: 1px 5px; border-radius: 4px; font-weight: 700; }
/* Authorized-dealer brand badges (swap text for logo <img> later) */
.brand-wall { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
.brand-chip { display: inline-flex; align-items: center; padding: 12px 22px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); font-family: var(--sans); font-weight: 800; letter-spacing: .03em; color: var(--green-800); text-transform: uppercase; font-size: .95rem; box-shadow: var(--shadow-sm); }
.brand-chip img { height: 26px; width: auto; display: block; }
/* Big brands dropdown (logo boxes) */
.brands-dd { max-width: 900px; margin: 24px auto 0; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); box-shadow: var(--shadow-sm); overflow: hidden; text-align: left; }
.brands-dd-summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 20px 28px; font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--green-800); }
.brands-dd-summary::-webkit-details-marker { display: none; }
.brands-dd-caret { width: 15px; height: 15px; flex: none; transition: transform .2s ease; }
.brands-dd[open] .brands-dd-caret { transform: rotate(180deg); }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; padding: 6px 24px 28px; }
.brand-logo { aspect-ratio: 3 / 2; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 10px; background: var(--cream); padding: 12px; }
.brand-logo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.brand-logo span { font-family: var(--sans); font-weight: 800; text-transform: uppercase; letter-spacing: .03em; color: var(--green-800); font-size: .9rem; text-align: center; }
/* Merch product grid */
.merch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 20px; margin-top: 30px; }
.merch-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); margin: 0; transition: transform .18s ease, box-shadow .18s ease; }
.merch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.merch-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: #fff; padding: 10px; display: block; }
.merch-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #fff; }
.merch-media .gal-track { height: 100%; }
.merch-media .gal-track img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: contain; aspect-ratio: auto; padding: 10px; background: #fff; }
.merch-card figcaption { padding: 14px 14px 18px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.merch-name { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.merch-price { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; color: var(--green-700); }
.merch-sizes { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-top: 2px; }
.merch-size { display: inline-block; padding: 3px 10px; border: 1px solid var(--line); border-radius: 8px; font-family: var(--sans); font-weight: 700; font-size: .8rem; color: var(--ink-soft); }
/* Static Home dropdown in the header (Café Home / Shop Home) */
.topbar-dd { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); }
.topbar-home-btn { display: inline-flex; align-items: center; gap: 7px; color: var(--cream); font-family: var(--sans); font-weight: 700; font-size: .9rem; padding: 8px 16px; border: 2px solid rgba(255,255,255,.42); background: transparent; border-radius: 999px; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.topbar-home-btn:hover, .topbar-dd.open .topbar-home-btn { background: #fff; color: var(--green-800); border-color: #fff; }
.topbar-dd .hero-dd-menu { left: 0; transform: translateX(0) translateY(-6px); min-width: 168px; }
.topbar-dd.open .hero-dd-menu { transform: translateX(0) translateY(0); }
/* Authorized-dealer dropdown in the sub-nav (wide logo grid) */
.hero-dd-menu.dealer-menu { width: min(88vw, 430px); padding: 14px; }
.dealer-menu .brands-grid { padding: 0; margin: 0; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; }
.footer-tag { color: var(--green-500); }
.footer-credit { color: inherit; opacity: .75; }
.footer-credit:hover { color: #fff; opacity: 1; }
.footer-credit-sep { margin: 0 12px; opacity: .45; }
.footer-link { color: inherit; opacity: .85; font-weight: 600; }
.footer-link:hover { color: #fff; opacity: 1; }
.footer-ig { display: inline-flex; align-items: center; gap: 7px; color: #d7e3db; font-weight: 600; }
.footer-ig:hover { color: #fff; }
.ig-icon { width: 18px; height: 18px; flex: none; }
.shop-social { text-align: center; margin-top: 42px; }
.ig-pill { display: inline-flex; align-items: center; gap: 9px; padding: 13px 26px; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 700; font-size: 1rem; }
.ig-pill:hover { background: var(--accent-dk); }
/* News / journal feed */
.journal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; margin-top: 30px; text-align: left; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 26px; display: flex; flex-direction: column; gap: 10px; box-shadow: 0 6px 20px rgba(16,42,31,.05); }
.post-meta { font-family: var(--sans); font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--green-700); margin: 0; }
.post-cat { color: var(--accent); }
.post-title { font-family: var(--serif); font-size: 1.32rem; line-height: 1.2; margin: 0; color: var(--ink); }
.post-excerpt { margin: 0; color: var(--ink-soft); line-height: 1.6; }

/* ---------- Active nav link ---------- */
.site-nav a.is-active { color: var(--green-700); background: var(--cream-2); }

/* ---------- Page heroes ---------- */
.hero-cafe {
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(207,106,58,.45), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(46,158,102,.18), transparent 55%),
    linear-gradient(155deg, #2a1409 0%, #6e3417 55%, #8f4422 100%);
}
/* .hero-shop uses the default green hero */

/* ---------- Shop sub-nav (tab bar) ---------- */
.subnav {
  position: sticky; top: 74px; z-index: 90;
  background: var(--green-900);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.subnav-inner { display: flex; gap: 2px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a {
  color: rgba(255,255,255,.66); font-weight: 600; font-size: .96rem;
  padding: 15px 18px; white-space: nowrap; border-bottom: 2px solid transparent;
}
.subnav a:hover { color: #fff; background: rgba(255,255,255,.05); }
.subnav a.is-active { color: #fff; border-bottom-color: var(--accent); }

/* ---------- Team / bios (modern profile cards) ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.bio-card {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.bio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-500); }

/* image-led top with large monogram until real photos arrive */
.bio-media {
  position: relative; aspect-ratio: 4 / 3; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--green-800) 0%, var(--green-600) 60%, var(--green-500) 100%);
  overflow: hidden;
}
.bio-media::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 18px 18px; opacity: .7;
}
.bio-media.fleet-gallery { display: block; background: var(--cream-2); }
.bio-media.fleet-gallery::after { display: none; }
.bio-media.fleet-gallery .gal-track { height: 100%; }
.bio-card:nth-child(2) .bio-media { background: linear-gradient(150deg, #2a1409 0%, #8f4422 60%, var(--accent) 100%); }
.bio-card:nth-child(3) .bio-media { background: linear-gradient(150deg, var(--green-900) 0%, #1c4a35 60%, var(--green-600) 100%); }
.bio-card:nth-child(4) .bio-media { background: linear-gradient(150deg, #6e3417 0%, var(--accent-dk) 60%, #d98a5c 100%); }
.bio-monogram { position: relative; z-index: 1; font-family: var(--serif); font-size: 4.4rem; font-weight: 600; color: rgba(255,255,255,.96); letter-spacing: -.02em; line-height: 1; }
.bio-photo-note { position: absolute; bottom: 10px; right: 12px; z-index: 1; font-size: .72rem; color: rgba(255,255,255,.7); font-weight: 600; }

.bio-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bio-name { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); margin: 0; line-height: 1.1; }
.bio-role { align-self: flex-start; background: var(--cream-2); color: var(--green-700); font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: 5px 11px; border-radius: 999px; }
.bio-card:nth-child(even) .bio-role { background: #f6e4d8; color: var(--accent-dk); }
.bio-text { color: var(--ink-soft); margin: 6px 0 0; font-size: .99rem; }
.bio-meta { margin: 14px 0 0; padding-top: 14px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .9rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }

/* story (left) + team (right) split */
.story-team { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: start; }
.story-col { position: sticky; top: 140px; }
.story-col .section-title { margin-bottom: .5em; }
.team-grid-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 980px) {
  .story-team { grid-template-columns: 1fr; gap: 44px; }
  .story-col { position: static; }
}
@media (max-width: 560px) {
  .team-grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Landing (split choice) ---------- */
.landing-body { margin: 0; }
.landing { min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; background: var(--green-900); }
.landing-top { position: relative; text-align: center; padding: 30px 20px 20px; z-index: 3; }
.landing-logo { margin: 0 auto 12px; display: block; }
.landing-tagline { font-family: var(--serif); color: rgba(255,255,255,.9); font-size: 1.2rem; margin: 0; }
.landing-lang { position: absolute; top: 26px; right: 26px; display: flex; gap: 8px; font-size: .85rem; font-weight: 800; }
.landing-lang .lang-active { color: #fff; }
.landing-lang a { color: rgba(255,255,255,.6); }
.landing-lang a:hover { color: #fff; }

.split-choice { flex: 1; display: flex; }
.choice {
  flex: 1 1 0; position: relative; overflow: hidden; display: grid; place-items: center;
  text-align: center; color: #fff; text-decoration: none; padding: 48px 26px;
  transition: flex-grow .45s cubic-bezier(.2,.7,.2,1);
}
.choice:hover { text-decoration: none; }
.choice-cafe { background: linear-gradient(165deg, #cf6a3a 0%, #a8521f 100%); }
.choice-shop { background: linear-gradient(165deg, #237a51 0%, #133a28 100%); }
.choice::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .3s; }
.choice:hover::before { background: rgba(0,0,0,.12); }
.choice-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; max-width: 360px; transition: transform .35s; }
.choice:hover .choice-inner { transform: translateY(-6px); }
.choice-icon { font-size: 3.4rem; line-height: 1; }
.choice-kicker { text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; font-weight: 800; opacity: .9; }
.choice-title { font-family: var(--serif); font-size: clamp(2.1rem, 4.5vw, 3.1rem); line-height: 1.05; }
.choice-desc { color: rgba(255,255,255,.9); max-width: 32ch; margin: 0; }
.choice-btn { margin-top: 16px; border: 2px solid rgba(255,255,255,.65); padding: 12px 30px; border-radius: 999px; font-weight: 700; transition: .2s; }
.choice:hover .choice-btn { background: #fff; color: var(--ink); border-color: #fff; }
@media (min-width: 861px) {
  .choice:hover { flex-grow: 1.35; }
}

/* single-location layout (café page) */
.locations-single { grid-template-columns: 1fr; max-width: 560px; }

/* Find the café — info left, map right (horizontal) */
.visit-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 28px; align-items: stretch; }
.visit-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); min-height: 360px; background: var(--cream-2); }
.visit-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
@media (max-width: 760px) { .visit-grid { grid-template-columns: 1fr; } .visit-map { min-height: 300px; } }

/* Top-aligned two-column split (info left / prices right) */
.split.split-top { align-items: start; }

/* ---------- Landing: minimal & timeless ---------- */
.home {
  margin: 0; min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column; color: var(--cream);
  background:
    radial-gradient(900px 500px at 78% -10%, rgba(46,158,102,.35), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(207,106,58,.20), transparent 55%),
    linear-gradient(155deg, var(--green-900) 0%, var(--green-800) 55%, #1c4a35 100%);
}
.home-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 64px 24px; }
.home-tagline { margin: 0 0 22px; font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: rgba(250,247,240,.85); }
.home-logo { width: min(320px, 64vw); height: auto; display: block; cursor: pointer; }
/* vibrate on hover */
@keyframes logo-vibrate {
  0%,100% { transform: translate(0,0) rotate(0); }
  20% { transform: translate(-1.5px,1px) rotate(-1.2deg); }
  40% { transform: translate(1.5px,-1px) rotate(1.2deg); }
  60% { transform: translate(-1.5px,-1px) rotate(-1deg); }
  80% { transform: translate(1.5px,1px) rotate(1deg); }
}
.home-logo:hover { animation: logo-vibrate .28s linear infinite; }
/* spin like a wheel on triple-click (added via JS) — overrides hover while spinning */
@keyframes logo-wheelspin { from { transform: rotate(0); } to { transform: rotate(1080deg); } }
.home-logo.spin { animation: logo-wheelspin .95s cubic-bezier(.15,.7,.15,1); }
.home-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 44px; }
.home-row { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.home-lang-label { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: rgba(250,247,240,.78); }
/* Custom language dropdown */
.lang-dd { position: relative; display: inline-block; }
.lang-dd-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  min-width: 190px; padding: 13px 20px;
  font-family: var(--serif); font-size: 1.08rem; font-weight: 600; letter-spacing: .01em;
  color: var(--cream); background: rgba(0,0,0,.32);
  border: 1px solid rgba(250,247,240,.55); border-radius: 999px;
  cursor: pointer; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.lang-dd-btn:hover, .lang-dd.open .lang-dd-btn { border-color: var(--accent); background: rgba(0,0,0,.46); }
.lang-dd.open .lang-dd-btn { box-shadow: 0 0 0 3px rgba(207,106,58,.35); }
.lang-dd-globe { width: 18px; height: 18px; flex: none; color: #f2d9c6; }
.lang-dd-label { line-height: 1; }
.lang-dd-caret { width: 12px; height: 12px; flex: none; color: #f2d9c6; transition: transform .2s ease; }
.lang-dd.open .lang-dd-caret { transform: rotate(180deg); }
.lang-dd-menu {
  position: absolute; top: calc(100% + 9px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px; margin: 0; padding: 7px; list-style: none;
  background: linear-gradient(160deg, #17482f 0%, #0e3021 100%);
  border: 1px solid rgba(250,247,240,.18); border-radius: 16px;
  box-shadow: 0 22px 46px rgba(0,0,0,.5);
  opacity: 0; visibility: hidden; z-index: 100;
  transition: opacity .16s ease, transform .16s ease;
  max-height: 232px; overflow-y: auto; overflow-x: hidden;
  scrollbar-width: thin; scrollbar-color: rgba(250,247,240,.4) transparent;
}
.lang-dd-menu::-webkit-scrollbar { width: 8px; }
.lang-dd-menu::-webkit-scrollbar-thumb { background: rgba(250,247,240,.3); border-radius: 8px; }
.lang-dd-menu::-webkit-scrollbar-track { background: transparent; }
.lang-dd.open .lang-dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.lang-dd-item {
  padding: 11px 18px; border-radius: 10px; cursor: pointer;
  font-family: var(--serif); font-size: 1.05rem; font-weight: 500; color: var(--cream);
  text-align: center; white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.lang-dd-item:hover { background: rgba(255,255,255,.10); }
.lang-dd-item.active { background: var(--accent); color: #fff; font-weight: 600; }
/* Café button = logo terracotta; Shop button = inverted */
.home-btn.home-btn-cafe { background: var(--accent); color: var(--cream); border-color: var(--accent); }
.home-btn.home-btn-cafe:hover { background: var(--accent-dk); border-color: var(--accent-dk); color: var(--cream); animation: logo-vibrate .28s linear infinite; }
.home-btn.home-btn-shop { background: var(--cream); color: var(--accent); border-color: var(--cream); }
.home-btn.home-btn-shop:hover { background: #fff; color: var(--accent-dk); border-color: #fff; animation: logo-vibrate .28s linear infinite; }
.home-btn {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .14em;
  font-size: .82rem; font-weight: 700; color: var(--cream);
  background: transparent; border: 1px solid rgba(250,247,240,.5); border-radius: 999px;
  padding: 15px 42px; text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.home-btn:hover { background: var(--cream); color: var(--green-900); border-color: var(--cream); }
.home-foot { position: relative; text-align: center; padding: 22px 24px; color: rgba(250,247,240,.6); font-size: .84rem; border-top: 1px solid rgba(255,255,255,.12); }

/* Bike race along the footer's top line — right to left */
.bike-race { position: absolute; left: 0; right: 0; top: -34px; height: 34px; overflow: hidden; pointer-events: none; }
.bike { position: absolute; bottom: 6px; left: 0; font-size: 28px; line-height: 1; will-change: transform; animation: bike-ride linear infinite; }
@keyframes bike-ride { from { transform: translateX(100vw); } to { transform: translateX(-64px); } }
@keyframes bike-wheelie {
  from { transform: translateX(100vw) rotate(26deg); }
  to   { transform: translateX(-64px) rotate(26deg); }
}
@keyframes bike-jump {
  0%   { transform: translateX(100vw) translateY(0); }
  44%  { transform: translateX(46vw) translateY(0); }
  49%  { transform: translateX(41vw) translateY(-22px); }
  55%  { transform: translateX(35vw) translateY(0); }
  100% { transform: translateX(-64px) translateY(0); }
}
.bike:nth-child(1) { animation-duration: 6.5s; animation-delay: 0s; }
.bike:nth-child(2) { animation-name: bike-wheelie; transform-origin: bottom right; animation-duration: 8.2s; animation-delay: 1.4s; }
.bike:nth-child(3) { animation-duration: 5.4s; animation-delay: 2.9s; }
.bike:nth-child(4) { animation-duration: 7.3s; animation-delay: 4.3s; }
.bike:nth-child(5) { animation-duration: 6.0s; animation-delay: 5.6s; }

/* Language picker (dropdown) */
.lang-picker { position: fixed; top: 16px; right: 16px; z-index: 50; }
.lang-select {
  font-family: var(--sans); font-size: .85rem; font-weight: 600;
  color: var(--cream); background-color: rgba(0,0,0,.30);
  border: 1px solid rgba(250,247,240,.4); border-radius: 999px;
  padding: 7px 32px 7px 14px; cursor: pointer; line-height: 1.2;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' fill='none' stroke='%23faf7f0' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 11px center;
}
.lang-select option { color: #1a201d; background: #fff; }
.lang-select:focus-visible { outline: 2px solid var(--cream); outline-offset: 2px; }

/* ---------- Landing: white header / green middle / white footer ---------- */
.lp-body { margin: 0; display: flex; flex-direction: column; min-height: 100vh; min-height: 100dvh; }
.lp-header { background: #fff; border-bottom: 4px solid var(--maroon); }
.lp-bar { max-width: var(--maxw); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; }
.lp-bar-center { justify-content: center; }
.lp-tagline { margin: 0; font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--green-700); text-align: center; }
.lp-brand img { height: 44px; width: auto; display: block; }
.lp-lang { display: flex; gap: 8px; font-weight: 800; font-size: .85rem; }
.lp-lang .lang-active { color: var(--green-700); }
.lp-lang a { color: var(--ink-soft); }
.lp-lang a:hover { color: var(--green-700); }
.lp-main { flex: 1; background: linear-gradient(168deg, #0f4429 0%, #082c19 100%); display: grid; place-items: center; padding: 56px 22px; }
.lp-center { text-align: center; max-width: 900px; }
.lp-footer { background: #fff; border-top: 4px solid var(--maroon); text-align: center; padding: 18px 24px; color: var(--ink-soft); font-size: .92rem; }

/* ---------- Landing: gold brand on royal green ---------- */
.landing-royal {
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding: 48px 22px; position: relative;
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,0) 0, rgba(0,0,0,0) 17px, rgba(0,0,0,.30) 17px, rgba(0,0,0,.30) 18px),
    linear-gradient(180deg, rgba(5,22,13,.42), rgba(5,22,13,.60)),
    url("/img/marble-green.jpg") center/cover no-repeat,
    #0a2d1c;
}
.royal-inner { text-align: center; max-width: 900px; }
.royal-logo-wrap { margin: 0 auto; }
.royal-logo { width: min(440px, 84vw); height: auto; display: block; margin: 0 auto; filter: drop-shadow(0 8px 20px rgba(0,0,0,.35)); transition: transform .28s ease; }
.royal-logo-wrap:hover .royal-logo { transform: scale(1.05); }
.brand-gold { margin: 0 0 4px; line-height: 1; filter: drop-shadow(0 3px 12px rgba(0,0,0,.35)); }
.brand-gold-main {
  display: block; font-family: var(--serif); font-weight: 700;
  font-size: clamp(3.4rem, 13vw, 8.5rem); letter-spacing: -.02em;
  background: linear-gradient(180deg, #fbeeb0 0%, #e8c86a 42%, #c9a23a 74%, #a9791b 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand-gold-sub {
  display: block; margin-top: .08em; font-family: var(--serif);
  font-size: clamp(1.1rem, 4vw, 2.3rem); letter-spacing: .16em; text-transform: uppercase;
  background: linear-gradient(180deg, #f6e2a0, #d8b04a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.royal-tagline { margin: 18px 0 42px; color: rgba(240,224,170,.72); font-family: var(--serif); font-style: italic; font-size: 1.15rem; }
.enter-boxes { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }
.enter-box {
  display: block; min-width: 200px; padding: 15px 34px;
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  color: #f2d987; text-decoration: none;
  background: rgba(0,0,0,.32);
  border: 1.5px solid var(--maroon); border-radius: 16px;
  transition: transform .18s ease, background .22s ease, color .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.enter-box:hover {
  transform: translateY(-5px);
  background: linear-gradient(180deg, #f4d97e, #d4af37);
  color: #0c3a22; border-color: transparent;
  box-shadow: 0 16px 38px rgba(0,0,0,.34);
}
.landing-lang-gold { position: absolute; top: 24px; right: 26px; display: flex; gap: 8px; font-size: .85rem; font-weight: 800; }
.landing-lang-gold .lang-active { color: #e8c86a; }
.landing-lang-gold a { color: rgba(240,224,170,.6); }
.landing-lang-gold a:hover { color: #e8c86a; }
@media (max-width: 480px) { .enter-boxes { flex-direction: column; } .enter-box { min-width: 0; } }

/* Café menu list (view / download PDFs) */
.menu-list { display: grid; gap: 16px; max-width: 620px; margin: 0 auto; }
.menu-item { display: flex; align-items: center; justify-content: space-between; gap: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-sm); text-align: left; }
.menu-info h3 { margin: 0; font-size: 1.25rem; color: var(--ink); }
.menu-info .muted { margin: 2px 0 0; font-size: .9rem; }
.menu-actions { display: flex; gap: 10px; flex: none; }
.menu-btn { font-family: var(--sans); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; padding: 10px 20px; border-radius: 999px; text-decoration: none; background: var(--green-700); color: #fff; border: 1px solid var(--green-700); transition: background .2s, color .2s; white-space: nowrap; }
.menu-btn:hover { background: var(--green-800); color: #fff; }
.menu-btn-ghost { background: transparent; color: var(--green-700); }
.menu-btn-ghost:hover { background: var(--green-700); color: #fff; }
@media (max-width: 520px) { .menu-item { flex-direction: column; align-items: stretch; text-align: center; } .menu-actions { justify-content: center; } }

/* Compact hero (little content — e.g. workshop) */
.hero-compact .hero-inner { padding: 50px 0 42px; }
.hero-compact h1 { margin-bottom: .2em; }

/* Workshop price list — one box per category, masonry columns */
.section-mint { background: #f1ead9; }   /* eggshell — uniform page background across the site */
.price-note-top { text-align: center; margin-bottom: 1.8em; }
/* main boxes flow in ~3 columns; Brompton sits in its own 4th column */
.workshop-layout { display: grid; grid-template-columns: minmax(0,3fr) minmax(0,1fr); gap: 24px; align-items: start; }
.price-boxes { column-count: 3; column-gap: 22px; }        /* 3 main columns + Brompton = 4 */
@media (max-width: 900px) {
  .workshop-layout { grid-template-columns: 1fr; gap: 22px; }
  .price-boxes { column-count: 2; }
}
@media (max-width: 560px) { .price-boxes { column-count: 1; } }
.price-box { break-inside: avoid; -webkit-column-break-inside: avoid; margin: 0 0 26px; background: #f3ede0; border: 1px solid var(--ink); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.price-box:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--green-500); }
.price-box h3 { font-family: var(--serif); font-size: 1.35rem; color: var(--green-800); margin: 0 0 .5em; text-align: left; }
.price-box .box-note { font-size: .85rem; margin: -.2em 0 .9em; text-align: left; }
.price-box-brompton { background: var(--paper); border: 1px solid var(--green-500); box-shadow: 0 8px 26px rgba(31,107,72,.14); }

/* Price list card */
.pricecard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.pricecard-title { font-size: 1.7rem; margin-bottom: 2px; }
.price-note { font-size: .9rem; margin-bottom: 1em; }
/* Price list: one grid so ALL descriptions align left, ALL prices align right */
.pricelist { display: grid; grid-template-columns: 1fr auto; column-gap: 24px; }
.pricelist .price-group { grid-column: 1 / -1; margin: 1.6em 0 .2em; font-family: var(--serif); font-size: 1.15rem; color: var(--ink); text-align: left; }
.pricelist .price-group:first-child { margin-top: 0; }
.pricelist .svc { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); text-align: left; }
.pricelist .price { padding: 10px 0; border-bottom: 1px solid var(--line); text-align: right; color: var(--green-700); font-weight: 700; white-space: nowrap; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .split-choice { flex-direction: column; }
  .choice { min-height: 46vh; padding: 44px 24px; }
}
@media (max-width: 860px) {
  .split, .about-grid, .locations { grid-template-columns: 1fr; gap: 32px; }
  .media-placeholder, .media-tall { min-height: 240px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .site-nav { position: absolute; top: 74px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .site-nav.open { max-height: 380px; }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: 12px 18px 20px; gap: 2px; }
  .site-nav a { padding: 13px 12px; }
  .lang-switch { margin: 8px 0 0; padding: 12px 12px 0; border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 64px 0; }
  .hero-inner { padding: 76px 0 68px; }
}

/* ---------- Rental fleet cards (photo + price) ---------- */
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.fleet-card { position: relative; background: #f3ede0; border: 1px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s, border-color .15s; }
.fleet-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--green-500); }
.fleet-card:has(.fleet-prices[open]) { z-index: 40; }
.fleet-media { aspect-ratio: 3 / 2; background: var(--cream-2); border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
.fleet-media img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; }

/* Image lightbox (click a photo to enlarge) */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.88); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 24px; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 92vh; border-radius: 8px; box-shadow: 0 24px 70px rgba(0,0,0,.6); }
.lb-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border: none; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; font-size: 2.1rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; z-index: 1001; transition: background .2s ease; }
.lb-arrow:hover { background: rgba(255,255,255,.32); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
@media (max-width: 560px) { .lb-arrow { width: 44px; height: 44px; font-size: 1.7rem; } }
.fleet-media-empty { display: grid; place-items: center; gap: 8px; background: linear-gradient(135deg, var(--green-700), var(--green-500)); color: #fff; }
.fleet-emoji { font-size: 2.7rem; line-height: 1; }
.fleet-soon { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; opacity: .85; }
.fleet-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.fleet-body h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); margin: 0 0 6px; }
/* Sales page price + ex-rental tag */
.sale-price { margin: auto 0 0; padding-top: 14px; border-top: 1px solid var(--line); font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--green-700); }
.sale-price.sale-ask { font-size: 1rem; font-weight: 600; color: var(--ink-soft); }
.ex-tag { display: inline-block; vertical-align: middle; margin-left: 6px; font-family: var(--sans); font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--green-700); background: var(--cream-2); border-radius: 999px; padding: 3px 9px; }
.fleet-desc { color: var(--ink-soft); margin: 0 0 18px; font-size: .95rem; }
/* price dropdown (native <details>) */
.fleet-prices { position: relative; margin-top: auto; border-top: 1px solid var(--line); padding-top: 6px; }
.fleet-prices > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--green-700); font-size: 1rem; padding: 10px 2px; user-select: none; }
.fleet-prices > summary::-webkit-details-marker { display: none; }
.fleet-prices > summary:hover { color: var(--green-800); }
.fleet-prices > summary:focus-visible { outline: 2px solid var(--green-500); outline-offset: 3px; border-radius: 4px; }
.fp-label { margin-right: auto; }
.fp-from { color: var(--ink-soft); font-weight: 600; font-size: .84rem; }
.fleet-prices > summary::after { content: ""; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .2s; flex: none; margin-bottom: 3px; }
.fleet-prices[open] > summary::after { transform: rotate(225deg); margin-bottom: -3px; }
.fp-table { position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 5; border-collapse: separate; border-spacing: 0; margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); overflow: hidden; }
.fp-table th, .fp-table td { padding: 9px 16px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.fp-table th { text-align: left; font-weight: 600; color: var(--ink-soft); }
.fp-table td { text-align: right; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.fp-table tr:last-child th, .fp-table tr:last-child td { border-bottom: none; }
.fp-table .fp-deposit th, .fp-table .fp-deposit td { color: var(--green-700); }

/* full price table */
.rate-all-title { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); margin: 54px 0 4px; }
.rate-table-wrap { overflow-x: auto; margin-top: 18px; -webkit-overflow-scrolling: touch; border-radius: var(--radius-sm); }
.rate-table { width: 100%; border-collapse: collapse; min-width: 720px; font-size: .95rem; }
.rate-table caption { text-align: left; color: var(--ink-soft); font-size: .9rem; padding: 0 0 12px; }
.rate-table th, .rate-table td { padding: 11px 12px; border-bottom: 1px solid var(--line); text-align: center; font-variant-numeric: tabular-nums; }
.rate-table thead th { background: var(--green-700); color: #fff; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; border-bottom: none; }
.rate-table thead th:first-child { text-align: left; }
.rate-table tbody th { text-align: left; font-weight: 800; color: var(--ink); }
.rate-table tbody tr:nth-child(even) { background: var(--cream); }
.rate-table .col-deposit { color: var(--ink-soft); }

@media (max-width: 1100px) {
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .fleet-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .fleet-grid { grid-template-columns: 1fr; }
}

/* ---------- Global: centred text on every page ---------- */
body { text-align: center; }
/* keep tick-lists readable: centre the list as a block, text stays left beside its bullet */
.ticks { display: inline-block; text-align: left; }
/* centre width-limited hero text, and the button/footer rows, to match */
.hero h1, .lede { margin-left: auto; margin-right: auto; }
.hero-actions, .footer-inner { justify-content: center; }

/* ---------- Hero "How to reserve" dropdown ---------- */
.reserve { display: inline-block; }
.reserve > summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 9px; }
.reserve > summary::-webkit-details-marker { display: none; }
.reserve > summary::after { content: ""; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .2s; margin-bottom: 2px; }
.reserve[open] > summary::after { transform: rotate(225deg); margin-bottom: -2px; }
.reserve-panel { margin: 16px auto 0; width: min(430px, 92vw); background: var(--paper); color: var(--ink); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); padding: 8px; display: flex; flex-direction: column; gap: 4px; text-align: left; }
.reserve-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 16px; border-radius: 8px; color: var(--ink); }
.reserve-row:hover { background: var(--cream); color: var(--ink); }
.reserve-k { font-weight: 800; color: var(--green-700); text-transform: uppercase; letter-spacing: .08em; font-size: .74rem; }
.reserve-v { font-weight: 700; font-size: 1.02rem; word-break: break-word; }
.reserve-note { margin: 4px 6px 4px; font-size: .82rem; font-weight: 600; color: var(--ink-soft); }

/* nested Call / Email option buttons inside the reserve panel */
.reserve-opt { border-radius: 8px; }
.reserve-optbtn { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 10px; padding: 14px 16px; font-weight: 700; color: var(--ink); background: var(--cream); border-radius: 8px; }
.reserve-optbtn::-webkit-details-marker { display: none; }
.reserve-optbtn:hover { background: var(--cream-2); }
.reserve-optbtn::after { content: ""; margin-left: auto; width: 8px; height: 8px; border-right: 2px solid var(--ink-soft); border-bottom: 2px solid var(--ink-soft); transform: rotate(45deg); transition: transform .2s; margin-bottom: 2px; }
.reserve-opt[open] .reserve-optbtn::after { transform: rotate(225deg); margin-bottom: -2px; }
.reserve-opt[open] .reserve-optbtn { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.reserve-ico { font-size: 1.05rem; }
.reserve-box { padding: 6px 4px 4px; text-align: left; }
.reserve-hint { margin: 12px 12px 4px; font-size: .82rem; font-weight: 700; color: var(--ink); }
.reserve-list { margin: 0 12px 6px; padding-left: 18px; text-align: left; font-size: .87rem; color: var(--ink-soft); line-height: 1.5; }
.reserve-list li { margin: 3px 0; }
