:root {
  --bg: #f5f5f7;
  --card: rgba(255, 255, 255, 0.82);
  --text: #1d1d1f;
  --muted: #86868b;
  --line: rgba(29, 29, 31, 0.1);
  --orange: #ff7a1a;
  --orange-dark: #e96300;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(180, 180, 186, 0.16), transparent 30rem),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.88), transparent 26rem),
    radial-gradient(circle at 50% 80%, rgba(210, 210, 214, 0.12), transparent 24rem),
    var(--bg);
  line-height: 1.5;
}

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

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: rgba(245, 245, 247, 0.78);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 18px;
}

.brand img {
  height: 107px;
  width: auto;
  display: block;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--orange);
  box-shadow: 0 12px 30px rgba(120, 120, 128, 0.16);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(29, 29, 31, 0.72);
}

.desktop-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.mobile-service-area-text {
  display: none;
}

.nav-phone {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 46px;
  padding: 7px 18px 7px 20px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.62));
  box-shadow:
    0 14px 38px rgba(70,70,80,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
  white-space: nowrap;
}

.nav-phone::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.12);
  transform: translateY(-50%);
}

.nav-phone:hover,
.nav-phone:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 26, 0.32);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.74));
  box-shadow:
    0 18px 48px rgba(70,70,80,0.13),
    0 0 0 4px rgba(255, 122, 26, 0.08),
    inset 0 1px 0 rgba(255,255,255,1);
}

.nav-phone-label {
  color: var(--orange);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-phone-number {
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 750;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff9b45);
  box-shadow: 0 18px 40px rgba(110, 110, 118, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
}

.btn-outline {
  color: var(--text);
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(140, 140, 148, 0.24);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.full-width {
  width: 100%;
}

.hero {
  padding-top: 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

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

h1 {
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  margin-bottom: 24px;
  max-width: 760px;
}

h1 span {
  display: block;
  font-weight: 900;
  background: linear-gradient(135deg, #1d1d1f 0%, #555 55%, var(--orange) 120%);
  -webkit-background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

h3 {
  font-size: 20px;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.hero-text,
.lead,
.section-heading p {
  font-size: 20px;
  color: rgba(29, 29, 31, 0.68);
  max-width: 670px;
}

.hero-detail {
  font-size: 18px;
  color: rgba(29, 29, 31, 0.62);
  max-width: 620px;
  margin-top: 16px;
  padding-left: 18px;
  border-left: 3px solid rgba(255, 122, 26, 0.56);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 34px 0 0;
}

.hero-card {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  min-height: 560px;
}

.hero-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

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

.service-photo-card {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.18) 35%, rgba(0,0,0,0.72) 100%),
    var(--bg-img);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-photo-card div {
  width: 100%;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255,255,255,0.18);
}

.service-photo-card h3,
.service-photo-card p {
  color: #fff;
}

.service-photo-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.84);
}

.service-card,
.feature-item,
.process-card,
.estimate-form,
.contact-card,
.whatsapp-card,
.cta-card,
details,
.city-group {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.05);
}

.why-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.44), rgba(255,255,255,0));
}

.split-grid,
.estimate-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 40px;
  align-items: start;
}

.team-photo-card {
  margin-top: 28px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.team-photo-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-item {
  padding: 24px;
}

.feature-item p,
.process-card p,
.faq-list p,
.site-footer p {
  color: rgba(29, 29, 31, 0.63);
  margin-bottom: 0;
}

.carousel-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(29,29,31,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.project-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 72%);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 24px;
  scrollbar-width: none;
}

.project-carousel::-webkit-scrollbar {
  display: none;
}

.project-slide {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow);
  background: #fff;
}

.project-slide img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.project-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, rgba(0,0,0,0.58), rgba(0,0,0,0.28));
  backdrop-filter: blur(14px);
}

.project-caption p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.82);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-card {
  padding: 26px;
}

.process-card span {
  display: inline-block;
  color: var(--orange);
  font-weight: 850;
  margin-bottom: 20px;
}

.estimate-section {
  background:
    radial-gradient(circle at 80% 30%, rgba(188, 188, 194, 0.14), transparent 26rem),
    rgba(255,255,255,0.34);
}

.single-form-grid {
  grid-template-columns: 0.82fr 1fr;
  align-items: stretch;
}

.estimate-contact-column {
  display: grid;
  gap: 22px;
}

.whatsapp-card {
  padding: 24px;
  margin-top: 4px;
}

.whatsapp-card h3 {
  margin-bottom: 16px;
}

