/* Seasonal announcement bar */
.announcement-bar {
  background: var(--primary);
  color: #ffffff;
  padding: 0.5rem 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.announcement-bar .announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  position: relative;
}

.announcement-bar .announcement-icon {
  font-size: 1.1rem;
}

.announcement-bar .announcement-text {
  flex: 0 1 auto;
}

.announcement-bar .announcement-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.5rem;
}

.announcement-bar .announcement-close:hover {
  color: var(--gray-200);
}

.announcement-bar .announcement-cta {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 0.5rem;
}

.announcement-bar .announcement-cta:hover {
  color: var(--gray-200);
}

/* Home sections */
.home {
  --section-space-y: clamp(4.7rem, 6.8vw, 7rem);
  --section-inner-gap: clamp(1.05rem, 1.75vw, 1.45rem);
  --section-head-gap: clamp(0.78rem, 1.2vw, 1.05rem);
  --section-after-grid-gap: clamp(1.15rem, 2vw, 1.9rem);
}

.home-section {
  position: relative;
  padding: var(--section-space-y) 0;
}

.section-ivory {
  background: var(--gray-100);
}

.section-soft {
  background: linear-gradient(180deg, #f7f0e3 0%, #fcf8ef 100%);
  border-top: 1px solid rgba(123, 91, 46, 0.08);
}

.home-section .container {
  display: grid;
  gap: var(--section-inner-gap);
}

.section-head {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: var(--section-head-gap);
  justify-items: center;
}

.section-head h2 {
  margin: 0;
  color: var(--gray-800);
  font-size: clamp(1.95rem, 3.5vw, 2.9rem);
  line-height: 1.14;
  max-width: 16ch;
  margin-inline: auto;
}

.lead-text {
  text-align: center;
  font-size: clamp(1.03rem, 1.65vw, 1.14rem);
  line-height: 1.72;
  color: var(--gray-700);
  max-width: 760px;
  margin: 0 auto;
}

.home-section-cta {
  margin-top: 0;
}

.section-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  text-align: center;
  margin-top: var(--section-after-grid-gap);
}

.home-section .post-grid,
.home-section .services-grid,
.home-section .home-gallery-grid,
.home-section .awards-scroll,
.home-section .reviews-wrap {
  margin-top: 0;
}

.home-section .section-head + .post-grid,
.home-section .section-head + .services-grid,
.home-section .section-head + .home-gallery-grid,
.home-section .section-head + .awards-scroll,
.home-section .section-head + .reviews-wrap {
  margin-top: clamp(0.3rem, 0.85vw, 0.7rem);
}

.home-section .post-grid,
.home-section .services-grid {
  margin-bottom: 0;
}

.post-grid-empty {
  text-align: center;
  color: var(--gray-700);
  padding: 0.75rem 0;
}

.post-grid-empty p {
  margin: 0;
}

.home-section .home-gallery-grid {
  margin-bottom: 0;
}

.home-section .awards-scroll {
  padding-top: 0.55rem;
}

.home-section .reviews-wrap {
  margin-bottom: 0;
}

.home-section#services .container,
.home-section#gallery .container,
.home-section#awards .container,
.home-section#reviews .container {
  gap: var(--section-inner-gap);
}

#case-studies,
#latest-blogs,
#services,
#gallery,
#awards,
#reviews {
  scroll-margin-top: 128px;
}

#case-studies,
#services,
#awards {
  background: linear-gradient(180deg, #f6efe2 0%, #fcf8ef 100%);
}

#latest-blogs,
#gallery,
#reviews {
  background: #faf7f1;
}

#case-studies {
  border-top: 1px solid rgba(123, 91, 46, 0.08);
}

#latest-blogs,
#gallery,
#reviews {
  border-top: 1px solid rgba(123, 91, 46, 0.06);
}

