:root {
  --bg: #f6f4ef;
  --paper: #fffdfa;
  --ink: #1f262b;
  --muted: #667078;
  --line: #d9d2c7;
  --accent: #0e6f78;
  --accent-dark: #094e55;
  --warm: #c98f3f;
  --soft: #e9f1ef;
  --shadow: 0 18px 42px rgba(31, 38, 43, 0.11);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 244, 239, 0.94);
  border-bottom: 1px solid rgba(217, 210, 199, 0.8);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0;
  background: var(--paper);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-weight: 800;
  font-size: 0.98rem;
  white-space: nowrap;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--ink);
}

.nav-links a[aria-current="page"] {
  color: var(--accent);
  font-weight: 700;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 6px;
  color: #fff !important;
  background: var(--accent);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(31, 38, 43, 0.83), rgba(31, 38, 43, 0.52) 46%, rgba(31, 38, 43, 0.2)),
    radial-gradient(circle at 78% 35%, rgba(201, 143, 63, 0.34), transparent 30%),
    linear-gradient(135deg, #20343a 0%, #0e6f78 58%, #d2a25f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000 100%);
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 58px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
  gap: 42px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: #f4dfbd;
  font-weight: 700;
  font-size: 0.93rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

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

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-light {
  color: var(--ink);
  background: #fff;
}

.btn-outline {
  color: var(--accent);
  border-color: var(--accent);
  background: transparent;
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.48);
}

.hero-summary {
  align-self: stretch;
  display: grid;
  align-content: end;
  gap: 12px;
}

.summary-panel {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}

.summary-panel h2 {
  margin-bottom: 12px;
  font-size: 1.02rem;
  color: #fff;
}

.summary-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.summary-list li {
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,0.9);
}

.summary-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--warm);
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: var(--paper);
}

.section.compact {
  padding: 58px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 10px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.service-card,
.work-card,
.step-card,
.info-card,
.faq-item,
.quote-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.service-card,
.work-card,
.step-card,
.info-card {
  padding: 24px;
}

.service-card {
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 12px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--accent);
  background: var(--soft);
  font-weight: 900;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
}

.check {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
}

.work-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-list li,
.contact-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.work-list li::before,
.contact-line::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--warm);
}

.step-card strong {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
}

.trust-band {
  background: var(--ink);
  color: #fff;
}

.trust-band .lead,
.trust-band .muted {
  color: rgba(255,255,255,0.74);
}

.quick-request {
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 30px;
}

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

.field {
  display: grid;
  gap: 7px;
}

label {
  font-weight: 800;
  font-size: 0.92rem;
}

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

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

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

.request-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

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

.faq-item {
  padding: 20px 22px;
}

.cta-band {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(14,111,120,0.96), rgba(31,38,43,0.94)),
    linear-gradient(135deg, #0e6f78, #1f262b);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-hero {
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(31,38,43,0.92), rgba(14,111,120,0.82)),
    linear-gradient(135deg, #20343a, #0e6f78);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-panel a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  color: #fff;
  background: #172024;
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.site-footer a {
  color: rgba(255,255,255,0.86);
  text-decoration: none;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  color: rgba(255,255,255,0.66);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    padding: 18px 16px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
    gap: 12px;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 0 30px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .hero-copy {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .summary-panel {
    padding: 18px;
  }

  .section {
    padding: 62px 0;
  }

  .split,
  .grid-2,
  .grid-3,
  .request-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-content,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .nav {
    width: min(100% - 24px, var(--max));
    min-height: 66px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 0.88rem;
    white-space: normal;
  }

  .brand-sub {
    font-size: 0.76rem;
  }

  .nav-links {
    inset: 66px 0 auto 0;
  }

  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 24px, var(--max));
  }

  .hero-inner {
    padding-top: 26px;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .actions,
  .request-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .quick-request {
    padding: 20px;
  }
}
