:root {
  color-scheme: light;
  --ink: #151719;
  --muted: #5d6670;
  --soft: #f3f0ea;
  --paper: #fbfaf7;
  --line: rgba(21, 23, 25, 0.14);
  --dark: #111418;
  --dark-soft: #1d2327;
  --teal: #0d8277;
  --teal-dark: #075b54;
  --amber: #b9852e;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 20, 24, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(17, 20, 24, 0.92);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
  letter-spacing: 0;
}

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

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a,
.language-toggle {
  padding: 10px 14px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.language-toggle:hover,
.language-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 900;
}

.language-toggle [data-language-next] {
  color: rgba(255, 255, 255, 0.5);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  background: rgba(17, 20, 24, 0.28);
  color: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

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

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 14, 18, 0.9) 0%, rgba(10, 14, 18, 0.68) 34%, rgba(10, 14, 18, 0.2) 72%),
    linear-gradient(0deg, rgba(10, 14, 18, 0.82) 0%, rgba(10, 14, 18, 0.08) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 88px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark .eyebrow {
  color: #7edbd2;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.4vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.lead {
  max-width: 670px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
}

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

.section,
.band {
  padding: clamp(72px, 10vw, 124px) 0;
}

.band {
  background: var(--soft);
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: center;
}

.statement blockquote {
  margin: 0;
  padding-left: clamp(22px, 3vw, 38px);
  border-left: 4px solid var(--amber);
  color: #22262a;
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  line-height: 1.18;
  font-weight: 750;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: stretch;
}

.feature-photo {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d9d6ce;
  box-shadow: var(--shadow);
}

.feature-photo img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.feature-photo.tall img {
  min-height: 560px;
}

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

.service-card,
.process article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  padding: 24px;
}

.service-card span,
.process span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card p,
.process p {
  color: var(--muted);
}

.dark {
  background: var(--dark);
  color: var(--white);
}

.credibility-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.credibility-grid > div:first-child p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-item {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--dark-soft);
}

.proof-item strong {
  display: block;
  margin-bottom: 18px;
  color: #7edbd2;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1;
}

.proof-item span,
.proof-item small {
  display: block;
}

.proof-item span {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.proof-item small {
  color: rgba(255, 255, 255, 0.6);
}

.image-split {
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
}

.image-split p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.07rem;
}

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

.checks li {
  position: relative;
  padding-left: 30px;
  color: #30363c;
}

.checks li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 15px;
  height: 10px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
}

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

.process article {
  padding: 24px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
}

.contact-grid p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

address {
  margin: 28px 0 14px;
  color: #30363c;
  font-style: normal;
  font-weight: 750;
}

.map-link {
  display: inline-flex;
  color: var(--teal-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #30363c;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffefa;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 130, 119, 0.12);
}

.form-note {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--white);
  font-weight: 800;
}

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

  .primary-nav {
    position: absolute;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(17, 20, 24, 0.96);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  }

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

  .primary-nav a {
    padding: 13px 12px;
  }

  .language-toggle {
    justify-content: center;
    width: 100%;
    min-height: 46px;
  }

  .split,
  .service-layout,
  .credibility-grid,
  .image-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 14, 18, 0.92) 0%, rgba(10, 14, 18, 0.72) 100%),
      linear-gradient(0deg, rgba(10, 14, 18, 0.8) 0%, rgba(10, 14, 18, 0.12) 60%);
  }

  .hero-content {
    width: min(var(--max), calc(100% - 32px));
    padding: 126px 0 54px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-grid,
  .proof-list,
  .process {
    grid-template-columns: 1fr;
  }

  .feature-photo img,
  .feature-photo.tall img {
    min-height: 300px;
  }

  .statement blockquote {
    padding-left: 20px;
    font-size: 1.3rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
