:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --bg-alt: #eef3f8;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --text: #101828;
  --muted: #475467;
  --line: #d7dee7;
  --accent: #0f766e;
  --accent-dark: #0b5d57;
  --accent-soft: rgba(15, 118, 110, 0.1);
  --shadow: 0 20px 50px rgba(16, 24, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, #fbfcfe 0%, var(--bg) 44%, var(--bg-alt) 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(251, 252, 254, 0.88);
  border-bottom: 1px solid rgba(215, 222, 231, 0.8);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.brand-mark {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-note {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  padding: 0.25rem 0;
}

.hero {
  padding: 2rem 0 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2rem;
  align-items: center;
  min-height: clamp(540px, 78vh, 760px);
}

.hero-copy {
  padding: 0.75rem 0;
}

.kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.policy h1 {
  margin: 0.55rem 0 1rem;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  margin: 0;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  font-weight: 600;
}

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

.button.primary:hover {
  background: var(--accent-dark);
  color: #fff;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2rem 0 0;
}

.fact {
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
}

.fact dt {
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0 0 0.35rem;
}

.fact dd {
  margin: 0;
  line-height: 1.45;
  font-weight: 600;
  word-break: break-word;
}

.hero-visual {
  margin: 0;
  min-height: 420px;
  border: 1px solid rgba(215, 222, 231, 0.9);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(29, 78, 216, 0.04));
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.section {
  padding: 3rem 0;
}

.section + .section {
  border-top: 1px solid rgba(215, 222, 231, 0.72);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.section-title {
  margin: 0.35rem 0 0;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  line-height: 1.15;
}

.section-copy {
  margin: 0;
  max-width: 46rem;
  color: var(--muted);
  line-height: 1.75;
}

.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 1rem;
  align-items: start;
}

.panel,
.service {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.03);
  padding: 1.2rem;
}

.panel h3,
.service h3 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.panel p {
  margin: 0 0 0.75rem;
  line-height: 1.75;
  color: var(--muted);
}

.panel p:last-child {
  margin-bottom: 0;
}

.profile-list {
  display: grid;
  gap: 0.75rem;
}

.profile-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(215, 222, 231, 0.75);
  line-height: 1.5;
}

.profile-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.profile-row span {
  color: var(--muted);
}

.profile-row strong {
  text-align: right;
  font-weight: 600;
}

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

.service p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-link {
  margin: 1rem 0 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  word-break: break-word;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(215, 222, 231, 0.8);
  color: var(--muted);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
}

.footer-meta strong {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.policy {
  padding: 2rem 0 4rem;
}

.policy h2 {
  margin: 1.7rem 0 0.6rem;
  font-size: 1.14rem;
}

.policy p {
  margin: 0 0 0.9rem;
  line-height: 1.8;
  color: var(--muted);
}

.policy .block {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 1.2rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .contact-grid,
  .service-grid,
  .facts {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1.25rem;
  }

  .hero-visual {
    min-height: 320px;
  }

  .profile-row {
    flex-direction: column;
    gap: 0.25rem;
  }

  .profile-row strong {
    text-align: left;
  }
}
