:root {
  --bg: #f7f8fb;
  --card: #ffffff;
  --accent: #0d5c63;
  --accent-soft: #eef6f7;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.branding { display: flex; gap: 12px; align-items: center; }
.logo { width: 64px; height: 64px; object-fit: cover; border-radius: 12px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; color: var(--muted); margin: 0 0 4px 0; }
.brand-title { margin: 0; font-weight: 700; font-size: 18px; }
.tagline { margin: 0; color: var(--muted); font-size: 14px; }

.nav { display: flex; gap: 16px; }
.nav a { font-weight: 600; color: var(--text); }
.nav a:hover { color: var(--accent); }

main { padding: 32px; max-width: 1200px; margin: 0 auto; }

.hero {
  background: linear-gradient(135deg, #0d5c63, #0b8793);
  color: white;
  padding: 32px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  box-shadow: var(--shadow);
}
.hero a { color: #ffffff; }
.hero a:hover { color: #ffffff; text-decoration: underline; }
.hero .eyebrow { color: rgba(255, 255, 255, 0.75); }
.hero h1 { margin: 0 0 12px 0; font-size: 36px; }
.hero .lead { color: #e2f6f7; margin: 0 0 16px 0; }
.hero .subtext { color: #d8edf0; margin-top: 12px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 12px 0; }
.hero-card .card { margin-bottom: 16px; }
.quick-contacts p { margin: 4px 0; color: #d8edf0; }
.hero .quick-contacts strong { color: #ffffff; }

.hero .btn.ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}
.hero .btn.ghost:hover {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.10);
}
.hero .btn.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.10);
}
.hero .btn.secondary:hover { background: rgba(255, 255, 255, 0.14); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.list { list-style: none; padding: 0; margin: 0; }
.list-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--border); }
.list-row:last-child { border-bottom: none; }
.hours { font-weight: 700; color: var(--accent); }
.note { font-size: 13px; color: var(--muted); margin: 8px 0 0 0; }

.bullets { margin: 0; padding-left: 18px; color: var(--text); }

.section { margin-top: 32px; background: transparent; }
.section.soft { background: var(--accent-soft); border: 1px solid var(--border); padding: 24px; border-radius: 18px; }
.section-header { margin-bottom: 12px; }
.section-header h2, .section-header h1 { margin: 0 0 8px 0; }
.section-header .lead { color: var(--muted); margin: 0; }

.grid.three { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.grid.two { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }

.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.08s ease, box-shadow 0.12s ease, border 0.12s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn.primary { background: #0d5c63; color: white; box-shadow: var(--shadow); }
.btn.primary:hover { background: #0b4f55; }
.btn.secondary { background: #ffffff; color: var(--accent); border-color: var(--accent); }
.btn.ghost { background: transparent; color: var(--accent); border-color: var(--border); }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.contact p { margin: 6px 0; }

.policy { max-width: 860px; margin: 0 auto; }
.policy-text p { margin: 12px 0; color: var(--text); }
.policy-actions { margin-top: 16px; display: flex; gap: 12px; }

.footer {
  margin-top: 48px;
  padding: 18px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  background: var(--card);
}
.footer-title { margin: 0 0 6px 0; font-weight: 700; color: var(--text); }
.footer-links { display: flex; gap: 12px; }

.link { display: inline-block; margin-right: 12px; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .site-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .nav { flex-wrap: wrap; }
}
