@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap");

:root {
  --green: #00a63c;
  --green-dark: #007a2f;
  --green-soft: #e7f7ec;
  --charcoal: #1f2528;
  --ink: #172024;
  --gray: #6b7280;
  --line: #e2e7e3;
  --soft: #f4f6f4;
  --stone: #fbfaf6;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(31, 37, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--stone);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(18px, 4vw, 52px);
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(226, 231, 227, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 282px;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(31, 37, 40, 0.08);
}

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

.brand strong {
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(226, 231, 227, 0.8);
  border-radius: 999px;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav a {
  padding: 9px 12px;
  border-radius: 999px;
}

.nav a:hover {
  background: var(--green-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.language-toggle,
.phone-link,
.whatsapp-link,
.button {
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.language-toggle {
  cursor: pointer;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--charcoal);
  background: var(--soft);
  border: 1px solid var(--line);
}

.phone-link {
  min-height: 44px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--charcoal);
}

.whatsapp-link {
  min-height: 44px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.nav a,
.button,
.phone-link,
.whatsapp-link,
.text-link,
.service-card,
.project-card,
.review-grid article,
.benefit-grid span {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease;
}

.nav a:hover,
.text-link:hover {
  color: var(--green-dark);
}

.button:hover,
.phone-link:hover,
.whatsapp-link:hover,
.service-card:hover,
.project-card:hover,
.review-grid article:hover,
.benefit-grid span:hover {
  transform: translateY(-2px);
}

.service-card:hover,
.review-grid article:hover {
  box-shadow: 0 20px 44px rgba(31, 37, 40, 0.1);
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  .floating-cta,
  .floating-cta::after,
  .premium-hero .hero-image {
    animation: none !important;
  }
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 76px) 78px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.2) 68%),
    linear-gradient(0deg, rgba(31, 37, 40, 0.16), rgba(31, 37, 40, 0));
}

.hero-content {
  position: relative;
  max-width: 800px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--charcoal);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--charcoal);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.7vw, 3.45rem);
  line-height: 1.07;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--charcoal);
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 690px;
  color: #374148;
  font-size: clamp(1.04rem, 1.4vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions,
.estimate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
}

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

.button.secondary {
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(31, 37, 40, 0.16);
}

.button.secondary.light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.trust-row span,
.project-tags span,
.area-list span,
.benefit-grid span {
  border-radius: 8px;
  font-weight: 800;
}

.trust-row span {
  padding: 10px 13px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.section {
  padding: clamp(82px, 10vw, 140px) clamp(20px, 5vw, 76px);
}

.section-heading {
  max-width: 960px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading p,
.about-copy p,
.areas-panel p,
.estimate-copy p {
  color: var(--gray);
  font-size: 1.04rem;
  line-height: 1.75;
}

.premium-hero {
  min-height: 860px;
  align-items: end;
  padding-top: 150px;
  padding-bottom: 72px;
  overflow: hidden;
}

.premium-hero .hero-image {
  transform: scale(1.02);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.premium-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.88) 35%, rgba(251, 250, 246, 0.26) 68%),
    linear-gradient(0deg, rgba(31, 37, 40, 0.36), rgba(31, 37, 40, 0.04) 52%),
    radial-gradient(circle at 74% 30%, rgba(0, 166, 60, 0.2), transparent 34%);
}

.premium-hero-copy {
  max-width: 880px;
}

.hero-proof {
  position: absolute;
  right: clamp(20px, 5vw, 76px);
  bottom: 48px;
  z-index: 2;
  display: grid;
  gap: 10px;
  width: min(370px, calc(100% - 40px));
  padding: 18px;
  color: var(--white);
  background: rgba(31, 37, 40, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 26px 74px rgba(31, 37, 40, 0.24);
  backdrop-filter: blur(18px);
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-weight: 850;
}

.hero-proof span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(0, 166, 60, 0.16);
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0)),
    var(--stone);
}

.editorial-intro h2 {
  max-width: 760px;
  font-size: clamp(2.3rem, 4.8vw, 5.15rem);
}

.intro-panel {
  padding-left: clamp(22px, 4vw, 54px);
  border-left: 1px solid var(--line);
}