.whatsapp-card p {
  margin: 16px 0 0;
  color: rgba(29, 29, 31, 0.63);
}

.whatsapp-button {
  width: 100%;
}

.whatsapp-button,
.estimate-form .btn {
  font-size: 16px;
  font-weight: 750;
}

.estimate-form {
  padding: 28px 28px 46px;
}

.form-status {
  display: none;
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 29, 31, 0.08);
  color: rgba(29, 29, 31, 0.72);
  font-size: 14px;
  font-weight: 650;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border-color: rgba(255, 122, 26, 0.22);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.07);
}

.form-status.is-error {
  border-color: rgba(29, 29, 31, 0.16);
}

.estimate-form label {
  display: block;
  font-weight: 750;
  margin-bottom: 18px;
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  padding: 16px 16px;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(255, 122, 26, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.13);
}

.native-file-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-file-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(150,150,158,0.22);
  color: var(--orange);
  font-weight: 800;
  cursor: pointer;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.city-groups {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.city-group {
  padding: 24px;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.city-tags span {
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-weight: 700;
  color: rgba(29, 29, 31, 0.72);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

details {
  padding: 22px 24px;
}

summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 18px;
}

details p {
  margin-top: 14px;
}

.cta-card {
  text-align: center;
  padding: 60px 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 200, 205, 0.16), transparent 28rem),
    rgba(255, 255, 255, 0.82);
}

.cta-card p {
  color: rgba(29, 29, 31, 0.64);
  font-size: 20px;
  margin-bottom: 28px;
}

.site-footer {
  padding: 44px 0 94px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-weight: 750;
  text-align: right;
}

