:root {
  color-scheme: light;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-muted: #eef2f7;
  --text: #1f2937;
  --muted: #5b6472;
  --border: #d8dee8;
  --accent: #1f6feb;
  --accent-dark: #174ea6;
  --shadow: 0 16px 40px rgba(31, 41, 55, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  min-width: 180px;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-link,
.dropdown-button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.94rem;
  text-decoration: none;
  padding: 8px 12px;
  cursor: pointer;
}

.nav-link:hover,
.nav-link:focus-visible,
.dropdown:focus-within .dropdown-button,
.dropdown:hover .dropdown-button {
  border-color: var(--border);
  background: var(--surface-muted);
  outline: none;
}

.dropdown {
  position: relative;
}

.dropdown-button::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 8px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  width: max-content;
  min-width: 240px;
  max-width: min(320px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: grid;
  gap: 4px;
}

.dropdown-menu a {
  display: block;
  border-radius: 6px;
  color: var(--text);
  font-size: 0.92rem;
  text-decoration: none;
  padding: 9px 10px;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--surface-muted);
  outline: none;
}

.main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.hero {
  display: grid;
  gap: 24px;
  max-width: 820px;
  padding: 48px 0 40px;
}

.eyebrow {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  font-size: 1.4rem;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.lede {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  padding: 10px 16px;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.button:hover,
.button:focus-visible {
  border-color: var(--accent-dark);
  outline: none;
}

.section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 150px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 20px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
}

.card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.placeholder {
  display: grid;
  align-content: center;
  min-height: 360px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 32px;
}

.placeholder p,
.contact-list p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.contact-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
}

.footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
  padding: 24px 0;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
    width: 100%;
  }

  .dropdown-menu {
    left: 0;
    right: auto;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .main {
    padding-top: 32px;
  }
}