#latest-blogs .section-head,
#reviews .section-head {
  max-width: 760px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 122px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--white);
  overflow: hidden;
  padding: clamp(3.2rem, 5.5vw, 5.2rem) 0 clamp(2.4rem, 3.8vw, 3.8rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      112deg,
      rgba(17, 13, 7, 0.9) 0%,
      rgba(21, 16, 8, 0.84) 34%,
      rgba(26, 19, 10, 0.72) 62%,
      rgba(32, 24, 13, 0.56) 100%
    ),
    radial-gradient(
      circle at 22% 24%,
      rgba(138, 109, 51, 0.22) 0%,
      rgba(138, 109, 51, 0) 52%
    );
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 6, 3, 0.16) 0%,
    rgba(8, 6, 3, 0.44) 100%
  );
  z-index: 1;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  max-width: min(760px, 100%);
  padding: clamp(1.25rem, 2.4vw, 2rem);
  border-radius: 20px;
  background: linear-gradient(
    155deg,
    rgba(27, 20, 11, 0.8) 0%,
    rgba(30, 23, 13, 0.64) 100%
  );
  border: 1px solid rgba(242, 236, 223, 0.35);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(250, 247, 242, 0.14);
  text-align: left;
}

.hero-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.95);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.1vw, 4.25rem);
  font-weight: 800;
  margin: 0 0 0.7rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #faf7f2;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: rgba(238, 230, 215, 0.98);
}

.hero .hero-subheading {
  font-size: clamp(1.02rem, 1.9vw, 1.23rem);
  margin: 0;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.94);
  max-width: 54ch;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.24);
}

