:root {
  --bg: #FAFAF6;
  --bg-soft: #F1F2EA;
  --ink: #1A1F1B;
  --ink-soft: #4B534C;
  --teal: #1F4B4C;
  --teal-deep: #163636;
  --amber: #E0A030;
  --amber-deep: #B87E1F;
  --line: #D2D6C7;
  --card: #FFFFFF;
  --shadow: 0 1px 2px rgba(20,30,25,0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

header.site {
  position: sticky; top: 0; z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.brand { display: flex; flex-direction: column; line-height: 1.05; text-decoration: none; }
.brand b { font-size: 19px; font-weight: 800; }
.brand span { font-size: 12px; color: var(--ink-soft); font-weight: 500; margin-top: 2px; }
nav.links { display: flex; gap: 28px; font-size: 15px; font-weight: 600; }
nav.links a { text-decoration: none; color: var(--ink-soft); padding: 6px 0; border-bottom: 2px solid transparent; }
nav.links a:hover { color: var(--ink); border-bottom-color: var(--amber); }
@media (max-width: 680px) { nav.links { display: none; } }

.hero { padding: 56px 0 0; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .hero { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(32px, 5vw, 48px); line-height: 1.08; font-weight: 800; margin: 0 0 20px; letter-spacing: -0.5px; }
.hero h1 .hl { color: var(--teal); }
.hero p.lead { font-size: 17px; color: var(--ink-soft); line-height: 1.6; max-width: 46ch; margin: 0 0 28px; font-weight: 500; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; border-radius: 8px; font-weight: 700; font-size: 15px; text-decoration: none; border: 1.5px solid transparent; }
.btn.primary { background: var(--teal); color: #fff; }
.btn.primary:hover { background: var(--teal-deep); }
.btn.ghost { border-color: var(--line); color: var(--ink); }
.btn.ghost:hover { border-color: var(--ink-soft); }

.note { margin-top: 22px; font-size: 13px; color: var(--ink-soft); border-left: 3px solid var(--amber); padding: 8px 12px; background: var(--bg-soft); border-radius: 0 6px 6px 0; max-width: 50ch; }

.board-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.board-head b { font-size: 14px; font-weight: 700; color: var(--teal); }
.board-head span { font-size: 12px; color: var(--ink-soft); }

section { padding: 56px 0; border-top: 1px solid var(--line); }
.sec-head { margin-bottom: 32px; max-width: 60ch; }
.sec-head b.kicker { font-size: 13px; font-weight: 700; color: var(--teal); }
.sec-head h2 { font-size: clamp(24px, 3.4vw, 32px); margin: 6px 0 8px; font-weight: 800; letter-spacing: -0.3px; }
.sec-head p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; margin: 0; }

.tabs { display: inline-flex; background: var(--bg-soft); border-radius: 9px; padding: 4px; margin-bottom: 22px; gap: 4px; }
.tab-btn { border: none; background: transparent; padding: 9px 18px; border-radius: 6px; font-family: inherit; font-size: 14px; font-weight: 700; color: var(--ink-soft); cursor: pointer; }
.tab-btn[aria-selected="true"] { background: var(--card); color: var(--ink); box-shadow: var(--shadow); }
.timetable { display: none; }
.timetable.active { display: block; }
table.tt { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
table.tt th, table.tt td { text-align: left; padding: 13px 16px; font-size: 14.5px; border-bottom: 1px solid var(--line); }
table.tt th { background: var(--bg-soft); font-size: 12.5px; color: var(--ink-soft); font-weight: 700; }
table.tt tr:last-child td { border-bottom: none; }
table.tt td.times { font-variant-numeric: tabular-nums; font-weight: 600; }
.table-wrap { overflow-x: auto; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.contact-card { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 20px; box-shadow: var(--shadow); }
.contact-card .ic { width: 34px; height: 34px; border-radius: 8px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; color: var(--teal); }
.contact-card .lbl { font-size: 12.5px; color: var(--ink-soft); font-weight: 700; margin-bottom: 4px; }
.contact-card .val { font-size: 17px; font-weight: 700; }
.contact-card .val a { text-decoration: none; }
.contact-card .sub { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }

footer { border-top: 1px solid var(--line); padding: 28px 0 40px; font-size: 13px; color: var(--ink-soft); }
