:root {
  --bg: #fefeff;
  --surface: #fefeff;
  --surface-soft: rgba(129, 132, 121, 0.1);
  --text: #111d13;
  --muted: #818479;
  --brand: #f18f01;
  --brand-dark: #c87400;
  --on-brand: #111d13;
  --accent: #1d4e89;
  --accent-dark: #111d13;
  --accent-light: rgba(29, 78, 137, 0.1);
  --olive: #818479;
  --border: rgba(129, 132, 121, 0.28);
  --success: #1d4e89;
  --shadow: 0 18px 40px rgba(17, 29, 19, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(241, 143, 1, 0.09), transparent 34%),
    radial-gradient(circle at top right, rgba(29, 78, 137, 0.09), transparent 32%),
    var(--bg);
  line-height: 1.6;
}

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

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

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

.container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--brand);
  border-radius: 999px;
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.35rem, 13vw, 5rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 8vw, 3.6rem);
  max-width: 760px;
}

h3 {
  font-size: 1.25rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary,
.btn-secondary,
.btn-dark {
  color: var(--on-brand);
  background: var(--brand);
  border: 1px solid rgba(17, 29, 19, 0.14);
  box-shadow: 0 14px 28px rgba(241, 143, 1, 0.32);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-dark:hover {
  color: white;
  background: var(--accent-dark);
  box-shadow: 0 16px 30px rgba(17, 29, 19, 0.22);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(254, 254, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(129, 132, 121, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--on-brand);
  background: linear-gradient(135deg, var(--brand), #ffb43f);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(241, 143, 1, 0.26);
}

.nav-links {
  position: fixed;
  inset: 72px 16px auto 16px;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  min-width: fit-content;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

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

.nav-links a {
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 700;
  border-radius: 12px;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--surface-soft);
}

.menu-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: relative;
}

.menu-btn span::before {
  top: -6px;
}

.menu-btn span::after {
  top: 4px;
}

.menu-btn.is-open span {
  transform: rotate(45deg);
}

.menu-btn.is-open span::before {
  transform: rotate(90deg) translate(6px, 0);
}

.menu-btn.is-open span::after {
  opacity: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 52px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(4px);
}

.hero::before {
  right: -140px;
  top: 40px;
  width: 360px;
  height: 360px;
  background: rgba(241, 143, 1, 0.2);
}

.hero::after {
  left: -180px;
  bottom: 0;
  width: 320px;
  height: 320px;
  background: rgba(29, 78, 137, 0.14);
}

.hero-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.hero-copy p {
  max-width: 650px;
  margin-top: 18px;
  font-size: 1.08rem;
}

.hero-cta {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.hero-card {
  position: relative;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-photo {
  min-height: 340px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(17, 29, 19, 0.05), rgba(17, 29, 19, 0.78)),
    repeating-linear-gradient(135deg, rgba(29, 78, 137, 0.2) 0 14px, rgba(129, 132, 121, 0.18) 14px 28px),
    linear-gradient(135deg, #fefeff, rgba(241, 143, 1, 0.16));
  border-radius: 22px;
  overflow: hidden;
}

.hero-photo-content {
  color: white;
}

.hero-photo-content p {
  color: rgba(255, 255, 255, 0.86);
}

.quote-card {
  margin-top: 14px;
  padding: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.quote-card strong {
  display: block;
  margin-bottom: 4px;
}

.trust-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 34px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 14px;
  font-size: 1.25rem;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.service-card,
.testimonial-card,
.area-card,
.contact-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(17, 29, 19, 0.06);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card ul {
  display: grid;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 9px;
  color: var(--muted);
}

.service-card li::before {
  content: "✓";
  color: var(--success);
  font-weight: 900;
}

.gallery {
  background:
    radial-gradient(circle at top right, rgba(241, 143, 1, 0.22), transparent 32%),
    linear-gradient(135deg, var(--accent), #123762);
  color: white;
}

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

.gallery .eyebrow::before {
  background: var(--brand);
}

.gallery-grid {
  display: grid;
  gap: 16px;
}

.before-after {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 230px;
}

.ba-panel {
  position: relative;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 12px, rgba(255, 255, 255, 0.04) 12px 24px);
}

.ba-panel.after {
  background: repeating-linear-gradient(135deg, rgba(241, 143, 1, 0.32) 0 12px, rgba(241, 143, 1, 0.15) 12px 24px);
}

.ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  background: rgba(17, 29, 19, 0.78);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ba-caption {
  padding: 16px;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.testimonial-card {
  display: grid;
  gap: 14px;
}

.stars {
  color: var(--brand);
  letter-spacing: 0.08em;
}

.customer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: white;
  background: var(--accent);
  border-radius: 50%;
  font-weight: 900;
}

.area-layout {
  display: grid;
  gap: 50px;
}

.service-map {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(241, 143, 1, 0.34) 0 18%, transparent 19%),
    radial-gradient(circle at 34% 38%, rgba(29, 78, 137, 0.22) 0 8%, transparent 9%),
    radial-gradient(circle at 68% 60%, rgba(129, 132, 121, 0.2) 0 10%, transparent 11%),
    linear-gradient(135deg, rgba(254, 254, 255, 0.9), rgba(29, 78, 137, 0.12));
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.service-map-inner {
  max-width: 340px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(17, 29, 19, 0.08);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.area-list span {
  padding: 8px 12px;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.cta-band {
  padding: 40px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(254, 254, 255, 0.26), transparent 24%),
    linear-gradient(135deg, var(--brand), #ffb43f);
  color: var(--on-brand);
}

.cta-band p {
  color: rgba(17, 29, 19, 0.78);
}

.cta-content {
  display: grid;
  gap: 22px;
  align-items: center;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.cta-band .btn {
  color: white;
  background: var(--accent);
  border-color: rgba(17, 29, 19, 0.18);
  box-shadow: 0 14px 28px rgba(29, 78, 137, 0.28);
}

.cta-band .btn:hover {
  color: var(--on-brand);
  background: var(--brand);
  box-shadow: 0 16px 30px rgba(241, 143, 1, 0.26);
}

.contact-layout {
  display: grid;
  gap: 18px;
}

.contact-card strong {
  display: block;
  margin-bottom: 6px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-method {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 14px;
}

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

input,
textarea,
select {
  width: 100%;
  padding: 13px 14px;
  color: var(--text);
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.file-upload {
  display: grid;
  gap: 10px;
}

.file-upload-box {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 132px;
  padding: 22px;
  text-align: center;
  color: var(--muted);
  background: var(--surface-soft);
  border: 2px dashed var(--border);
  border-radius: 18px;
  cursor: pointer;
  transition: border 160ms ease, background 160ms ease, transform 160ms ease;
}

.file-upload-box:hover,
.file-upload-box:focus-within {
  border-color: var(--brand);
  background: white;
  transform: translateY(-1px);
}

.file-upload-box strong {
  color: var(--text);
  margin-bottom: 0;
}

.file-upload-box span {
  font-size: 0.9rem;
}

.file-list {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.file-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.file-list-item span:last-child {
  color: var(--brand-dark);
  white-space: nowrap;
}

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

input:focus,
textarea:focus,
select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(241, 143, 1, 0.18);
}

.form-status {
  min-height: 24px;
  color: var(--success);
  font-weight: 800;
}

.footer {
  padding: 34px 0 92px;
  color: var(--muted);
  background: var(--accent-dark);
}

.footer .logo,
.footer strong {
  color: white;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-brand p {
  max-width: 480px;
  margin-top: 10px;
  color: rgba(254, 254, 255, 0.68);
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact a,
.footer-contact span {
  color: rgba(254, 254, 255, 0.72);
  font-weight: 700;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--brand);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.sticky-call {
  position: fixed;
  z-index: 60;
  right: 16px;
  bottom: 16px;
  left: 16px;
  box-shadow: 0 16px 36px rgba(17, 29, 19, 0.28);
}

@media (min-width: 560px) {
  .hero-cta,
  .cta-actions {
    grid-template-columns: max-content max-content;
  }

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

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

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

  .sticky-call {
    left: auto;
    min-width: 260px;
  }
}

@media (min-width: 860px) {
  .section {
    padding: 96px 0;
  }

  .menu-btn {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.94rem;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
  }

  .hero {
    padding: 96px 0 64px;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }

  .hero-meta {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  }

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

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

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

  .area-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    align-items: start;
    max-width: 920px;
  }

  .cta-content {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-end;
  }

  .sticky-call {
    display: none;
  }
}


.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 0;
  background:
    radial-gradient(circle at top left, rgba(241, 143, 1, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(29, 78, 137, 0.14), transparent 34%),
    var(--bg);
}

.thank-you-card {
  width: min(100% - 32px, 760px);
  padding: clamp(28px, 6vw, 56px);
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.thank-you-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  color: var(--on-brand);
  background: linear-gradient(135deg, var(--brand), #ffb43f);
  border-radius: 22px;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(241, 143, 1, 0.26);
}

.thank-you-card h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 8vw, 4.3rem);
}

.thank-you-card p {
  max-width: 590px;
  margin: 0 auto 24px;
  font-size: 1.08rem;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
