:root {
  --brand-orange: #f36b16;
  --brand-orange-dark: #d94f00;
  --brand-white: #ffffff;
  --brand-cream: #f6f7f9;
  --brand-charcoal: #111827;
  --brand-charcoal-soft: #1f2937;
  --surface-soft: #f6f7f9;
  --surface-tint: #fff7f0;
  --line: #dde4ec;
  --text-dark: #1f2933;
  --text-muted: #62717f;
  --shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
  --nav-height: 86px;
  --logo-width: 170px;
}

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

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background: var(--surface-soft);
  color: var(--text-dark);
}

.site-footer {
  padding: 26px 24px;
  background: var(--brand-charcoal);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.site-footer p + p {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--brand-white);
  box-shadow: var(--shadow);
}

.nav-wrap {
  height: var(--nav-height);
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link img {
  width: var(--logo-width);
  height: auto;
  display: block;
}

.nav-toggle {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-orange);
}

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

.phone-number {
  color: var(--brand-orange-dark);
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--brand-orange);
  color: var(--brand-white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
}

.contact-button:hover {
  background: var(--brand-orange-dark);
}

.hero-section {
  max-width: 940px;
  margin: 0 auto;
  padding: 92px 28px;
  text-align: center;
}

.hero-section h1 {
  margin-bottom: 18px;
  font-size: 44px;
}

.hero-section p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.link-grid a {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(243, 107, 22, 0.2);
  border-radius: 8px;
  background: var(--brand-white);
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.link-grid a:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange-dark);
}

@media (max-width: 880px) {
  .nav-wrap {
    height: 78px;
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    border: 2px solid var(--brand-orange);
    border-radius: 12px;
    background: white;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--brand-orange);
    border-radius: 99px;
    position: relative;
  }

  .nav-toggle span::before,
  .nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle span::before {
    top: -7px;
  }

  .nav-toggle span::after {
    top: 7px;
  }

  .main-nav {
    position: fixed;
    inset: 78px 0 0 0;
    min-height: calc(100vh - 78px);
    padding: 36px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fff1e6 100%);
    flex-direction: column;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px;
    text-align: center;
    font-size: 22px;
    border-bottom: 1px solid rgba(243, 107, 22, 0.16);
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
    gap: 18px;
  }

  .phone-number {
    font-size: 24px;
  }

  .contact-button {
    width: min(100%, 340px);
    min-height: 58px;
    font-size: 18px;
  }

  .hero-section {
    padding: 62px 20px;
  }

  .hero-section h1 {
    font-size: 34px;
  }
}


.portfolio-hero {
  padding: 70px 32px 40px;
  text-align: center;
  background: var(--brand-cream);
}

.portfolio-hero h1 {
  color: var(--brand-orange-dark);
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 14px;
}

.portfolio-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}

.portfolio-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 24px 80px;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.filter-btn {
  border: none;
  background: white;
  color: var(--text-dark);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--brand-orange);
  color: white;
}

.portfolio-grid {
  columns: 3 280px;
  column-gap: 22px;
}

.portfolio-item {
  break-inside: avoid;
  margin-bottom: 22px;
  border-radius: 22px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}

.portfolio-item img {
  width: 100%;
  display: block;
  height: auto;
}

.portfolio-item.hide {
  display: none;
}

@media (max-width: 700px) {
  .portfolio-section {
    padding: 24px 16px 60px;
  }

  .portfolio-grid {
    columns: 1;
  }

  .filter-btn {
    width: 100%;
  }
}

/* ESTIMATES PAGE */

.estimates-hero {
  padding: 92px 24px 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 18%, rgba(243, 107, 22, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(31, 41, 55, 0.96));
  color: var(--brand-white);
}

.estimates-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.estimates-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--brand-white);
  font-size: 60px;
  line-height: 1.05;
  font-weight: 900;
}

.estimates-hero-copy > p:not(.section-label) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.65;
}

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

.estimate-highlights {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.estimate-highlights dt {
  margin-bottom: 8px;
  color: var(--brand-white);
  font-size: 17px;
  font-weight: 900;
}

.estimate-highlights dd {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.estimate-photo-board {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-auto-rows: 210px;
  gap: 14px;
}

.estimate-photo-board figure {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.estimate-photo-main {
  grid-row: span 2;
}

.estimate-photo-board img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.estimate-photo-board figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(17, 24, 39, 0.82);
  color: var(--brand-white);
  font-size: 13px;
  font-weight: 900;
}

.estimates-section {
  padding: 84px 24px;
  background: var(--surface-soft);
}

.estimates-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.estimates-heading h2,
.estimate-note-panel h2 {
  margin-bottom: 16px;
  color: var(--brand-charcoal);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
}

.estimates-heading p,
.estimate-note-panel p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.65;
}

.estimate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.estimate-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--brand-white);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.estimate-card:hover {
  border-color: rgba(243, 107, 22, 0.5);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  transform: translateY(-3px);
}

.estimate-card img {
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
  background: var(--brand-charcoal-soft);
}

.estimate-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.estimate-card-featured img {
  height: 100%;
  min-height: 420px;
}