.hero-urgency {
  margin: 0.5rem 0 0;
  color: rgba(255, 246, 231, 0.92);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-buttons {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.hero-cta-microcopy {
  margin: 0.4rem 0 0;
  color: rgba(250, 247, 242, 0.9);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.hero-proof-grid span {
  display: block;
  padding: 0.5rem 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(242, 236, 223, 0.36);
  background: rgba(250, 247, 242, 0.11);
  color: rgba(250, 247, 242, 0.96);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-trust-strip {
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.14);
  border: 1px solid rgba(242, 236, 223, 0.3);
  color: rgba(255, 248, 236, 0.95);
  font-size: 0.8rem;
  font-weight: 650;
}

.hero-trust-strip li::before {
  content: "\2713";
  color: #d8c89f;
  font-weight: 800;
}

.hero .hero-btn {
  min-width: 204px;
  min-height: 55px;
  padding: 1rem 1.8rem;
  font-size: 0.97rem;
  letter-spacing: 0.012em;
}

.hero .hero-btn-primary {
  background: linear-gradient(145deg, #504018, #6b5424);
  border-color: #3c3012;
  box-shadow: 0 14px 30px rgba(42, 40, 31, 0.28);
}

.hero .hero-btn-primary:hover {
  background: linear-gradient(145deg, #5c491d, #7a6030);
}

.hero .hero-btn.btn-secondary {
  background: rgba(250, 247, 242, 0.88);
  border-color: #c8c0b3;
  color: #3c3012;
}

.hero .hero-btn.btn-secondary:hover {
  background: #faf7f1;
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(100svh - 102px);
    padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(1.8rem, 3vw, 2.8rem);
  }

  .hero-content {
    padding: clamp(1rem, 4vw, 1.5rem);
  }

  .hero h1 {
    font-size: clamp(1.9rem, 6.5vw, 2.8rem);
    margin: 0 0 0.55rem;
  }

  .hero-buttons {
    margin-top: 0.9rem;
  }

  .hero .hero-btn {
    min-width: 0;
    flex: 1 1 auto;
    min-height: 48px;
    padding: 0.8rem 1.2rem;
    font-size: 0.92rem;
  }
}

/* About preview */
.about-preview {
  background: linear-gradient(180deg, #fbf7ee 0%, #f4ebdb 100%);
  padding: clamp(4.7rem, 6.6vw, 6.7rem) 0;
  border-top: 1px solid rgba(123, 91, 46, 0.1);
  border-bottom: 1px solid rgba(123, 91, 46, 0.1);
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(1.65rem, 3.4vw, 3.1rem);
  align-items: center;
}

.about-preview-content {
  display: grid;
  gap: clamp(1rem, 1.55vw, 1.3rem);
  align-content: start;
}

.about-preview-content h2 {
  color: var(--gray-800);
  margin: 0;
  text-align: left;
  font-size: clamp(2rem, 3.25vw, 2.7rem);
}

.about-preview-content p {
  font-size: 1.06rem;
  line-height: 1.78;
  margin-bottom: 0;
  color: var(--gray-700);
  max-width: 58ch;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin: 0.6rem 0 0.35rem;
}

.about-preview-content .btn {
  margin-top: 0.45rem;
  justify-self: center;
}

.achievement {
  text-align: center;
  padding: 1.15rem 0.88rem;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  background: linear-gradient(180deg, #fffdf8 0%, #f6efe1 100%);
  box-shadow: 0 8px 16px rgba(47, 33, 13, 0.06);
}

.achievement strong {
  display: block;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}

.achievement span {
  font-size: 0.8rem;
  color: var(--gray-700);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.about-preview-image img {
  width: 100%;
  border-radius: calc(var(--card-radius) + 1px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--card-border);
}

/* Grids and cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 0;
}

.service-card {
  position: relative;
  background: var(--card-surface);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition:
    transform var(--anim-duration) ease,
    box-shadow var(--anim-duration) ease,
    border-color var(--anim-duration) ease;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--card-border-strong);
  box-shadow: var(--shadow-md);
}

.service-card .card-link {
  text-decoration: none;
  color: inherit;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card .card-thumb {
  width: 100%;
  height: 214px;
  object-fit: cover;
  display: block;
  transition: transform var(--anim-duration) ease;
}

.service-card:hover .card-thumb {
  transform: scale(1.02);
}

.service-card h3 {
  margin: 1.2rem 1.2rem 0.52rem;
  color: var(--gray-800);
  font-size: 1.24rem;
  line-height: 1.35;
  text-align: left;
}

.service-card p {
  color: var(--gray-700);
  line-height: 1.68;
  margin: 0 1.2rem;
  text-align: left;
  flex: 1;
}

.service-card .service-common-problems {
  margin: 0.6rem 1.2rem 0;
  color: #5e4f38;
  font-size: 0.85rem;
  line-height: 1.5;
  flex: 0;
}

.service-card .service-microcopy {
  margin: 0.35rem 1.2rem 0;
  color: #6a5b45;
  font-size: 0.78rem;
  line-height: 1.45;
  font-style: italic;
  flex: 0;
}

.service-card .card-actions {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.service-card .card-actions .btn {
  min-width: 148px;
  padding-inline: 1.45rem;
}

.home-flow-center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: clamp(1.2rem, 1.9vw, 1.65rem) 0 0;
}

/* Lead form section */
#lead {
  background: linear-gradient(180deg, #f8f1e4 0%, #fdf9f2 100%);
  padding: clamp(4.3rem, 6.2vw, 6.2rem) 0;
  border-top: 1px solid rgba(123, 91, 46, 0.08);
  border-bottom: 1px solid rgba(123, 91, 46, 0.06);
  position: relative;
}

#lead .container {
  display: grid;
  gap: clamp(1.35rem, 2vw, 1.9rem);
}

#lead .contact-form-wrapper {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: clamp(0.95rem, 1.55vw, 1.3rem);
}

#lead .lead-microcopy {
  margin: 0;
  text-align: center;
  font-size: 0.84rem;
  color: #655942;
}

#lead .contact-form-wrapper h2 {
  margin: 0;
  text-align: center;
  color: var(--gray-800);
  font-size: clamp(1.9rem, 3.3vw, 2.6rem);
}

#lead .contact-intro {
  margin: 0;
  text-align: center;
  max-width: 72ch;
  margin-inline: auto;
  font-size: clamp(0.99rem, 1.4vw, 1.08rem);
  line-height: 1.74;
  color: var(--gray-700);
}

#lead .form-required-note {
  margin: 0;
  text-align: center;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  color: #655942;
}

/* ── Lead 2-column layout ───────────────────────────────────── */
.lead-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 4vw, 4.5rem);
  align-items: start;
}

.lead-form-col {
  display: grid;
  gap: clamp(0.95rem, 1.55vw, 1.3rem);
}

/* ── Trust panel ────────────────────────────────────────────── */
.lead-trust-col {
  display: grid;
  align-content: start;
}

