:root {
  --ink: #102326;
  --muted: #587072;
  --line: #dbe5e2;
  --paper: #f7faf8;
  --white: #ffffff;
  --teal: #12343b;
  --teal-2: #1d5a5f;
  --gold: #d39b3d;
  --green: #6c8a55;
  --shadow: 0 18px 45px rgba(13, 42, 46, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(18, 52, 59, 0.92);
  color: var(--white);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

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

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

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

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  font-size: 0.94rem;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:not(.nav-call) {
  color: rgba(255, 255, 255, 0.82);
}

.nav-call {
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--gold);
  color: #221505;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--teal);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 32, 36, 0.9) 0%, rgba(11, 32, 36, 0.74) 36%, rgba(11, 32, 36, 0.2) 72%),
    linear-gradient(0deg, rgba(11, 32, 36, 0.34), rgba(11, 32, 36, 0.08));
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 92px 0 132px;
  color: var(--white);
}

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

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

h1 {
  max-width: 670px;
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5.4vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-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: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: #241604;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: -70px auto 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--line);
}

.trust-strip div {
  padding: 26px;
  background: var(--white);
}

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

.trust-strip strong {
  margin-bottom: 5px;
  font-size: 1.02rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.intro p:last-child,
.section-heading p,
.seo-copy p,
.quote-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 288px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(17, 46, 50, 0.07);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: #e8f0ea;
  color: var(--green);
  font-weight: 850;
}

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

.pricing-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  min-height: 78px;
  border-top: 1px solid var(--line);
}

.pricing-row:first-child {
  border-top: 0;
}

.pricing-row > div {
  padding: 20px;
}

.pricing-row > div + div {
  border-left: 1px solid var(--line);
}

.pricing-head {
  min-height: auto;
  background: var(--teal);
  color: var(--white);
  font-weight: 850;
}

.pricing-row span,
.pricing-row small {
  display: block;
  color: var(--muted);
}

.pricing-head div {
  color: var(--white);
}

.quote-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.contact-box {
  margin-top: 28px;
  padding: 22px;
  border-left: 4px solid var(--gold);
  background: #edf3ef;
}

.contact-box span,
.contact-box a {
  display: block;
}

.contact-box span {
  color: var(--muted);
}

.contact-box a {
  margin-top: 4px;
  color: var(--teal-2);
  font-size: 1.45rem;
  font-weight: 850;
  text-decoration: none;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd8d5;
  border-radius: 8px;
  background: #fbfdfc;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

input,
select {
  height: 46px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  min-height: 130px;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(211, 155, 61, 0.28);
  border-color: var(--gold);
}

.form-button {
  width: 100%;
}

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

.seo-copy {
  padding-bottom: clamp(72px, 9vw, 118px);
}

.seo-copy h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--teal);
  color: var(--white);
}

.site-footer > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
}

.footer-logo {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a {
  align-self: center;
  color: var(--gold);
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header,
  .main-nav,
  .intro,
  .quote-section,
  .site-footer {
    align-items: stretch;
  }

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

  .main-nav {
    justify-content: space-between;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    margin-left: 18px;
    padding-bottom: 116px;
  }

  .trust-strip,
  .intro,
  .quote-section {
    grid-template-columns: 1fr;
  }

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

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

  .main-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .main-nav a {
    padding: 8px 0;
  }

  .nav-call {
    grid-column: 1 / -1;
    text-align: center;
  }

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(11, 32, 36, 0.92), rgba(11, 32, 36, 0.64));
  }

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

  .trust-strip,
  .service-grid,
  .field-pair,
  .pricing-row {
    grid-template-columns: 1fr;
  }

  .pricing-row > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .pricing-head {
    display: none;
  }

  .service-card {
    min-height: auto;
  }
}
