:root {
  color-scheme: light;
  --ink: #15171b;
  --muted: #626b78;
  --line: #e3e7ed;
  --panel: #f4f6f8;
  --white: #ffffff;
  --charcoal: #20242b;
  --graphite: #343a43;
  --gold: #b98b3d;
  --teal: #2f8580;
  --shadow: 0 24px 70px rgba(17, 22, 28, 0.18);
}

@font* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(560px, 62vw);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 14px;
  padding: 5px;
  border: 1px solid rgba(185, 139, 61, 0.72);
  border-radius: 999px;
  background: rgba(185, 139, 61, 0.16);
  box-shadow: 0 10px 28px rgba(17, 22, 28, 0.12);
  color: var(--charcoal);
}

.language-switch a,
.language-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  min-width: 88px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.language-switch a {
  color: var(--ink);
  background: var(--white);
}

.language-current {
  color: var(--charcoal);
  background: var(--gold);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 76vh;
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(21, 23, 27, 0.96), rgba(52, 58, 67, 0.9)),
    radial-gradient(circle at 78% 20%, rgba(185, 139, 61, 0.26), transparent 30%),
    var(--charcoal);
  color: var(--white);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6.2vw, 82px);
  font-weight: 750;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-logo {
  display: block;
  width: min(700px, 86vw);
  height: auto;
  margin-bottom: 34px;
}

.lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 20px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  color: var(--charcoal);
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.button.secondary.dark {
  color: var(--charcoal);
  border-color: rgba(32, 36, 43, 0.28);
}

.notice {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.hero-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 540px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #0e1218;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: block;
  object-fit: cover;
  object-position: 18% 48%;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.72));
}

.hero-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--white);
}

.hero-photo strong {
  font-size: 24px;
}

.hero-photo span {
  color: rgba(255, 255, 255, 0.76);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.feature-strip div {
  min-height: 190px;
  padding: 30px clamp(20px, 5vw, 72px);
  border-right: 1px solid var(--line);
}

.feature-strip div:last-child {
  border-right: 0;
}

.feature-strip span,
.card-number {
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
}

.feature-strip strong {
  display: block;
  margin-top: 34px;
  font-size: 23px;
}

.feature-strip p {
  max-width: 300px;
  margin: 8px 0 0;
  color: var(--muted);
}

.section {
  padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 72px);
}

.intro,
.split,
.consultation,
.contact,
.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.section h2 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 720;
  line-height: 1.06;
  letter-spacing: 0;
}

.section p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.section-heading p:not(.eyebrow) {
  max-width: 860px;
  margin-top: 14px;
}

.about {
  align-items: center;
  background: var(--panel);
}

.about p + p {
  margin-top: 18px;
}

.about-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.about-points li {
  position: relative;
  padding-left: 24px;
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 700;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 2px;
  background: var(--gold);
}

.about-photo {
  overflow: hidden;
  min-height: 420px;
  border-radius: 8px;
  background: var(--charcoal);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: 54% 46%;
}

.credential {
  max-width: 620px;
  margin-top: 18px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(98, 107, 120, 0.22);
  color: var(--muted) !important;
  font-size: 13px !important;
  font-weight: 400;
  line-height: 1.45;
}

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

.card {
  min-height: 265px;
  padding: 24px;
  border: 1px solid #d8dee6;
  border-radius: 8px;
  background: var(--white);
}

.card h3 {
  margin: 46px 0 14px;
  font-size: 21px;
}

.card p {
  font-size: 16px;
}

.split,
.consultation {
  background: var(--panel);
}

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

.steps li {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.steps strong {
  color: var(--charcoal);
}

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

.consultation {
  align-items: center;
}

.consultation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-self: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  color: var(--teal);
  font-size: 20px;
  font-weight: 700;
}

footer {
  display: grid;
  gap: 10px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--charcoal);
  font-size: 13px;
}

footer p {
  max-width: 980px;
  margin: 0;
}

@media (max-width: 900px) {
  .site-header,
  .hero,
  .intro,
  .split,
  .consultation,
  .contact,
  .about {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
  }

  nav {
    justify-content: flex-start;
  }

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

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

  .feature-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .brand {
    width: min(330px, 84vw);
  }

  .hero {
    min-height: auto;
  }

  .lead {
    font-size: 18px;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 440px;
  }

  .cards,
  .steps li {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }
}
