:root {
  color-scheme: light;
  --ink: #18201c;
  --muted: #5c665f;
  --line: #dce4de;
  --paper: #f7f8f5;
  --panel: #ffffff;
  --wash: #eef3ef;
  --green: #1f7a4d;
  --green-dark: #125434;
  --gold: #d29a2f;
  --blue: #214f7a;
  --shadow: 0 18px 42px rgba(24, 32, 28, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(247, 248, 245, 0.92);
  border-bottom: 1px solid rgba(220, 228, 222, 0.85);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  background: var(--green);
  color: white;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0;
}

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

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

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

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #101815;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 16, 13, 0.88) 0%, rgba(9, 16, 13, 0.66) 46%, rgba(9, 16, 13, 0.2) 100%),
    url("skyway.jpg") center / cover;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 10vh, 108px) 0 clamp(34px, 7vh, 62px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.intro h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6.2vw, 5.9rem);
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  color: #fff;
}

.button.primary:hover {
  background: var(--green-dark);
}

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

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

.wide {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 850px;
  margin: clamp(34px, 6vh, 58px) 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.2);
}

.hero-stats div {
  min-height: 126px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  font-size: 2rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.band {
  background: #ffffff;
}

.section,
.intro {
  padding: clamp(48px, 7vw, 82px) 0;
}

.section-inner {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
}

.two-column,
.pricing-layout,
.split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4.5vw, 58px);
  align-items: start;
}

.intro p:last-child,
.section-heading p,
.experience-panel p,
.contact p,
.area-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.section h2,
.intro h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
}

.section-heading {
  margin-bottom: 26px;
}

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

.service-card {
  min-height: 188px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 22px;
  padding: 0;
  overflow: hidden;
}

.service-card.featured img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
}

.service-card.featured div {
  padding: 24px 24px 24px 0;
  align-self: center;
}

.service-card h3,
.process-panel h3,
.faq-grid h3 {
  margin: 0;
  font-size: 1.18rem;
}

.service-card p,
.process-panel li,
.credential-list li,
.faq-grid p {
  color: var(--muted);
}

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

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 60px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
}

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

.price-row.strong {
  background: #eef6f1;
}

.price-row strong {
  color: var(--green-dark);
  font-size: 1.18rem;
  white-space: nowrap;
}

.experience-panel,
.process-panel,
.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.experience-panel {
  padding: clamp(24px, 4vw, 38px);
}

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

.credential-list li {
  padding: 12px 14px;
  border-left: 4px solid var(--green);
  background: #f3f7f4;
}

.process-panel {
  padding: 24px;
}

.process-panel ol {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.service-area {
  padding-top: clamp(48px, 7vw, 82px);
  background: var(--wash);
}

.area-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.area-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.area-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

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

.faq-grid article {
  min-height: 150px;
  padding: 22px;
  background: #f6f8f6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.contact h2 {
  max-width: 620px;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.contact .eyebrow {
  color: #f2c86b;
}

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

.contact-card {
  margin-top: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.portfolio-link {
  width: 100%;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(18px, 4vw, 56px);
  background: #111815;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer p {
  margin: 0;
}

.photo-credit {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.photo-credit a {
  color: rgba(255, 255, 255, 0.84);
}

.back-top {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 880px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .hero-stats,
  .service-grid,
  .faq-grid,
  .two-column,
  .pricing-layout,
  .split,
  .contact-layout,
  .area-card,
  .service-card.featured {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    grid-column: span 1;
  }

  .service-card.featured div {
    padding: 0 24px 24px;
  }
}

@media (max-width: 560px) {
  .brand strong {
    font-size: 0.9rem;
  }

  .hero-content,
  .section-inner {
    width: min(100% - 28px, 1140px);
  }

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

  .hero-stats div {
    min-height: auto;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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