.mobile-sticky {
  display: none;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    gap: 16px;
  }

  .header-actions {
    gap: 10px;
  }

  .nav-phone {
    min-height: 42px;
    padding: 6px 14px 6px 18px;
  }

  .nav-phone-label {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .estimate-grid,
  .single-form-grid,
  .city-groups {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }

  .hero-card img {
    height: 460px;
  }

  .services-grid,
  .feature-list,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-carousel {
    grid-auto-columns: 86%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .header-inner {
    height: 68px;
  }

  .brand {
    font-size: 15px;
  }

  .header-actions > .btn {
    display: none;
  }

  .header-actions {
    flex: 0 0 auto;
  }

  .nav-phone {
    min-height: 40px;
    padding: 0 12px 0 18px;
  }

  .nav-phone-number {
    font-size: 13px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-text,
  .lead,
  .section-heading p {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .services-grid,
  .feature-list,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-photo-card {
    min-height: 280px;
  }

  .carousel-heading {
    display: grid;
    align-items: start;
  }

  .project-carousel {
    grid-auto-columns: 92%;
  }

  .project-slide,
  .project-slide img {
    min-height: 430px;
  }

  .footer-inner {
    display: grid;
  }

  .footer-links {
    text-align: left;
  }

  .mobile-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(22px);
    box-shadow: 0 18px 55px rgba(0,0,0,0.16);
  }

  .mobile-sticky a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-weight: 850;
  }

  .mobile-sticky a:first-child {
    background: var(--text);
    color: #fff;
  }

  .mobile-sticky a:last-child {
    background: var(--orange);
    color: #fff;
  }
}


/* V3 refinements */
h1 {
  font-size: clamp(42px, 4.9vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 900;
}

h1 span {
  display: inline;
  color: var(--orange);
  background: none;
  -webkit-background-clip: initial;
}

.hero-copy {
  max-width: 720px;
}

.hero-card img {
  object-position: center;
}

.service-photo-card {
  min-height: 330px;
}

.service-photo-card div {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.team-photo-card {
  display: none;
}

.carousel-heading {
  display: block;
}

.carousel-shell {
  position: relative;
  padding: 0 72px;
}

.project-carousel {
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 0 24px;
}

.project-slide {
  min-height: 440px;
}

.project-slide img {
  min-height: 440px;
}

.project-caption {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255,255,255,0.26);
  backdrop-filter: blur(16px);
}

.project-caption h3,
.project-caption p {
  color: #fff;
}

.side-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(29,29,31,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
}

.side-carousel-btn.left {
  left: 0;
}

.side-carousel-btn.right {
  right: 0;
}

.carousel-controls,
.carousel-btn {
  display: none;
}

@media (max-width: 900px) {
  .carousel-shell {
    padding: 0 58px;
  }

  .project-carousel {
    grid-auto-columns: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 42px;
    letter-spacing: -0.055em;
  }

  .carousel-shell {
    padding: 0;
  }

  .project-carousel {
    grid-auto-columns: 88%;
  }

  .side-carousel-btn {
    display: none;
  }

  .service-photo-card div,
  .project-caption {
    min-height: 138px;
  }
}


/* V4 refinements */

.brand {
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.footer-brand {
  margin-bottom: 18px;
}

.service-photo-card {
  align-items: stretch;
}

.service-photo-card > div {
  display: grid;
  grid-template-rows: auto 1fr;
  align-self: end;
  width: 100%;
  min-height: 156px;
  padding: 20px;
}

.service-photo-card h3 {
  margin-bottom: 10px;
  min-height: 48px;
  display: flex;
  align-items: flex-start;
}

.service-photo-card p {
  display: flex;
  align-items: flex-start;
  margin: 0;
}

.project-carousel {
  scroll-behavior: smooth;
}

.project-slide {
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1);
}

.project-slide:hover {
  transform: translateY(-4px);
}

.project-caption {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 156px;
  padding: 20px;
}

.project-caption h3 {
  min-height: 48px;
  margin-bottom: 10px;
}

.project-caption p {
  margin: 0;
}

.side-carousel-btn {
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.side-carousel-btn:hover {
  transform: translateY(-50%) scale(1.05);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

@media (max-width: 640px) {
  .brand {
    font-size: 16px;
  }

  .service-photo-card > div,
  .project-caption {
    min-height: 146px;
  }

  .service-photo-card h3,
  .project-caption h3 {
    min-height: auto;
  }
}


/* V5 strict text-box alignment */

/* Services section - all glass panels same size and same internal text rhythm */
.service-photo-card {
  display: grid;
  align-items: end;
}

.service-photo-card > div {
  width: 100%;
  height: 172px;
  min-height: 172px;
  max-height: 172px;
  display: grid;
  grid-template-rows: 54px 1fr;
  align-items: start;
  padding: 20px;
  overflow: hidden;
}

.service-photo-card h3 {
  height: 54px;
  min-height: 54px;
  max-height: 54px;
  display: flex;
  align-items: flex-start;
  margin: 0;
  line-height: 1.12;
}

.service-photo-card p {
  margin: 0;
  padding: 0;
  line-height: 1.38;
  display: block;
  align-self: start;
}

/* Projects carousel - all caption panels same size and same internal text rhythm */
.project-caption {
  height: 172px;
  min-height: 172px;
  max-height: 172px;
  display: grid;
  grid-template-rows: 54px 1fr;
  align-items: start;
  padding: 20px;
  overflow: hidden;
}

.project-caption h3 {
  height: 54px;
  min-height: 54px;
  max-height: 54px;
  display: flex;
  align-items: flex-start;
  margin: 0;
  line-height: 1.12;
}

.project-caption p {
  margin: 0;
  padding: 0;
  line-height: 1.38;
  display: block;
  align-self: start;
}

/* Make project card image/caption layout visually consistent */
.project-slide {
  display: block;
}

.project-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Keep the text glass panels visually locked at same bottom position */
.service-photo-card > div,
.project-caption {
  box-sizing: border-box;
}

/* Mobile: allow a little more space without breaking alignment */
@media (max-width: 640px) {
  .service-photo-card > div,
  .project-caption {
    height: 164px;
    min-height: 164px;
    max-height: 164px;
    grid-template-rows: 48px 1fr;
  }

  .service-photo-card h3,
  .project-caption h3 {
    height: 48px;
    min-height: 48px;
    max-height: 48px;
  }
}


/* V6 cool gray background refinement */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.18),
      rgba(245,245,247,0)
    );
  z-index: -1;
}


/* V7 fully neutral gray atmosphere */

body {
  background:
    radial-gradient(circle at 15% 12%, rgba(188,188,194,0.16), transparent 32rem),
    radial-gradient(circle at 82% 18%, rgba(220,220,225,0.18), transparent 28rem),
    radial-gradient(circle at 50% 82%, rgba(200,200,206,0.10), transparent 26rem),
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(245,245,247,1)),
    var(--bg);
}

/* Neutralize glass cards */
.service-photo-card div,
.project-caption,
.floating-note,
.cta-card,
.feature-item,
.process-card,
.estimate-form,
.whatsapp-card,
.city-group,
details {
  box-shadow:
    0 18px 50px rgba(80,80,90,0.08),
    0 2px 8px rgba(120,120,128,0.05);
}

