:root {
  --paper: #fbfaf7;
  --surface: #ffffff;
  --surface-muted: #eff6f4;
  --ink: #17222b;
  --muted: #5d6d78;
  --line: #dfe7e8;
  --blue: #0c6d8e;
  --blue-dark: #064861;
  --yellow: #f5bf35;
  --coral: #ea6757;
  --green: #2f7d5b;
  --shadow: 0 24px 60px rgba(23, 34, 43, 0.16);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(223, 231, 232, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-size: 0.88rem;
  line-height: 1;
  box-shadow: inset 0 -2px 0 rgba(6, 72, 97, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--surface-muted);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 76svh;
  overflow: hidden;
  background: var(--blue-dark);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 26, 36, 0.76) 0%, rgba(6, 26, 36, 0.52) 38%, rgba(6, 26, 36, 0.08) 74%),
    linear-gradient(0deg, rgba(6, 26, 36, 0.28), rgba(6, 26, 36, 0.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 74px 0 64px;
  color: #fff;
}

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

.hero .eyebrow {
  color: #ffe79c;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: 4.8rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.4rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.04rem;
  line-height: 1.24;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero-actions,
.form-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.button.primary {
  background: var(--yellow);
  color: var(--blue-dark);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #ffd04d;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.quick-prices {
  display: flex;
  gap: 14px;
  margin: 34px 0 0;
}

.quick-prices div {
  min-width: 136px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.quick-prices dt {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.quick-prices dd {
  margin: 2px 0 0;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 850;
  line-height: 1.05;
}

.price-band {
  padding: 64px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  align-items: start;
  gap: 42px;
}

.split p,
.contact-layout > div > p {
  max-width: 560px;
}

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

.price-card,
.feature-grid article,
.steps article,
.request-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.price-card {
  min-height: 174px;
  padding: 22px;
}

.price-card span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.price-card strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--blue-dark);
  font-size: 3rem;
  line-height: 1;
}

.price-card p {
  margin-bottom: 0;
}

.price-card.featured {
  border-color: rgba(234, 103, 87, 0.42);
  box-shadow: var(--shadow);
}

.section {
  padding: 84px 0;
}

.section.muted {
  background: var(--surface-muted);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 32px;
}

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

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

.feature-grid article,
.steps article {
  min-height: 200px;
  padding: 24px;
}

.feature-number,
.steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--surface-muted);
  color: var(--green);
  font-weight: 850;
}

.steps span {
  background: var(--coral);
  color: #fff;
}

.feature-grid p,
.steps p {
  margin-bottom: 0;
}

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

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d8e4e7;
  aspect-ratio: 4 / 3;
}

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

.contact-section {
  background: var(--blue-dark);
  color: #fff;
}

.contact-section .eyebrow {
  color: #ffe79c;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-note {
  display: inline-flex;
  max-width: 100%;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
}

.request-form .full,
.form-footer,
.form-status {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfdadd;
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(12, 109, 142, 0.18);
}

.price-preview {
  margin-right: auto;
  color: var(--blue-dark);
  font-weight: 850;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  padding: 24px 0;
  background: #101820;
  color: rgba(255, 255, 255, 0.76);
}

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

.footer-layout a {
  color: #fff;
  font-weight: 750;
}

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

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero {
    min-height: 74svh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 26, 36, 0.78) 0%, rgba(6, 26, 36, 0.48) 70%, rgba(6, 26, 36, 0.18) 100%),
      linear-gradient(0deg, rgba(6, 26, 36, 0.32), rgba(6, 26, 36, 0.02));
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .split,
  .contact-layout,
  .feature-grid,
  .steps,
  .gallery {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand span:last-child {
    max-width: 230px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-nav a {
    padding: 8px 10px;
  }

  .hero {
    min-height: 72svh;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-content {
    padding: 48px 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .quick-prices,
  .price-grid,
  .request-form {
    grid-template-columns: 1fr;
  }

  .quick-prices {
    display: grid;
  }

  .section,
  .price-band {
    padding: 56px 0;
  }

  .request-form {
    padding: 18px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .price-preview {
    margin-right: 0;
  }

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