:root {
  --ink: #16233a;
  --ink-soft: #4b5768;
  --teal: #1758a4;
  --teal-dark: #154375;
  --teal-tint: #eaf1f8;
  --paper: #fafbfa;
  --surface: #ffffff;
  --line: #e5e7eb;
  --line-soft: #f1f2f4;
  --gold: #dfce17;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Geist', ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
}
h1, h2, h3, .display {
  font-family: 'Geist', ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.num { font-family: 'Geist Mono', ui-monospace, monospace; font-variant-numeric: tabular-nums; font-feature-settings: 'tnum' 1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px; border-radius: 8px; font-weight: 700; font-size: 15px;
  transition: all .18s ease; cursor: pointer; border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: var(--surface); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,251,250,.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 8px; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 18px;
}
.brand-name { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; }
nav.primary-nav { display: flex; gap: 38px; }
nav.primary-nav a { font-size: 17px; font-weight: 500; color: var(--ink-soft); transition: color .15s ease; }
nav.primary-nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.staff-login {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 7px; font-size: 14px; font-weight: 700;
  border: 1px solid var(--line); color: var(--ink-soft);
  transition: all .15s ease;
}
.staff-login:hover { border-color: var(--ink); color: var(--ink); }
.staff-login svg { width: 15px; height: 15px; }

/* Page banner */
.area-banner { background: var(--ink); color: #fff; padding: 64px 0 52px; }
.breadcrumb { font-size: 13.5px; color: #9aa8bf; margin-bottom: 18px; }
.breadcrumb a { color: #cdd6e4; }
.breadcrumb a:hover { color: #fff; }
.area-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #9fd6d0; margin-bottom: 14px;
}
.area-banner h1 { color: #fff; font-size: 42px; margin-bottom: 12px; }
.area-banner p.lede { color: #cdd6e4; font-size: 16.5px; max-width: 640px; }

/* Content */
.area-content { padding: 72px 0; }
.area-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: start; }
.area-grid h2 { font-size: 26px; margin-bottom: 16px; }
.area-grid p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 16px; }
.pros-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 30px; }
.pros-card h3 { font-size: 18px; margin-bottom: 18px; }
.pros-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.pros-list li { display: flex; gap: 12px; font-size: 14.5px; color: var(--ink-soft); }
.pros-list svg { flex-shrink: 0; width: 19px; height: 19px; stroke: var(--teal-dark); margin-top: 1px; }
.nearby { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.nearby h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 12px; }
.nearby-links { display: flex; flex-wrap: wrap; gap: 8px; }
.nearby-links a {
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px;
  font-size: 13px; font-weight: 500; color: var(--ink-soft); transition: all .15s ease;
}
.nearby-links a:hover { border-color: var(--teal); color: var(--teal-dark); }

/* CTA band (reused pattern) */
.cta-band {
  position: relative; overflow: hidden;
  background-image:
    linear-gradient(100deg, rgba(12,19,33,.88) 0%, rgba(14,22,38,.62) 45%, rgba(16,27,46,.32) 100%),
    url('/images/skyline-dusk.webp');
  background-size: cover, cover;
  background-position: center, center 35%;
  background-repeat: no-repeat, no-repeat;
  color: #fff; border-radius: 20px; padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: 26px; max-width: 460px; }
.cta-band p { color: #b9c3d6; margin-top: 10px; font-size: 15px; }

/* Footer */
footer { background: var(--ink); color: #b9c3d6; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { font-size: 13.5px; color: #8a97ae; margin-top: 14px; max-width: 260px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: #7e8ba3; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: #cdd6e4; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12.5px; color: #7e8ba3; }

@media (max-width: 900px) {
  nav.primary-nav { display: none; }
  .area-grid { grid-template-columns: 1fr; }
  .area-banner h1 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .area-banner { padding: 48px 0 40px; }
  .area-content { padding: 48px 0; }
  .cta-band { padding: 36px 24px; }
}
