:root {
      --bg: #060708;
      --text: #ffffff;
      --muted: rgba(255,255,255,0.74);
      --orange: #f37021;
      --orange-dark: #da5d11;
      --brown: #231712;
      --cream: #f8f4ef;
      --section-text: #241814;
      --section-muted: #706762;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
    }

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

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(35,23,18,0.08);
    }

    .header-inner {
      width: min(1220px, calc(100% - 36px));
      min-height: 80px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 26px;
    }

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

    .brand-logo {
      width: 92px;
      height: 42px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      transform: translateY(-24px);
      overflow: visible;
    }

    .brand-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center top;
      display: block;
    }

    .brand-text {
      color: var(--brown);
    }

    .brand-text strong {
      display: block;
      font-size: 18px;
      line-height: 1.02;
      letter-spacing: -0.4px;
    }

    .brand-text small {
      display: block;
      margin-top: 4px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      font-weight: 800;
      color: rgba(35,23,18,0.52);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 14px;
      font-weight: 800;
      color: rgba(35,23,18,0.88);
    }

    .nav a {
      position: relative;
      padding: 28px 0;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: 19px;
      height: 2px;
      background: var(--orange);
      transition: 0.2s ease;
    }

    .nav a:hover::after {
      right: 0;
    }

    .header-cta {
      min-height: 46px;
      padding: 0 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: var(--orange);
      color: #fff;
      font-size: 14px;
      font-weight: 900;
      box-shadow: 0 12px 26px rgba(243,112,33,0.20);
      transition: 0.2s ease;
    }

    .header-cta:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
    }

    .hero {
      position: relative;
      min-height: calc(100vh - 81px);
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(0,0,0,0.74) 0%, rgba(0,0,0,0.62) 42%, rgba(0,0,0,0.46) 100%),
        url("zh-homes-hero-preload.png") center center / cover no-repeat,
        var(--bg);
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -3;
      background:
        radial-gradient(circle at 18% 50%, rgba(255,255,255,0.025), transparent 30%);
      pointer-events: none;
    }

    .hero-kitchen,
    .curve-stroke {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .hero-kitchen {
      z-index: 0;
    }

    .curve-stroke {
      z-index: 2;
    }

    .curve-stroke path {
      fill: none;
      stroke: var(--orange);
      stroke-width: 4;
      opacity: 0.92;
      filter: drop-shadow(0 0 8px rgba(243,112,33,0.16));
    }

    .hero-inner {
      position: relative;
      z-index: 3;
      width: min(1220px, calc(100% - 36px));
      margin: 0 auto;
      min-height: calc(100vh - 81px);
      display: flex;
      align-items: center;
      padding: 54px 0 86px;
    }

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

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
      color: var(--orange);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1.15px;
    }

    .eyebrow::before {
      content: "";
      width: 42px;
      height: 2px;
      background: var(--orange);
      display: inline-block;
    }

    h1 {
      font-size: clamp(48px, 5.45vw, 76px);
      line-height: 1.02;
      letter-spacing: -2.35px;
      font-weight: 750;
      margin-bottom: 34px;
      max-width: 780px;
    }

    h1 .accent {
      color: var(--orange);
    }

    .subheadline {
      max-width: 660px;
      font-size: 19px;
      line-height: 1.6;
      color: var(--muted);
      margin-bottom: 34px;
    }

    .subheadline strong {
      color: #fff;
      font-weight: 800;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      min-height: 62px;
      padding: 0 26px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 900;
      border: 1px solid transparent;
      transition: 0.2s ease;
    }

    .btn-primary {
      background: var(--orange);
      color: #fff;
      box-shadow: 0 16px 32px rgba(243,112,33,0.18);
    }

    .btn-primary:hover {
      background: var(--orange-dark);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.02);
      color: #fff;
      border-color: rgba(255,255,255,0.22);
    }

    .btn-secondary:hover {
      border-color: var(--orange);
      transform: translateY(-2px);
    }

    .trust-card {
      position: absolute;
      right: clamp(22px, 4vw, 58px);
      bottom: clamp(110px, 12vw, 150px);
      z-index: 4;
      width: min(640px, 43vw);
      display: grid;
      grid-template-columns: 1.02fr 1px 1fr;
      background:
        linear-gradient(90deg, rgba(8,10,12,0.90), rgba(8,10,12,0.76)),
        rgba(8,10,12,0.84);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px;
      overflow: hidden;
      backdrop-filter: blur(12px);
      box-shadow: 0 24px 50px rgba(0,0,0,0.18);
    }

    .trust-left,
    .trust-right {
      padding: 24px 26px;
    }

    .trust-divider {
      background: rgba(255,255,255,0.10);
      width: 1px;
    }

    .license-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--orange);
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 0.9px;
      margin-bottom: 14px;
    }

    .license-label::before {
      content: "";
      width: 8px;
      height: 8px;
      background: var(--orange);
      border-radius: 50%;
      box-shadow: 0 0 0 6px rgba(243,112,33,0.14);
    }

    .trust-title {
      color: rgba(255,255,255,0.95);
      font-size: 24px;
      line-height: 1.25;
      font-weight: 900;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }

    .trust-copy {
      color: rgba(255,255,255,0.68);
      font-size: 15px;
      line-height: 1.6;
    }

    .trust-list {
      display: grid;
      gap: 14px;
    }

    .trust-item {
      display: grid;
      grid-template-columns: 24px 1fr;
      gap: 12px;
      align-items: start;
      color: rgba(255,255,255,0.88);
    }

    .trust-item svg {
      width: 21px;
      height: 21px;
      color: var(--orange);
      margin-top: 2px;
    }

    .trust-item strong {
      display: block;
      font-size: 16px;
      font-weight: 800;
      line-height: 1.35;
    }

    .trust-item span {
      display: block;
      margin-top: 3px;
      font-size: 13px;
      line-height: 1.45;
      color: rgba(255,255,255,0.56);
    }

    .hero-review-section {
      position: relative;
      z-index: 6;
      background: #fff;
      color: var(--section-text);
      padding: 0 0 48px;
    }

    .hero-review-card {
      width: min(920px, calc(100% - 36px));
      margin: -42px auto 0;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 20px;
      padding: 26px 30px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(35,23,18,0.08);
      border-left: 5px solid var(--orange);
      box-shadow: 0 24px 55px rgba(35,23,18,0.13);
    }

    .hero-review-stars {
      color: var(--orange);
      font-size: 16px;
      letter-spacing: 2px;
      white-space: nowrap;
    }

    .hero-review-quote {
      color: #514842;
      font-size: 16px;
      line-height: 1.65;
      font-weight: 750;
    }

    .hero-review-author {
      display: grid;
      gap: 3px;
      text-align: right;
      min-width: 130px;
    }

    .hero-review-author strong {
      color: var(--brown);
      font-size: 14px;
      font-weight: 950;
      line-height: 1.2;
    }

    .hero-review-author span {
      color: var(--orange);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.65px;
    }

    .quick-stats {
      background: var(--orange);
      color: #fff;
      position: relative;
      z-index: 5;
    }

    .quick-stats-inner {
      width: min(1220px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat-box {
      min-height: 112px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 18px 16px;
      border-left: 1px solid rgba(255,255,255,0.16);
    }

    .stat-box:last-child {
      border-right: 1px solid rgba(255,255,255,0.16);
    }

    .stat-box strong {
      display: block;
      font-size: clamp(22px, 3vw, 34px);
      line-height: 1;
      font-weight: 950;
      letter-spacing: -0.8px;
      margin-bottom: 8px;
    }

    .stat-box span {
      display: block;
      font-size: 11px;
      line-height: 1.25;
      font-weight: 900;
      letter-spacing: 0.75px;
      text-transform: uppercase;
      opacity: 0.92;
    }

    .about-section {
      background: #fff;
      color: var(--section-text);
      padding: 96px 0 104px;
      overflow: hidden;
    }

    .about-inner {
      width: min(1220px, calc(100% - 36px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.06fr 0.94fr;
      gap: clamp(44px, 6vw, 82px);
      align-items: center;
    }

    .about-media {
      position: relative;
      min-height: 552px;
    }

    .photo-stack {
      position: relative;
      height: 552px;
    }

    .photo-main {
      position: absolute;
      left: 0;
      top: 0;
      width: 96%;
      height: 365px;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 28px 48px rgba(0,0,0,0.16);
      background: #ddd;
    }

    .photo-main img,
    .photo-small img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .photo-main img {
      object-position: 58% center;
    }

    .photo-small {
      position: absolute;
      bottom: 0;
      height: 178px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 38px rgba(0,0,0,0.14);
      background: #ddd;
    }

    .photo-small.one {
      left: 0;
      width: 46%;
    }

    .photo-small.two {
      left: 50%;
      width: 46%;
    }

    .photo-main::after,
    .photo-small::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(243,112,33,0.22), rgba(0,0,0,0.03));
      pointer-events: none;
    }

    .floating-badge {
      position: absolute;
      left: -18px;
      top: 154px;
      width: 112px;
      min-height: 118px;
      border-radius: 11px;
      background: var(--orange);
      color: #fff;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 14px 10px;
      box-shadow: 0 20px 34px rgba(243,112,33,0.25);
      z-index: 4;
    }

    .floating-badge strong {
      display: block;
      font-size: 29px;
      line-height: 1;
      font-weight: 950;
      letter-spacing: -1px;
      margin-bottom: 8px;
    }

    .floating-badge span {
      display: block;
      font-size: 10px;
      line-height: 1.3;
      font-weight: 900;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .about-content {
      max-width: 590px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .section-eyebrow,
    .services-eyebrow,
    .mission-eyebrow,
    .area-eyebrow,
    .contact-eyebrow,
    .faq-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--orange);
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 16px;
    }

    .section-eyebrow::before,
    .services-eyebrow::before,
    .mission-eyebrow::before,
    .area-eyebrow::before,
    .contact-eyebrow::before,
    .faq-eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--orange);
    }

    .about-content h2 {
      font-size: clamp(36px, 3.8vw, 54px);
      line-height: 1.06;
      letter-spacing: -1.8px;
      margin-bottom: 18px;
      color: var(--brown);
    }

    .about-content p {
      color: var(--section-muted);
      font-size: 16px;
      line-height: 1.72;
      margin-bottom: 22px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 24px;
      margin: 24px 0 30px;
    }

    .about-check {
      display: grid;
      grid-template-columns: 20px 1fr;
      gap: 10px;
      align-items: start;
      color: #4e443e;
      font-size: 14px;
      line-height: 1.45;
      font-weight: 750;
    }

    .about-check svg {
      width: 18px;
      height: 18px;
      color: var(--orange);
      margin-top: 1px;
    }

    .about-bottom {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
      margin-top: 4px;
    }

    .about-cta {
      min-height: 54px;
      padding: 0 22px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border-radius: 8px;
      background: var(--orange);
      color: #fff;
      font-size: 14px;
      font-weight: 950;
      box-shadow: 0 14px 28px rgba(243,112,33,0.20);
      transition: 0.2s ease;
    }

    .about-cta:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
    }

    .license-note {
      display: grid;
      gap: 3px;
      text-align: left;
    }

    .license-note strong {
      color: var(--orange);
      font-size: 30px;
      line-height: 1;
      letter-spacing: -1px;
      font-weight: 950;
    }

    .license-note span {
      color: var(--section-muted);
      font-size: 12px;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    .services-section {
  position: relative;
  background:
    linear-gradient(rgba(10,7,5,0.36), rgba(10,7,5,0.46)),
    url("ChatGPT Image May 14, 2026, 10_21_07 PM (1).webp") center center / cover no-repeat,
    #0a0705;
  padding: 92px 0 104px;
  overflow: hidden;
}

    .services-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.08)),
        radial-gradient(circle at 82% 20%, rgba(243,112,33,0.08), transparent 34%),
        radial-gradient(circle at 10% 90%, rgba(243,112,33,0.06), transparent 34%);
      pointer-events: none;
    }

    .services-inner {
      position: relative;
      z-index: 2;
      width: min(1220px, calc(100% - 36px));
      margin: 0 auto;
    }

    .services-top {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 30px;
      margin-bottom: 52px;
    }

    .services-heading {
      max-width: 660px;
    }

    .services-heading h2 {
      color: #fff;
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1.08;
      letter-spacing: -1.6px;
      font-weight: 850;
      text-shadow: 0 4px 20px rgba(0,0,0,0.35);
    }

    .services-btn {
      min-height: 48px;
      padding: 0 20px;
      border-radius: 7px;
      background: var(--orange);
      color: #fff;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-size: 13px;
      font-weight: 950;
      white-space: nowrap;
      box-shadow: 0 14px 28px rgba(243,112,33,0.20);
      transition: 0.2s ease;
    }

    .services-btn:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
    }

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

    .service-card {
      position: relative;
      min-height: 318px;
      background: #fff;
      color: var(--section-text);
      border-radius: 14px;
      overflow: hidden;
      display: grid;
      grid-template-rows: 150px 1fr;
      box-shadow: 0 26px 54px rgba(0,0,0,0.26);
      transition: 0.22s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 34px 70px rgba(0,0,0,0.34);
    }

    .service-image {
      position: relative;
      overflow: hidden;
      background: #ddd;
    }

    .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: 0.35s ease;
    }

    .service-img-2 {
      object-position: center 22%;
    }

    .service-img-3 {
      object-position: center center;
    }

    .service-img-4 {
      object-position: center 34%;
    }

    .service-img-5 {
      object-fit: cover;
      object-position: center center;
      background: #ddd;
      padding: 0;
    }

    .service-card:hover .service-image img {
      transform: scale(1.05);
    }

    .service-image::after {
      content: "";
      position: absolute;
      right: -34px;
      bottom: -1px;
      width: 118px;
      height: 105%;
      background: var(--orange);
      transform: skewX(-15deg);
      transform-origin: bottom right;
    }

    .service-number {
      position: absolute;
      left: 18px;
      top: 18px;
      z-index: 3;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(0,0,0,0.72);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 13px;
      font-weight: 950;
      border: 1px solid rgba(255,255,255,0.18);
      backdrop-filter: blur(8px);
    }

    .service-content {
      padding: 26px 26px 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 18px;
    }

    .service-content h3 {
      font-size: 22px;
      line-height: 1.14;
      letter-spacing: -0.7px;
      color: var(--brown);
      margin-bottom: 10px;
    }

    .service-content p {
      color: var(--section-muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--orange);
      font-size: 13px;
      font-weight: 950;
      width: fit-content;
    }

    .mission-section {
      position: relative;
      background:
        url("ChatGPT Image May 14, 2026, 10_06_01 PM.png") center center / cover no-repeat,
        #ffffff;
      color: var(--section-text);
      padding: 92px 0 88px;
      overflow: hidden;
    }

    .mission-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.44), rgba(255,255,255,0.70)),
        radial-gradient(circle at 78% 22%, rgba(243,112,33,0.08), transparent 30%);
      pointer-events: none;
    }

    .mission-inner {
      position: relative;
      z-index: 2;
      width: min(1220px, calc(100% - 36px));
      margin: 0 auto;
    }

    .mission-top {
      display: grid;
      grid-template-columns: 0.95fr 1fr;
      gap: clamp(36px, 6vw, 80px);
      align-items: end;
      padding-bottom: 42px;
      border-bottom: 1px solid rgba(35,23,18,0.10);
    }

    .mission-title h2 {
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1.08;
      letter-spacing: -1.7px;
      color: var(--brown);
      max-width: 560px;
    }

    .mission-placeholder-box {
      height: 230px;
      max-width: 520px;
      justify-self: end;
      width: 100%;
      border-radius: 18px;
      background: rgba(255,255,255,0.56);
      border: 1px dashed rgba(35,23,18,0.24);
      box-shadow: 0 20px 48px rgba(35,23,18,0.09);
      display: grid;
      place-items: center;
      text-align: center;
      padding: 28px;
      backdrop-filter: blur(5px);
    }

    .mission-placeholder-box strong {
      display: block;
      color: var(--brown);
      font-size: 23px;
      line-height: 1.2;
      letter-spacing: -0.5px;
      margin-bottom: 8px;
    }

    .mission-placeholder-box span {
      color: var(--section-muted);
      font-size: 13px;
      line-height: 1.5;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.6px;
    }

    .mission-image-box {
      height: 230px;
      max-width: 520px;
      justify-self: end;
      width: 100%;
      border-radius: 18px;
      overflow: hidden;
      background: #ddd;
      border: 1px solid rgba(35,23,18,0.10);
      box-shadow: 0 20px 48px rgba(35,23,18,0.12);
    }

    .mission-image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .mission-strip {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid rgba(35,23,18,0.10);
      border-radius: 18px;
      overflow: hidden;
      background: rgba(255,255,255,0.72);
      box-shadow: 0 22px 55px rgba(35,23,18,0.07);
      backdrop-filter: blur(8px);
    }

    .mission-stat {
      min-height: 150px;
      padding: 30px 24px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-right: 1px solid rgba(35,23,18,0.10);
    }

    .mission-stat:last-child {
      border-right: 0;
    }

    .mission-stat strong {
      font-size: clamp(23px, 2.3vw, 32px);
      line-height: 1.02;
      letter-spacing: -0.9px;
      color: var(--orange);
      margin-bottom: 10px;
      white-space: nowrap;
    }

    .mission-stat span {
      color: var(--section-muted);
      font-size: 13px;
      line-height: 1.45;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 0.55px;
    }

    .gallery-section {
      position: relative;
      background:
        linear-gradient(rgba(6,7,8,0.58), rgba(6,7,8,0.70)),
        url("78f73903-bf75-4edb-a889-85c3273fe3f8.webp") center center / cover no-repeat,
        #060708;
      color: #fff;
      padding: 110px 0 132px;
      overflow: hidden;
    }

    .gallery-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 16% 18%, rgba(243,112,33,0.10), transparent 30%),
        radial-gradient(circle at 82% 88%, rgba(243,112,33,0.08), transparent 34%);
      pointer-events: none;
    }

    .gallery-inner {
      position: relative;
      z-index: 2;
      width: min(1220px, calc(100% - 36px));
      margin: 0 auto;
    }

    .gallery-top {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 48px;
    }

    .gallery-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--orange);
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 15px;
    }

    .gallery-eyebrow::before,
    .gallery-eyebrow::after {
      content: "";
      width: 32px;
      height: 2px;
      background: var(--orange);
    }

    .gallery-top h2 {
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1.08;
      letter-spacing: -1.7px;
      color: #fff;
      margin-bottom: 18px;
    }

    .gallery-top p {
      color: rgba(255,255,255,0.68);
      font-size: 16px;
      line-height: 1.65;
      max-width: 620px;
      margin: 0 auto;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1fr 1.12fr 1fr;
      grid-auto-rows: 185px;
      gap: 20px;
      margin-top: 46px;
      grid-auto-flow: dense;
    }

    .gallery-item {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      background: rgba(255,255,255,0.06);
      box-shadow: 0 24px 52px rgba(0,0,0,0.26);
      isolation: isolate;
      border: 1px solid rgba(255,255,255,0.07);
    }

    .gallery-item.large {
      grid-row: span 2;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: 0.35s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0,0,0,0.00) 28%, rgba(0,0,0,0.66)),
        linear-gradient(135deg, rgba(243,112,33,0.14), transparent 55%);
      z-index: 1;
    }

    .gallery-label {
      position: absolute;
      left: 18px;
      bottom: 18px;
      z-index: 2;
      color: #fff;
    }

    .gallery-label strong {
      display: block;
      font-size: 17px;
      line-height: 1.2;
      font-weight: 950;
      margin-bottom: 4px;
    }

    .gallery-label span {
      display: block;
      font-size: 12px;
      line-height: 1.4;
      color: rgba(255,255,255,0.76);
      font-weight: 800;
    }

    .process-section {
      position: relative;
      background:
        linear-gradient(rgba(255,255,255,0.58), rgba(255,255,255,0.72)),
        url("ChatGPT Image May 15, 2026, 01_46_25 PM.png") center center / cover no-repeat,
        #fff;
      color: var(--section-text);
      padding: 94px 0 108px;
      overflow: hidden;
    }

    .process-inner {
      width: min(1220px, calc(100% - 36px));
      margin: 0 auto;
    }

    .process-top {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 52px;
    }

    .process-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--orange);
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 14px;
    }

    .process-eyebrow::before,
    .process-eyebrow::after {
      content: "";
      width: 32px;
      height: 2px;
      background: var(--orange);
    }

    .process-top h2 {
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1.08;
      letter-spacing: -1.7px;
      color: var(--brown);
      margin-bottom: 14px;
    }

    .process-top p {
      color: var(--section-muted);
      font-size: 16px;
      line-height: 1.7;
      max-width: 620px;
      margin: 0 auto;
    }

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

    .process-steps::before {
      display: none;
    }

    .process-card {
      position: relative;
      z-index: 1;
      background: #fff;
      border-radius: 16px;
      padding: 32px 24px 28px;
      color: var(--brown);
      box-shadow: 0 22px 52px rgba(35,23,18,0.10);
      border: 1px solid rgba(35,23,18,0.08);
      text-align: left;
      transition: 0.22s ease;
    }

    .process-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 30px 68px rgba(35,23,18,0.14);
    }

    .process-icon {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--orange);
      color: #fff;
      display: grid;
      place-items: center;
      margin-bottom: 22px;
      box-shadow: 0 14px 28px rgba(243,112,33,0.22);
    }

    .process-icon svg {
      width: 26px;
      height: 26px;
    }

    .process-card h3 {
      font-size: 20px;
      line-height: 1.2;
      letter-spacing: -0.5px;
      margin-bottom: 10px;
      font-weight: 950;
    }

    .process-card p {
      color: #5f5954;
      font-size: 14px;
      line-height: 1.6;
      font-weight: 700;
    }

    .process-number {
      position: absolute;
      top: 32px;
      right: 24px;
      color: rgba(243,112,33,0.15);
      font-size: 44px;
      line-height: 1;
      font-weight: 950;
      letter-spacing: -1px;
    }

    .project-cta-section {
      position: relative;
      background: #fff;
      padding: 46px 0 0;
      overflow: hidden;
    }

    .project-cta-wrap {
      width: 100%;
      margin: 0;
      border-radius: 0;
      overflow: hidden;
      box-shadow: 0 16px 34px rgba(243,112,33,0.14);
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 34vw);
      min-height: 172px;
      background: var(--orange);
    }

    .project-cta-content {
      padding: 28px 36px 28px max(36px, calc((100vw - 1220px) / 2));
      display: flex;
      align-items: center;
      gap: 18px;
      color: #fff;
      position: relative;
      z-index: 2;
    }

    .project-cta-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255,255,255,0.17);
      border: 1px solid rgba(255,255,255,0.25);
      display: grid;
      place-items: center;
      flex: 0 0 auto;
    }

    .project-cta-icon svg {
      width: 24px;
      height: 24px;
    }

    .project-cta-copy {
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 8px;
      align-items: center;
    }

    .project-cta-copy strong {
      display: block;
      grid-column: 1;
      font-size: clamp(24px, 2.4vw, 34px);
      line-height: 1.04;
      letter-spacing: -1px;
      font-weight: 950;
      margin-bottom: 0;
    }

    .project-cta-copy span {
      display: block;
      grid-column: 1;
      color: rgba(255,255,255,0.90);
      font-size: 14px;
      line-height: 1.45;
      font-weight: 800;
      max-width: 560px;
      margin-bottom: 0;
    }

    .project-cta-button {
      min-height: 46px;
      padding: 0 18px;
      border-radius: 9px;
      background: #fff;
      color: var(--orange);
      font-size: 13px;
      font-weight: 950;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      width: fit-content;
      white-space: nowrap;
      box-shadow: 0 10px 22px rgba(0,0,0,0.12);
      transition: 0.2s ease;
      flex: 0 0 auto;
      grid-column: 2;
      grid-row: 1 / span 2;
    }

    .project-cta-button svg {
      width: 16px;
      height: 16px;
      flex: 0 0 auto;
    }

    .project-cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(0,0,0,0.16);
    }

    .project-cta-image {
      position: relative;
      min-height: 172px;
      overflow: hidden;
      clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
      background:
        linear-gradient(135deg, rgba(6,7,8,0.22), rgba(6,7,8,0.02)),
        url("20251222_142814.jpg") center center / contain no-repeat,
        #171310;
    }

    .project-cta-image::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(243,112,33,0.14), rgba(0,0,0,0.03));
      pointer-events: none;
    }

    .project-cta-image img {
      display: none;
    }

    .project-cta-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(243,112,33,0.16), rgba(0,0,0,0.04));
      pointer-events: none;
    }

    .service-area-section {
      position: relative;
      background:
        linear-gradient(rgba(6,7,8,0.78), rgba(6,7,8,0.88)),
        url("ChatGPT Image May 15, 2026, 01_48_05 PM.png") center center / cover no-repeat,
        #060708;
      color: #fff;
      padding: 94px 0 104px;
      overflow: hidden;
    }

    .service-area-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 14% 18%, rgba(243,112,33,0.12), transparent 32%),
        radial-gradient(circle at 86% 74%, rgba(243,112,33,0.10), transparent 34%);
      pointer-events: none;
    }

    .service-area-inner {
      position: relative;
      z-index: 2;
      width: min(1220px, calc(100% - 36px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: clamp(36px, 5vw, 68px);
      align-items: stretch;
    }

    .area-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 12px 0;
    }

    .area-content h2 {
      color: #fff;
      font-size: clamp(30px, 3.4vw, 46px);
      line-height: 1.08;
      letter-spacing: -1.5px;
      margin-bottom: 16px;
      max-width: 520px;
    }

    .area-content p {
      color: rgba(255,255,255,0.70);
      font-size: 14px;
      line-height: 1.65;
      max-width: 540px;
      margin-bottom: 20px;
    }

    .area-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      max-width: 530px;
      margin-top: 8px;
    }

    .area-pill {
      min-height: 40px;
      padding: 0 13px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
      color: rgba(255,255,255,0.88);
      font-size: 12px;
      font-weight: 850;
    }

    .area-pill::before {
      content: "";
      width: 8px;
      height: 8px;
      background: var(--orange);
      border-radius: 50%;
      box-shadow: 0 0 0 5px rgba(243,112,33,0.12);
      flex: 0 0 auto;
    }

    .map-card {
      position: relative;
      min-height: 560px;
      height: 100%;
      border-radius: 22px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.10);
      box-shadow: 0 30px 70px rgba(0,0,0,0.24);
    }

    .map-embed {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
      filter: grayscale(0.15) contrast(1.02);
    }

    .map-note {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;
      padding: 16px 18px;
      border-radius: 16px;
      background: rgba(6,7,8,0.76);
      border: 1px solid rgba(255,255,255,0.10);
      backdrop-filter: blur(10px);
    }

    .map-note strong {
      display: block;
      font-size: 15px;
      margin-bottom: 5px;
      color: #fff;
    }

    .map-note span {
      color: rgba(255,255,255,0.68);
      font-size: 12px;
      line-height: 1.45;
      font-weight: 700;
    }

    .testimonials-section {
      background: #fff;
      color: var(--section-text);
      padding: 102px 0 112px;
      overflow: hidden;
    }

    .testimonials-inner {
      width: min(1220px, calc(100% - 36px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.76fr 1.24fr;
      gap: clamp(34px, 5vw, 70px);
      align-items: center;
    }

    .testimonials-left {
      max-width: 430px;
      padding-top: 4px;
    }

    .testimonials-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--orange);
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 16px;
    }

    .testimonials-eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--orange);
    }

    .testimonials-left h2 {
      color: var(--brown);
      font-size: clamp(32px, 3.45vw, 48px);
      line-height: 1.08;
      letter-spacing: -1.35px;
      margin-bottom: 18px;
    }

    .testimonials-left p {
      color: var(--section-muted);
      font-size: 15px;
      line-height: 1.72;
    }

    .review-carousel {
      position: relative;
      height: 430px;
      min-height: 430px;
      border-radius: 22px;
      background: linear-gradient(180deg, #ffffff, #fbf8f5);
      border: 1px solid rgba(35,23,18,0.08);
      box-shadow: 0 28px 64px rgba(35,23,18,0.10);
      overflow: hidden;
      padding: 34px 96px 86px;
    }

    .review-slide {
      display: none;
      height: 100%;
      min-height: 0;
      animation: reviewFade 0.35s ease;
    }

    .review-slide.active {
      display: flex;
      flex-direction: column;
    }

    @keyframes reviewFade {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    .review-quote-mark {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: rgba(243,112,33,0.10);
      color: var(--orange);
      display: grid;
      place-items: center;
      font-size: 38px;
      font-weight: 950;
      margin-bottom: 24px;
    }

    .review-stars {
      color: var(--orange);
      letter-spacing: 2px;
      font-size: 16px;
      margin-bottom: 18px;
    }

    .review-text {
      color: #564c46;
      font-size: 22px;
      line-height: 1.7;
      letter-spacing: -0.35px;
      max-width: 760px;
      margin-bottom: 32px;
    }

    .review-person {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: auto;
    }

    .review-person strong {
      display: block;
      color: var(--brown);
      font-size: 17px;
      font-weight: 950;
      margin-bottom: 4px;
    }

    .review-person span {
      display: block;
      color: var(--orange);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.6px;
    }

    .review-counter {
      color: rgba(35,23,18,0.42);
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 0.4px;
    }

    .review-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(35,23,18,0.12);
      background: #fff;
      color: var(--brown);
      display: grid;
      place-items: center;
      font-size: 26px;
      font-weight: 950;
      box-shadow: 0 14px 30px rgba(35,23,18,0.10);
      cursor: pointer;
      z-index: 4;
      transition: 0.2s ease;
    }

    .review-arrow:hover {
      border-color: rgba(243,112,33,0.26);
      color: var(--orange);
      transform: translateY(-50%) scale(1.03);
    }

    .review-arrow.prev {
      left: 28px;
    }

    .review-arrow.next {
      right: 28px;
    }

    .review-dots {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .review-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 0;
      background: rgba(35,23,18,0.18);
      cursor: pointer;
      transition: 0.2s ease;
    }

    .review-dot.active {
      width: 28px;
      border-radius: 999px;
      background: var(--orange);
    }

    .contact-section {
      position: relative;
      background:
        linear-gradient(rgba(6,7,8,0.76), rgba(6,7,8,0.88)),
        url("ChatGPT Image May 17, 2026, 07_03_43 PM.png") center center / cover no-repeat,
        #060708;
      color: #fff;
      padding: 104px 0 112px;
      overflow: hidden;
    }

    .contact-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 12% 30%, rgba(243,112,33,0.12), transparent 30%),
        radial-gradient(circle at 86% 72%, rgba(243,112,33,0.10), transparent 36%);
      pointer-events: none;
    }

    .contact-inner {
      position: relative;
      z-index: 2;
      width: min(1220px, calc(100% - 36px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.78fr 1.22fr;
      gap: clamp(44px, 6vw, 84px);
      align-items: center;
    }

    .contact-content h2 {
      font-size: clamp(36px, 4vw, 56px);
      line-height: 1.05;
      letter-spacing: -1.8px;
      margin-bottom: 18px;
    }

    .contact-content p {
      max-width: 480px;
      color: rgba(255,255,255,0.70);
      font-size: 15px;
      line-height: 1.75;
      margin-bottom: 30px;
    }

    .contact-info-list {
      display: grid;
      gap: 16px;
      margin-bottom: 28px;
    }

    .contact-info-item {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 13px;
      align-items: center;
    }

    .contact-info-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(243,112,33,0.14);
      color: var(--orange);
      display: grid;
      place-items: center;
      border: 1px solid rgba(243,112,33,0.22);
    }

    .contact-info-icon svg {
      width: 19px;
      height: 19px;
    }

    .contact-info-item span {
      display: block;
      color: rgba(255,255,255,0.52);
      font-size: 12px;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 0.55px;
      margin-bottom: 3px;
    }

    .contact-info-item strong {
      display: block;
      color: #fff;
      font-size: 15px;
      line-height: 1.35;
    }

    .social-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 8px;
    }

    .social-row span {
      color: rgba(255,255,255,0.60);
      font-size: 13px;
      font-weight: 850;
      margin-right: 4px;
    }

    .social-dot {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 12px;
      font-weight: 950;
    }

    .contact-form-card {
      position: relative;
      background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 20px;
      padding: 38px;
      box-shadow: 0 30px 70px rgba(0,0,0,0.26);
      backdrop-filter: blur(12px);
      overflow: hidden;
    }

    .contact-form-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 36px;
      bottom: 36px;
      width: 5px;
      background: var(--orange);
      border-radius: 999px;
    }

    .contact-form-card h3 {
      color: #fff;
      font-size: 27px;
      line-height: 1.1;
      letter-spacing: -0.7px;
      margin-bottom: 10px;
    }

    .contact-form-card > p {
      color: rgba(255,255,255,0.62);
      font-size: 14px;
      line-height: 1.65;
      margin-bottom: 28px;
      max-width: 620px;
    }

    .quote-form {
      display: grid;
      gap: 20px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .field label {
      display: block;
      color: rgba(255,255,255,0.62);
      font-size: 12px;
      font-weight: 850;
      margin-bottom: 8px;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 0;
      border-bottom: 1px solid rgba(255,255,255,0.18);
      background: transparent;
      color: #fff;
      min-height: 42px;
      outline: none;
      resize: vertical;
    }

    .field textarea {
      min-height: 92px;
      padding-top: 8px;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: rgba(255,255,255,0.35);
    }

    .field select {
      color: rgba(255,255,255,0.86);
    }

    .field option {
      color: #111;
    }

    .field input[type="file"] {
      border: 1px dashed rgba(255,255,255,0.22);
      border-radius: 10px;
      min-height: auto;
      padding: 14px 16px;
      background: rgba(255,255,255,0.03);
      cursor: pointer;
    }

    .field input[type="file"]::file-selector-button {
      margin-right: 14px;
      border: 0;
      border-radius: 8px;
      padding: 10px 14px;
      background: var(--orange);
      color: #fff;
      font-weight: 900;
      cursor: pointer;
    }

    .field-note {
      display: block;
      margin-top: 8px;
      color: rgba(255,255,255,0.52);
      font-size: 12px;
      line-height: 1.45;
    }

    .file-error {
      display: none;
      margin-top: 8px;
      color: #ffb1b1;
      font-size: 12px;
      font-weight: 800;
    }

    .selected-file-row {
      margin-top: 10px;
      padding: 10px 12px;
      border-radius: 10px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: rgba(255,255,255,0.82);
      font-size: 12px;
      line-height: 1.35;
    }

    .selected-file-row[hidden] {
      display: none;
    }

    .selected-file-row button {
      width: 26px;
      height: 26px;
      border: 0;
      border-radius: 50%;
      background: rgba(255,255,255,0.10);
      color: #fff;
      display: grid;
      place-items: center;
      cursor: pointer;
      font-size: 18px;
      line-height: 1;
      flex: 0 0 auto;
    }

    .selected-file-row button:hover {
      background: var(--orange);
    }

    .submit-btn {
      margin-top: 8px;
      border: 0;
      min-height: 54px;
      padding: 0 22px;
      width: fit-content;
      border-radius: 8px;
      background: var(--orange);
      color: #fff;
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      cursor: pointer;
      box-shadow: 0 16px 34px rgba(243,112,33,0.22);
      transition: 0.2s ease;
    }

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

    .faq-section {
      background: #fff;
      color: var(--section-text);
      padding: 96px 0 104px;
    }

    .faq-inner {
      width: min(1050px, calc(100% - 36px));
      margin: 0 auto;
    }

    .faq-top {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 42px;
    }

    .faq-eyebrow {
      justify-content: center;
    }

    .faq-eyebrow::after {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--orange);
    }

    .faq-top h2 {
      color: var(--brown);
      font-size: clamp(34px, 4vw, 52px);
      line-height: 1.08;
      letter-spacing: -1.7px;
      margin-bottom: 14px;
    }

    .faq-top p {
      color: var(--section-muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid rgba(35,23,18,0.08);
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 18px 44px rgba(35,23,18,0.06);
      overflow: hidden;
      transition: 0.2s ease;
    }

    .faq-item[open] {
      border-color: rgba(243,112,33,0.22);
      box-shadow: 0 24px 54px rgba(35,23,18,0.09);
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      color: var(--brown);
      font-size: 18px;
      line-height: 1.3;
      letter-spacing: -0.4px;
      font-weight: 950;
      padding: 24px 26px;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(243,112,33,0.10);
      color: var(--orange);
      display: grid;
      place-items: center;
      font-size: 22px;
      line-height: 1;
      font-weight: 900;
      flex: 0 0 auto;
      transition: 0.2s ease;
    }

    .faq-item[open] summary::after {
      content: "−";
      background: var(--orange);
      color: #fff;
    }

    .faq-item p {
      color: var(--section-muted);
      font-size: 14px;
      line-height: 1.65;
      padding: 0 26px 24px;
      margin-top: -4px;
    }

    .footer {
      background: #050607;
      color: #fff;
      padding: 72px 0 28px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .footer-inner {
      width: min(1220px, calc(100% - 36px));
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.1fr 0.8fr 0.8fr 0.9fr;
      gap: 42px;
      padding-bottom: 44px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer-brand strong {
      display: block;
      font-size: 25px;
      letter-spacing: -0.8px;
      margin-bottom: 12px;
    }

    .footer-brand p {
      color: rgba(255,255,255,0.60);
      font-size: 14px;
      line-height: 1.7;
      max-width: 360px;
    }

    .footer-col h4 {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 18px;
      color: #fff;
    }

    .footer-col a,
    .footer-col span {
      display: block;
      color: rgba(255,255,255,0.60);
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 10px;
    }

    .footer-col a:hover {
      color: var(--orange);
    }

    .footer-bottom {
      padding-top: 26px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      color: rgba(255,255,255,0.46);
      font-size: 13px;
    }



    .hero-mobile-collage {
      display: none;
    }

    .gallery-mobile-carousel {
      display: none;
    }

    .gallery-mobile-stage {
      overflow: hidden;
      border-radius: 18px;
    }

    .gallery-mobile-track {
      display: flex;
      transition: transform 0.35s ease;
      will-change: transform;
    }

    .gallery-mobile-slide {
      min-width: 100%;
      flex: 0 0 100%;
    }

    .gallery-mobile-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 24px 52px rgba(0,0,0,0.26);
    }

    .gallery-mobile-feature {
      position: relative;
      min-height: 280px;
      overflow: hidden;
      background: rgba(255,255,255,0.04);
    }

    .gallery-mobile-feature img,
    .gallery-mobile-mini img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .gallery-mobile-feature-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .gallery-mobile-split-half {
      position: relative;
      min-height: 280px;
    }

    .gallery-mobile-split-half::after,
    .gallery-mobile-feature-single::after,
    .gallery-mobile-mini::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.00) 38%, rgba(0,0,0,0.64));
      pointer-events: none;
    }

    .gallery-mobile-split-half::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      width: 1px;
      background: rgba(255,255,255,0.18);
      z-index: 2;
    }

    .gallery-mobile-split-half:last-child::before {
      display: none;
    }

    .gallery-mobile-pill {
      position: absolute;
      left: 14px;
      bottom: 14px;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(20,20,20,0.72);
      backdrop-filter: blur(10px);
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.1px;
      box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    }

    .gallery-mobile-mini-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      padding: 12px;
      background: rgba(6,7,8,0.42);
    }

    .gallery-mobile-mini {
      position: relative;
      min-height: 144px;
      overflow: hidden;
      border-radius: 16px;
    }

    .gallery-mobile-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-top: 18px;
    }

    .gallery-mobile-arrow {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.05);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
    }

    .gallery-mobile-dots {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .gallery-mobile-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      border: 0;
      background: rgba(255,255,255,0.28);
      cursor: pointer;
      transition: 0.2s ease;
    }

    .gallery-mobile-dot.active {
      width: 26px;
      border-radius: 999px;
      background: var(--orange);
    }


    .needs-photo-marker {
      position: relative;
    }

    .needs-photo-overlay {
      position: absolute;
      inset: 0;
      z-index: 8;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 14px;
      background: rgba(255,255,255,0.66);
      backdrop-filter: blur(1.5px);
      text-align: center;
      transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .needs-photo-message {
      width: min(250px, calc(100% - 14px));
      padding: 12px 14px;
      border-radius: 12px;
      background: rgba(255,255,255,0.88);
      border: 1px solid rgba(35,23,18,0.10);
      box-shadow: 0 14px 30px rgba(35,23,18,0.12);
      color: var(--brown);
    }

    .needs-photo-message strong {
      display: block;
      margin-bottom: 9px;
      color: var(--brown);
      font-size: 13px;
      line-height: 1.25;
      font-weight: 950;
      letter-spacing: -0.2px;
    }

    .needs-photo-view-btn {
      min-height: 32px;
      padding: 0 12px;
      border: 0;
      border-radius: 999px;
      background: var(--orange);
      color: #fff;
      font-size: 11px;
      line-height: 1;
      font-weight: 950;
      cursor: pointer;
      box-shadow: 0 10px 20px rgba(243,112,33,0.18);
      transition: 0.2s ease;
    }

    .needs-photo-view-btn:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
    }

    .needs-photo-marker.photo-overlay-hidden .needs-photo-overlay {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }


    .photo-small.one.needs-photo-marker {
      z-index: 3;
    }

    .photo-small.one.needs-photo-marker .needs-photo-overlay {
      align-items: flex-end;
      justify-content: stretch;
      padding: 10px;
      background: rgba(255,255,255,0.36);
    }

    .photo-small.one.needs-photo-marker .needs-photo-message {
      width: 100%;
      max-width: none;
      padding: 10px 12px;
      border-radius: 10px;
      background: rgba(255,255,255,0.88);
    }

    .photo-small.one.needs-photo-marker .needs-photo-message strong {
      font-size: 11px;
      margin-bottom: 8px;
    }

    .photo-small.one.needs-photo-marker .needs-photo-view-btn {
      min-height: 28px;
      padding: 0 10px;
      font-size: 10px;
    }

    .service-image.needs-photo-marker .service-number,
    .gallery-item.needs-photo-marker .gallery-label,
    .gallery-mobile-mini.needs-photo-marker .gallery-mobile-pill {
      z-index: 9;
    }

    @media (max-width: 640px) {
      .needs-photo-overlay {
        padding: 10px;
      }

      .needs-photo-message {
        width: min(230px, calc(100% - 10px));
        padding: 10px 12px;
      }

      .needs-photo-message strong {
        font-size: 12px;
      }

      .needs-photo-view-btn {
        min-height: 30px;
        font-size: 10px;
      }
    }

    /* Mobile sticky CTA bar — hidden by default, shown on mobile */
    .mobile-cta-bar {
      display: none;
    }

    /* Rendering speed helpers */
    .about-section,
    .services-section,
    .mission-section,
    .gallery-section,
    .process-section,
    .project-cta-section,
    .service-area-section,
    .testimonials-section,
    .contact-section,
    .faq-section,
    .footer {
      content-visibility: auto;
      contain-intrinsic-size: 900px;
    }

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

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

      .trust-card {
        width: min(620px, 48vw);
      }

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

      .process-steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-steps::before {
        display: none;
      }

      .testimonials-inner,
      .contact-inner {
        grid-template-columns: 1fr;
      }

      .testimonials-left {
        max-width: 720px;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* ====================================================================
       MOBILE OPTIMIZATIONS — everything below 950px gets a rebuilt layout
       ==================================================================== */
    @media (max-width: 950px) {
      .service-card:hover,
      .process-card:hover,
      .gallery-item:hover img,
      .service-card:hover .service-image img,
      .btn-primary:hover,
      .btn-secondary:hover,
      .about-cta:hover,
      .services-btn:hover,
      .submit-btn:hover {
        transform: none;
      }

      /* ===== HEADER — clean, compact, with CTA visible ===== */
      .site-header {
        background: rgba(255,255,255,0.98);
      }

      .header-inner {
        width: calc(100% - 24px);
        min-height: 64px;
        gap: 12px;
      }

      .brand-logo {
        width: 72px;
        height: 36px;
        transform: translateY(-16px);
      }

      .brand-text strong {
        font-size: 17px;
      }

      .brand-text small {
        display: none;
      }

      .header-cta {
        min-height: 40px;
        padding: 0 14px;
        font-size: 12px;
        border-radius: 8px;
        box-shadow: 0 6px 14px rgba(243,112,33,0.22);
      }

      /* ===== HERO — full-bleed, no overlapping trust card ===== */
      .hero {
        min-height: auto;
        background:
          linear-gradient(180deg, rgba(0,0,0,0.64) 0%, rgba(0,0,0,0.72) 70%, rgba(0,0,0,0.88) 100%),
          url("zh-homes-hero-preload.png") center center / cover no-repeat,
          var(--bg);
      }

      .hero::before {
        display: none;
      }

      .hero-kitchen,
      .curve-stroke {
        display: none;
      }

      .hero-inner {
        min-height: auto;
        align-items: flex-start;
        padding: 48px 0 44px;
        width: calc(100% - 28px);
      }

      .hero-copy {
        max-width: 100%;
        padding-top: 0;
      }

      .eyebrow {
        margin-bottom: 18px;
        font-size: 11px;
        letter-spacing: 1px;
      }

      .eyebrow::before {
        width: 28px;
      }

      h1 {
        font-size: clamp(38px, 11vw, 54px);
        line-height: 1.02;
        letter-spacing: -1.8px;
        font-weight: 800;
        margin-bottom: 18px;
        max-width: 100%;
      }

      h1 br {
        display: none;
      }

      .subheadline {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 38px;
        max-width: 100%;
      }

      .hero-actions {
        flex-direction: column;
        gap: 12px;
      }

      .btn {
        width: 100%;
        min-height: 54px;
        padding: 0 22px;
        font-size: 14px;
        border-radius: 9px;
      }

      /* Trust card becomes a clean stacked card BELOW hero content */
      .trust-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 32px;
        grid-template-columns: 1fr;
        background: rgba(8,10,12,0.86);
        border-radius: 14px;
        box-shadow: 0 16px 36px rgba(0,0,0,0.30);
      }

      .trust-divider {
        width: auto;
        height: 1px;
        background: rgba(255,255,255,0.10);
      }

      .trust-left,
      .trust-right {
        padding: 22px 22px;
      }

      .trust-left {
        padding-bottom: 18px;
      }

      .license-label {
        font-size: 11px;
        margin-bottom: 12px;
      }

      .trust-title {
        font-size: 20px;
        line-height: 1.25;
        margin-bottom: 10px;
      }

      .trust-copy {
        font-size: 14px;
        line-height: 1.55;
      }

      .trust-list {
        gap: 16px;
      }

      .trust-item strong {
        font-size: 15px;
      }

      .trust-item span {
        font-size: 12.5px;
      }

      /* ===== QUICK STATS — 2x2 grid, tighter ===== */
      .quick-stats-inner {
        grid-template-columns: 1fr 1fr;
      }

      .stat-box {
        min-height: 92px;
        padding: 16px 12px;
      }

      .stat-box:nth-child(2n) {
        border-left: 1px solid rgba(255,255,255,0.16);
      }

      .stat-box:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,0.16);
      }

      .stat-box strong {
        font-size: 24px;
        margin-bottom: 6px;
      }

      .stat-box span {
        font-size: 10px;
        letter-spacing: 0.6px;
      }

      /* ===== ABOUT — single column, photos as a clean 2-grid + main ===== */
      .about-section {
        padding: 64px 0 70px;
      }

      .about-inner {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .about-content {
        max-width: 100%;
        order: 1;
      }

      .about-media {
        order: 2;
        min-height: auto;
      }

      .photo-stack {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        position: relative;
      }

      .photo-main {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: 260px;
        grid-column: 1 / -1;
        border-radius: 0;
      }

      .photo-small {
        position: relative;
        left: auto !important;
        bottom: auto;
        width: 100% !important;
        height: 165px;
        border-radius: 0;
      }

      .floating-badge {
        left: 14px;
        top: 14px;
        width: 88px;
        min-height: 88px;
        padding: 10px 8px;
        border-radius: 10px;
        z-index: 5;
      }

      .floating-badge strong {
        font-size: 22px;
        margin-bottom: 4px;
      }

      .floating-badge span {
        font-size: 9px;
      }

      .about-content h2 {
        font-size: 32px;
        letter-spacing: -1.2px;
        line-height: 1.1;
        margin-bottom: 16px;
      }

      .about-content p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 18px;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 20px 0 24px;
      }

      .about-check {
        font-size: 14px;
      }

      .about-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }

      .about-cta {
        width: 100%;
        justify-content: center;
        min-height: 52px;
      }

      .license-note strong {
        font-size: 26px;
      }

      /* ===== SERVICES — single column with bigger images ===== */
      .services-section {
        padding: 70px 0 76px;
      }

      .services-inner {
        width: calc(100% - 28px);
      }

      .services-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        margin-bottom: 36px;
      }

      .services-heading h2 {
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1.12;
      }

      .services-btn {
        width: 100%;
        justify-content: center;
        min-height: 50px;
      }

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

      .service-card {
        grid-template-rows: 200px 1fr;
        min-height: auto;
        border-radius: 14px;
      }

      .service-content {
        padding: 22px 22px 24px;
      }

      .service-content h3 {
        font-size: 20px;
      }

      .service-content p {
        font-size: 14px;
      }

      /* ===== MISSION — stacked, image above stats grid ===== */
      .mission-section {
        padding: 64px 0 68px;
      }

      .mission-inner {
        width: calc(100% - 28px);
      }

      .mission-top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 30px;
      }

      .mission-title h2 {
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1.12;
      }

      .mission-image-box,
      .mission-placeholder-box {
        height: 200px;
        max-width: 100%;
        justify-self: stretch;
      }

      .mission-strip {
        grid-template-columns: 1fr 1fr;
        margin-top: 26px;
        border-radius: 14px;
      }

      .mission-stat {
        min-height: 110px;
        padding: 20px 16px;
        border-right: 1px solid rgba(35,23,18,0.10);
        border-bottom: 1px solid rgba(35,23,18,0.10);
      }

      .mission-stat:nth-child(2n) {
        border-right: 0;
      }

      .mission-stat:nth-last-child(-n+2) {
        border-bottom: 0;
      }

      .mission-stat strong {
        font-size: 21px;
        letter-spacing: -0.7px;
        margin-bottom: 6px;
        white-space: nowrap;
      }

      .mission-stat span {
        font-size: 11px;
        line-height: 1.35;
        letter-spacing: 0.4px;
      }

      /* ===== GALLERY — single column, full-width images ===== */
      .gallery-section {
        padding: 68px 0 76px;
      }

      .gallery-inner {
        width: calc(100% - 28px);
      }

      .gallery-top {
        margin-bottom: 32px;
      }

      .gallery-top h2 {
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1.12;
        margin-bottom: 14px;
      }

      .gallery-top p {
        font-size: 14.5px;
        line-height: 1.6;
      }

      .gallery-eyebrow::before,
      .gallery-eyebrow::after {
        width: 24px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        gap: 14px;
        margin-top: 30px;
      }

      .gallery-item.large {
        grid-row: span 1;
      }

      .gallery-item {
        border-radius: 14px;
      }

      .gallery-label {
        left: 16px;
        bottom: 16px;
      }

      .gallery-label strong {
        font-size: 16px;
      }

      .gallery-label span {
        font-size: 11.5px;
      }

      /* ===== PROCESS — vertical timeline feel ===== */
      .process-section {
        padding: 66px 0 74px;
      }

      .process-inner {
        width: calc(100% - 28px);
      }

      .process-top {
        margin-bottom: 32px;
      }

      .process-top h2 {
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1.12;
      }

      .process-top p {
        font-size: 14.5px;
      }

      .process-eyebrow::before,
      .process-eyebrow::after {
        width: 24px;
      }

      .process-steps {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .process-card {
        padding: 24px 22px 22px;
        border-radius: 14px;
        display: grid;
        grid-template-columns: 54px 1fr;
        grid-template-rows: auto auto;
        gap: 4px 18px;
        align-items: start;
      }

      .process-icon {
        grid-row: 1 / 3;
        margin-bottom: 0;
        width: 50px;
        height: 50px;
      }

      .process-icon svg {
        width: 24px;
        height: 24px;
      }

      .process-card h3 {
        grid-column: 2;
        font-size: 18px;
        margin-bottom: 6px;
        padding-right: 50px;
      }

      .process-card p {
        grid-column: 2;
        font-size: 13.5px;
      }

      .process-number {
        top: 22px;
        right: 20px;
        font-size: 32px;
      }

      /* ===== PROJECT CTA — compact text with diagonal image ===== */
      .project-cta-section {
        padding: 44px 0 0;
      }

      .project-cta-wrap {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .project-cta-content {
        width: calc(100% - 28px);
        margin: 0 auto;
        padding: 22px 0;
        flex-direction: row;
        align-items: center;
        gap: 14px;
      }

      .project-cta-icon {
        width: 44px;
        height: 44px;
        display: grid;
      }

      .project-cta-icon svg {
        width: 22px;
        height: 22px;
      }

      .project-cta-copy {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 9px;
      }

      .project-cta-copy strong {
        grid-column: 1;
        font-size: 25px;
        letter-spacing: -1px;
        margin-bottom: 0;
        white-space: normal;
      }

      .project-cta-copy span {
        grid-column: 1;
        font-size: 14px;
        margin-bottom: 0;
        max-width: 620px;
      }

      .project-cta-button {
        grid-column: 1;
        grid-row: auto;
        width: 100%;
        min-height: 48px;
        padding: 0 22px;
        margin-top: 2px;
      }

      .project-cta-image {
        display: none;
      }

      /* ===== SERVICE AREA — content above map ===== */
      .service-area-section {
        padding: 64px 0 72px;
      }

      .service-area-inner {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .area-content {
        padding: 0;
      }

      .area-content h2 {
        font-size: 28px;
        letter-spacing: -1px;
        line-height: 1.14;
        margin-bottom: 14px;
      }

      .area-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 18px;
      }

      .area-list {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        max-width: 100%;
      }

      .area-pill {
        min-height: 38px;
        padding: 0 12px;
        font-size: 12px;
      }

      .map-card {
        min-height: 380px;
        height: 380px;
        border-radius: 16px;
      }

      .map-note {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px 14px;
        border-radius: 12px;
      }

      .map-note strong {
        font-size: 14px;
      }

      .map-note span {
        font-size: 11.5px;
      }

      /* ===== TESTIMONIALS — single column, redesigned mobile carousel ===== */
      .testimonials-section {
        padding: 64px 0 72px;
      }

      .testimonials-inner {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .testimonials-left {
        max-width: 100%;
      }

      .testimonials-left h2 {
        font-size: 28px;
        letter-spacing: -1px;
        line-height: 1.14;
        margin-bottom: 14px;
      }

      .testimonials-left p {
        font-size: 14.5px;
        line-height: 1.65;
      }

      .review-carousel {
        height: 410px;
        min-height: 410px;
        padding: 26px 22px 78px;
        border-radius: 16px;
      }

      .review-quote-mark {
        width: 48px;
        height: 48px;
        font-size: 30px;
        margin-bottom: 16px;
      }

      .review-stars {
        font-size: 14px;
        margin-bottom: 14px;
      }

      .review-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 22px;
      }

      .review-person {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      .review-person strong {
        font-size: 15px;
      }

      .review-counter {
        font-size: 12px;
      }

      .review-arrow {
        width: 40px;
        height: 40px;
        font-size: 22px;
        top: auto;
        bottom: 22px;
        transform: none;
      }

      .review-arrow:hover {
        transform: scale(1.03);
      }

      .review-arrow.prev {
        left: 20px;
      }

      .review-arrow.next {
        right: 20px;
      }

      .review-dots {
        bottom: 32px;
      }

      .hero-review-section {
        padding: 0 0 34px;
      }

      .hero-review-card {
        width: calc(100% - 28px);
        margin: -34px auto 0;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 22px 20px;
        border-radius: 16px;
      }

      .hero-review-quote {
        font-size: 14.5px;
        line-height: 1.6;
      }

      .hero-review-author {
        text-align: left;
      }

      /* ===== CONTACT — form first feel, clean spacing ===== */
      .contact-section {
        padding: 64px 0 80px;
      }

      .contact-inner {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .contact-content h2 {
        font-size: 32px;
        letter-spacing: -1.3px;
        line-height: 1.08;
        margin-bottom: 14px;
      }

      .contact-content p {
        font-size: 14.5px;
        line-height: 1.65;
        margin-bottom: 24px;
        max-width: 100%;
      }

      .contact-info-list {
        gap: 14px;
        margin-bottom: 22px;
      }

      .contact-info-icon {
        width: 40px;
        height: 40px;
      }

      .contact-info-item strong {
        font-size: 14.5px;
      }

      .contact-form-card {
        padding: 28px 22px;
        border-radius: 16px;
      }

      .contact-form-card::before {
        top: 28px;
        bottom: 28px;
      }

      .contact-form-card h3 {
        font-size: 24px;
      }

      .contact-form-card > p {
        font-size: 13.5px;
        margin-bottom: 22px;
      }

      .quote-form {
        gap: 18px;
      }

      .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .field input,
      .field select,
      .field textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
        min-height: 44px;
      }

      .submit-btn {
        width: 100%;
        min-height: 54px;
      }

      /* ===== FAQ — tighter padding ===== */
      .faq-section {
        padding: 64px 0 72px;
      }

      .faq-inner {
        width: calc(100% - 28px);
      }

      .faq-top {
        margin-bottom: 30px;
      }

      .faq-top h2 {
        font-size: 28px;
        letter-spacing: -1px;
        line-height: 1.14;
      }

      .faq-top p {
        font-size: 14px;
      }

      .faq-eyebrow::after {
        width: 24px;
      }

      .faq-item {
        border-radius: 12px;
      }

      .faq-item summary {
        font-size: 15.5px;
        padding: 20px 22px;
        gap: 14px;
      }

      .faq-item summary::after {
        width: 26px;
        height: 26px;
        font-size: 18px;
      }

      .faq-item p {
        font-size: 13.5px;
        padding: 0 22px 20px;
      }

      /* ===== FOOTER — clean stacked, with bottom padding for sticky bar ===== */
      .footer {
        padding: 56px 0 110px; /* Extra bottom padding for sticky mobile bar */
      }

      .footer-inner {
        width: calc(100% - 28px);
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px 24px;
        padding-bottom: 32px;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }

      .footer-brand strong {
        font-size: 22px;
      }

      .footer-brand p {
        font-size: 13.5px;
      }

      .footer-col h4 {
        font-size: 13px;
        margin-bottom: 14px;
      }

      .footer-col a,
      .footer-col span {
        font-size: 13.5px;
        margin-bottom: 8px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-top: 22px;
        font-size: 12px;
      }

      /* ===== STICKY MOBILE CTA BAR — call + text always accessible ===== */
      .mobile-cta-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 60;
        padding: 10px;
        background: rgba(8,10,12,0.94);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 14px;
        backdrop-filter: blur(14px);
        box-shadow: 0 14px 34px rgba(0,0,0,0.40);
      }

      .mobile-cta-bar a {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 950;
        letter-spacing: 0.2px;
      }

      .mobile-cta-bar a svg {
        width: 16px;
        height: 16px;
      }

      .mobile-cta-bar .cta-call {
        background: var(--orange);
        color: #fff;
        box-shadow: 0 6px 14px rgba(243,112,33,0.30);
      }

      .mobile-cta-bar .cta-quote {
        background: rgba(255,255,255,0.08);
        color: #fff;
        border: 1px solid rgba(255,255,255,0.18);
      }


      /* ===== FINAL MOBILE CLEANUP PASS ===== */
      /* Cut the crowded trust/stats blocks from the mobile hero. */
      .trust-card,
      .quick-stats {
        display: none;
      }

      .hero-inner {
        padding: 42px 0 42px;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 18px;
      }

      .hero-mobile-collage {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 10px;
        margin-top: 8px;
      }

      .hero-mobile-collage-main,
      .hero-mobile-collage-small {
        position: relative;
        overflow: hidden;
        border-radius: 14px;
        background: rgba(255,255,255,0.08);
        box-shadow: 0 16px 36px rgba(0,0,0,0.24);
      }

      .hero-mobile-collage-main {
        min-height: 230px;
      }

      .hero-mobile-collage-side {
        display: grid;
        gap: 10px;
      }

      .hero-mobile-collage-small {
        min-height: 110px;
      }

      .hero-mobile-collage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      /* About mobile order: headline, subheadline, photos, bullets, CTA. */
      .about-inner {
        display: flex;
        flex-direction: column;
        gap: 24px;
      }

      .about-content {
        display: contents;
      }

      .about-content .section-eyebrow {
        order: 1;
        margin-bottom: -10px;
      }

      .about-content h2 {
        order: 2;
        margin-bottom: -8px;
      }

      .about-content p {
        display: none;
      }

      .about-content p:first-of-type {
        order: 3;
        display: block;
        color: var(--section-muted);
        font-size: 15px;
        line-height: 1.68;
        margin: 0;
      }

      .about-media {
        order: 4;
        width: calc(100% + 28px);
        margin-left: -14px;
        margin-right: -14px;
      }

      .license-note,
      .floating-badge {
        display: none;
      }

      .about-grid {
        order: 5;
        margin: 0;
      }

      .about-bottom {
        order: 6;
        width: 100%;
        margin-top: 0;
      }

      .about-cta {
        width: 100%;
        justify-content: center;
      }

      /* Mobile gallery becomes a horizontal carousel instead of a long stack. */
      .gallery-grid {
        display: none;
      }

      .gallery-mobile-carousel {
        display: block;
        margin-top: 26px;
      }

      /* Keep the project CTA compact on small screens. */
      .project-cta-content {
        width: calc(100% - 28px);
        padding: 22px 0;
        background: transparent;
      }

      .project-cta-icon {
        display: grid;
      }

      .project-cta-copy {
        flex: 1;
        min-width: 0;
      }

      .project-cta-copy strong {
        font-size: 24px;
      }

      .project-cta-button {
        width: 100%;
      }

      /* Move the testimonial intro paragraph below the review box on mobile. */
      .testimonials-inner {
        display: flex;
        flex-direction: column;
      }

      .testimonials-left {
        display: contents;
      }

      .testimonials-eyebrow {
        order: 1;
      }

      .testimonials-left h2 {
        order: 2;
      }

      .review-carousel {
        order: 3;
      }

      .testimonials-left p {
        display: none;
      }

      /* Contact mobile order: headline, subheadline, quote form, contact info, follow row. */
      .contact-inner {
        display: flex;
        flex-direction: column;
        gap: 24px;
      }

      .contact-content {
        display: contents;
      }

      .contact-eyebrow {
        order: 1;
        margin-bottom: -8px;
      }

      .contact-content h2 {
        order: 2;
      }

      .contact-content p {
        order: 3;
        margin-bottom: 0;
      }

      .contact-form-card {
        order: 4;
      }

      .contact-info-list {
        order: 5;
        margin: 0;
        padding: 18px;
        border-radius: 16px;
        background: rgba(255,255,255,0.055);
        border: 1px solid rgba(255,255,255,0.10);
      }

      .social-row {
        order: 6;
        margin-top: -8px;
        padding: 0 2px;
      }

    }

    @media (max-width: 460px) {
      .header-inner {
        gap: 8px;
      }

      .hero-mobile-collage {
        grid-template-columns: 1fr;
      }

      .hero-mobile-collage-main {
        min-height: 200px;
      }

      .hero-mobile-collage-side {
        grid-template-columns: 1fr 1fr;
      }

      .brand-text strong {
        font-size: 16px;
      }

      .header-cta {
        padding: 0 12px;
        font-size: 11.5px;
      }

      .hero-inner {
        padding: 40px 0 36px;
      }

      h1 {
        font-size: clamp(34px, 10vw, 46px);
        letter-spacing: -1.5px;
      }

      .subheadline {
        font-size: 14.5px;
      }

      .trust-left,
      .trust-right {
        padding: 20px 18px;
      }

      .trust-title {
        font-size: 19px;
      }

      .quick-stats-inner {
        grid-template-columns: 1fr 1fr;
      }

      .stat-box {
        min-height: 84px;
        padding: 14px 10px;
      }

      .stat-box strong {
        font-size: 22px;
      }

      .stat-box span {
        font-size: 9.5px;
      }

      .about-content h2,
      .services-heading h2,
      .mission-title h2,
      .gallery-top h2,
      .process-top h2 {
        font-size: 27px;
        letter-spacing: -1px;
      }

      .photo-main {
        height: 200px;
      }

      .photo-small {
        height: 120px;
      }

      .review-carousel {
        padding: 22px 18px 74px;
      }

      .review-arrow {
        width: 38px;
        height: 38px;
        font-size: 20px;
      }

      .review-arrow.prev {
        left: 16px;
      }

      .review-arrow.next {
        right: 16px;
      }

      .contact-form-card {
        padding: 24px 18px;
      }
    }

    /* ===== V7 MOBILE-ONLY HERO + ABOUT TWEAKS ===== */
    @media (max-width: 950px) {
      .hero {
        background:
          radial-gradient(circle at 18% 18%, rgba(243,112,33,0.10), transparent 26%),
          linear-gradient(180deg, #0a0d10 0%, #12171d 62%, #0d1014 100%) !important;
        overflow: visible;
      }

      .hero::before {
        display: none;
      }

      .hero::after {
        content: "";
        position: absolute;
        right: -58px;
        top: 170px;
        width: 72%;
        height: 280px;
        background: linear-gradient(135deg, #ff7f1f 0%, #f37021 100%);
        clip-path: polygon(26% 0, 100% 0, 100% 88%, 0 88%);
        border-radius: 26px 0 0 26px;
        z-index: 0;
        box-shadow: 0 24px 54px rgba(243,112,33,0.18);
      }

      .hero-kitchen,
      .curve-stroke {
        display: none;
      }

      .hero-inner {
        position: relative;
        z-index: 2;
        min-height: auto;
        align-items: flex-start;
        padding: 42px 0 34px;
        width: calc(100% - 28px);
      }

      .hero-copy {
        max-width: 100%;
      }

      .eyebrow {
        margin-bottom: 18px;
        font-size: 11px;
      }

      h1 {
        font-size: clamp(40px, 12vw, 56px);
        line-height: 0.98;
        letter-spacing: -1.8px;
        margin-bottom: 18px;
        max-width: 100%;
      }

      h1 br {
        display: none;
      }

      .subheadline {
        font-size: 15px;
        line-height: 1.58;
        margin-bottom: 26px;
        max-width: 100%;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 0;
      }

      .btn {
        min-height: 56px;
        border-radius: 12px;
      }

      .btn-primary {
        box-shadow: 0 16px 30px rgba(243,112,33,0.18);
      }

      .btn-secondary {
        background: rgba(255,255,255,0.04);
        border-color: rgba(243,112,33,0.45);
      }

      .hero-mobile-collage {
        display: block;
        width: calc(100% - 34px);
        max-width: 330px;
        margin: 26px 0 0 auto;
        position: relative;
        z-index: 2;
      }

      .hero-mobile-collage-main {
        position: relative;
        overflow: hidden;
        border-radius: 24px 0 24px 24px;
        min-height: 270px;
        background: rgba(255,255,255,0.08);
        box-shadow: 0 26px 44px rgba(0,0,0,0.34);
      }

      .hero-mobile-collage-main::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0.00), rgba(0,0,0,0.08));
        pointer-events: none;
      }

      .hero-mobile-collage-side {
        display: none;
      }

      .hero-mobile-collage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
      }

      .quick-stats {
        background: transparent;
        padding: 0 0 18px;
        margin-top: -4px;
        z-index: 5;
      }

      .quick-stats-inner {
        width: calc(100% - 28px);
        grid-template-columns: 1fr 1fr;
        background: linear-gradient(135deg, #08131a 0%, #0b1820 52%, #071017 100%);
        border-radius: 22px;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 22px 44px rgba(0,0,0,0.26);
      }

      .stat-box {
        min-height: 120px;
        padding: 20px 16px;
        border-left: 0;
        border-right: 1px solid rgba(255,255,255,0.10);
        border-bottom: 1px solid rgba(255,255,255,0.10);
      }

      .stat-box:nth-child(2n) {
        border-right: 0;
      }

      .stat-box:nth-last-child(-n+2) {
        border-bottom: 0;
      }

      .stat-box:last-child {
        border-right: 0;
      }

      .stat-box strong {
        font-size: 20px;
        margin-bottom: 7px;
      }

      .stat-box span {
        font-size: 10px;
        line-height: 1.3;
      }

      .about-media {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
      }

      .photo-stack {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      .photo-main {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: 240px;
        grid-column: 1 / -1;
        border-radius: 22px;
      }

      .photo-small {
        position: relative;
        left: auto !important;
        bottom: auto;
        width: 100% !important;
        height: 146px;
        border-radius: 18px;
      }

      .floating-badge {
        left: 14px;
        top: 14px;
        width: 88px;
        min-height: 90px;
        padding: 10px 8px;
        border-radius: 12px;
        z-index: 5;
      }
    }

    @media (max-width: 620px) {
      .quick-stats-inner {
        grid-template-columns: 1fr 1fr;
      }

      .hero::after {
        top: 198px;
        width: 76%;
        height: 250px;
      }

      .hero-mobile-collage {
        width: calc(100% - 44px);
        max-width: 300px;
      }

      .photo-main {
        height: 214px;
      }

      .photo-small {
        height: 128px;
      }
    }


    .hero-mobile-title,
    .hero-mobile-subheadline,
    .hero-quick-gallery,
    .testimonials-mobile-subheadline {
      display: none;
    }

    /* ===== V10 MOBILE REQUESTS: mobile hero copy, quick swipe gallery, one-by-one project carousel, testimonial subheadline ===== */
    .about-kicker {
      margin: -6px 0 16px;
      color: var(--orange) !important;
      font-size: 14px !important;
      line-height: 1.45 !important;
      font-weight: 900;
      letter-spacing: -0.1px;
    }

    @media (max-width: 950px) {
      .hero {
        min-height: auto;
        background:
          linear-gradient(180deg, rgba(6,7,8,0.68) 0%, rgba(6,7,8,0.76) 45%, rgba(6,7,8,0.90) 100%),
          url("874d1223-50ee-45da-a0dd-12cf574aed49 (1).webp") center center / cover no-repeat,
          #060708 !important;
        overflow: hidden;
      }

      .hero::before,
      .hero::after,
      .hero-kitchen,
      .curve-stroke {
        display: none !important;
        content: none !important;
      }

      .hero-inner {
        min-height: 690px;
        padding: 44px 0 52px;
      }

      .hero-copy {
        position: relative;
        z-index: 3;
        max-width: 100%;
      }

      .hero-copy > h1:not(.hero-mobile-title),
      .hero-copy > .subheadline:not(.hero-mobile-subheadline) {
        display: none !important;
      }

      .hero-mobile-title {
        display: block;
        max-width: 430px;
        margin: 0 0 28px;
        color: #fff;
        font-size: clamp(40px, 12vw, 58px);
        line-height: 1;
        letter-spacing: -1.9px;
        font-weight: 900;
      }

      .hero-mobile-subheadline {
        display: block;
        max-width: 390px;
        margin: 0 0 52px;
        color: rgba(255,255,255,0.78);
        font-size: 15px;
        line-height: 1.58;
        font-weight: 700;
      }

      .hero-mobile-collage {
        display: none !important;
      }

      .hero-actions {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        gap: 14px;
      }

      .hero-actions .btn {
        width: 100%;
        justify-content: center;
        min-height: 58px;
      }

      .hero-quick-gallery {
        display: none !important;
      }

      .hero-quick-gallery {
        display: block;
        margin-top: 34px;
        width: min(390px, 100%);
      }

      .hero-quick-gallery-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
        color: rgba(255,255,255,0.84);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.8px;
      }

      .hero-quick-gallery-head span:last-child {
        color: var(--orange);
        font-size: 11px;
        letter-spacing: 0.5px;
      }

      .hero-quick-gallery-track {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 18px 12px 0;
        scrollbar-width: none;
      }

      .hero-quick-gallery-track::-webkit-scrollbar {
        display: none;
      }

      .hero-quick-gallery-card {
        position: relative;
        flex: 0 0 78%;
        min-height: 156px;
        border-radius: 18px;
        overflow: hidden;
        scroll-snap-align: start;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.10);
        box-shadow: 0 20px 42px rgba(0,0,0,0.28);
      }

      .hero-quick-gallery-card img {
        width: 100%;
        height: 156px;
        object-fit: cover;
        display: block;
      }

      .hero-quick-gallery-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.00) 42%, rgba(0,0,0,0.62));
        pointer-events: none;
      }

      .hero-quick-gallery-card span {
        position: absolute;
        left: 12px;
        bottom: 12px;
        z-index: 2;
        min-height: 30px;
        padding: 0 12px;
        display: inline-flex;
        align-items: center;
        border-radius: 999px;
        background: rgba(6,7,8,0.70);
        color: #fff;
        font-size: 11px;
        font-weight: 900;
        backdrop-filter: blur(10px);
      }

      .about-content .about-kicker {
        display: block !important;
        order: 3;
        margin: -10px 0 0;
        color: #5f5954 !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
        font-weight: 850;
      }

      .about-media {
        order: 4;
      }

      .about-grid {
        order: 5;
      }

      .about-bottom {
        order: 6;
      }

      .gallery-mobile-carousel {
        display: block;
        max-width: calc(100% - 8px);
        margin: 30px auto 0;
      }

      .gallery-mobile-fixed {
        display: none !important;
      }

      .gallery-mobile-stage {
        margin-top: 0;
        overflow: hidden;
        border-radius: 22px;
      }

      .gallery-mobile-slide {
        padding: 0 2px;
      }

      .gallery-mobile-single {
        display: block;
      }

      .gallery-mobile-single .gallery-mobile-mini {
        min-height: 360px;
        border-radius: 22px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 22px 50px rgba(0,0,0,0.28);
      }

      .gallery-mobile-single .gallery-mobile-mini img {
        height: 360px;
      }

      .gallery-mobile-pill {
        left: 14px;
        bottom: 14px;
        min-height: 34px;
        padding: 0 14px;
        font-size: 11.5px;
      }

      .gallery-mobile-controls {
        margin-top: 18px;
      }

      .testimonials-mobile-subheadline {
        display: block;
        margin-top: 12px;
        color: var(--section-muted);
        font-size: 14px;
        line-height: 1.6;
        font-weight: 750;
      }
    }

    @media (max-width: 460px) {
      .hero-inner {
        min-height: 650px;
        padding: 40px 0 64px;
      }

      .hero-mobile-title {
        max-width: 365px;
        font-size: clamp(39px, 12.8vw, 52px);
        letter-spacing: -1.75px;
      }

      .hero-mobile-subheadline {
        max-width: 345px;
        margin-bottom: 50px;
        font-size: 14.5px;
      }

      .review-carousel {
        height: 440px;
        min-height: 440px;
      }

      .hero-quick-gallery-card {
        flex-basis: 82%;
        min-height: 144px;
      }

      .hero-quick-gallery-card img {
        height: 144px;
      }

      .gallery-mobile-carousel {
        max-width: calc(100% - 4px);
      }

      .gallery-mobile-single .gallery-mobile-mini {
        min-height: 315px;
        border-radius: 20px;
      }

      .gallery-mobile-single .gallery-mobile-mini img {
        height: 315px;
      }

      .gallery-mobile-pill {
        left: 12px;
        right: 12px;
        bottom: 12px;
        justify-content: center;
        text-align: center;
        font-size: 10.8px;
      }
    }

    /* ===== FINAL MOBILE-ONLY CTA WIDTH FIX ===== */
    @media (max-width: 950px) {
      .hero-copy {
        width: 100%;
        max-width: 100% !important;
      }

      .hero-actions {
        width: 100% !important;
        max-width: none !important;
        display: grid;
        grid-template-columns: 1fr;
      }

      .hero-actions .btn {
        width: 100% !important;
        max-width: none !important;
        justify-content: center;
      }

      .hero-mobile-title,
      .hero-mobile-subheadline {
        max-width: 100% !important;
      }
    }



    /* ===== FINAL POLISH: mobile review, CTA image cover, contact bullets ===== */
    .project-cta-image {
      background:
        linear-gradient(135deg, rgba(6,7,8,0.16), rgba(6,7,8,0.00)),
        url("20251222_142814.jpg") center center / cover no-repeat,
        #171310 !important;
    }

    .contact-info-list {
      gap: 12px;
    }

    .contact-info-item {
      position: relative;
      display: block;
      padding-left: 19px;
    }

    .contact-info-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 0 5px rgba(243,112,33,0.12);
    }

    .contact-info-icon,
    .contact-info-item span {
      display: none !important;
    }

    .contact-info-item strong {
      color: rgba(255,255,255,0.92);
      font-size: 15px;
      line-height: 1.45;
      font-weight: 850;
    }

    .hero-review-section {
      display: none;
    }

    @media (max-width: 950px) {
      .hero-mobile-title {
        margin-bottom: 14px !important;
      }

      .hero-mobile-subheadline {
        margin-bottom: 46px !important;
      }

      .hero-review-section {
        display: block;
        background: #fff;
        padding: 30px 0 42px;
      }

      .hero-review-card {
        width: calc(100% - 28px);
        margin: 0 auto;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px 22px 22px;
        border-radius: 20px;
        background: linear-gradient(135deg, #11100e 0%, #1d1713 100%);
        border: 1px solid rgba(255,255,255,0.08);
        border-left: 0;
        box-shadow: 0 22px 46px rgba(35,23,18,0.22);
        overflow: hidden;
      }

      .hero-review-card::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 4px;
        background: var(--orange);
      }

      .hero-review-stars {
        font-size: 14px;
        letter-spacing: 2px;
      }

      .hero-review-quote {
        color: rgba(255,255,255,0.88);
        font-size: 15px;
        line-height: 1.62;
        font-weight: 750;
      }

      .hero-review-author {
        text-align: left;
        min-width: 0;
      }

      .hero-review-author strong {
        color: #fff;
      }

      .hero-review-author span {
        color: var(--orange);
      }
    }


    /* ===== FINAL MOBILE POLISH OVERRIDES ===== */
    .service-area-inner {
      grid-template-rows: auto auto;
      align-items: center;
    }

    .service-area-inner > .area-content {
      grid-column: 1;
      grid-row: 1;
    }

    .service-area-inner > .map-card {
      grid-column: 2;
      grid-row: 1 / span 2;
    }

    .service-area-inner > .area-list {
      grid-column: 1;
      grid-row: 2;
      align-self: start;
      margin-top: -26px;
    }

    .contact-info-list {
      display: grid;
      gap: 14px;
      margin-bottom: 28px;
    }

    .contact-info-item {
      position: relative !important;
      display: block !important;
      padding: 0 0 0 20px !important;
      background: transparent !important;
      border: 0 !important;
      box-shadow: none !important;
      border-radius: 0 !important;
    }

    .contact-info-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 0 5px rgba(243,112,33,0.12);
    }

    .contact-info-icon,
    .contact-info-item span {
      display: none !important;
    }

    .contact-info-item strong {
      color: rgba(255,255,255,0.94) !important;
      font-size: 15px;
      line-height: 1.5;
      font-weight: 850;
    }

    .hero-review-section {
      display: none;
    }

    @media (max-width: 950px) {
      .hero-copy {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
      }

      .hero-copy .eyebrow {
        justify-content: center;
      }

      .hero-copy .eyebrow::before {
        display: none;
      }

      .hero-mobile-title,
      .hero-copy h1 {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
      }

      .hero-mobile-subheadline,
      .hero-copy .subheadline {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
        max-width: 92%;
      }

      .hero-actions {
        width: 100%;
      }

      .hero-mobile-collage {
        margin-left: auto !important;
        margin-right: auto !important;
      }

      .hero-review-section {
        display: block !important;
        background: #fff;
        padding: 34px 0 46px !important;
      }

      .hero-review-card {
        position: relative;
        width: calc(100% - 28px);
        margin: 0 auto;
        display: block;
        padding: 23px 21px 22px;
        border-radius: 24px;
        background:
          radial-gradient(circle at 14% 0%, rgba(243,112,33,0.22), transparent 34%),
          linear-gradient(145deg, #0a0c0e 0%, #17110e 62%, #0b0d0f 100%);
        border: 1px solid rgba(255,255,255,0.10);
        border-left: 0;
        box-shadow: 0 24px 54px rgba(35,23,18,0.26);
        overflow: hidden;
        color: #fff;
      }

      .hero-review-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.00) 42%),
          linear-gradient(90deg, var(--orange), transparent 42%);
        opacity: 0.42;
        pointer-events: none;
      }

      .hero-review-card::after {
        content: "\201C";
        position: absolute;
        right: 18px;
        top: 40px;
        color: rgba(243,112,33,0.18);
        font-size: 110px;
        line-height: 1;
        font-weight: 950;
        pointer-events: none;
      }

      .hero-review-top,
      .hero-review-quote,
      .hero-review-bottom {
        position: relative;
        z-index: 2;
      }

      .hero-review-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 18px;
      }

      .hero-review-badge {
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        padding: 0 12px;
        border-radius: 999px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
        color: rgba(255,255,255,0.84);
        font-size: 10px;
        line-height: 1;
        font-weight: 950;
        letter-spacing: 0.75px;
        text-transform: uppercase;
      }

      .hero-review-stars {
        color: var(--orange);
        font-size: 14px;
        letter-spacing: 1.7px;
        white-space: nowrap;
      }

      .hero-review-quote {
        color: rgba(255,255,255,0.92);
        font-size: 16px;
        line-height: 1.72;
        letter-spacing: -0.15px;
        font-weight: 750;
        margin: 0 0 21px;
      }

      .hero-review-bottom {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,0.10);
      }

      .hero-review-avatar {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--orange);
        color: #fff;
        font-size: 12px;
        font-weight: 950;
        letter-spacing: 0.4px;
        flex: 0 0 auto;
        box-shadow: 0 12px 24px rgba(243,112,33,0.20);
      }

      .hero-review-author {
        display: grid;
        gap: 3px;
        text-align: left !important;
        min-width: 0;
      }

      .hero-review-author strong {
        color: #fff;
        font-size: 14px;
        line-height: 1.2;
        font-weight: 950;
      }

      .hero-review-author span {
        color: rgba(255,255,255,0.58);
        font-size: 10.5px;
        line-height: 1.2;
        font-weight: 900;
        letter-spacing: 0.8px;
        text-transform: uppercase;
      }

      .service-area-inner {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto auto;
        gap: 24px !important;
      }

      .service-area-inner > .area-content {
        grid-column: 1;
        grid-row: 1;
      }

      .service-area-inner > .map-card {
        grid-column: 1;
        grid-row: 2;
        margin-top: 2px;
      }

      .service-area-inner > .area-list {
        grid-column: 1;
        grid-row: 3;
        margin-top: 0;
      }
    }

    @media (max-width: 520px) {
      .hero-review-card {
        padding: 22px 18px 20px;
        border-radius: 22px;
      }

      .hero-review-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
      }

      .hero-review-quote {
        font-size: 15px;
        line-height: 1.68;
      }
    }



    /* ===== FINAL CONTACT + FEATURED REVIEW CLEANUP ===== */
    @media (max-width: 950px) {
      .hero-review-card::before {
        display: none !important;
        content: none !important;
      }
    }

    .contact-info-list {
      list-style: none !important;
      padding: 0 !important;
      margin: 0 0 28px !important;
      display: grid !important;
      gap: 12px !important;
      background: transparent !important;
      border: 0 !important;
      box-shadow: none !important;
    }

    .contact-info-item {
      position: relative !important;
      display: block !important;
      padding: 0 0 0 20px !important;
      margin: 0 !important;
      background: transparent !important;
      border: 0 !important;
      box-shadow: none !important;
      border-radius: 0 !important;
      min-height: auto !important;
    }

    .contact-info-item::before {
      content: "" !important;
      position: absolute !important;
      left: 0 !important;
      top: 9px !important;
      width: 7px !important;
      height: 7px !important;
      border-radius: 50% !important;
      background: var(--orange) !important;
      box-shadow: 0 0 0 5px rgba(243,112,33,0.12) !important;
    }

    .contact-info-icon,
    .contact-info-item svg,
    .contact-info-item > div {
      display: none !important;
    }

    .contact-info-item a,
    .contact-info-item span {
      display: inline !important;
      color: rgba(255,255,255,0.94) !important;
      font-size: 15px !important;
      line-height: 1.5 !important;
      font-weight: 850 !important;
      text-transform: none !important;
      letter-spacing: 0 !important;
      margin: 0 !important;
      background: transparent !important;
      border: 0 !important;
      box-shadow: none !important;
      text-decoration: none !important;
    }

    .contact-info-item a:hover {
      color: var(--orange) !important;
    }



    /* ===== MOBILE HERO LOWERING + CTA VISIBILITY FIX ===== */
    @media (max-width: 950px) {
      .hero {
        min-height: calc(100svh - 58px) !important;
      }

      .hero-inner {
        min-height: calc(100svh - 58px) !important;
        padding: clamp(96px, 13svh, 128px) 0 48px !important;
        align-items: flex-start !important;
      }

      .hero-copy {
        transform: translateY(18px);
      }

      .hero-mobile-title {
        margin-bottom: 18px !important;
      }

      .hero-mobile-subheadline {
        margin-bottom: 28px !important;
      }

      .hero-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
      }

      .hero-actions .btn {
        width: 100% !important;
        min-height: 56px !important;
        justify-content: center !important;
      }

      .mobile-cta-bar {
        display: grid;
        opacity: 0;
        transform: translateY(18px);
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease;
      }

      body.hero-cta-visible .mobile-cta-bar {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }
    }


    /* ===== MOBILE HERO REVIEW INSIDE HERO + SMOOTHER STICKY CTA ===== */
    .hero-inline-review {
      display: none;
    }

    @media (max-width: 950px) {
      .hero {
        min-height: calc(106svh - 58px) !important;
      }

      .hero-inner {
        min-height: calc(106svh - 58px) !important;
        padding: clamp(116px, 15.5svh, 150px) 0 34px !important;
        align-items: flex-start !important;
      }

      .hero-copy {
        transform: translateY(24px) !important;
      }

      .hero-mobile-title {
        margin-bottom: 18px !important;
      }

      .hero-mobile-subheadline {
        margin-bottom: 30px !important;
      }

      .hero-actions {
        margin-bottom: 0 !important;
      }

      .hero-inline-review {
        display: block;
        width: 100%;
        margin: 20px auto 0;
      }

      .hero-inline-review .hero-review-card {
        width: 100%;
        margin: 0 auto;
        max-width: 440px;
        padding: 18px 18px 17px;
        border-radius: 20px;
        box-shadow: 0 20px 46px rgba(0,0,0,0.30);
      }

      .hero-inline-review .hero-review-top {
        margin-bottom: 12px;
      }

      .hero-inline-review .hero-review-badge {
        min-height: 27px;
        padding: 0 10px;
        font-size: 9.5px;
      }

      .hero-inline-review .hero-review-stars {
        font-size: 13px;
      }

      .hero-inline-review .hero-review-quote {
        font-size: 14px;
        line-height: 1.58;
        margin-bottom: 15px;
      }

      .hero-inline-review .hero-review-bottom {
        padding-top: 12px;
      }

      .hero-inline-review .hero-review-avatar {
        width: 38px;
        height: 38px;
      }

      .hero-review-section {
        display: none !important;
      }

      .mobile-cta-bar {
        display: grid;
        opacity: 0;
        visibility: hidden;
        transform: translateY(22px);
        pointer-events: none;
        transition:
          opacity 0.48s ease,
          transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
          visibility 0s linear 0.48s;
        will-change: opacity, transform;
      }

      body.hero-cta-visible .mobile-cta-bar {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        transition:
          opacity 0.48s ease,
          transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
          visibility 0s;
      }
    }

    @media (max-width: 520px) {
      .hero-inline-review .hero-review-card {
        max-width: 100%;
        padding: 17px 16px 16px;
      }

      .hero-inline-review .hero-review-top {
        flex-direction: row;
        align-items: center;
        gap: 10px;
      }

      .hero-inline-review .hero-review-quote {
        font-size: 13.5px;
      }
    }


    /* ===== MOBILE REVIEW SPACING + SLOW DELAYED STICKY CTA ===== */
    @media (max-width: 950px) {
      .hero {
        min-height: calc(110svh - 58px) !important;
      }

      .hero-inner {
        min-height: calc(110svh - 58px) !important;
        padding-bottom: 58px !important;
      }

      .hero-inline-review {
        margin-top: 36px !important;
      }

      .hero-inline-review .hero-review-card {
        background:
          radial-gradient(circle at 12% 0%, rgba(243,112,33,0.14), transparent 34%),
          linear-gradient(145deg, rgba(4,5,6,0.98) 0%, rgba(12,10,9,0.98) 58%, rgba(4,5,6,0.98) 100%) !important;
        border: 1px solid rgba(255,255,255,0.16) !important;
        box-shadow:
          0 26px 58px rgba(0,0,0,0.46),
          0 0 0 1px rgba(243,112,33,0.08) inset !important;
      }

      .hero-inline-review .hero-review-badge {
        background: rgba(255,255,255,0.11) !important;
        border-color: rgba(255,255,255,0.18) !important;
      }

      .hero-inline-review .hero-review-quote {
        color: rgba(255,255,255,0.94) !important;
      }

      .mobile-cta-bar {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(26px) !important;
        pointer-events: none !important;
        transition:
          opacity 1.25s ease,
          transform 1.25s cubic-bezier(0.16, 1, 0.3, 1),
          visibility 0s linear 1.25s !important;
        will-change: opacity, transform;
      }

      body.hero-cta-visible .mobile-cta-bar {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
        transition:
          opacity 1.25s ease,
          transform 1.25s cubic-bezier(0.16, 1, 0.3, 1),
          visibility 0s !important;
      }
    }

    @media (max-width: 520px) {
      .hero-inline-review {
        margin-top: 34px !important;
      }
    }



    /* ===== FINAL REQUESTED SPACING + MOBILE ABOUT CHECKMARK FIX ===== */
    /* Adds a little more breathing room before the footer starts. */
    .faq-section {
      padding-bottom: 132px !important;
    }

    @media (max-width: 950px) {
      /* Keep the featured review lower inside the mobile hero. */
      .hero {
        min-height: calc(114svh - 58px) !important;
      }

      .hero-inner {
        min-height: calc(114svh - 58px) !important;
        padding-bottom: 76px !important;
      }

      .hero-inline-review {
        margin-top: 58px !important;
      }

      /* About Us checkmarks: mobile only, locked to the left. */
      .about-grid {
        width: 100% !important;
        justify-items: start !important;
        align-items: start !important;
        text-align: left !important;
      }

      .about-check {
        width: 100% !important;
        grid-template-columns: 20px minmax(0, 1fr) !important;
        justify-content: start !important;
        justify-items: start !important;
        align-items: start !important;
        text-align: left !important;
      }

      .about-check svg {
        justify-self: start !important;
        margin-left: 0 !important;
      }

      .about-check span,
      .about-check strong {
        text-align: left !important;
      }

      .faq-section {
        padding-bottom: 98px !important;
      }
    }

    @media (max-width: 520px) {
      .hero-inline-review {
        margin-top: 54px !important;
      }
    }

    /* No emoji/symbol rating text */
    .hero-review-stars,
    .review-stars {
      letter-spacing: 0.55px;
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
    }


    /* ===== ABOUT US IMAGE STACK FIX: keeps the fireplace image below the top image ===== */
    #about .photo-stack {
      position: relative;
      height: 552px;
      display: block;
    }

    #about .photo-main {
      position: absolute;
      left: 0;
      top: 0;
      width: 96%;
      height: 365px;
      grid-column: auto;
      grid-row: auto;
      border-radius: 14px;
      z-index: 1;
    }

    #about .photo-small.one {
      position: absolute;
      left: 0 !important;
      right: auto !important;
      top: auto !important;
      bottom: 0 !important;
      width: 46% !important;
      height: 178px;
      grid-column: auto;
      grid-row: auto;
      border-radius: 12px;
      z-index: 2;
      display: block;
    }

    #about .photo-small.two {
      position: absolute;
      left: 50% !important;
      right: auto !important;
      top: auto !important;
      bottom: 0 !important;
      width: 46% !important;
      height: 178px;
      grid-column: auto;
      grid-row: auto;
      border-radius: 12px;
      z-index: 2;
      display: block;
    }

    #about .photo-small.one.needs-photo-marker .needs-photo-overlay {
      align-items: center;
      justify-content: center;
      padding: 10px;
      background: rgba(255,255,255,0.58);
    }

    #about .photo-small.one.needs-photo-marker .needs-photo-message {
      width: min(230px, calc(100% - 12px));
      padding: 10px 12px;
      border-radius: 10px;
    }

    #about .photo-small.one.needs-photo-marker .needs-photo-message strong {
      font-size: 11px;
      margin-bottom: 8px;
    }

    #about .photo-small.one.needs-photo-marker .needs-photo-view-btn {
      min-height: 28px;
      padding: 0 10px;
      font-size: 10px;
    }

    @media (max-width: 900px) {
      #about .photo-stack {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      #about .photo-main {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: 240px;
        grid-column: 1 / -1;
        grid-row: 1;
        border-radius: 22px;
      }

      #about .photo-small.one {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: 146px;
        grid-column: 1;
        grid-row: 2;
        border-radius: 18px;
      }

      #about .photo-small.two {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: 146px;
        grid-column: 2;
        grid-row: 2;
        border-radius: 18px;
      }
    }

    @media (max-width: 480px) {
      #about .photo-main {
        height: 214px;
      }

      #about .photo-small.one,
      #about .photo-small.two {
        height: 128px;
      }
    }

    /* ===== TRUST BADGE IN HEADER + IMAGE EXPAND LIGHTBOX ===== */
    .header-actions {
      display: inline-flex;
      align-items: center;
      justify-content: flex-end;
      gap: 14px;
      min-width: max-content;
    }

    .header-license-badge {
      display: grid;
      gap: 3px;
      text-align: right;
      line-height: 1.08;
      color: var(--brown);
      white-space: nowrap;
    }

    .header-license-badge span {
      color: rgba(35,23,18,0.58);
      font-size: 10px;
      font-weight: 950;
      letter-spacing: 0.78px;
      text-transform: uppercase;
    }

    .header-license-badge strong {
      color: var(--orange);
      font-size: 13px;
      font-weight: 950;
      letter-spacing: -0.15px;
    }

    .mobile-license-word {
      display: none;
    }

    .image-expandable {
      position: relative;
    }

    .expand-photo-btn {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 12;
      min-height: 34px;
      padding: 0 12px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 999px;
      background: rgba(6,7,8,0.68);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 11px;
      line-height: 1;
      font-weight: 950;
      letter-spacing: 0.2px;
      cursor: pointer;
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 22px rgba(0,0,0,0.20);
      transition: 0.2s ease;
    }

    .expand-photo-btn:hover {
      background: var(--orange);
      border-color: rgba(255,255,255,0.34);
      transform: translateY(-1px);
    }

    .expand-photo-btn span[aria-hidden="true"] {
      font-size: 13px;
      line-height: 1;
    }

    .image-lightbox {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: grid;
      place-items: center;
      padding: 24px;
      background: rgba(0,0,0,0.84);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .image-lightbox.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .image-lightbox[hidden] {
      display: none;
    }

    .lightbox-inner {
      position: relative;
      width: min(1120px, 100%);
      max-height: 88vh;
      display: grid;
      gap: 12px;
    }

    .lightbox-image-wrap {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      background: #111;
      box-shadow: 0 30px 90px rgba(0,0,0,0.42);
      border: 1px solid rgba(255,255,255,0.12);
    }

    .lightbox-image-wrap img {
      width: 100%;
      max-height: 78vh;
      object-fit: contain;
      display: block;
      background: #111;
    }


    .lightbox-close {
      position: absolute;
      top: -14px;
      right: -14px;
      z-index: 2;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 50%;
      background: var(--orange);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 26px;
      line-height: 1;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 16px 34px rgba(0,0,0,0.30);
    }

    body.lightbox-open {
      overflow: hidden;
    }

    @media (max-width: 1120px) {
      .header-license-badge span {
        font-size: 9px;
        letter-spacing: 0.55px;
      }

      .header-license-badge strong {
        font-size: 12px;
      }
    }

    @media (max-width: 950px) {
      .header-actions {
        gap: 8px;
      }

      .header-license-badge {
        padding: 7px 9px;
        border-radius: 999px;
        border: 1px solid rgba(35,23,18,0.08);
        background: rgba(248,244,239,0.74);
        text-align: center;
      }

      .header-license-badge span {
        display: none;
      }

      .header-license-badge strong {
        display: grid;
        gap: 1px;
        font-size: 10px;
        line-height: 1.08;
        letter-spacing: -0.05px;
      }

      .license-desktop-word {
        display: none;
      }

      .mobile-license-word {
        display: block !important;
        font-size: 8.8px;
        line-height: 1.05;
        letter-spacing: 0.08px;
      }

      .expand-photo-btn {
        top: 10px;
        right: 10px;
        min-height: 34px;
        padding: 0 11px;
        font-size: 11px;
        background: rgba(6,7,8,0.74);
      }

      .image-lightbox {
        padding: 14px;
      }

      .lightbox-inner {
        max-height: 88svh;
      }

      .lightbox-image-wrap {
        border-radius: 16px;
      }

      .lightbox-image-wrap img {
        max-height: 76svh;
      }

      .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
      }
    }

    @media (max-width: 390px) {
      .header-license-badge {
        padding: 6px 7px;
      }

      .header-license-badge strong {
        font-size: 9px;
      }

      .mobile-license-word {
        font-size: 8px;
      }

      .header-cta {
        padding: 0 11px !important;
      }
    }

