/* TOLO — Sunburst (live site) ───────────────────────────────────────────── */
:root {
  --accent: #FFD400;
  --ink: #0A0A0A;
  --ink-dim: rgba(10,10,10,.65);
  --paper: #FFFBEF;
  --paper-warm: #FFF6DC;
  --rule: rgba(10,10,10,.12);
  --rule-d: rgba(255,255,255,.12);
  --font: 'Space Grotesk', system-ui, sans-serif;
  --mono: 'Geist Mono', ui-monospace, monospace;
  --r-card: 20px;
  --r-pill: 999px;
  --section-py: 120px;
  --container-px: 56px;
  --maxw: 1280px;
}
.density-compact { --section-py: 88px; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--paper); color: var(--ink); font-family: var(--font); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

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

/* ── Buttons ──────────────────────────────────────────────────────────── */
.tolo-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 26px; border-radius: 14px;
  font-size: 17px; font-weight: 600; text-decoration: none;
  border: 0; cursor: pointer; transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
}
.tolo-btn:hover { transform: translateY(-1px); }
.tolo-btn-primary { color: var(--ink); box-shadow: 0 12px 28px rgba(255,212,0,.35); }
.tolo-btn-primary:hover { box-shadow: 0 16px 34px rgba(255,212,0,.45); }
.tolo-btn-ghost { background: transparent; color: var(--paper); border: 1px solid rgba(255,251,239,.7); }
.tolo-btn-ghost:hover { background: rgba(255,251,239,.08); }
.tolo-btn-dark { background: var(--ink); color: var(--paper); }
.tolo-btn-outline-dark { background: transparent; color: var(--ink); border: 1px solid var(--ink); }

/* ── Header ───────────────────────────────────────────────────────────── */
.tolo-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0; transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
  color: var(--paper);
}
.tolo-header.scrolled { background: rgba(10,10,10,.88); backdrop-filter: blur(10px); padding: 12px 0; box-shadow: 0 1px 0 rgba(255,255,255,.08); }
.tolo-header-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--container-px); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.tolo-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.tolo-logo-mark { display: inline-flex; align-items: center; }
.tolo-logo-mark img { height: 34px; width: auto; display: block; }
.tolo-logo-word { font-weight: 700; font-size: 20px; letter-spacing: -.02em; }
.tolo-logo-tag { font-family: var(--mono); font-size: 11px; opacity: .6; letter-spacing: .1em; margin-left: 4px; }
.tolo-nav { display: flex; gap: 28px; font-size: 15px; font-weight: 500; }
.tolo-nav a { color: inherit; text-decoration: none; opacity: .85; transition: opacity .12s; }
.tolo-nav a:hover { opacity: 1; }
.tolo-header-right { display: flex; align-items: center; gap: 14px; }
.tolo-lang { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 12px; background: transparent; border: 0; color: inherit; cursor: pointer; opacity: .85; padding: 6px 10px; border-radius: 999px; }
.tolo-lang:hover { background: rgba(255,255,255,.08); }
.tolo-lang .on { color: var(--paper); }
.tolo-lang span:not(.on):not(.sep) { opacity: .45; }
.tolo-lang .sep { opacity: .35; margin: 0 1px; }
.tolo-cta-phone { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; color: var(--ink); font-weight: 600; font-size: 14px; text-decoration: none; transition: transform .12s; }
.tolo-cta-phone:hover { transform: translateY(-1px); }
.tolo-menu-btn { display: none; background: transparent; border: 0; color: inherit; cursor: pointer; padding: 6px; }
.tolo-mobile-menu { display: none; }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.tolo-hero { position: relative; background: var(--ink); color: var(--paper); padding: 160px 0 80px; overflow: hidden; }
.tolo-hero-sun {
  position: absolute; right: -200px; top: -180px; width: 720px; height: 720px; border-radius: 50%;
  filter: blur(2px); opacity: .9; pointer-events: none;
  animation: tolo-sun-pan 18s ease-in-out infinite alternate;
}
@keyframes tolo-sun-pan {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-30px,40px) scale(1.06); }
}
.tolo-hero-grid { position: relative; display: grid; grid-template-columns: 1.35fr 1fr; gap: 48px; align-items: end; }
.tolo-hero.layout-below .tolo-hero-grid { grid-template-columns: 1fr; }
.tolo-hero.layout-below .tolo-quote { max-width: 720px; margin-top: 40px; }

