:root {
  --ink: #16212b;
  --muted: #5f6f7d;
  --line: #dfe6eb;
  --paper: #f7f9fb;
  --white: #ffffff;
  --red: #c3132d;
  --blue: #0e5f8f;
  --deep: #101820;
  --shadow: 0 20px 60px rgba(16, 24, 32, 0.16);
}

* {
  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);
  line-height: 1.5;
}

a {
  color: inherit;
}

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

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

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 36px rgba(16, 24, 32, 0.12);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--white);
  color: var(--red);
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
}

.site-header.is-scrolled .brand-mark {
  background: var(--deep);
  color: var(--white);
}

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

.brand small {
  color: currentColor;
  opacity: 0.72;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
}

.main-nav a,
.lang-toggle {
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  color: currentColor;
}

.lang-toggle {
  border: 1px solid currentColor;
  background: transparent;
  border-radius: 999px;
  min-width: 48px;
  min-height: 36px;
  cursor: pointer;
}

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: end;
  gap: clamp(18px, 4vw, 48px);
  padding: 120px clamp(18px, 5vw, 70px) 54px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.90), rgba(16, 24, 32, 0.58) 45%, rgba(16, 24, 32, 0.25)),
    linear-gradient(0deg, rgba(16, 24, 32, 0.78), rgba(16, 24, 32, 0.08) 42%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

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

.hero-content {
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #ff6a7f;
}

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

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 920px;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.10);
  color: inherit;
  border-color: rgba(255, 255, 255, 0.35);
}

.planner .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.hero-panel div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.hero-panel span,
.quick-strip span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong,
.quick-strip strong {
  display: block;
  margin-top: 5px;
  line-height: 1.25;
}

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

.quick-strip a {
  min-height: 118px;
  padding: clamp(18px, 3vw, 32px);
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background 0.2s ease;
}

.quick-strip a:hover {
  background: #eef5f8;
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 70px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.section-copy p:not(.eyebrow),
.planner-copy p,
.visit p {
  color: var(--muted);
  font-size: 18px;
}

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

.service-grid article,
.visit-grid article,
.request-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
}

.service-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eaf3f7;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 20px;
}

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

.proof-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: var(--deep);
  color: var(--white);
}

.proof-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.planner {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: start;
}

.request-form {
  display: grid;
  gap: 16px;
  box-shadow: 0 20px 50px rgba(16, 24, 32, 0.08);
}

label span {
  display: block;
  margin-bottom: 7px;
  font-weight: 900;
}

select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

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

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.visit-grid article {
  background: var(--paper);
}

.visit-grid a {
  font-weight: 900;
  color: var(--blue);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 70px);
  background: var(--deep);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 880px) {
  .site-header {
    height: auto;
    min-height: 70px;
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand {
    min-width: 0;
  }

  .main-nav {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 14px;
  }

  .hero,
  .split,
  .proof-band,
  .planner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 118px;
  }

  .quick-strip,
  .service-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip a {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-band img {
    min-height: 260px;
  }
}

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

  .brand strong {
    font-size: 14px;
  }

  .brand small,
  .main-nav a {
    display: none;
  }

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

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

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 10px;
  }
}