.lead-trust-panel {
  background: linear-gradient(180deg, #fffdf9 0%, #f8f2e8 100%);
  border: 1px solid rgba(123, 91, 46, 0.22);
  border-radius: 22px;
  padding: clamp(1.8rem, 3vw, 2.5rem) clamp(1.5rem, 2.5vw, 2rem);
  box-shadow:
    0 8px 28px rgba(47, 33, 13, 0.1),
    inset 0 1px 0 rgba(255, 253, 248, 0.8);
  position: sticky;
  top: 128px;
}

.lead-trust-heading {
  margin: 0 0 1.25rem;
  color: var(--gray-800);
  font-size: clamp(1.2rem, 1.8vw, 1.42rem);
  line-height: 1.22;
}

.lead-trust-heading::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  margin-top: 0.5rem;
  background: var(--brand-grad-primary);
}

.lead-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lead-trust-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.88rem 0.95rem;
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(123, 91, 46, 0.1);
  box-shadow: 0 2px 8px rgba(47, 33, 13, 0.06);
}

.lead-trust-list li::before {
  content: "\2713";
  color: #7b5b2e;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  line-height: 1.38;
}

.lead-trust-list li > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.lead-trust-list li strong {
  color: var(--gray-800);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.lead-trust-list li span {
  color: var(--gray-700);
  font-size: 0.88rem;
  line-height: 1.52;
}

.lead-trust-call {
  margin: 1.45rem 0 0;
  font-size: 0.93rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.lead-trust-call a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.lead-trust-call a:hover {
  text-decoration: underline;
}

#quote-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(0.92rem, 1.45vw, 1.2rem);
  max-width: 860px;
  margin: clamp(1.55rem, 2.4vw, 2rem) auto 0;
  padding: clamp(1.85rem, 3.35vw, 2.85rem);
  background: linear-gradient(180deg, #fffdf9 0%, #f8f1e5 100%);
  border-radius: 22px;
  box-shadow:
    0 18px 42px rgba(47, 33, 13, 0.14),
    inset 0 1px 0 rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(123, 91, 46, 0.24);
  position: relative;
}

#quote-form .form-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.92rem, 1.4vw, 1.2rem);
}

#quote-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    145deg,
    rgba(138, 109, 51, 0.05),
    rgba(138, 109, 51, 0)
  );
}

#quote-form input,
#quote-form textarea,
#quote-form select {
  width: 100%;
  padding: 1rem 1.08rem;
  border: 2px solid #c8c0b3;
  border-radius: 14px;
  font-size: 0.99rem;
  font-family: inherit;
  line-height: 1.4;
  transition:
    border-color var(--anim-duration) ease,
    box-shadow var(--anim-duration) ease,
    background-color var(--anim-duration) ease;
  background: #fffaf2;
  color: var(--gray-800);
  position: relative;
  z-index: 1;
}

#quote-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6b5424 50%),
    linear-gradient(135deg, #6b5424 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

#quote-form > input[name="email"],
#quote-form > select {
  grid-column: 1 / -1;
}

#quote-form textarea {
  resize: vertical;
  min-height: 168px;
  grid-column: 1 / -1;
}

#quote-form input:focus,
#quote-form textarea:focus,
#quote-form select:focus {
  outline: none;
  border-color: #6b5424;
  box-shadow: 0 0 0 4px rgba(107, 84, 36, 0.14);
  background: #fffefb;
}

#quote-form input:focus-visible,
#quote-form textarea:focus-visible,
#quote-form select:focus-visible,
#quote-form .btn:focus-visible {
  outline: 2px solid rgba(107, 84, 36, 0.42);
  outline-offset: 2px;
}

#quote-form input:required:invalid:not(:placeholder-shown),
#quote-form textarea:invalid:not(:placeholder-shown) {
  border-color: #9f5e44;
  box-shadow: 0 0 0 3px rgba(159, 94, 68, 0.12);
}

#quote-form input:required:valid,
#quote-form select:required:valid {
  border-color: #8d856f;
}

#quote-form input::placeholder,
#quote-form textarea::placeholder {
  color: #6e6354;
}

#quote-form .btn {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 56px;
  margin-top: 0.1rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  background: linear-gradient(145deg, #5b481d, #7a6030);
  border-color: #4a3a17;
  box-shadow: 0 12px 26px rgba(47, 33, 13, 0.22);
}

#quote-form .btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(145deg, #665023, #866a37);
  box-shadow: 0 16px 30px rgba(47, 33, 13, 0.24);
}

