:root {
  --ink: #111820;
  --muted: #5f6d78;
  --line: #dce3e8;
  --paper: #f7f9fa;
  --white: #ffffff;
  --steel: #225a73;
  --teal: #0f7c73;
  --amber: #c98c36;
  --charcoal: #0d141b;
  --shadow: 0 20px 60px rgba(17, 24, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(13, 20, 27, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  letter-spacing: 0;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.82;
}

.site-nav a:hover {
  opacity: 1;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .language-switch,
.legal-page .language-switch,
.subpage .language-switch {
  border-color: rgba(17, 24, 32, 0.16);
  background: rgba(17, 24, 32, 0.04);
}

.language-switch button {
  min-width: 36px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  color: currentColor;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.language-switch button.is-active {
  color: var(--ink);
  background: var(--white);
}

.site-header.is-scrolled .language-switch button.is-active,
.legal-page .language-switch button.is-active,
.subpage .language-switch button.is-active {
  color: var(--white);
  background: var(--teal);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/hero-background.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 13, 18, 0.62) 0%, rgba(7, 13, 18, 0.42) 38%, rgba(7, 13, 18, 0.16) 74%, rgba(7, 13, 18, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 13, 18, 0.34), rgba(7, 13, 18, 0.04) 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 9vh clamp(18px, 7vw, 92px);
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(64px, 13vw, 168px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
}

.button-primary {
  background: var(--teal);
  color: var(--white);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.intro,
.services,
.network,
.contact {
  padding: clamp(66px, 9vw, 118px) clamp(18px, 6vw, 80px);
}

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(30px, 6vw, 82px);
  max-width: 1160px;
  margin: 0 auto;
}

.intro .section-label,
.section-heading,
.network,
.contact-card {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin: 16px 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 17px;
}

.services {
  background: #edf3f4;
}

.section-heading {
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
}

.service-card {
  display: block;
  min-height: 296px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 24, 32, 0.05);
}

.service-link {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-link:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 124, 115, 0.38);
  box-shadow: 0 18px 44px rgba(17, 24, 32, 0.1);
}

.service-number {
  color: var(--teal);
  font-weight: 900;
}

.service-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.read-more {
  display: inline-flex;
  margin-top: 24px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 900;
}

.network {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.region-panel {
  display: grid;
  gap: 12px;
}

.region-panel div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  border-left: 4px solid var(--steel);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(17, 24, 32, 0.06);
}

.region-panel strong {
  color: var(--ink);
}

.region-panel span {
  color: var(--muted);
}

.contact {
  background: var(--charcoal);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.68fr);
  gap: 36px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card p {
  max-width: 620px;
}

address {
  display: grid;
  gap: 8px;
  align-content: center;
  color: var(--muted);
  font-style: normal;
}

address strong {
  color: var(--ink);
}

address a {
  color: var(--steel);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.72);
  background: #091016;
  font-size: 14px;
}

.site-footer a {
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.legal-page {
  background: var(--white);
}

.subpage {
  background: var(--paper);
}

.legal-page .site-header {
  position: sticky;
}

.legal-nav {
  position: static;
  display: flex;
  min-width: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 24px;
}

.legal-content h1 {
  margin: 0 0 34px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1;
}

.legal-content section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  font-size: 24px;
}

.legal-content a {
  color: var(--steel);
  font-weight: 800;
}

.legal-note {
  padding: 18px;
  border-radius: 8px;
  background: #edf3f4;
  color: var(--ink);
}

.business-page {
  padding-top: 78px;
}

.business-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-content: end;
  padding: clamp(90px, 12vw, 150px) clamp(18px, 7vw, 92px) clamp(62px, 8vw, 96px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 13, 18, 0.9), rgba(7, 13, 18, 0.58), rgba(7, 13, 18, 0.2)),
    url("assets/hero-background.jpg") center / cover no-repeat;
}

.business-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(48px, 9vw, 104px);
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.business-hero p:last-child {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.business-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 6vw, 76px);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) clamp(18px, 6vw, 42px);
}

.business-detail h2 {
  max-width: 520px;
}

.business-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-list li {
  padding: 18px 20px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(17, 24, 32, 0.06);
  color: var(--ink);
  font-weight: 750;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    display: none;
    min-width: min(320px, calc(100vw - 36px));
    padding: 14px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .language-switch {
    margin-left: auto;
  }

  .site-nav.is-open {
    display: grid;
  }

  .legal-nav {
    display: flex;
    position: static;
    min-width: 0;
    padding: 0;
    color: inherit;
    background: transparent;
    box-shadow: none;
  }

  .intro-grid,
  .network,
  .contact-card,
  .business-detail {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  .site-header {
    gap: 10px;
  }

  .language-switch button {
    min-width: 32px;
    height: 28px;
    font-size: 11px;
  }

  .hero {
    min-height: 820px;
  }

  .hero h1 {
    font-size: clamp(64px, 22vw, 92px);
  }

  .hero-content {
    margin-bottom: 54px;
  }

  .business-hero {
    min-height: 560px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

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

  .service-card {
    min-height: 0;
  }

  .region-panel div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