.tolo-eyebrow-chip { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border: 1px solid var(--accent); border-radius: 999px; font-family: var(--mono); font-size: 12px; margin-bottom: 28px; }
.tolo-pulse { width: 7px; height: 7px; border-radius: 4px; animation: tolo-pulse 1.4s ease-in-out infinite; }
@keyframes tolo-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .55; transform: scale(.8); } }

.tolo-h1 { font-size: clamp(56px, 9vw, 132px); line-height: .9; font-weight: 700; letter-spacing: -.04em; margin: 0; }
.tolo-lede { margin: 28px 0 36px; font-size: clamp(18px, 1.6vw, 22px); max-width: 580px; line-height: 1.4; opacity: .85; }
.tolo-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stat row */
.tolo-stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.12); margin-top: 72px; padding-top: 32px; }
.tolo-stat { padding-right: 24px; }
.tolo-stat-n { font-size: clamp(36px, 4.2vw, 56px); font-weight: 600; letter-spacing: -.03em; line-height: 1; }
.tolo-stat-l { margin-top: 10px; font-size: 13px; opacity: .65; font-family: var(--mono); letter-spacing: .04em; text-transform: uppercase; }

/* ── Quote wizard ─────────────────────────────────────────────────────── */
.tolo-quote {
  background: var(--paper); color: var(--ink); border-radius: var(--r-card); padding: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,.4); border: 1px solid var(--rule);
}
.tolo-quote-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.tolo-quote-head h3 { margin: 0; font-size: 22px; font-weight: 600; letter-spacing: -.01em; }
.tolo-quote-step { font-family: var(--mono); font-size: 11px; opacity: .6; }
.tolo-quote-progress { display: flex; gap: 6px; margin-bottom: 18px; }
.tolo-progress-pill { flex: 1; height: 4px; border-radius: 4px; background: var(--rule); transition: background .2s; }