.intro-panel p {
  margin: 0;
  color: #3e484d;
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
  line-height: 1.82;
}

.mini-stats {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  align-items: baseline;
  margin-top: 28px;
}

.mini-stats strong {
  color: var(--green-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.mini-stats span {
  color: var(--charcoal);
  font-weight: 850;
}

.signature-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 166, 60, 0.2), transparent 28%),
    linear-gradient(135deg, #252c30 0%, #14191c 100%);
}

.signature-services article {
  position: relative;
  min-height: 460px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(34px, 5vw, 64px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.signature-services article::before {
  content: "";
  position: absolute;
  inset: auto 24px 24px auto;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(0, 166, 60, 0.42);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.76);
  transition: opacity 300ms ease, transform 300ms ease;
}

.signature-services article:hover::before {
  opacity: 1;
  transform: scale(1);
}

.signature-services span {
  color: rgba(255, 255, 255, 0.44);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.signature-services h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
}

.signature-services p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
}

.signature-services a {
  width: fit-content;
  color: #75df98;
  font-weight: 900;
}

.signature-services a::after {
  content: " ->";
}

.project-story {
  background: var(--white);
}

.work-showcase {
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 166, 60, 0.1), transparent 30%),
    var(--white);
}

.work-showcase .section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(22px, 5vw, 76px);
  align-items: end;
  max-width: none;
}

.work-showcase .section-heading h2 {
  max-width: 820px;
}

.work-showcase .section-heading p:not(.section-kicker) {
  max-width: 670px;
  margin: 0;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.75;
}

.work-intro-panel {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(150px, 0.42fr) minmax(280px, 0.62fr);
  gap: 16px;
  align-items: stretch;
  margin: 0 0 clamp(22px, 4vw, 42px);
}

.work-intro-main,
.work-intro-stack {
  min-height: 440px;
}

.work-intro-main {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(31, 37, 40, 0.12);
}

.work-intro-main img,
.work-intro-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-intro-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 20, 22, 0.68), rgba(15, 20, 22, 0.02) 62%);
}

.work-intro-main figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  display: grid;
  gap: 8px;
  max-width: 620px;
  padding: 20px;
  color: var(--white);
  background: rgba(31, 37, 40, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.work-intro-main figcaption span,
.work-intro-copy span {
  color: #8be5a7;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-intro-main figcaption strong {
  color: var(--white);
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  line-height: 1.18;
}

.work-intro-stack {
  display: grid;
  gap: 16px;
}

.work-intro-stack img {
  min-height: 0;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(31, 37, 40, 0.1);
}

.work-intro-copy {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 166, 60, 0.1), transparent 34%),
    #f7fbf8;
  border: 1px solid rgba(31, 37, 40, 0.08);
  border-radius: 8px;
}

.work-intro-copy h3 {
  margin: 12px 0 14px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1.08;
}

.work-intro-copy p {
  margin-bottom: 24px;
  color: var(--gray);
  line-height: 1.75;
}

.work-intro-copy .button {
  width: fit-content;
  box-shadow: none;
}

.work-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.work-card {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(31, 37, 40, 0.1);
  isolation: isolate;
}

.work-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 700px;
}

.work-card.wide {
  grid-column: span 2;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
  transition: transform 700ms ease, opacity 700ms ease, filter 700ms ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(15, 20, 22, 0.72), rgba(15, 20, 22, 0.04) 58%);
  pointer-events: none;
}

.work-card:hover img {
  filter: saturate(1.05) contrast(1.03);
  opacity: 1;
  transform: scale(1.045);
}

.work-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 18px;
  color: var(--white);
  background: rgba(31, 37, 40, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.work-card figcaption span {
  color: #8be5a7;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-card figcaption strong {
  color: var(--white);
  font-size: clamp(1.02rem, 1.45vw, 1.34rem);
  line-height: 1.25;
}

.portfolio-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--green-dark);
  font-weight: 900;
}

.portfolio-link::after {
  content: " ->";
}

.project-archive {
  padding-top: 0;
}

.before-after {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(31, 37, 40, 0.96), rgba(16, 21, 23, 0.98)),
    var(--charcoal);
  color: var(--white);
}