/* ===== FINAL REVIEW FIXES ===== */

.hero-review-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(243,112,33,0.10);
  color: var(--orange);
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  white-space: nowrap;
}

.testimonials-actions {
  margin-top: 24px;
}

.google-reviews-btn {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(243,112,33,0.20);
  transition: 0.2s ease;
}

.google-reviews-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  margin-bottom: 20px;
  letter-spacing: normal;
  font-size: inherit;
}

.review-star-icons {
  color: var(--orange);
  font-size: 17px;
  letter-spacing: 2px;
  line-height: 1;
}

.review-star-label {
  min-height: 27px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(243,112,33,0.10);
  color: var(--orange);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.review-rating-only {
  display: grid;
  gap: 8px;
}

.review-rating-only strong {
  display: block;
  color: var(--brown);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.8px;
}

.review-rating-only span {
  display: block;
  color: var(--section-muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 750;
}

@media (max-width: 950px) {
  .testimonials-actions {
    order: 4;
    width: 100%;
    margin-top: 0;
  }

  .google-reviews-btn {
    width: 100%;
  }

  .review-carousel {
    width: 100% !important;
    max-width: none !important;
    height: 440px !important;
    min-height: 440px !important;
    padding: 24px 22px 86px !important;
    border-radius: 16px;
  }

  .review-slide.active {
    display: grid !important;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    height: 100%;
    min-height: 0;
  }

  .review-quote-mark {
    width: 48px;
    height: 48px;
    font-size: 30px;
    margin: 0 0 16px;
  }

  .review-stars {
    margin: 0 0 18px;
    gap: 10px;
  }

  .review-star-icons {
    font-size: 15px;
  }

  .review-star-label {
    min-height: 25px;
    font-size: 10px;
    padding: 0 9px;
  }

  .review-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    align-self: start;
  }

  .review-text.review-rating-only {
    min-height: 0 !important;
    margin: 0 !important;
    align-content: start;
  }

  .review-text.review-rating-only strong {
    font-size: 26px;
    line-height: 1.12;
  }

  .review-text.review-rating-only span {
    font-size: 15px;
    line-height: 1.55;
  }

  .review-person {
    align-self: end;
    margin: 0 0 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .review-counter {
    font-size: 12px;
  }

  .review-arrow {
    bottom: 20px;
  }

  .review-dots {
    bottom: 30px;
  }

  .hero-review-top {
    justify-content: flex-start;
  }

  .hero-review-badge {
    min-height: 30px;
    padding: 0 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.84);
    font-size: 10px;
  }
}

@media (max-width: 460px) {
  .review-carousel {
    width: 100% !important;
    height: 440px !important;
    min-height: 440px !important;
  }
}

/* ===== FINAL DESKTOP ALIGNMENT + HERO REVIEW LABEL ===== */

.hero-review-badge,
.hero-inline-review .hero-review-badge {
  display: inline-block !important;
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--orange) !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 2px !important;
  text-transform: none !important;
  white-space: nowrap !important;
}