.tolo-quote-label { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; opacity: .55; margin-bottom: 10px; }
.tolo-quote-step-body { min-height: 240px; }
.tolo-quote-services { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tolo-quote-svc {
  display: flex; align-items: center; gap: 10px; padding: 14px;
  border: 1px solid var(--rule); border-radius: 12px; background: #fff;
  cursor: pointer; text-align: left; font: inherit; color: inherit;
  transition: border-color .12s, transform .1s, background .12s;
}
.tolo-quote-svc:hover { transform: translateY(-1px); border-color: rgba(10,10,10,.3); }
.tolo-quote-svc.on { font-weight: 600; }
.tolo-quote-svc-name { flex: 1; font-size: 14px; font-weight: 500; }
.tolo-quote-svc-from { font-family: var(--mono); font-size: 11px; opacity: .55; }
.tolo-quote-svc.on .tolo-quote-svc-from { opacity: .8; }

.tolo-input { display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; }
.tolo-input > span { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; opacity: .55; }
.tolo-input input, .tolo-input select {
  border: 1px solid var(--rule); border-radius: 10px; padding: 12px 14px;
  font: inherit; font-size: 15px; color: var(--ink); background: #fff; width: 100%;
  transition: border-color .12s;
}
.tolo-input input:focus, .tolo-input select:focus { outline: 0; border-color: var(--ink); }
.tolo-select-wrap { position: relative; }
.tolo-select-wrap select { appearance: none; padding-right: 36px; }
.tolo-select-wrap svg { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; opacity: .5; }
.tolo-quote-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.tolo-quote-estimate { margin-top: 14px; padding: 16px; border: 2px solid var(--accent); border-radius: 12px; background: #fff; }
.tolo-quote-estimate-label { font-family: var(--mono); font-size: 11px; opacity: .55; letter-spacing: .06em; text-transform: uppercase; }
.tolo-quote-estimate-val { font-size: 28px; font-weight: 700; letter-spacing: -.02em; margin-top: 2px; }
.tolo-quote-estimate-fine { font-size: 12px; opacity: .6; margin-top: 2px; font-family: var(--mono); }

.tolo-quote-actions { display: flex; gap: 8px; margin-top: 14px; }
.tolo-quote-back { padding: 14px 18px; background: transparent; border: 1px solid var(--rule); border-radius: 12px; cursor: pointer; }
.tolo-quote-next {
  flex: 1; padding: 14px; background: var(--ink); color: var(--paper); border: 0; border-radius: 12px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: opacity .12s;
}
.tolo-quote-next:disabled { opacity: .35; cursor: not-allowed; }
.tolo-quote-fine { margin-top: 10px; font-size: 12px; opacity: .6; text-align: center; font-family: var(--mono); }

.tolo-quote-captcha { margin-top: 12px; }
.tolo-quote-captcha .tolo-quote-captcha-err {
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em; text-transform: none;
  color: #C0392B; opacity: 1; margin-top: 2px;
}

.tolo-quote-done { display: flex; flex-direction: column; align-items: center; padding: 20px 0; }
.tolo-quote-done-ring { width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--accent); background: var(--accent); display: grid; place-items: center; margin-bottom: 14px; animation: tolo-pop .35s ease; }
@keyframes tolo-pop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.tolo-quote-done-msg { font-size: 18px; font-weight: 600; margin-bottom: 14px; text-align: center; }
.tolo-quote-done-sum { width: 100%; font-size: 13px; }
.tolo-quote-done-sum > div { display: flex; justify-content: space-between; padding: 8px 0; border-top: 1px solid var(--rule); }
.tolo-quote-done-sum span { opacity: .6; font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.tolo-quote-call-now { margin-top: 14px; font-size: 14px; font-weight: 600; text-decoration: none; }

/* ── Section helpers ──────────────────────────────────────────────────── */
.tolo-section { padding: var(--section-py) 0; }
.tolo-section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 56px; }
.tolo-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; opacity: .6; }
.tolo-eyebrow-on-dark { color: var(--paper); opacity: .55; }
.tolo-eyebrow-on-yellow { color: var(--ink); opacity: .55; }
.tolo-h2 { font-size: clamp(40px, 5.5vw, 72px); font-weight: 600; letter-spacing: -.03em; line-height: 1; margin: 12px 0 0; }
.tolo-h2-on-dark { color: var(--paper); }
.tolo-h2-on-yellow { color: var(--ink); }
.tolo-section-lede { max-width: 380px; font-size: 18px; line-height: 1.5; opacity: .7; margin: 0; }