.estimate-card-body {
  padding: 28px;
}

.estimate-card-top {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.estimate-card-top span {
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--surface-tint);
  color: var(--brand-orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.estimate-card-top strong {
  color: var(--brand-charcoal);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  text-align: right;
  overflow-wrap: anywhere;
}

.estimate-card h3 {
  margin-bottom: 12px;
  color: var(--brand-charcoal);
  font-size: 26px;
  line-height: 1.16;
  font-weight: 900;
}

.estimate-card p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.62;
}

.estimate-card ul {
  margin-top: 20px;
  display: grid;
  gap: 10px;
  list-style: none;
}

.estimate-card li {
  position: relative;
  padding-left: 20px;
  color: var(--brand-charcoal-soft);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.estimate-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-orange);
}

.estimate-note-section {
  padding: 0 24px 84px;
  background: var(--surface-soft);
}

.estimate-note-panel {
  padding: 42px;
  border-radius: 8px;
  background: var(--brand-white);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.estimate-note-panel div {
  max-width: 760px;
}

.estimate-note-panel .button-link {
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .estimates-hero-grid,
  .estimate-card-featured {
    grid-template-columns: 1fr;
  }

  .estimates-hero-copy h1 {
    font-size: 48px;
  }

  .estimate-card-featured img {
    min-height: 0;
    height: 300px;
  }

  .estimate-note-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .estimates-hero,
  .estimates-section {
    padding: 62px 20px;
  }

  .estimate-note-section {
    padding: 0 20px 62px;
  }

  .estimate-highlights,
  .estimate-grid {
    grid-template-columns: 1fr;
  }

  .estimate-photo-board {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .estimate-photo-main {
    grid-row: span 1;
  }

  .estimate-hero-actions .button-link,
  .estimate-note-panel .button-link {
    width: 100%;
  }

  .estimate-card-body,
  .estimate-note-panel {
    padding: 24px;
  }

  .estimates-heading h2,
  .estimate-note-panel h2 {
    font-size: 34px;
  }
}

@media (max-width: 460px) {
  .estimates-hero-copy h1 {
    font-size: 38px;
  }

  .estimate-card-top strong {
    width: 100%;
    text-align: left;
  }

  .estimate-card h3 {
    font-size: 23px;
  }
}

.site-header {
  animation: headerDrop 0.9s ease forwards;
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HOME PAGE */

.home-hero {
  position: relative;
  min-height: 650px;
  padding: 104px 24px 92px;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: var(--brand-charcoal);
}

.home-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(17, 24, 39, 0.86) 0%,
      rgba(17, 24, 39, 0.66) 48%,
      rgba(17, 24, 39, 0.26) 100%
    );
}

.home-hero-content {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--brand-white);
}

.section-label {
  margin-bottom: 12px;
  color: var(--brand-orange);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.home-hero-content h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 68px;
  line-height: 1.04;
  font-weight: 900;
}

.hero-copy {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  line-height: 1.55;
}

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

.button-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.button-link-primary {
  border: 1px solid var(--brand-orange);
  background: var(--brand-orange);
  color: var(--brand-white);
}

.button-link-primary:hover {
  border-color: var(--brand-orange-dark);
  background: var(--brand-orange-dark);
}

.button-link-secondary {
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.12);
  color: var(--brand-white);
}

.button-link-secondary:hover {
  border-color: var(--brand-white);
  background: var(--brand-white);
  color: var(--brand-charcoal);
}

.hero-highlights {
  width: 100%;
  max-width: 820px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.hero-highlights dt {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 900;
}

.hero-highlights dd {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.45;
}

.home-section {
  padding: 82px 24px;
}

.section-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.home-section .section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.home-section .section-heading h2,
.intro-copy h2,
.cta-panel h2 {
  margin-bottom: 16px;
  color: var(--brand-charcoal);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
}

.home-section .section-heading p,
.intro-panel p,
.cta-panel p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.65;
}

.home-section .section-heading .section-label,
.home-section .section-label,
.cta-panel .section-label {
  color: var(--brand-orange);
  font-size: 14px;
  line-height: 1.35;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.intro-panel {
  padding: 28px 30px;
  border-left: 4px solid var(--brand-orange);
  border-radius: 8px;
  background: var(--brand-white);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.services-preview {
  background: var(--brand-white);
}

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

.service-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--brand-white);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: rgba(243, 107, 22, 0.5);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--brand-charcoal);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.service-card ul {
  margin-top: 20px;
  display: grid;
  gap: 10px;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--brand-charcoal-soft);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-orange);
}

.home-process {
  background: var(--brand-charcoal);
  color: var(--brand-white);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: start;
}

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

.home-process .section-heading h2 {
  color: var(--brand-white);
}

.home-process .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 30px;
}

.process-list article {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--brand-orange);
  font-size: 15px;
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 10px;
  color: var(--brand-white);
  font-size: 20px;
}

.process-list p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.operate-section {
  background: var(--surface-soft);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.location-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--brand-white);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.location-card-header h3 {
  margin-bottom: 12px;
  color: var(--brand-charcoal);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
}