@media (max-width: 950px) {
  .hero-review-badge,
  .hero-inline-review .hero-review-badge {
    font-size: 13px !important;
  }
}

@media (min-width: 951px) {
  .review-slide.active {
    display: grid !important;
    grid-template-rows: 62px 42px minmax(0, 1fr) auto;
    height: 100%;
    min-height: 0;
  }

  .review-quote-mark {
    margin-bottom: 0 !important;
  }

  .review-stars {
    align-self: start;
    margin-bottom: 0 !important;
  }

  .review-text {
    align-self: start;
    margin: 0 !important;
  }

  .review-text.review-rating-only {
    align-content: start;
  }

  .review-person {
    align-self: start;
    margin-top: 18px !important;
    transform: none !important;
  }
}

/* Desktop-only: keep the review author row from overlapping the review text.
   Mobile review layout and Google Reviews link are intentionally untouched. */
@media (min-width: 951px) {
  .review-carousel {
    height: 455px;
    min-height: 455px;
  }

  .review-slide.active {
    grid-template-rows: 62px 42px minmax(175px, auto) auto !important;
  }

  .review-person {
    margin-top: 18px !important;
    transform: none !important;
  }
}

/* ===== DESKTOP PROJECT GALLERY FIX =====
   Keeps the mobile carousel untouched. The desktop gallery now uses a clean
   3-column / 2-row grid instead of the old masonry layout. */
