@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #f0f7ff;
  --surface:   #ffffff;
  --primary:   #0369a1;
  --primary-dk:#024d78;
  --accent:    #7dd3fc;
  --accent-lt: #bae6fd;
  --border:    #bae6fd;
  --text:      #0c2340;
  --muted:     #6b7280;
  --max-width: 1100px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ── Header ──────────────────────────────────────────────── */
header {
  background: var(--surface);
  padding: 1.5rem 2rem;
  border-bottom: 4px solid var(--primary);
  box-shadow: 0 1px 4px rgba(3,105,161,0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}

header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}

/* ── Main ────────────────────────────────────────────────── */
main {
  max-width: var(--max-width);
  margin: 2.5rem auto;
  padding: 0 2rem;
}

/* ── Info Grid ───────────────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: start;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 1px 4px rgba(3,105,161,0.06);
}

.contact h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
}

.contact-table tr + tr td {
  padding-top: 0.75rem;
}

.contact-table td {
  vertical-align: top;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-table .label {
  font-weight: 600;
  color: var(--primary);
  width: 70px;
  padding-right: 1rem;
  white-space: nowrap;
}

.contact-table a {
  color: var(--primary);
  text-decoration: none;
}

.contact-table a:hover {
  color: var(--primary-dk);
  text-decoration: underline;
}

/* ── Map ─────────────────────────────────────────────────── */
.map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  box-shadow: 0 1px 4px rgba(3,105,161,0.06);
}

.map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: none;
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--primary);
  border-top: 4px solid var(--accent);
  margin-top: 3rem;
  padding: 1.25rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

footer p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.social {
  display: flex;
  gap: 1rem;
}

.social a {
  color: rgba(255,255,255,0.75);
  transition: color 0.15s;
}

.social a:hover { color: var(--accent-lt); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 700px) {
  .info-grid { grid-template-columns: 1fr; }
  .map iframe { height: 260px; }
  header h1 { font-size: 1.3rem; }
  .logo { height: 48px; }
}
