@font-face {
  font-family: 'SUIT Variable';
  font-weight: 100 900;
  src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT@2/fonts/variable/woff2/SUIT-Variable.woff2') format('woff2-variations');
  font-display: swap;
}

:root {
  --c-black-900: #0B0F14;
  --c-yellow-500: #F5C518;
  --c-navy-800: #1E2A32;
  --c-grey-100: #E5E7EB;
  --c-grey-600: #3A4750;
  --font-display: 'SUIT Variable', 'Gothic A1', system-ui, -apple-system, 'Malgun Gothic', sans-serif;
  --font-body: 'Gothic A1', system-ui, -apple-system, 'Malgun Gothic', sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--c-black-900);
  color: var(--c-grey-100);
}
h1, h2, h3, .logo, .time-seg .label { font-family: var(--font-display); }

header { background: var(--c-black-900); border-bottom: 1px solid var(--c-grey-600); }
header .logo { font-weight: 700; font-size: 1.2rem; color: var(--c-yellow-500); }
header nav a { color: var(--c-grey-100); font-size: 0.9rem; opacity: 0.8; }
header nav a:hover, header nav a:focus-visible { opacity: 1; color: var(--c-yellow-500); }

.hero { background: var(--c-navy-800); }
.hero .container { max-width: 720px; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 700; color: #fff; }
.hero .lead { margin-top: 0.9rem; color: #bfc7cd; max-width: 34rem; }
.hero .btn-tel {
  margin-top: 1.4rem;
  display: inline-block;
  background: var(--c-yellow-500);
  color: var(--c-black-900);
  padding: 0.85em 1.7em;
  border-radius: 3px;
  font-weight: 700;
}
.hero .btn-tel:hover { background: #ffd94d; }

main section > h2 { font-size: 1.5rem; color: #fff; margin-bottom: 1.3rem; }
main p { color: #c3cbd1; }
main p + p { margin-top: 0.8rem; }

/* time axis bar, wraps to vertical on mobile */
.timebar { display: flex; border-radius: 4px; overflow: hidden; }
.time-seg {
  flex: 1;
  background: var(--c-navy-800);
  border-right: 1px solid var(--c-black-900);
  padding: 1.1rem 0.9rem;
}
.time-seg:last-child { border-right: none; }
.time-seg.is-open { background: var(--c-grey-600); }
.time-seg .range { display: block; font-size: 0.78rem; color: var(--c-yellow-500); margin-bottom: 0.4rem; }
.time-seg .label { font-size: 1rem; margin-bottom: 0.4rem; }
.time-seg p { font-size: 0.82rem; color: #c3cbd1; }

.note-list { display: grid; gap: 0.8rem; }
.note-list li {
  background: var(--c-navy-800);
  border-left: 3px solid var(--c-yellow-500);
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
  color: #c3cbd1;
}

.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
blockquote.review {
  background: var(--c-navy-800);
  border-radius: 4px;
  padding: 1rem 1.1rem;
  font-size: 0.9rem;
  color: #c3cbd1;
}
blockquote.review cite { display: block; margin-top: 0.5rem; font-style: normal; font-size: 0.8rem; color: var(--c-yellow-500); }

.related-links { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.related-links a {
  border: 1px solid var(--c-grey-600);
  color: var(--c-grey-100);
  border-radius: 3px;
  padding: 0.5em 1.1em;
  font-size: 0.88rem;
}
.related-links a:hover { border-color: var(--c-yellow-500); color: var(--c-yellow-500); }

.cta { background: var(--c-yellow-500); color: var(--c-black-900); }
.cta h3 { color: var(--c-black-900); margin-bottom: 0.6rem; font-family: var(--font-display); font-size: 1.3rem; }
.cta p { color: #2c2404; margin-bottom: 1.1rem; }
.cta a[href^="tel:"] { background: var(--c-black-900); color: var(--c-yellow-500); border-radius: 3px; font-weight: 700; }
.cta a[href^="tel:"]:hover { background: #1a2027; }

footer { background: var(--c-navy-800); color: #9aa4ab; font-size: 0.85rem; }
footer a { color: #9aa4ab; }
footer nav a { margin-right: 0.2rem; }

figcaption { color: #9aa4ab; margin-top: 0.5rem; }

@media (max-width: 760px) {
  .timebar { flex-direction: column; }
  .time-seg { border-right: none; border-bottom: 1px solid var(--c-black-900); }
  .time-seg:last-child { border-bottom: none; }
  .review-grid { grid-template-columns: 1fr; }
}
