:root {
  --ink: #15171a;
  --muted: #626a73;
  --paper: #f6f3ed;
  --panel: #ffffff;
  --line: #ddd6ca;
  --accent: #d7352a;
  --accent-dark: #a91f16;
  --signal: #7bdc59;
  --signal-dark: #3f9f2e;
  --steel: #26313c;
  --blue: #1e5a7b;
  --green: #2f6b4f;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(16px, 4vw, 54px);
  background: rgba(246, 243, 237, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.hero-actions,
.footer,
.steps,
.trust-band,
.top-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 48px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  background: #050605;
}

.nav {
  justify-content: center;
  gap: 4px;
  color: var(--muted);
  font-size: 15px;
}

.nav a,
.phone-link {
  padding: 10px 11px;
  border-radius: 6px;
}

.nav a:hover,
.phone-link:hover {
  background: #ebe5da;
}

.phone-link {
  font-weight: 800;
  color: var(--signal-dark);
  white-space: nowrap;
}

.top-actions {
  justify-content: flex-end;
  gap: 10px;
}

.language-switcher {
  gap: 3px;
  padding: 3px;
  background: #ebe5da;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.lang-button {
  min-width: 34px;
  height: 32px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.lang-button:hover,
.lang-button.is-active {
  background: var(--steel);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 10, 12, 0.9), rgba(12, 16, 20, 0.62) 50%, rgba(12, 16, 20, 0.22)),
    linear-gradient(0deg, rgba(12, 16, 20, 0.75), transparent 48%);
}

.hero-content {
  position: relative;
  width: min(780px, calc(100% - 32px));
  margin: 0 clamp(16px, 6vw, 88px) 64px;
  color: #fff;
}

.hero-logo {
  width: min(220px, 48vw);
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
}

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

.hero .eyebrow {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

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

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  color: #e9edf1;
  font-size: 20px;
  line-height: 1.5;
}

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

.primary-button,
.secondary-button,
.booking-form button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 800;
  cursor: pointer;
}

.primary-button,
.booking-form button {
  background: var(--accent);
  color: #fff;
}

.primary-button:hover,
.booking-form button:hover {
  background: var(--accent-dark);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.trust-band {
  width: min(1120px, calc(100% - 32px));
  margin: -28px auto 0;
  position: relative;
  z-index: 2;
  align-items: stretch;
  background: var(--steel);
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.trust-band div {
  flex: 1;
  min-width: 190px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band span {
  margin-top: 5px;
  color: #c8d1d9;
  font-size: 14px;
}

.section,
.work-band,
.booking-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.section-head {
  display: grid;
  gap: 9px;
  margin-bottom: 28px;
}

.section-head p,
.service p,
.work-copy p,
.booking-copy p,
.price-note,
.faq p {
  color: var(--muted);
  line-height: 1.6;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
}

.photo-grid figure {
  min-height: 260px;
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--steel);
}

.photo-grid figure:first-child {
  grid-row: span 2;
  min-height: 534px;
}

.photo-grid img,
.photo-grid video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.photo-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 9px 11px;
  border-radius: 6px;
  background: rgba(12, 16, 20, 0.72);
  color: #fff;
  font-weight: 800;
}

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

.service,
.faq article {
  min-height: 218px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 6px;
  background: #e9f1ec;
  color: var(--green);
  font-weight: 900;
}

.work-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.work-copy p {
  max-width: 560px;
  margin-top: 18px;
}

.steps {
  justify-content: space-between;
  gap: 10px;
  padding: 22px;
  background: #17384b;
  color: #fff;
  border-radius: 8px;
}

.steps span {
  min-width: 92px;
  padding: 12px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
}

.prices {
  padding-bottom: 54px;
}

.price-list {
  display: grid;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.price-list div:last-child {
  border-bottom: 0;
}

.price-list strong {
  white-space: nowrap;
  color: var(--blue);
}

.price-note {
  margin-top: 14px;
}

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

.faq article {
  min-height: auto;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
  padding-top: 54px;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid #cfc8bd;
  border-radius: 6px;
  padding: 13px 12px;
  color: var(--ink);
  background: #fbfaf6;
  font: inherit;
}

.booking-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.footer {
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(16px, 4vw, 54px);
  background: var(--steel);
  color: #fff;
}

.footer p {
  margin: 6px 0 0;
  color: #c8d1d9;
}

.footer div:last-child {
  display: grid;
  gap: 8px;
  text-align: right;
}

@media (max-width: 920px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .top-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    margin-bottom: 52px;
  }

  .trust-band,
  .photo-grid,
  .service-grid,
  .work-band,
  .booking-section,
  .faq-grid,
  .footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .photo-grid figure,
  .photo-grid figure:first-child {
    min-height: 260px;
    grid-row: auto;
  }

  .trust-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .service {
    min-height: auto;
  }

  .steps {
    justify-content: stretch;
    flex-wrap: wrap;
  }

  .steps span {
    flex: 1 1 130px;
  }

  .footer div:last-child {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
    margin-right: 14px;
  }

  .hero-text {
    font-size: 17px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .price-list div {
    display: grid;
  }
}