.before-after h2 {
  color: var(--white);
}

.before-after-alt {
  background:
    radial-gradient(circle at 92% 14%, rgba(0, 166, 60, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(16, 21, 23, 0.98), rgba(31, 37, 40, 0.96)),
    var(--charcoal);
}

.sport-before-after {
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 166, 60, 0.18), transparent 28%),
    linear-gradient(135deg, #20272b 0%, #101517 100%);
}

.rail-before-after {
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, #111719 0%, #252c30 100%);
}

.before-after-copy {
  max-width: 640px;
}

.before-after-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.78;
}

.before-after-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(260px, 1.28fr);
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 14px;
}

.before-after-grid.paired {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(520px, 1fr);
}

.before-after-grid.triptych {
  grid-template-columns: minmax(220px, 0.78fr) minmax(280px, 1.22fr);
  grid-template-rows: repeat(2, minmax(250px, 1fr));
}

.ba-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: #101517;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.ba-card.after {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.before-after-grid.paired .ba-card.after {
  grid-column: auto;
  grid-row: auto;
}

.before-after-grid.triptych .ba-card.before {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.before-after-grid.triptych .ba-card.after {
  grid-column: 2;
  grid-row: auto;
}

.ba-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.ba-card:hover img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.04);
}

.ba-card figcaption {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(31, 37, 40, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ba-card.after figcaption {
  background: rgba(0, 122, 47, 0.9);
}

.ba-card.before figcaption {
  background: rgba(31, 37, 40, 0.84);
}

.project-before-after {
  padding-top: clamp(72px, 9vw, 128px);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 18px;
}

.story-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: 8px;
  box-shadow: 0 20px 58px rgba(31, 37, 40, 0.1);
}

.story-card.tall {
  grid-row: span 2;
  min-height: 738px;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.story-card:hover img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.045);
}

.story-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 5px;
  padding: 18px;
  color: var(--white);
  background: rgba(31, 37, 40, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.story-card figcaption span {
  color: #8be5a7;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-card figcaption strong {
  font-size: clamp(1.02rem, 1.5vw, 1.34rem);
}

.craft-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(300px, 1.12fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: start;
  background:
    radial-gradient(circle at 100% 10%, rgba(0, 166, 60, 0.14), transparent 34%),
    var(--green-soft);
}

.craft-copy p:not(.section-kicker) {
  max-width: 620px;
  color: #3e484d;
  font-size: 1.05rem;
  line-height: 1.75;
}

.craft-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: craft;
}

.craft-list li {
  position: relative;
  counter-increment: craft;
  min-height: 84px;
  display: grid;
  align-items: center;
  padding: 20px 22px 20px 88px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 122, 47, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(31, 37, 40, 0.06);
  color: var(--charcoal);
  font-weight: 900;
}

.craft-list li::before {
  content: counter(craft, decimal-leading-zero);
  position: absolute;
  left: 22px;
  color: var(--green-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}

.premium-estimate {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 166, 60, 0.28), transparent 30%),
    linear-gradient(135deg, #252c30 0%, #101517 100%);
}

.premium-estimate::before {
  content: "";
  position: absolute;
  inset: 28px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.premium-estimate > * {
  position: relative;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(-12px, 8px, 0);
  }
}

.services {
  background: var(--soft);
}

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

.service-card {
  min-height: 380px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(31, 37, 40, 0.06);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 46px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.service-card p {
  color: var(--gray);
  line-height: 1.65;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: #3d474d;
  list-style: none;
}

.service-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: var(--green);
  border-radius: 999px;
  vertical-align: middle;
}

.about {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 900;
}

.why {
  background: var(--charcoal);
}

.why h2,
.why .benefit-grid span {
  color: var(--white);
}

