:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #5e6878;
  --line: #dfe4ec;
  --paper: #f7f8fa;
  --white: #ffffff;
  --blue: #14213d;
  --steel: #4a5568;
  --red: #cf3f2f;
  --amber: #f2b84b;
  --shadow: 0 24px 70px rgba(23, 32, 51, .14);
}

* {
  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;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 33, 61, .04) 1px, transparent 1px),
    linear-gradient(rgba(20, 33, 61, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 65%);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 248, 250, .92);
  border-bottom: 1px solid rgba(223, 228, 236, .9);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .82rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(8px, 1.4vw, 18px);
  font-size: .92rem;
}

.nav a {
  text-decoration: none;
  color: var(--steel);
  font-weight: 700;
}

.lang-toggle {
  min-width: 46px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 600px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 75px);
  margin: 0 auto;
  padding: clamp(44px, 8vw, 96px) 0 48px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.45rem, 5.35vw, 4.55rem);
  line-height: 1;
  text-wrap: balance;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 7px;
  font-weight: 850;
  text-decoration: none;
  line-height: 1.2;
}

.button.primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(207, 63, 47, .22);
}

.button.secondary {
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--line);
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 390px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.hero-card span,
.quick-bar span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong {
  text-align: right;
}

.quick-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.quick-bar div {
  min-width: 0;
  padding: 20px;
  background: var(--white);
}

.quick-bar strong {
  display: block;
  margin-top: 7px;
  font-size: 1rem;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 54px);
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
}

.section-copy p:not(.eyebrow),
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  gap: 14px;
}

.service-grid article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 4px 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-grid span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  background: #edf1f6;
  color: var(--blue);
  font-weight: 900;
}

.service-grid h3 {
  margin: 0;
  font-size: 1.15rem;
}

.service-grid p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: 12px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  height: clamp(210px, 26vw, 320px);
  object-fit: cover;
  border-radius: 8px;
}

.trust {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.review-list {
  display: grid;
  gap: 14px;
}

blockquote {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--amber);
  border-radius: 8px;
  background: var(--white);
}

blockquote p {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.55;
}

blockquote cite {
  color: var(--muted);
  font-size: .9rem;
  font-style: normal;
  font-weight: 750;
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.contact-panel {
  padding: 24px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel dl {
  margin: 0;
}

.contact-panel div + div {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.contact-panel dt {
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 7px 0 0;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: rgba(255,255,255,.82);
  background: #101827;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

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

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .split,
  .trust,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 34px;
  }

  .hero-media {
    min-height: 300px;
  }

  .quick-bar,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: 230px;
  }
}

@media (max-width: 520px) {
  .nav a {
    font-size: .84rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-card {
    position: static;
    border-radius: 0;
    flex-direction: column;
  }

  .hero-card strong {
    text-align: left;
  }

  .hero-media {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-media img {
    height: 245px;
  }

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

  .site-footer {
    flex-direction: column;
  }
}
