/* ==========================================================================
   Kilrea Service Station Ltd — site stylesheet
   Design direction: fresh, friendly, local. Green + white + fuel-red accent.
   Humanist system-font stack. Rounded, approachable, community feel.
   ========================================================================== */

:root {
  /* palette */
  --green:       #1a9e57;   /* fresh primary green */
  --green-600:   #16874a;
  --green-700:   #11703d;
  --green-800:   #0d5730;   /* deep green — header text, footer */
  --green-900:   #093b21;
  --green-tint:  #eef7f1;   /* pale green surface */
  --green-tint2: #f5faf6;
  --red:         #e0231b;   /* fuel red accent */
  --red-600:     #c31810;
  --amber:       #f5a623;   /* warm accent for small highlights */
  --ink:         #16241c;   /* main text */
  --muted:       #5d6d63;   /* secondary text */
  --bg:          #ffffff;
  --border:      #dce7e0;
  --border-2:    #e8f0ea;
  --shadow-sm:   0 1px 2px rgba(9,59,33,.06), 0 1px 3px rgba(9,59,33,.05);
  --shadow-md:   0 6px 20px rgba(9,59,33,.10);
  --shadow-lg:   0 18px 48px rgba(9,59,33,.16);

  /* type */
  --font: "Segoe UI", Candara, "Trebuchet MS", "Gill Sans", system-ui, sans-serif;

  /* spacing scale */
  --s1: 4px;  --s2: 8px;  --s3: 16px; --s4: 24px;
  --s5: 32px; --s6: 48px; --s7: 64px; --s8: 96px;

  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --maxw: 1160px;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--red); }

h1, h2, h3, h4 {
  line-height: 1.12;
  margin: 0 0 .55em;
  color: var(--green-900);
  font-weight: 700;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.24rem; }
