:root {
  --bg: #f6f1ea;
  --surface: #fffaf4;
  --surface-2: #ffe7cf;
  --surface-3: #171717;
  --text: #111111;
  --muted: #605852;
  --accent: #ff914d;
  --accent-deep: #ef6f2f;
  --border: rgba(17, 17, 17, 0.08);
  --shadow: 0 26px 70px rgba(68, 41, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 145, 77, 0.32), transparent 24%),
    radial-gradient(circle at 80% 10%, rgba(239, 111, 47, 0.16), transparent 22%),
    linear-gradient(180deg, #fff8f1 0%, #fbe8d5 100%);
}

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

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

.page-shell {
  width: min(1240px, calc(100% - 24px));
  margin: 12px auto 32px;
}

.hero,
.section {
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 250, 244, 0.94);
  box-shadow: var(--shadow);
}

.hero {
  padding: 24px;
}

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

.brand,
.nav-links a,
.button {
  text-decoration: none;
  color: inherit;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-deep);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.nav-links {
  display: flex;
  gap: 12px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(239, 111, 47, 0.18);
  border-radius: 999px;
  background: rgba(255, 243, 231, 0.96);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  padding: 12px 18px;
  font: inherit;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 24px;
  margin-top: 20px;
}

.hero-copy-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 6px 10px 0;
}

.eyebrow,
.project-type,
.card-label,
.service-index {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

h1 {
  margin-top: 14px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

h1 span {
  color: var(--accent-deep);
}

.hero-copy {
  max-width: 56ch;
  margin-top: 18px;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
}

.button-secondary {
  background: rgba(255, 239, 223, 0.95);
  border-color: rgba(239, 111, 47, 0.18);
  color: var(--accent-deep);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.strip-item {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 226, 194, 0.92), rgba(255, 206, 160, 0.86));
}

.strip-item strong {
  display: block;
  font-size: 1.05rem;
}

.strip-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-radius: 28px;
}

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

.hero-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 145, 77, 0.95), rgba(239, 111, 47, 0.96));
  color: #fff;
}

.hero-badge h2 {
  margin-top: 8px;
  font-size: 2rem;
}

.impact-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.impact-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 145, 77, 0.96), rgba(239, 111, 47, 0.98));
  color: #fff;
}

.impact-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: rgba(255, 247, 240, 0.92);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
}

.impact-card p {
  line-height: 1.7;
}

.section {
  margin-top: 20px;
  padding: 30px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.section-heading h2,
.contact h2 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
}

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

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

.service-panel,
.mini-panel,
.process-step,
.contact-company,
.plan-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.98), rgba(255, 236, 214, 0.82));
}

.service-panel,
.mini-panel,
.process-step,
.plan-card {
  padding: 24px;
}

.service-panel h3,
.mini-panel h3,
.process-step h3,
.project-copy h3,
.terrain-copy h3 {
  margin-top: 10px;
  font-size: 1.6rem;
}

.service-panel {
  position: relative;
  overflow: hidden;
}

.service-panel::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
}

.service-panel p,
.mini-panel p:last-child,
.process-step p,
.plan-card p,
.project-copy p,
.terrain-copy p,
.contact p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.plan-card h3 {
  margin-top: 10px;
  font-size: 1.9rem;
}

.plan-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.plans-note {
  max-width: 82ch;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.plan-card-accent {
  background: linear-gradient(145deg, rgba(255, 145, 77, 0.97), rgba(239, 111, 47, 0.98));
  color: #fff;
}

.plan-card-accent .project-type,
.plan-card-accent p,
.plan-card-accent .plan-list {
  color: rgba(255, 247, 240, 0.94);
}

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

.legal-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
}

.legal-card h3 {
  margin-top: 10px;
  font-size: 1.45rem;
}

.legal-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-card a,
.footer-meta a {
  color: var(--accent-deep);
  text-decoration: none;
}

.terrain-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
  gap: 18px;
}

.terrain-feature,
.project-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
}

.terrain-feature img,
.project-row img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.terrain-copy,
.project-copy {
  padding: 26px;
}

.terrain-side {
  display: grid;
  gap: 18px;
}

.accent-panel {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
}

.accent-panel .eyebrow,
.accent-panel p:last-child,
.accent-panel h3 {
  color: #fff;
}

.project-stack {
  display: grid;
  gap: 18px;
}

.project-row:nth-child(even) {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}

.project-row:nth-child(even) img {
  order: 2;
}

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

.contact-copy {
  max-width: 58ch;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.detail-card {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.98), rgba(255, 236, 214, 0.82));
}

.detail-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.detail-value {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.contact-company {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
}

.contact-company img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.contact-company h3 {
  margin-top: 6px;
  font-size: 1.28rem;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 460px;
}

.quick-quote {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(255, 145, 77, 0.96), rgba(239, 111, 47, 0.98));
  color: #fff;
}

.quick-quote-copy {
  max-width: 62ch;
}

.quick-quote .eyebrow,
.quick-quote p {
  color: rgba(255, 247, 240, 0.92);
}

.quick-quote h2 {
  max-width: 12ch;
  margin-top: 10px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.quick-quote-copy p:last-child {
  margin-top: 16px;
  line-height: 1.75;
}

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

.quick-quote .button-primary {
  background: #171717;
}

.quick-quote .button-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-deep);
  border-color: transparent;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 8px 4px;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.footer-brand strong {
  display: block;
  color: var(--text);
  letter-spacing: 0.08em;
}

.footer-brand p,
.footer-meta p {
  margin: 0;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

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

@media (max-width: 980px) {
  .hero-grid,
  .impact-band,
  .service-blocks,
  .plans-grid,
  .legal-grid,
  .terrain-layout,
  .terrain-feature,
  .project-row,
  .process-grid,
  .contact-details,
  .contact,
  .quick-quote,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .project-row:nth-child(even) img {
    order: 0;
  }

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

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

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 16px, 100%);
    margin: 8px auto 22px;
  }

  .hero,
  .section {
    padding: 20px;
    border-radius: 24px;
  }

  .nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    padding-top: 10px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    justify-content: center;
  }

  .brand img {
    width: 60px;
    height: 60px;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .hero-visual {
    min-height: 420px;
  }

  .service-panel h3,
  .mini-panel h3,
  .process-step h3,
  .project-copy h3,
  .terrain-copy h3 {
    font-size: 1.4rem;
  }
}