.location-card-header p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.location-card details {
  margin-top: 24px;
}

.location-card summary {
  min-height: 48px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--brand-charcoal);
  font-weight: 900;
  cursor: pointer;
}

.location-card summary:hover {
  border-color: rgba(243, 107, 22, 0.42);
  color: var(--brand-orange-dark);
}

.town-list {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  list-style: none;
}

.town-list li {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.home-cta {
  padding-top: 0;
  background: var(--surface-soft);
}

.cta-panel {
  padding: 42px;
  border-radius: 8px;
  background: var(--brand-charcoal);
  color: var(--brand-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-panel h2 {
  color: var(--brand-white);
}

.cta-panel p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.cta-panel .button-link {
  flex: 0 0 auto;
}

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

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .home-hero-content h1 {
    font-size: 56px;
  }

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

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

@media (max-width: 880px) {
  .home-hero {
    min-height: 590px;
    padding: 78px 20px 68px;
  }

  .home-hero-content h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-highlights,
  .intro-grid,
  .process-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .process-grid {
    gap: 32px;
  }

  .home-section {
    padding: 64px 20px;
  }

  .home-section .section-heading h2,
  .intro-copy h2,
  .cta-panel h2 {
    font-size: 34px;
  }

  .section-heading-left {
    text-align: center;
  }

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

@media (max-width: 700px) {
  .services-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .home-hero-content h1 {
    font-size: 38px;
  }

  .hero-highlights {
    gap: 16px;
  }

  .button-link,
  .cta-panel .button-link {
    width: 100%;
  }

  .intro-panel,
  .service-card,
  .location-card,
  .cta-panel {
    padding: 24px;
  }

  .town-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .home-hero-content h1 {
    font-size: 34px;
  }

  .home-section .section-heading h2,
  .intro-copy h2,
  .cta-panel h2 {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .button-link,
  .estimate-card,
  .service-card,
  .reveal {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* CONTACT PAGE */

.contact-hero {
  padding: 92px 24px 76px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(31, 41, 55, 0.94)),
    var(--brand-charcoal);
  color: var(--brand-white);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 44px;
  align-items: center;
}

.contact-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 62px;
  line-height: 1.05;
  font-weight: 900;
}

.contact-hero-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.65;
}

.contact-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.whatsapp-button {
  border: 1px solid #22c55e;
  background: #22c55e;
  color: var(--brand-white);
}

.whatsapp-button:hover {
  border-color: #16a34a;
  background: #16a34a;
}

.contact-summary {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  display: grid;
  gap: 20px;
}

.contact-summary div {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-summary div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-summary span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 900;
}

.contact-summary a,
.contact-summary p {
  color: var(--brand-white);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.3;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-summary a:hover {
  color: var(--brand-orange);
}

.contact-section {
  padding: 82px 24px;
  background: var(--surface-soft);
}

.contact-content-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}

.contact-info-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--brand-white);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.contact-info-panel {
  padding: 32px;
  position: sticky;
  top: 110px;
}

.contact-info-panel h2,
.form-heading h2 {
  margin-bottom: 14px;
  color: var(--brand-charcoal);
  font-size: 34px;
  line-height: 1.14;
  font-weight: 900;
}

.contact-method-list {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.contact-method-list article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.contact-method-list h3 {
  margin-bottom: 8px;
  color: var(--brand-charcoal);
  font-size: 18px;
}

.contact-method-list p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.contact-method-list a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--brand-orange-dark);
  font-weight: 900;
  text-decoration: none;
}

.contact-method-list a:hover {
  color: var(--brand-orange);
}

.contact-form {
  padding: 34px;
}

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

.form-heading p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.contact-form span {
  color: var(--brand-charcoal);
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--brand-charcoal);
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 12px 14px;
}

.contact-form textarea {
  min-height: 170px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand-orange);
  background: var(--brand-white);
  box-shadow: 0 0 0 4px rgba(243, 107, 22, 0.14);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8b98a5;
}

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

.form-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

.form-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 24px;
  border: 0;
  border-radius: 6px;
  background: var(--brand-orange);
  color: var(--brand-white);
  font: inherit;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.form-submit:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-2px);
}

.form-submit:disabled,
.form-submit:disabled:hover {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.form-status {
  display: none;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.form-status:not(:empty) {
  display: block;
}

.form-status-success {
  color: #0f766e;
}

.form-status-error {
  color: #b42318;
}

.form-note {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .contact-hero-grid,
  .contact-content-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    position: static;
  }

  .contact-hero-copy h1 {
    font-size: 48px;
  }
}

@media (max-width: 700px) {
  .contact-hero,
  .contact-section {
    padding: 62px 20px;
  }

  .contact-hero-copy h1 {
    font-size: 38px;
  }

  .contact-actions .button-link {
    width: 100%;
  }

  .contact-summary,
  .contact-info-panel,
  .contact-form {
    padding: 24px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .form-submit,
  .whatsapp-button {
    transition: none;
  }

  .form-submit:hover {
    transform: none;
  }
}