/* Neutral hover atmosphere */
.service-photo-card:hover,
.project-slide:hover {
  box-shadow:
    0 24px 70px rgba(70,70,80,0.14),
    0 4px 12px rgba(100,100,110,0.06);
}

.project-carousel {
  grid-auto-columns: 62% !important;
  gap: 22px !important;
  scroll-behavior: smooth !important;
}

.project-slide {
  height: 360px !important;
  min-height: 360px !important;
  max-height: 360px !important;
  display: block !important;
}

.project-slide img {
  width: 100% !important;
  height: 360px !important;
  min-height: 360px !important;
  max-height: 360px !important;
  object-fit: cover !important;
}

.project-caption {
  display: none !important;
}

@media (max-width: 900px) {
  .project-carousel {
    grid-auto-columns: 82% !important;
  }

  .project-slide,
  .project-slide img {
    height: 330px !important;
    min-height: 330px !important;
    max-height: 330px !important;
  }
}

@media (max-width: 640px) {
  .project-carousel {
    grid-auto-columns: 88% !important;
  }

  .project-slide,
  .project-slide img {
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

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

  .header-inner {
    height: 68px;
    gap: 12px;
  }

  .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .brand img {
    height: 88px;
    max-width: 150px;
    object-fit: contain;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 8px;
  }

  .header-actions > .btn {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .header-actions > .mobile-header-estimate {
    display: inline-flex;
    min-height: 40px;
    width: auto;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid,
  .split-grid,
  .estimate-grid,
  .single-form-grid,
  .city-groups {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .feature-list,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    height: 420px;
  }

  .carousel-shell {
    padding: 0;
  }

  .project-carousel {
    display: grid !important;
    grid-auto-flow: row !important;
    grid-auto-columns: unset !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    overflow: visible !important;
    padding: 0 !important;
    scroll-snap-type: none !important;
  }

  .project-slide,
  .project-slide img {
    width: 100% !important;
    height: 320px !important;
    min-height: 320px !important;
    max-height: 320px !important;
  }

  .side-carousel-btn {
    display: none;
  }

  .estimate-contact-column,
  .estimate-form {
    width: 100%;
  }

  .whatsapp-card,
  .estimate-form {
    padding: 24px;
  }

  .service-area-section .city-groups {
    display: none;
  }

  .mobile-service-area-text {
    display: block;
    max-width: 680px;
    margin: -12px 0 0;
    color: rgba(29, 29, 31, 0.68);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 600;
  }

  .btn,
  input,
  textarea {
    font-size: 16px;
  }

  .mobile-sticky {
    position: fixed;
    left: auto;
    right: 14px;
    bottom: 14px;
    z-index: 30;
    display: flex;
    width: 92px;
    height: 92px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 48px rgba(0,0,0,0.16);
  }

  .mobile-sticky a,
  .mobile-sticky a:first-child,
  .mobile-sticky a:last-child {
    width: 100%;
    min-height: 0;
    display: grid;
    place-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 122, 26, 0.88);
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.12;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 56px 0;
  }

  .header-inner {
    height: 64px;
  }

  .brand img {
    height: 76px;
    max-width: 124px;
  }

  .header-actions > .btn {
    display: none;
  }

  .header-actions > .mobile-header-estimate {
    display: inline-flex;
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .nav-phone {
    min-height: 38px;
    padding: 0 10px 0 16px;
  }

  .nav-phone-number {
    font-size: 12px;
  }

  h1 {
    font-size: 38px;
    line-height: 1;
  }

  h2 {
    font-size: 32px;
  }

  .hero-text,
  .lead,
  .section-heading p {
    font-size: 16px;
  }

  .hero-card img {
    height: 320px;
  }

  .service-photo-card {
    min-height: 260px;
    padding: 18px;
  }

  .service-photo-card > div {
    height: auto;
    min-height: 154px;
    max-height: none;
  }

  .project-slide,
  .project-slide img {
    height: 260px !important;
    min-height: 260px !important;
    max-height: 260px !important;
  }

  .whatsapp-card,
  .estimate-form {
    padding: 22px;
  }

  input,
  textarea {
    border-radius: 16px;
    padding: 14px;
  }

  .mobile-sticky {
    left: auto;
    right: 12px;
    bottom: 10px;
    width: 82px;
    height: 82px;
  }

  .mobile-sticky a,
  .mobile-sticky a:first-child,
  .mobile-sticky a:last-child {
    font-size: 11px;
    padding: 0 10px;
  }

  .mobile-service-area-text {
    font-size: 16px;
    line-height: 1.5;
  }
}