.why .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.benefit-grid span {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.projects {
  background: var(--white);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.project-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
}

.project-card.featured {
  grid-row: span 2;
  min-height: 656px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.project-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  color: var(--white);
  background: rgba(31, 37, 40, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.project-card span {
  color: #70db8f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 8px 0 0;
  color: var(--white);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.project-tags span,
.area-list span {
  padding: 12px 14px;
  color: var(--charcoal);
  background: var(--soft);
  border: 1px solid var(--line);
}

.areas {
  background: var(--green-soft);
}

.areas-panel {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 320px;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 24px;
}

.map-card {
  display: grid;
  align-content: center;
  min-height: 260px;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(0, 166, 60, 0.9), transparent 48%),
    linear-gradient(135deg, var(--charcoal), #111719);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-card span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.map-card strong {
  font-size: 1.7rem;
}

.map-card small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.service-map-section {
  padding-top: clamp(34px, 5vw, 72px);
  padding-bottom: clamp(34px, 5vw, 72px);
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 166, 60, 0.1), transparent 28%),
    linear-gradient(180deg, var(--stone), var(--white));
}

.service-map-figure {
  max-width: min(980px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 122, 47, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-map-figure img {
  width: 100%;
  height: auto;
}

.service-map-figure figcaption {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(31, 37, 40, 0.97), rgba(15, 21, 23, 0.98)),
    var(--charcoal);
}

.service-map-figure figcaption span {
  color: #8be5a7;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-map-figure figcaption strong {
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.35;
}

.reviews {
  background:
    radial-gradient(circle at 86% 14%, rgba(0, 166, 60, 0.12), transparent 30%),
    var(--white);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.review-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  height: 100%;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stars {
  margin-bottom: 18px;
  color: #d7a928;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 0 rgba(90, 62, 0, 0.12);
}

.review-grid .stars,
.google-review-grid .stars {
  color: #d7a928;
}

.review-grid p {
  margin: 0;
  color: #3e484d;
  line-height: 1.7;
}

.review-grid strong {
  color: var(--charcoal);
  font-size: 0.95rem;
}

.review-meta {
  width: fit-content;
  color: #47545b;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

a.review-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  color: #1f2528;
  background: rgba(215, 169, 40, 0.14);
  border: 1px solid rgba(215, 169, 40, 0.34);
  border-radius: 999px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

a.review-meta::after {
  content: "";
  display: none;
  color: #b48614;
  font-size: 0.82rem;
  line-height: 1;
}

a.review-meta:hover,
a.review-meta:focus-visible {
  color: var(--green-dark);
  background: rgba(215, 169, 40, 0.22);
  border-color: rgba(215, 169, 40, 0.72);
  transform: translateY(-1px);
}

.google-review-grid {
  margin-top: 18px;
}

.google-review-grid article {
  display: flex;
  min-height: 326px;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 246, 244, 0.94)),
    var(--soft);
  box-shadow: 0 18px 46px rgba(31, 37, 40, 0.07);
}

.google-review-grid article strong {
  margin-top: auto;
}

.google-review-grid article .review-meta {
  margin-top: 6px;
}

.google-review-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  padding: clamp(26px, 5vw, 48px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(31, 37, 40, 0.97), rgba(14, 20, 22, 0.98)),
    var(--charcoal);
  border: 1px solid rgba(0, 166, 60, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.google-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  color: #9eeab3;
  background: rgba(0, 166, 60, 0.12);
  border: 1px solid rgba(0, 166, 60, 0.28);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.google-review-panel .stars {
  margin-bottom: 14px;
  color: #f3c74f;
  font-size: 1.25rem;
}

.google-review-panel h3 {
  max-width: 680px;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.6rem);
}

.google-review-panel p:not(.stars) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
}

.google-review-link {
  align-self: center;
}

.estimate {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 76px);
  color: var(--white);
  background: var(--charcoal);
}

.estimate h2 {
  color: var(--white);
}

.estimate-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.office-info {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.office-info span {
  color: #8be5a7;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.office-info a {
  color: var(--white);
  font-weight: 900;
  line-height: 1.45;
}

.office-info a:hover {
  color: #a7f0bc;
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.estimate-form .full {
  grid-column: 1 / -1;
}

.estimate-form span {
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.55;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.floating-cta {
  position: fixed;
  z-index: 25;
  right: 18px;
  bottom: 18px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 900;
  transform-origin: center;
  animation: estimatePulse 2.8s ease-in-out infinite;
}

.floating-cta::after {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border: 1px solid rgba(0, 166, 60, 0.35);
  border-radius: 11px;
  opacity: 0;
  transform: scale(0.92);
  animation: estimateHalo 2.8s ease-in-out infinite;
}

.floating-cta:hover {
  animation-play-state: paused;
  background: var(--green-dark);
  transform: translateY(-3px) scale(1.04);
}

@keyframes estimatePulse {
  0%,
  72%,
  100% {
    transform: scale(1);
    box-shadow: var(--shadow);
  }

  82% {
    transform: scale(1.055);
    box-shadow: 0 28px 76px rgba(0, 166, 60, 0.28);
  }

  90% {
    transform: scale(0.992);
  }
}

@keyframes estimateHalo {
  0%,
  68%,
  100% {
    opacity: 0;
    transform: scale(0.92);
  }

  82% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 76px);
  color: var(--gray);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-address {
  max-width: 320px;
  line-height: 1.45;
  text-align: center;
}

.footer-credit {
  margin: 0;
  color: #60707a;
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: center;
}

.footer-credit a {
  color: var(--charcoal);
  font-weight: 900;
}

.footer-credit a:hover {
  color: var(--green-dark);
}

.page-hero {
  padding: 170px clamp(20px, 5vw, 76px) clamp(70px, 8vw, 112px);
  background:
    radial-gradient(circle at top right, rgba(0, 166, 60, 0.12), transparent 32%),
    var(--soft);
}

.page-hero h1 {
  max-width: 940px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--gray);
  font-size: clamp(1.04rem, 1.6vw, 1.26rem);
  line-height: 1.75;
}

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

.detail-grid article {
  min-height: 310px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(31, 37, 40, 0.06);
}

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

.service-detail-grid article {
  min-height: 300px;
}

.service-category {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 10px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(0, 122, 47, 0.14);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-cta-card {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 166, 60, 0.22), transparent 34%),
    linear-gradient(135deg, #242b2f 0%, #111719 100%);
}

.service-cta-card h2 {
  color: var(--white);
}

.service-cta-card p {
  color: rgba(255, 255, 255, 0.76);
}

.service-cta-card .service-category {
  color: #a7f0bc;
  background: rgba(0, 166, 60, 0.14);
  border-color: rgba(0, 166, 60, 0.28);
}

.service-cta-card .text-link {
  color: #8be5a7;
}

.detail-grid p,
.split-page p {
  color: var(--gray);
  line-height: 1.75;
}

.process-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 70px);
  color: var(--white);
  background: var(--charcoal);
}

.process-band h2 {
  color: var(--white);
}

.number-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.number-list li {
  counter-increment: steps;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-weight: 800;
}

.number-list li::before {
  content: counter(steps, decimal-leading-zero);
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-right: 12px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
}

.project-grid.standalone {
  padding-top: 0;
}

.split-page {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.split-page img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.check-list li {
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #374148;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--green);
  border-radius: 999px;
  vertical-align: middle;
}

.service-page-hero .hero-actions {
  margin-top: 26px;
}

.service-seo-page img {
  max-height: 560px;
}

.area-list.large span {
  font-size: 1rem;
}

.page-estimate {
  padding-top: 170px;
  min-height: 100vh;
}

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

.legal-page {
  max-width: 820px;
  padding: clamp(60px, 10vw, 110px) 22px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: clamp(2.3rem, 6vw, 4.4rem);
}

.legal-page p {
  color: var(--gray);
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 6px;
    border-radius: 8px;
  }

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

  .about,
  .estimate,
  .areas-panel,
  .detail-grid,
  .process-band,
  .split-page,
  .editorial-intro,
  .before-after,
  .craft-section {
    grid-template-columns: 1fr;
  }

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

  .premium-hero {
    min-height: 820px;
    padding-bottom: 250px;
  }

  .hero-proof {
    left: clamp(20px, 5vw, 76px);
    right: auto;
    bottom: 44px;
  }

  .intro-panel {
    padding-left: 0;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .signature-services,
  .story-grid,
  .work-showcase .section-heading {
    grid-template-columns: 1fr;
  }

  .work-intro-panel {
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  }

  .work-intro-copy {
    grid-column: 1 / -1;
    min-height: 0;
  }

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

  .work-card.featured {
    min-height: 560px;
  }

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

  .ba-card.after {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 520px;
  }

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

  .before-after-grid.triptych .ba-card.before,
  .before-after-grid.triptych .ba-card.after {
    grid-column: auto;
    grid-row: auto;
  }

  .signature-services article {
    min-height: 340px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .story-card.tall {
    min-height: 470px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 10px 12px 12px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
    box-shadow: none;
  }

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

  .language-toggle {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .brand small {
    display: none;
  }

  .header-actions {
    display: contents;
  }

  .header-actions .language-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .header-actions .phone-link,
  .header-actions .whatsapp-link {
    position: fixed;
    z-index: 60;
    bottom: 14px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 999px;
    box-shadow: 0 16px 36px rgba(31, 37, 40, 0.22);
    font-size: 0.9rem;
    text-align: center;
  }

  .header-actions .phone-link {
    left: 14px;
    right: calc(50% + 6px);
  }

  .header-actions .whatsapp-link {
    left: calc(50% + 6px);
    right: 14px;
  }

  .nav {
    grid-column: 1 / -1;
    order: initial;
    position: relative;
    z-index: 90;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    padding: 5px;
    font-size: 0.82rem;
    background: rgba(255, 255, 255, 0.82);
  }

  .nav a {
    flex: 1 1 auto;
    min-width: max-content;
    padding: 8px 9px;
    text-align: center;
  }

  .hero {
    min-height: 690px;
    padding: 62px 18px 70px;
  }

  .premium-hero {
    min-height: auto;
    padding: 128px 18px 32px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 55%, rgba(255, 255, 255, 0.24) 100%),
      linear-gradient(0deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  }

  .premium-hero .hero-shade {
    background:
      linear-gradient(0deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.88) 64%, rgba(251, 250, 246, 0.28) 100%),
      linear-gradient(90deg, rgba(251, 250, 246, 0.9), rgba(251, 250, 246, 0.36));
  }

  .premium-hero-copy {
    padding-bottom: 22px;
  }

  .hero-proof {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 22px;
    padding: 14px;
  }

  h1 {
    font-size: clamp(2.28rem, 11vw, 2.72rem);
  }

  .editorial-intro h2,
  .signature-services h2 {
    font-size: 2.38rem;
  }

  .signature-services article {
    min-height: 320px;
    padding: 32px 22px;
  }

  .story-card,
  .story-card.tall {
    min-height: 340px;
  }

  .story-card figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
  }

  .work-mosaic {
    grid-template-columns: 1fr;
  }

  .work-intro-panel {
    grid-template-columns: 1fr;
  }

  .work-intro-main,
  .work-intro-stack,
  .work-intro-copy {
    min-height: 0;
  }

  .work-intro-main {
    min-height: 430px;
  }

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

  .work-intro-stack img {
    aspect-ratio: 1 / 1.08;
  }

  .work-card,
  .work-card.featured,
  .work-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 390px;
  }

  .work-card figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .ba-card,
  .ba-card.after {
    grid-column: auto;
    grid-row: auto;
    min-height: 380px;
  }

  .before-after-grid.triptych .ba-card.before,
  .before-after-grid.triptych .ba-card.after {
    grid-column: auto;
    grid-row: auto;
  }

  .craft-list li {
    min-height: 76px;
    padding: 18px 18px 18px 72px;
  }

  .craft-list li::before {
    left: 18px;
    font-size: 1.85rem;
  }

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

  .service-grid,
  .benefit-grid,
  .review-grid,
  .google-review-panel,
  .service-detail-grid,
  .project-grid,
  .estimate-form {
    grid-template-columns: 1fr;
  }

  .google-review-link {
    width: 100%;
  }

  .project-card,
  .project-card.featured {
    min-height: 360px;
  }

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

  .footer-links {
    flex-direction: column;
  }

  .page-hero {
    padding: 64px 18px 54px;
  }

  .floating-cta {
    display: none;
  }
}

@media (max-width: 760px) and (max-height: 520px) {
  .header-actions .phone-link,
  .header-actions .whatsapp-link {
    display: none;
  }
}