#quote-form .form-privacy-note {
  grid-column: 1 / -1;
  margin: -0.1rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: #655942;
  letter-spacing: 0.01em;
}

#quote-form .form-status {
  grid-column: 1 / -1;
  margin: 0.28rem 0 0;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.5;
  border-radius: 12px;
  padding: 0.68rem 0.85rem;
  border: 1px solid transparent;
}

#quote-form .form-status.error {
  color: #6a2f24;
  background: rgba(187, 95, 72, 0.1);
  border-color: rgba(159, 94, 68, 0.3);
}

#quote-form .form-status.success {
  color: #345336;
  background: rgba(79, 129, 72, 0.11);
  border-color: rgba(79, 129, 72, 0.28);
}

/* Find Us Section */
.find-us-section {
  background: var(--gray-100);
  padding: clamp(4.15rem, 6.1vw, 6.1rem) 0;
  border-top: 1px solid rgba(123, 91, 46, 0.08);
  border-bottom: 1px solid rgba(123, 91, 46, 0.12);
  position: relative;
}

.find-us-section .container {
  display: grid;
  gap: clamp(1.55rem, 2.3vw, 2.25rem);
}

.find-us-title {
  margin: 0;
  text-align: left;
  color: var(--gray-800);
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  line-height: 1.2;
  max-width: 16ch;
}

.find-us-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.6rem, 2.5vw, 2.35rem);
  align-items: stretch;
}

.find-us-map {
  min-width: 0;
  max-width: 100%;
}

.find-us-map .map-frame {
  background: linear-gradient(180deg, #f9f2e5 0%, #f3e9d8 100%);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  width: 100%;
}

.find-us-map .google-map {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.find-us-map .map-note {
  margin-top: 0.55rem;
  color: var(--gray-700);
  font-size: 0.84rem;
}

.find-us-map .map-link-wrap {
  margin-top: 0.55rem;
  font-size: 0.9rem;
}

.find-us-map .map-link-wrap a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
  padding-bottom: 0.06rem;
  border-bottom: 1px solid rgba(80, 64, 24, 0.28);
}

.find-us-map .map-link-wrap a:hover {
  border-bottom-color: rgba(80, 64, 24, 0.64);
}

.find-us-card {
  background: var(--card-surface);
  padding: 2rem 1.55rem;
  border-radius: var(--card-radius);
  box-shadow:
    0 14px 30px rgba(47, 33, 13, 0.11),
    inset 0 1px 0 rgba(255, 253, 248, 0.62);
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  min-width: 0;
  max-width: 100%;
}

.find-us-card h3.company-name {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.28;
  color: var(--gray-800);
}

.find-us-card .address {
  font-style: normal;
  line-height: 1.7;
  color: var(--gray-700);
  overflow-wrap: break-word;
}

.find-us-card .find-us-locality {
  margin: 0;
  font-weight: 700;
  color: #4f3818;
}

.find-us-card .find-us-microcopy {
  margin: -0.18rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #655942;
}

.find-us-card .contact-links {
  margin-top: 0.2rem;
}

.find-us-card .contact-links a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 700;
}

.find-us-card .contact-links a:hover {
  text-decoration: underline;
}

.find-us-card .hours h4 {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-700);
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  font-size: 0.92rem;
}

.hours-list li strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.cta-row {
  margin-top: 0.85rem;
}

.home-gallery-cta,
.reviews-cta {
  margin-top: var(--section-after-grid-gap);
}

.home .home-gallery-empty,
.home .awards-empty,
.home .reviews-empty {
  min-height: 170px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 0.65rem;
}

.home .home-gallery-empty {
  margin-top: clamp(0.35rem, 0.85vw, 0.7rem);
}

.home .awards-empty,
.home .reviews-empty {
  padding: clamp(1.35rem, 2vw, 1.95rem) clamp(1rem, 1.7vw, 1.45rem);
}

.whatsapp-btn {
  background: linear-gradient(
    135deg,
    var(--amber-accent),
    var(--primary-accent)
  );
  color: var(--white);
  min-width: 215px;
  min-height: 50px;
  box-shadow: 0 12px 24px rgba(47, 33, 13, 0.18);
}

