:root {
  --ink: #172331;
  --muted: #5f6f7c;
  --paper: #fbf9f5;
  --white: #ffffff;
  --blue: #465ca8;
  --blue-dark: #263a79;
  --teal: #1f938f;
  --mint: #dcefeb;
  --coral: #d96d5b;
  --line: #d8e1e5;
  --shadow: 0 24px 70px rgba(23, 35, 49, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(251, 249, 245, 0.92);
  border-bottom: 1px solid rgba(216, 225, 229, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 180px;
}

.brand img {
  width: 132px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--blue);
}

.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(70, 92, 168, 0.24);
}

.button:hover {
  background: var(--blue-dark);
}

.button-outline {
  color: var(--blue-dark);
  border: 1px solid rgba(70, 92, 168, 0.35);
  background: rgba(255, 255, 255, 0.76);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: 130px clamp(20px, 6vw, 76px) 44px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(15, 27, 38, 0.86), rgba(15, 27, 38, 0.45) 48%, rgba(15, 27, 38, 0.14)),
    url("https://images.unsplash.com/photo-1629909613654-28e377c37b09?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  z-index: -1;
  background: linear-gradient(0deg, var(--paper), rgba(251, 249, 245, 0));
}

.hero-content {
  max-width: 790px;
  color: var(--white);
  padding-bottom: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #b7eee3;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 1080px);
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow);
}

.hero-facts div {
  min-height: 106px;
  padding: 22px;
  color: var(--white);
  background: rgba(15, 27, 38, 0.7);
}

.hero-facts strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.section {
  padding: clamp(58px, 9vw, 104px) clamp(20px, 6vw, 76px);
}

.section.alt {
  background: var(--white);
}

.section.mint {
  background: var(--mint);
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head h2,
.legal-content h1 {
  margin-bottom: 12px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head p,
.legal-lead {
  color: var(--muted);
  font-size: 1.07rem;
}

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

.service {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  border-radius: 50%;
  background: var(--teal);
  font-weight: 900;
}

.service h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.service p {
  margin-bottom: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding-left: 32px;
  position: relative;
  color: var(--muted);
}

.feature-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--coral);
  font-size: 1.45rem;
  font-weight: 900;
}

.photo-panel {
  min-height: 520px;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(23, 35, 49, 0.2), rgba(23, 35, 49, 0)),
    url("https://images.unsplash.com/photo-1606811971618-4486d14f3f99?auto=format&fit=crop&w=1100&q=82") center / cover;
  box-shadow: var(--shadow);
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-item {
  min-height: 190px;
  padding: 28px;
  background: var(--white);
}

.contact-item span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  padding: 42px clamp(20px, 6vw, 76px);
  color: rgba(255, 255, 255, 0.82);
  background: #172331;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-links a:hover {
  color: #b7eee3;
}

.legal-hero {
  padding: 108px clamp(20px, 6vw, 76px) 56px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 35, 49, 0.92), rgba(38, 58, 121, 0.76)),
    url("https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?auto=format&fit=crop&w=1800&q=78") center / cover;
}

.legal-hero .brand img {
  filter: brightness(0) invert(1);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 20px 78px;
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.notice {
  padding: 18px 20px;
  border-left: 5px solid var(--teal);
  background: var(--mint);
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
  }

  .hero-facts,
  .service-grid,
  .split,
  .contact-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .photo-panel {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .brand img {
    width: 116px;
  }

  .button,
  .button-outline {
    width: 100%;
  }
}