/* ── Why TOLO ─────────────────────────────────────────────────────────── */
.tolo-why { background: var(--paper); }
.tolo-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tolo-why-card { border-radius: var(--r-card); padding: 44px; min-height: 380px; display: flex; flex-direction: column; }
.tolo-why-card--dark  { background: var(--ink); color: var(--paper); }
.tolo-why-card--light { background: #fff; color: var(--ink); border: 1px solid var(--rule); }
.tolo-why-stat { font-size: clamp(80px, 9vw, 128px); font-weight: 700; letter-spacing: -.04em; line-height: .9; }
.tolo-why-headline { font-size: 28px; font-weight: 600; letter-spacing: -.02em; margin-top: 24px; }
.tolo-why-body { font-size: 16px; line-height: 1.55; opacity: .75; margin: 12px 0 28px; max-width: 460px; }
.tolo-why-meter { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.tolo-why-meter-row { display: grid; grid-template-columns: 70px 1fr 70px; gap: 12px; align-items: center; font-family: var(--mono); font-size: 12px; }
.tolo-why-meter-row span { opacity: .65; letter-spacing: .04em; }
.tolo-why-meter-row b { text-align: right; font-weight: 600; }
.tolo-why-meter-row--dim { opacity: .55; }
.tolo-bar { height: 8px; background: rgba(255,255,255,.08); border-radius: 8px; overflow: hidden; }
.tolo-bar.light { background: rgba(10,10,10,.08); }
.tolo-bar-fill { height: 100%; border-radius: 8px; transition: width .4s ease; }

.tolo-why-extras { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.tolo-why-extra { display: flex; gap: 16px; align-items: flex-start; padding: 24px; border: 1px solid var(--rule); border-radius: 16px; background: #fff; }
.tolo-why-extra-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex: 0 0 44px; }
.tolo-why-extra-t { font-weight: 600; font-size: 16px; }
.tolo-why-extra-d { font-size: 14px; opacity: .7; margin-top: 4px; line-height: 1.5; }

/* ── Services ─────────────────────────────────────────────────────────── */
.tolo-services { background: var(--paper); border-top: 1px solid var(--rule); }
.tolo-svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tolo-svc-card {
  border: 1px solid var(--rule); border-radius: var(--r-card); padding: 36px;
  display: flex; flex-direction: column; min-height: 300px; position: relative;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease;
  background: #fff;
}
.tolo-svc-card.is-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tolo-svc-card:hover { transform: translateY(-3px); box-shadow: 0 24px 60px rgba(0,0,0,.12); }
.tolo-svc-card.is-dark:hover { box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.tolo-svc-top { display: flex; justify-content: space-between; align-items: flex-start; }
.tolo-svc-icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; }
.tolo-svc-num { font-family: var(--mono); font-size: 12px; opacity: .6; }
.tolo-svc-title { font-size: 30px; font-weight: 600; letter-spacing: -.02em; margin: 28px 0 10px; }
.tolo-svc-blurb { font-size: 16px; line-height: 1.5; opacity: .78; margin: 0; flex: 1; }
.tolo-svc-extra { max-height: 0; overflow: hidden; transition: max-height .35s ease, margin-top .25s; opacity: 0; }
.tolo-svc-extra.shown { max-height: 280px; margin-top: 20px; opacity: 1; }
.tolo-svc-extra ul { list-style: none; padding: 0; margin: 0 0 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; font-size: 14px; }
.tolo-svc-extra li { display: inline-flex; align-items: center; gap: 8px; }
.tolo-svc-from { font-family: var(--mono); font-weight: 600; font-size: 13px; letter-spacing: .04em; }
.tolo-svc-foot { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; }
.tolo-svc-more { font-weight: 600; font-size: 14px; }

/* ── How it works ─────────────────────────────────────────────────────── */
.tolo-how { background: var(--ink); color: var(--paper); }
.tolo-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.tolo-how-card { padding: 36px; border: 1px solid var(--rule-d); border-radius: var(--r-card); }
.tolo-how-num { font-size: 72px; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.tolo-how-t { font-size: 26px; font-weight: 600; margin: 16px 0 10px; }
.tolo-how-d { font-size: 16px; opacity: .7; line-height: 1.55; margin: 0; }

/* ── Coverage ─────────────────────────────────────────────────────────── */
.tolo-coverage { background: var(--paper); }
.tolo-coverage-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: stretch; }
.tolo-coverage-sub { font-size: 18px; line-height: 1.55; opacity: .75; max-width: 460px; margin: 20px 0 24px; }
.tolo-neighborhoods { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tolo-chip { padding: 6px 12px; border: 1px solid var(--rule); border-radius: 999px; font-size: 13px; background: #fff; }
.tolo-coverage-zones { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tolo-zone { padding: 18px; border: 1px solid var(--rule); border-radius: 14px; background: #fff; display: flex; justify-content: space-between; align-items: center; }
.tolo-zone-tag { font-family: var(--mono); font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.tolo-zone-eta { font-family: var(--mono); font-size: 14px; opacity: .7; }
.tolo-map-wrap { aspect-ratio: 10/8; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--rule); background: var(--ink); }

/* City toggle */
.tolo-coverage-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.tolo-city-tabs { display: inline-flex; gap: 6px; padding: 5px; border: 1px solid var(--rule); border-radius: 999px; background: #fff; }
.tolo-city-tab { appearance: none; border: 1px solid transparent; background: transparent; color: inherit; font: inherit; font-weight: 600; font-size: 15px; padding: 9px 26px; border-radius: 999px; cursor: pointer; transition: color .14s, border-color .14s; }
.tolo-city-tab:hover:not(.on) { background: rgba(10,10,10,.05); }
.tolo-chip--cross { background: rgba(255,212,0,.1); font-weight: 600; }
.tolo-coverage-arealabel { font-family: var(--mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; opacity: .55; margin-bottom: 12px; }

/* Ottawa↔Toronto corridor card */
.tolo-corridor { background: var(--ink); color: var(--paper); border-radius: var(--r-card); padding: 38px; display: flex; flex-direction: column; }
.tolo-corridor-tag { font-family: var(--mono); font-weight: 600; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.tolo-corridor-route { display: flex; align-items: center; gap: 14px; margin: 30px 0 34px; }
.tolo-corridor-stop { display: flex; align-items: center; gap: 9px; }
.tolo-corridor-dot { width: 11px; height: 11px; border-radius: 50%; flex: none; box-shadow: 0 0 0 4px rgba(255,212,0,.16); }
.tolo-corridor-city { font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.tolo-corridor-link { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.tolo-corridor-rail { width: 100%; height: 2px; border-radius: 2px; opacity: .55; }
.tolo-corridor-dist { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; }
.tolo-corridor-head { font-size: 26px; font-weight: 700; letter-spacing: -.02em; margin: 0 0 12px; }
.tolo-corridor-body { font-size: 16px; line-height: 1.55; opacity: .72; margin: 0 0 24px; max-width: 42ch; }
.tolo-corridor-meta { margin-top: auto; display: flex; flex-direction: column; gap: 12px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; }
.tolo-corridor-meta span { display: flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 13px; letter-spacing: .03em; opacity: .85; }
.tolo-corridor-meta svg { flex: none; }

/* Corridor as a full-width strip under the Toronto map */
.tolo-corridor--strip { margin-top: 22px; padding: 34px 44px; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
.tolo-corridor--strip .tolo-corridor-route { margin: 20px 0 0; }
.tolo-corridor-detail { border-left: 1px solid rgba(255,255,255,.12); padding-left: 48px; }
.tolo-corridor--strip .tolo-corridor-head { margin-top: 0; }
.tolo-corridor--strip .tolo-corridor-body { margin-bottom: 18px; max-width: 56ch; }
.tolo-corridor--strip .tolo-corridor-meta { margin-top: 0; flex-direction: row; flex-wrap: wrap; gap: 10px 28px; border-top: none; padding-top: 0; }
@media (max-width: 980px) {
  .tolo-corridor--strip { grid-template-columns: 1fr; gap: 30px; }
  .tolo-corridor-detail { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,.12); padding-top: 28px; }
}

/* ── Reviews ──────────────────────────────────────────────────────────── */
.tolo-reviews { color: var(--ink); }
.tolo-reviews-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 48px; }
.tolo-reviews-rating { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.tolo-stars { display: flex; gap: 2px; }
.tolo-rating-text { font-family: var(--mono); font-size: 13px; }
.tolo-reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tolo-review { background: var(--paper); padding: 28px; border-radius: var(--r-card); margin: 0; }
.tolo-review blockquote { font-size: 22px; line-height: 1.4; margin: 12px 0 20px; letter-spacing: -.01em; font-weight: 500; }
.tolo-review figcaption { font-family: var(--mono); font-size: 12px; opacity: .6; }

/* ── Booking ──────────────────────────────────────────────────────────── */
.tolo-booking { background: var(--paper-warm); border-top: 1px solid var(--rule); }
.tolo-booking-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; align-items: start; }
.tolo-cal { background: #fff; border: 1px solid var(--rule); border-radius: var(--r-card); padding: 28px; }
.tolo-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.tolo-cal-month { font-size: 22px; font-weight: 600; letter-spacing: -.01em; }
.tolo-cal-nav { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--rule); background: #fff; cursor: pointer; display: grid; place-items: center; }
.tolo-cal-nav:first-child svg { transform: rotate(180deg); }
.tolo-cal-nav:hover { background: var(--paper-warm); }
.tolo-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.tolo-cal-dow { font-family: var(--mono); font-size: 11px; opacity: .5; text-align: center; padding: 8px 0; }
.tolo-cal-cell {
  aspect-ratio: 1; border: 1px solid var(--rule); border-radius: 10px; background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  font: inherit; cursor: pointer; transition: background .12s, border-color .12s, transform .1s;
}
.tolo-cal-cell:hover:not(:disabled) { transform: translateY(-1px); border-color: var(--ink); }
.tolo-cal-cell-d { font-size: 16px; font-weight: 500; }
.tolo-cal-cell-s { font-size: 9px; font-family: var(--mono); opacity: .55; }
.tolo-cal-cell-s--muted { opacity: .35; letter-spacing: .04em; }
.tolo-cal-cell.is-past { background: transparent; border-color: transparent; color: rgba(10,10,10,.25); cursor: default; }
.tolo-cal-cell.is-full { opacity: .4; cursor: not-allowed; }
.tolo-cal-cell.is-full .tolo-cal-cell-s { color: var(--ink); }
.tolo-cal-cell--empty { background: transparent; border: 0; cursor: default; pointer-events: none; }
.tolo-cal-legend { display: flex; gap: 18px; margin-top: 16px; font-family: var(--mono); font-size: 11px; opacity: .6; }
.tolo-cal-legend .dot { display: inline-block; width: 8px; height: 8px; border-radius: 4px; margin-right: 6px; vertical-align: middle; }
.tolo-cal-legend .dot-empty { border: 1px solid rgba(10,10,10,.3); background: transparent; }

.tolo-cal-side { background: var(--ink); color: var(--paper); border-radius: var(--r-card); padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.tolo-cal-side-head { border-bottom: 1px solid var(--rule-d); padding-bottom: 16px; }
.tolo-cal-side-label { font-family: var(--mono); font-size: 11px; opacity: .55; letter-spacing: .06em; text-transform: uppercase; }
.tolo-cal-side-date { font-size: 22px; font-weight: 600; margin-top: 6px; letter-spacing: -.01em; }
.tolo-cal-windows { display: flex; flex-direction: column; gap: 8px; }
.tolo-cal-win {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; background: rgba(255,255,255,.04); border: 1px solid var(--rule-d); border-radius: 12px;
  color: inherit; cursor: pointer; font: inherit; font-size: 15px; transition: background .12s;
}
.tolo-cal-win:hover:not(.is-disabled) { background: rgba(255,255,255,.08); }
.tolo-cal-win.is-disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.tolo-cal-win-tag { font-family: var(--mono); font-size: 11px; opacity: .65; }
.tolo-cal-hold {
  padding: 16px; border-radius: 12px; border: 0; cursor: pointer;
  font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 6px;
}
.tolo-cal-hold:disabled { opacity: .35; cursor: not-allowed; }
.tolo-cal-fineprint { font-family: var(--mono); font-size: 11px; opacity: .55; letter-spacing: .04em; }

/* Booking hold form + confirmation */
.tolo-cal-form { display: flex; flex-direction: column; gap: 6px; }
.tolo-cal-form .tolo-input { margin-bottom: 4px; }
.tolo-cal-form .tolo-input > span { color: var(--paper); opacity: .6; }
.tolo-cal-form-actions { display: flex; gap: 8px; margin-top: 8px; }
.tolo-cal-form-actions .tolo-cal-hold { flex: 1; margin-top: 0; }
.tolo-cal-back {
  padding: 16px 18px; background: transparent; border: 1px solid var(--rule-d); border-radius: 12px;
  color: var(--paper); cursor: pointer; font: inherit; font-weight: 600; font-size: 15px;
}
.tolo-cal-back:disabled { opacity: .4; cursor: not-allowed; }
.tolo-cal-err { font-family: var(--mono); font-size: 12px; color: #FF9B8A; line-height: 1.5; }
.tolo-cal-err a { color: var(--accent); }
.tolo-cal-confirm { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 14px 0; }
.tolo-cal-confirm-ring {
  width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center; background: var(--accent);
}
.tolo-cal-confirm-msg { font-size: 18px; font-weight: 600; line-height: 1.4; letter-spacing: -.01em; max-width: 32ch; }
.tolo-cal-confirm-sum { font-family: var(--mono); font-size: 13px; opacity: .7; }
.tolo-cal-restart {
  margin-top: 4px; padding: 12px 18px; background: transparent; border: 1px solid var(--rule-d);
  border-radius: 12px; color: var(--paper); cursor: pointer; font: inherit; font-size: 14px; font-weight: 500;
}

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.tolo-faq { background: var(--paper); border-top: 1px solid var(--rule); }
.tolo-faq-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; gap: 40px; }
.tolo-faq-ask { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border: 1px solid var(--rule); border-radius: 999px; font-size: 14px; text-decoration: none; }
.tolo-faq-ask:hover { background: #fff; }
.tolo-faq-list { border-top: 1px solid var(--rule); }
.tolo-faq-row { border-bottom: 1px solid var(--rule); }
.tolo-faq-q {
  width: 100%; display: grid; grid-template-columns: 60px 1fr 32px; align-items: center; gap: 16px;
  padding: 24px 0; background: transparent; border: 0; cursor: pointer; text-align: left; font: inherit;
  transition: padding .15s;
}
.tolo-faq-q-num { font-family: var(--mono); font-size: 14px; font-weight: 600; }
.tolo-faq-q-t { font-size: 22px; font-weight: 500; letter-spacing: -.01em; }
.tolo-faq-row.is-open .tolo-faq-q { padding-bottom: 8px; }
.tolo-faq-a { padding: 0 0 24px 76px; font-size: 16px; line-height: 1.6; opacity: .75; max-width: 720px; }

/* ── Blog ─────────────────────────────────────────────────────────────── */
.tolo-blog { background: var(--ink); color: var(--paper); }
.tolo-blog .tolo-eyebrow { opacity: .55; color: var(--paper); }
.tolo-blog .tolo-h2 { color: var(--paper); }
.tolo-blog-all { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; opacity: .85; text-decoration: none; cursor: pointer; }
.tolo-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tolo-blog-card { display: flex; flex-direction: column; gap: 16px; text-decoration: none; color: inherit; cursor: pointer; position: relative; transition: transform .15s; }
.tolo-blog-card:hover { transform: translateY(-3px); }
.tolo-blog-meta { font-family: var(--mono); font-size: 11px; opacity: .6; letter-spacing: .06em; text-transform: uppercase; }
.tolo-blog-title { font-size: 22px; font-weight: 500; letter-spacing: -.01em; line-height: 1.25; }
.tolo-blog-arrow { position: absolute; top: 16px; right: 16px; background: var(--ink); color: var(--paper); width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; }

/* ── Final CTA ────────────────────────────────────────────────────────── */
.tolo-final { padding: 96px 0; }
.tolo-final-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.tolo-final-h { font-size: clamp(40px, 5.5vw, 80px); font-weight: 600; letter-spacing: -.03em; line-height: 1; margin: 0; color: var(--ink); }
.tolo-final-ctas { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }

/* ── Footer ───────────────────────────────────────────────────────────── */
.tolo-footer { background: var(--ink); color: var(--paper); padding: 88px 0 32px; }
.tolo-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.tolo-footer-word { font-size: 88px; font-weight: 700; letter-spacing: -.04em; line-height: .9; }
.tolo-footer-tag { margin-top: 16px; opacity: .7; max-width: 340px; font-size: 15px; line-height: 1.5; }
.tolo-footer-h { font-family: var(--mono); font-size: 11px; opacity: .55; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.tolo-footer-grid .dim { opacity: .75; font-size: 15px; }
.tolo-footer-grid > div > div:not(.tolo-footer-h):not(.tolo-footer-links) { font-size: 16px; padding: 2px 0; }
.tolo-footer-links { display: flex; flex-direction: column; gap: 6px; font-size: 15px; opacity: .8; }
.tolo-footer-links a { text-decoration: none; color: inherit; }
.tolo-footer-bottom { display: flex; justify-content: space-between; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--rule-d); font-family: var(--mono); font-size: 12px; opacity: .5; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --container-px: 32px; --section-py: 88px; }
  .tolo-hero { padding: 132px 0 60px; }
  .tolo-hero-grid { grid-template-columns: 1fr; }
  .tolo-stat-row { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .tolo-why-grid, .tolo-svc-grid, .tolo-reviews-grid, .tolo-booking-grid, .tolo-coverage-grid { grid-template-columns: 1fr; }
  .tolo-how-grid, .tolo-why-extras, .tolo-blog-grid { grid-template-columns: 1fr 1fr; }
  .tolo-final-inner { grid-template-columns: 1fr; }
  .tolo-final-ctas { align-items: flex-start; }
  .tolo-footer-grid { grid-template-columns: 1fr 1fr; }
  .tolo-section-head, .tolo-reviews-head, .tolo-faq-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .tolo-nav { display: none; }
  .tolo-menu-btn { display: block; }
}
@media (max-width: 640px) {
  :root { --container-px: 20px; --section-py: 72px; }
  .tolo-logo-tag { display: none; }
  .tolo-cta-phone span { display: none; }
  .tolo-cta-phone { padding: 10px; }
  .tolo-hero { padding: 112px 0 48px; }
  .tolo-h1 { font-size: 58px; }
  .tolo-hero-ctas { flex-direction: column; align-items: stretch; }
  .tolo-btn { justify-content: center; }
  .tolo-quote { padding: 22px; }
  .tolo-quote-services { grid-template-columns: 1fr; }
  .tolo-quote-grid2 { grid-template-columns: 1fr; }
  .tolo-stat-row { grid-template-columns: 1fr 1fr; }
  .tolo-why-card { padding: 28px; }
  .tolo-why-stat { font-size: 80px; }
  .tolo-why-extras, .tolo-how-grid, .tolo-blog-grid, .tolo-coverage-zones, .tolo-svc-extra ul { grid-template-columns: 1fr; }
  .tolo-footer-grid { grid-template-columns: 1fr; }
  .tolo-footer-word { font-size: 72px; }
  .tolo-faq-q { grid-template-columns: 40px 1fr 24px; gap: 10px; }
  .tolo-faq-q-t { font-size: 18px; }
  .tolo-faq-a { padding-left: 50px; }
  .tolo-mobile-menu { display: flex; flex-direction: column; padding: 16px var(--container-px) 24px; background: var(--ink); border-top: 1px solid var(--rule-d); gap: 14px; }
  .tolo-mobile-menu a { color: inherit; text-decoration: none; font-size: 17px; padding: 8px 0; }
  .tolo-mobile-cta { padding: 14px 18px; border-radius: 999px; color: var(--ink) !important; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; }
  .tolo-hero-sun { width: 460px; height: 460px; right: -120px; top: -120px; }
}