p  { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

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

/* ---------- helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--red));
}
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.lead { font-size: 1.15rem; color: var(--muted); }
.muted { color: var(--muted); }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tint { background: var(--green-tint2); }
.section--green {
  background:
    radial-gradient(1200px 420px at 85% -10%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(160deg, var(--green-800), var(--green-900));
  color: #eaf6ee;
}
.section--green h2, .section--green h3 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font: inherit; font-weight: 700; font-size: 1rem;
  padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .16s ease, box-shadow .16s ease,
    background .16s ease, color .16s ease, border-color .16s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-700); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-600); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: #fff; color: var(--green-800); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-700); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); }
.btn--light:hover { background: #fff; color: var(--green-800); transform: translateY(-2px); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand:hover { color: inherit; }
.brand-mark {
  width: 42px; height: 42px; flex: none;
  border-radius: 12px; box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-weight: 800; font-size: 1.06rem; color: var(--green-900); letter-spacing: -.01em; }
.brand-sub { font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block; padding: 9px 14px; border-radius: 9px;
  color: var(--ink); font-weight: 600; font-size: .97rem;
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { background: var(--green-tint); color: var(--green-700); }
.nav-links a.active { color: var(--green-700); background: var(--green-tint); }
.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 10px 20px; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--border);
  background: #fff; border-radius: 11px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; stroke: var(--green-800); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--green-900); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(9,59,33,.94) 0%, rgba(13,87,48,.82) 42%, rgba(13,87,48,.30) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: clamp(72px, 12vw, 140px) 0 clamp(64px, 10vw, 120px); }
.hero-content { max-width: 640px; color: #eaf6ee; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  color: #fff; font-weight: 700; font-size: .8rem; letter-spacing: .05em;
  padding: 7px 15px; border-radius: 999px; margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(224,35,27,.28); }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 .hl { color: #8ff0b6; }
.hero-sub { font-size: 1.2rem; color: #d6ecdd; max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-strip {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 8px 34px;
  padding: 18px 0; border-top: 1px solid rgba(255,255,255,.16);
}
.hero-strip span { display: inline-flex; align-items: center; gap: 9px; color: #d6ecdd; font-weight: 600; font-size: .95rem; }
.hero-strip svg { width: 18px; height: 18px; stroke: #8ff0b6; flex: none; }

/* ---------- generic grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- offer / feature cards ---------- */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-tint); }
.card .icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--green-tint); color: var(--green-700);
}
.card .icon svg { width: 26px; height: 26px; stroke: var(--green-700); }
.card--accent .icon { background: #fdecea; }
.card--accent .icon svg { stroke: var(--red); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- split section (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media img {
  width: 100%; height: 100%; min-height: 300px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.split-media { position: relative; }
.split-tag {
  position: absolute; left: 20px; bottom: 20px;
  background: #fff; border-radius: 12px; padding: 12px 18px; box-shadow: var(--shadow-md);
  font-weight: 700; color: var(--green-800); font-size: .92rem;
  display: inline-flex; align-items: center; gap: 10px;
}
.split-tag .yr { color: var(--red); font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; }

/* ---------- ticked lists ---------- */
.ticks { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 14px; }
.ticks li { position: relative; padding-left: 36px; color: var(--ink); }
.ticks li strong { color: var(--green-900); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-tint) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2311703d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 13px no-repeat;
}
.section--green .ticks li { color: #dbeee2; }
.section--green .ticks li strong { color: #fff; }
.section--green .ticks li::before {
  background: rgba(143,240,182,.16) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238ff0b6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 13px no-repeat;
}

/* ---------- trust strip ---------- */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; text-align: center;
}
.trust-item .tnum { font-size: 1.05rem; font-weight: 800; color: var(--red); letter-spacing: .02em; }
.trust-item h3 { font-size: 1.06rem; margin: 6px 0 6px; }
.trust-item p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- price / product list ---------- */
.pricelist { display: grid; gap: 14px; }
.price-row {
  display: flex; align-items: baseline; gap: 14px;
  padding: 16px 20px; border: 1px solid var(--border); border-radius: 12px; background: #fff;
}
.price-row .pl-name { font-weight: 700; color: var(--green-900); }
.price-row .pl-dots { flex: 1; border-bottom: 2px dotted var(--border); transform: translateY(-4px); }
.price-row .pl-note { color: var(--muted); font-size: .92rem; }

/* ---------- tags / chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-tint); color: var(--green-800);
  border-radius: 999px; padding: 8px 15px; font-weight: 600; font-size: .92rem;
  border: 1px solid var(--border-2);
}
.chip svg { width: 15px; height: 15px; stroke: var(--green-600); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 10% 20%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(120deg, var(--green-700), var(--green-900));
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px); text-align: center; box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #d6ecdd; max-width: 560px; margin: 0 auto 26px; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- opening hours table ---------- */
.hours-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.hours-card .hc-head {
  background: var(--green-800); color: #fff; padding: 18px 24px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.hours-card .hc-head svg { width: 20px; height: 20px; stroke: #8ff0b6; }
table.hours { width: 100%; border-collapse: collapse; }
table.hours th, table.hours td { text-align: left; padding: 14px 24px; font-size: 1rem; }
table.hours tbody { }
table.hours tr { border-top: 1px solid var(--border); }
table.hours td.day { font-weight: 600; color: var(--green-900); }
table.hours td.time { text-align: right; color: var(--muted); }
table.hours tr.today { background: var(--green-tint); }
table.hours tr.today td.day { color: var(--green-700); }
table.hours tr.today td.time { color: var(--green-800); font-weight: 700; }

/* ---------- address / location card ---------- */
.location {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); background: #fff;
}
.loc-info { padding: clamp(28px, 4vw, 44px); }
.loc-info h3 { margin-bottom: 6px; }
.loc-list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 18px; }
.loc-list li { display: flex; gap: 14px; align-items: flex-start; }
.loc-list .li-ico {
  width: 40px; height: 40px; flex: none; border-radius: 11px;
  background: var(--green-tint); display: grid; place-items: center;
}
.loc-list .li-ico svg { width: 20px; height: 20px; stroke: var(--green-700); }
.loc-list .li-label { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.loc-list .li-value { color: var(--ink); font-weight: 600; }
.loc-list a.li-value { color: var(--green-700); }

/* stylised map panel (no external embed) */
.loc-map {
  position: relative; min-height: 320px;
  background:
    linear-gradient(0deg, rgba(13,87,48,.05), rgba(13,87,48,.05)),
    repeating-linear-gradient(90deg, #e6f1ea 0 39px, #dbe9e0 39px 40px),
    repeating-linear-gradient(0deg, #e6f1ea 0 39px, #dbe9e0 39px 40px),
    var(--green-tint);
  display: grid; place-items: center;
}
.loc-map .road-h { position: absolute; left: 0; right: 0; top: 55%; height: 26px; background: #cfe0d5; }
.loc-map .road-v { position: absolute; top: 0; bottom: 0; left: 38%; width: 22px; background: #cfe0d5; }
.loc-map .road-h::after, .loc-map .road-v::after { content: ""; position: absolute; }
.loc-map .road-h::after { left: 0; right: 0; top: 50%; height: 3px; transform: translateY(-50%); background: repeating-linear-gradient(90deg, #fff 0 16px, transparent 16px 30px); }
.loc-map .road-v::after { top: 0; bottom: 0; left: 50%; width: 3px; transform: translateX(-50%); background: repeating-linear-gradient(0deg, #fff 0 16px, transparent 16px 30px); }
.loc-pin {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.loc-pin .pin {
  width: 54px; height: 54px; border-radius: 50% 50% 50% 2px; transform: rotate(45deg);
  background: var(--red); box-shadow: var(--shadow-md); display: grid; place-items: center;
}
.loc-pin .pin svg { width: 24px; height: 24px; transform: rotate(-45deg); stroke: #fff; }
.loc-pin .pin-label { background: #fff; border-radius: 999px; padding: 6px 14px; font-weight: 700; color: var(--green-800); font-size: .85rem; box-shadow: var(--shadow-sm); }

/* ---------- contact form ---------- */
.form-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 7px; color: var(--green-900); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 11px; background: var(--green-tint2);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); background: #fff;
  box-shadow: 0 0 0 4px rgba(26,158,87,.14);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 8px; }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 360px at 88% -20%, rgba(26,158,87,.14), transparent 60%),
    var(--green-tint2);
  border-bottom: 1px solid var(--border);
  padding: clamp(48px, 8vw, 88px) 0 clamp(40px, 6vw, 60px);
}
.page-hero .crumbs { font-size: .86rem; color: var(--muted); margin-bottom: 12px; }
.page-hero .crumbs a { color: var(--green-700); font-weight: 600; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { max-width: 640px; font-size: 1.12rem; color: var(--muted); }

/* ---------- footer ---------- */
.site-footer { background: var(--green-900); color: #cfe3d6; padding: clamp(48px, 7vw, 72px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: #a9c6b4; font-size: .95rem; margin-top: 14px; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: #cfe3d6; font-size: .96rem; }
.footer-col a:hover { color: #8ff0b6; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; color: #cfe3d6; font-size: .96rem; margin-bottom: 12px; }
.footer-contact svg { width: 18px; height: 18px; stroke: #8ff0b6; flex: none; margin-top: 3px; }
.footer-bottom {
  margin-top: 44px; border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
  font-size: .84rem; color: #9fbdac;
}
.footer-bottom a { color: #9fbdac; }
.footer-bottom a:hover { color: #8ff0b6; }

/* ---------- misc utility ---------- */
.stack-sm > * + * { margin-top: 10px; }
.mt-4 { margin-top: var(--s4); }
.mt-5 { margin-top: var(--s5); }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 6px; }

/* ==========================================================================
   Services — numbered feature rows (this site's signature layout)
   A single bordered panel of divided, numbered rows: big index numeral,
   an icon chip and the service copy. Deliberately NOT an equal card grid.
   ========================================================================== */
.svc-rows {
  max-width: 940px; margin: 0 auto;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: #fff; box-shadow: var(--shadow-sm); overflow: hidden;
}
.svc-row {
  display: grid; grid-template-columns: 76px 58px 1fr;
  align-items: center; gap: 6px 24px;
  padding: 24px 32px; border-top: 1px solid var(--border-2);
  transition: background .18s ease;
}
.svc-row:first-child { border-top: 0; }
.svc-row:hover { background: var(--green-tint2); }
.svc-n {
  font-size: 2.35rem; font-weight: 800; line-height: 1;
  letter-spacing: -.03em; color: var(--green-tint);
  transition: color .18s ease;
}
.svc-row:hover .svc-n { color: var(--green); }
.svc-ico {
  width: 54px; height: 54px; border-radius: 15px; flex: none;
  display: grid; place-items: center; background: var(--green-tint);
}
.svc-ico svg { width: 26px; height: 26px; stroke: var(--green-700); }
.svc-row--accent .svc-ico { background: #fdecea; }
.svc-row--accent .svc-ico svg { stroke: var(--red); }
.svc-row--accent .svc-n { color: #f7d7d3; }
.svc-row--accent:hover .svc-n { color: var(--red); }
.svc-body h3 { margin: 0 0 3px; }
.svc-body p { margin: 0; color: var(--muted); font-size: .98rem; }

/* ==========================================================================
   Forecourt network (England expansion) — flagship banner + station cards
   Placeholder tokens (.ph) are styled to stand out so real details drop in.
   ========================================================================== */
.flagship {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 16px 26px;
  background: var(--green-tint); border: 1px solid var(--border);
  border-left: 5px solid var(--green); border-radius: var(--radius);
  padding: 24px 28px; margin-bottom: 30px;
}
.flagship .fl-badge {
  width: 54px; height: 54px; border-radius: 15px; flex: none;
  background: var(--green); display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.flagship .fl-badge svg { width: 26px; height: 26px; stroke: #fff; }
.flagship .fl-tag {
  display: block; margin-bottom: 3px; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--red);
}
.flagship h3 { margin: 0 0 4px; }
.flagship p { margin: 0; color: var(--muted); font-size: .95rem; }
.flagship .fl-open {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  font-weight: 700; color: var(--green-800); font-size: .95rem;
}
.flagship .fl-open svg { width: 18px; height: 18px; stroke: var(--green-600); flex: none; }

.station-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.station-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.station-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-tint); }
.station-card .st-top { display: flex; align-items: flex-start; gap: 13px; }
.station-card .st-pin {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: var(--green-tint); display: grid; place-items: center;
}
.station-card .st-pin svg { width: 22px; height: 22px; stroke: var(--green-700); }
.station-card .st-num {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green-600);
}
.station-card .st-name { display: block; margin-top: 3px; font-weight: 800; color: var(--green-900); }
.station-card .st-addr { margin: 0; color: var(--muted); font-size: .95rem; }
.station-card .chip--sm { padding: 5px 11px; font-size: .82rem; }
.station-card .st-hours {
  display: flex; align-items: center; gap: 9px; margin-top: auto; padding-top: 2px;
  color: var(--green-900); font-weight: 600; font-size: .92rem;
}
.station-card .st-hours svg { width: 16px; height: 16px; stroke: var(--green-600); flex: none; }

/* placeholder token — deliberately obvious "drop the real detail here" style */
.ph {
  font-style: normal; font-weight: 700;
  background: #fff7e6; color: #9a6b12;
  border: 1px dashed #e6b34d; border-radius: 7px; padding: 1px 8px;
}
.stations-note {
  margin-top: 30px; display: inline-flex; align-items: center; gap: 10px;
  color: var(--muted); font-size: .96rem;
}
.stations-note svg { width: 18px; height: 18px; stroke: var(--green-600); flex: none; }

/* responsive — new components */
@media (max-width: 900px) { .station-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) {
  .svc-row { grid-template-columns: 44px 1fr; padding: 18px 20px; gap: 4px 16px; }
  .svc-n { font-size: 1.4rem; align-self: center; }
  .svc-ico { display: none; }
  .flagship { grid-template-columns: auto 1fr; }
  .flagship .fl-open { grid-column: 1 / -1; }
}
@media (max-width: 600px) { .station-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav-links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 16px 20px 24px; box-shadow: var(--shadow-md);
    transform: translateY(-140%); transition: transform .28s ease; visibility: hidden;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links a { padding: 13px 14px; font-size: 1.05rem; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: inline-flex; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .split-media img { min-height: 260px; }
  .location { grid-template-columns: 1fr; }
  .loc-map { min-height: 260px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 380px) {
  .trust { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
