:root {
  --ink: #162022;
  --muted: #5f6f72;
  --line: #dce6e2;
  --paper: #ffffff;
  --soft: #f5f8f2;
  --teal: #057a74;
  --teal-dark: #02534f;
  --mint: #cdeee5;
  --gold: #f2b84b;
  --coral: #e86f4a;
  --shadow: 0 18px 50px rgba(15, 35, 38, 0.13);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: #fff;
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(20, 35, 40, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 230px;
}

.brand-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
}

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

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

.brand small {
  color: currentColor;
  font-size: 0.75rem;
  opacity: 0.78;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  font-weight: 700;
  font-size: 0.94rem;
}

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

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.quote-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
}

.quote-button {
  padding: 0 18px;
  background: var(--gold);
  color: #1b2525;
}

.primary-button {
  padding: 0 22px;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 28px rgba(5, 122, 116, 0.22);
}

.secondary-button {
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(10px);
}

.secondary-button.dark {
  border-color: var(--teal);
  background: #fff;
  color: var(--teal-dark);
  box-shadow: var(--shadow);
}

.quote-button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.02)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1800&q=84") center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 32, 34, 0.82) 0%, rgba(7, 32, 34, 0.58) 42%, rgba(7, 32, 34, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 32, 34, 0.7), rgba(7, 32, 34, 0) 45%);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 170px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-title-link {
  position: relative;
  display: inline-block;
  color: #fff;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
}

.hero-title-link::after {
  position: absolute;
  right: 0.03em;
  bottom: -0.12em;
  left: 0.04em;
  height: 0.08em;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--mint));
  box-shadow: 0 10px 28px rgba(242, 184, 75, 0.28);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.07;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-strip {
  position: absolute;
  right: clamp(18px, 4vw, 52px);
  bottom: 32px;
  left: clamp(18px, 4vw, 52px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 680px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(2, 83, 79, 0.78);
  backdrop-filter: blur(14px);
}

.hero-strip div {
  min-width: 0;
  padding: 18px;
}

.hero-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-strip strong {
  font-size: 1.45rem;
}

.hero-strip span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.section-pad {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 4vw, 52px);
}

.section-grid,
.why,
.quote-band,
.contact-panel,
.jobs {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-grid,
.why,
.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: center;
}

.intro {
  background: var(--soft);
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.image-stack img,
.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 74%;
}

.image-stack img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 46%;
  border: 8px solid var(--soft);
}

.section-copy p,
.section-heading p,
.why-content p,
.quote-copy p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.04rem;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.feature-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--teal-dark);
  font-weight: 800;
}

.services {
  background: #fff;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.compact {
  margin: 0;
  text-align: left;
}

.service-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 235px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(31, 49, 51, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-logo {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 62px;
  height: 62px;
  object-fit: contain;
  opacity: 0.9;
  pointer-events: none;
}

.service-card:hover {
  border-color: var(--mint);
  transform: translateY(-4px);
}

.service-card > .lucide {
  width: 42px;
  height: 42px;
  margin-right: 76px;
  color: var(--teal);
  stroke-width: 1.8;
}

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

.why {
  align-items: stretch;
}

.why-media {
  min-height: 520px;
}

.why-content {
  align-self: center;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: #2d3c3f;
  font-weight: 700;
}

.check-list .lucide {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.quote-band {
  align-items: start;
  padding: clamp(42px, 6vw, 70px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #102729, #024843 54%, #6c8b52);
  color: #fff;
}

.quote-band .eyebrow {
  color: var(--gold);
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.application-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(760px, 100%);
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.application-form[hidden] {
  display: none;
}

.form-wide {
  grid-column: 1 / -1;
}

.quote-form label,
.quote-form .form-field {
  display: grid;
  gap: 7px;
  color: #314044;
  font-weight: 800;
}

.application-form label {
  display: grid;
  gap: 7px;
  color: #314044;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea,
.application-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--ink);
  background: #fdfefe;
}

.service-select {
  position: relative;
}

.service-select-button {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 12px;
  color: var(--ink);
  background: #fdfefe;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.service-select-button:hover {
  border-color: rgba(5, 122, 116, 0.42);
}

.service-select.is-open .service-select-button {
  border-color: var(--teal);
  outline: 3px solid rgba(5, 122, 116, 0.14);
}

.service-select-label {
  flex: 1;
  min-width: 0;
}

.service-option-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(5, 122, 116, 0.1);
  color: var(--teal);
}

.service-option-icon .lucide {
  width: 17px;
  height: 17px;
}

.service-select-chevron {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--muted);
  transition: transform 0.18s ease;
}

.service-select.is-open .service-select-chevron {
  transform: rotate(180deg);
}

.service-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 40;
  max-height: 280px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.service-options[hidden] {
  display: none;
}

.service-option {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.service-option:hover,
.service-option:focus-visible,
.service-option.is-selected {
  color: var(--teal-dark);
  background: var(--soft);
  outline: none;
}

.application-form input[type="file"] {
  padding: 10px;
  cursor: pointer;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.application-form input:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(5, 122, 116, 0.14);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note:empty {
  display: none;
}

.jobs {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.jobs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.contact {
  background: var(--soft);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 34px;
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a,
.contact-list span {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--teal-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 52px);
  background: #111c1e;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.lucide {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav,
  .quote-button {
    display: none;
  }

  .site-header.is-open .main-nav {
    position: absolute;
    top: 82px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .main-nav a {
    padding: 11px 10px;
  }

  .section-grid,
  .why,
  .quote-band,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .why-media {
    min-height: 380px;
  }
}

@media (max-width: 680px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    padding: 126px 0 252px;
  }

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

  .hero-actions,
  .jobs-head {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-actions .primary-button {
    background: var(--gold);
    color: #1b2525;
    box-shadow: 0 12px 28px rgba(242, 184, 75, 0.22);
  }

  .application-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    bottom: 22px;
  }

  .hero-strip div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .image-stack {
    min-height: 430px;
  }

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

  .quote-band {
    padding: 28px 18px;
  }

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