.whatsapp-btn:hover {
  color: var(--white);
}

@media (max-width: 1024px) {
  .home {
    --section-space-y: clamp(3.7rem, 6vw, 5rem);
    --section-inner-gap: clamp(1rem, 2.1vw, 1.35rem);
    --section-after-grid-gap: clamp(1rem, 1.9vw, 1.45rem);
  }

  .about-preview-grid,
  .find-us-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Lead section: collapse to single column on tablet/mobile */
  .lead-layout {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .lead-trust-col {
    display: none;
  }

  #lead .contact-form-wrapper {
    max-width: 860px;
    margin-inline: auto;
  }

  #quote-form {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    min-height: 0;
    padding-top: clamp(3.5rem, 7vw, 4.5rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
  }

  .hero-content {
    margin-top: 0.25rem;
    max-width: 700px;
  }

  .home-section .container {
    gap: var(--section-inner-gap);
  }

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

@media (max-width: 768px) {
  .home {
    --section-space-y: clamp(2.75rem, 8vw, 3.3rem);
    --section-inner-gap: 1rem;
    --section-after-grid-gap: 0.85rem;
  }

  .home-section {
    padding: var(--section-space-y) 0;
  }

  .home-section .container {
    gap: 1rem;
  }

  .section-head {
    max-width: 100%;
  }

  .section-head h2 {
    font-size: clamp(1.65rem, 7.3vw, 2.2rem);
  }

  .lead-text {
    font-size: 0.99rem;
    line-height: 1.64;
  }

  .section-cta-row {
    margin-top: 0.5rem;
  }

  .hero-content {
    text-align: center;
    margin-inline: auto;
    max-width: 100%;
    padding: 1.4rem 1.35rem 1.6rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    margin-top: 1rem;
    gap: 0.55rem;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    margin-top: 0.95rem;
  }

  .hero-trust-strip {
    justify-content: center;
    gap: 0.45rem;
  }

  .hero-cta-microcopy {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 0.4rem;
  }

  .hero .hero-btn {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    min-height: 48px;
    padding: 0.78rem 1.4rem;
  }

  .hero .hero-subheading {
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    margin-bottom: 0.85rem;
  }

  .hero-kicker {
    margin-bottom: 0.6rem;
  }

  .hero-urgency {
    margin-top: 0.5rem;
  }

  .achievement-grid {
    grid-template-columns: 1fr;
    margin-top: 0.2rem;
  }

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

  .service-card .card-thumb {
    height: 224px;
  }

  #quote-form {
    grid-template-columns: 1fr;
    gap: 0.86rem;
    padding: 1.35rem 1.1rem 1.5rem;
  }

  #quote-form .form-row {
    grid-template-columns: 1fr;
    gap: 0.86rem;
  }

  #quote-form select,
  #quote-form textarea,
  #quote-form .btn {
    grid-column: span 1;
  }

  #quote-form .form-status {
    grid-column: span 1;
  }

  #quote-form .form-privacy-note {
    grid-column: span 1;
    font-size: 0.8rem;
  }

  #quote-form input,
  #quote-form select,
  #quote-form textarea {
    padding: 0.9rem 0.95rem;
    font-size: 0.96rem;
  }

  #quote-form .btn {
    min-height: 52px;
    margin-top: 0;
  }

  #lead .form-required-note {
    font-size: 0.82rem;
  }

  #lead .lead-microcopy {
    font-size: 0.8rem;
  }

  .about-preview-content .btn {
    display: inline-flex;
  }

  #lead {
    padding: 3rem 0 3.2rem;
  }

  .find-us-section {
    padding: 3rem 0;
  }

  .find-us-card {
    padding: 1.7rem 1.2rem;
  }

  .find-us-card .cta-row .whatsapp-btn {
    width: 100%;
    min-width: 0;
  }

  .home-gallery-cta,
  .reviews-cta {
    margin-top: 0.75rem;
  }
}

@media (max-width: 425px) {
  .hero {
    padding-top: 3.2rem;
    padding-bottom: 1.8rem;
  }

  .hero-content {
    border-radius: 16px;
    padding: 1.2rem 1.15rem 1.35rem;
  }

  .find-us-card {
    padding: 1.5rem 1.1rem;
  }
}