@media (min-width: 951px) {
  .gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-rows: 240px !important;
    grid-auto-flow: row !important;
    align-items: stretch !important;
    gap: 20px !important;
  }

  .gallery-item,
  .gallery-item.large {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 0 !important;
  }

  .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
}
/* Add this near your other contact/form CSS */
.contact-solicitation-note {
  margin-top: 18px;
  color: rgba(255,255,255,0.66);
  font-size: 13px;
  line-height: 1.55;
  max-width: 540px;
}

.form-status {
  min-height: 22px;
  margin-top: 14px;
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.form-status.success {
  color: #c8ffd2;
}

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

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Final quote form, favicon-support, and scroll fixes */
#contact {
  scroll-margin-top: 112px;
}

.footer-bottom-links {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.62);
  font-weight: 850;
  transition: 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

.contact-form-card.quote-success-active .quote-form {
  opacity: 0.16;
  filter: blur(1.5px);
  pointer-events: none;
  transition: opacity 0.22s ease, filter 0.22s ease;
}

.quote-success-overlay {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0,0,0,0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.contact-form-card.quote-success-active .quote-success-overlay {
  opacity: 1;
  visibility: visible;
}

.quote-success-box {
  width: min(320px, 100%);
  min-height: 230px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 12px;
  padding: 30px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  color: #15351f;
  box-shadow: 0 28px 70px rgba(0,0,0,0.28);
  transform: translateY(10px) scale(0.94);
}

.contact-form-card.quote-success-active .quote-success-box {
  animation: quoteSuccessPop 0.48s cubic-bezier(.2,.9,.25,1.18) forwards;
}

.quote-success-check {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #19a84a;
  color: #fff;
  box-shadow: 0 16px 32px rgba(25,168,74,0.30);
}

.quote-success-check svg {
  width: 46px;
  height: 46px;
}

.quote-success-box strong {
  display: block;
  color: #14351e;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.5px;
}

.quote-success-box span {
  display: block;
  color: rgba(20,53,30,0.72);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 750;
}

@keyframes quoteSuccessPop {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.90);
  }
  70% {
    opacity: 1;
    transform: translateY(0) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 950px) {
  #contact {
    scroll-margin-top: 96px;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

/* Accessibility and legal-update helpers */
.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-weight: 950;
  transform: translateY(-140%);
  transition: transform 0.18s ease;
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid #fff;
  outline-offset: 3px;
}

#main-content:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.footer-bottom-links {
  row-gap: 8px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Final mobile input zoom fix: keeps pinch zoom available but stops iPhone auto-zoom on form focus. */
@media (max-width: 950px) {
  input,
  select,
  textarea,
  button {
    font-size: 16px !important;
  }

  .field input,
  .field select,
  .field textarea,
  .submit-btn {
    font-size: 16px !important;
  }
}

html {
  -webkit-text-size-adjust: 100%;
}

/* Small rendering performance boost for below-the-fold sections. */
.about-section,
.services-section,
.mission-section,
.gallery-section,
.process-section,
.project-cta-section,
.service-area-section,
.testimonials-section,
.contact-section,
.faq-section {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}
