    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      font-family: 'Roboto', sans-serif;
      color: #242424;
      background: #fff;
      overflow-x: hidden;
      max-width: 100%;
      touch-action: pan-y;
    }

    /* ===== CSS VARIABLES ===== */
    :root {
      --orange: #f18e2f;
      --orange-dark: #e8821a;
      --charcoal: #4a4a4a;
      --dark: #242424;
      --mid-gray: #5c5c5c;
      --light-gray: #cdcdcd;
      --beige: rgba(216,211,201,0.76);
      --white: #ffffff;
    }

    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    /* ===== TOPO MAP PATTERN ===== */
    .topo-bg {
      background-color: #f5f2ee;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cstyle%3Epath%7Bfill:none;stroke:%23c8bfb0;stroke-width:1%7D%3C/style%3E%3Cpath d='M0 200 Q50 160 100 200 Q150 240 200 200 Q250 160 300 200 Q350 240 400 200'/%3E%3Cpath d='M0 200 Q50 160 100 200 Q150 240 200 200 Q250 160 300 200 Q350 240 400 200' transform='translate(0,40)'/%3E%3Cpath d='M0 200 Q50 160 100 200 Q150 240 200 200 Q250 160 300 200 Q350 240 400 200' transform='translate(0,-40)'/%3E%3Cpath d='M0 200 Q50 160 100 200 Q150 240 200 200 Q250 160 300 200 Q350 240 400 200' transform='translate(0,80)'/%3E%3Cpath d='M0 200 Q50 160 100 200 Q150 240 200 200 Q250 160 300 200 Q350 240 400 200' transform='translate(0,-80)'/%3E%3Cpath d='M0 200 Q50 160 100 200 Q150 240 200 200 Q250 160 300 200 Q350 240 400 200' transform='translate(0,120)'/%3E%3Cpath d='M0 200 Q50 160 100 200 Q150 240 200 200 Q250 160 300 200 Q350 240 400 200' transform='translate(0,-120)'/%3E%3Cpath d='M0 200 Q50 160 100 200 Q150 240 200 200 Q250 160 300 200 Q350 240 400 200' transform='translate(0,160)'/%3E%3Cpath d='M0 200 Q50 160 100 200 Q150 240 200 200 Q250 160 300 200 Q350 240 400 200' transform='translate(0,-160)'/%3E%3Cpath d='M0 200 Q50 160 100 200 Q150 240 200 200 Q250 160 300 200 Q350 240 400 200' transform='translate(0,200)'/%3E%3Cpath d='M-200 200 Q-150 130 -100 200 Q-50 270 0 200 Q50 130 100 200 Q150 270 200 200 Q250 130 300 200 Q350 270 400 200 Q450 130 500 200'/%3E%3Cpath d='M-200 200 Q-150 130 -100 200 Q-50 270 0 200 Q50 130 100 200 Q150 270 200 200 Q250 130 300 200 Q350 270 400 200 Q450 130 500 200' transform='translate(0,60)'/%3E%3Cpath d='M-200 200 Q-150 130 -100 200 Q-50 270 0 200 Q50 130 100 200 Q150 270 200 200 Q250 130 300 200 Q350 270 400 200 Q450 130 500 200' transform='translate(0,-60)'/%3E%3Cpath d='M-200 200 Q-150 130 -100 200 Q-50 270 0 200 Q50 130 100 200 Q150 270 200 200 Q250 130 300 200 Q350 270 400 200 Q450 130 500 200' transform='translate(0,120)'/%3E%3Cpath d='M-200 200 Q-150 130 -100 200 Q-50 270 0 200 Q50 130 100 200 Q150 270 200 200 Q250 130 300 200 Q350 270 400 200 Q450 130 500 200' transform='translate(0,-120)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 400px 400px;
    }

    /* ===== TOP BAR ===== */
    .top-bar {
      background: var(--charcoal);
      padding: 6px 0;
      text-align: center;
      font-size: 13px;
      color: var(--light-gray);
      display: none; /* hidden like Duda site */
    }

    /* ===== HEADER ===== */
    header {
      background: var(--charcoal);
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
    }
    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }
    .header-logo {
      height: 60px;
      width: auto;
      object-fit: contain;
    }
    /* NAV */
    nav { display: flex; align-items: center; gap: 0; }
    .nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
    .nav-links > li {
      position: relative;
    }
    .nav-links > li > a,
    .nav-links > li > span {
      display: block;
      padding: 28px 14px;
      color: var(--white);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.3px;
      white-space: nowrap;
      cursor: pointer;
      transition: color 0.2s;
    }
    .nav-links > li > a:hover,
    .nav-links > li > span:hover { color: var(--orange); }
    /* dropdown arrow */
    .has-dropdown > span::after, .has-dropdown > a::after {
      content: ' ▾';
      font-size: 11px;
    }
    /* dropdown menu */
    .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--charcoal);
      min-width: 200px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      z-index: 100;
    }
    .dropdown li a {
      display: block;
      padding: 11px 20px;
      color: var(--white);
      font-size: 13.5px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: background 0.2s, color 0.2s;
    }
    .dropdown li:last-child a { border-bottom: none; }
    .dropdown li a:hover { background: rgba(255,255,255,0.1); color: var(--orange); }
    .has-dropdown:hover .dropdown { display: block; }
    /* Phone CTA */
    .nav-phone {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--orange);
      color: var(--dark);
      font-size: 15px;
      font-weight: 700;
      padding: 10px 18px;
      border-radius: 4px;
      margin-left: 10px;
      white-space: nowrap;
      transition: background 0.2s;
    }
    .nav-phone:hover { background: #d97a10; }
    .nav-phone svg { flex-shrink: 0; }

    /* hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      cursor: pointer;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ===== MOBILE NAV ===== */
    .mobile-nav {
      display: none;
      background: var(--charcoal);
      padding: 16px 0 20px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .mobile-nav.open { display: block; }
    .mobile-nav a, .mobile-nav .m-group-title {
      display: block;
      padding: 11px 24px;
      color: var(--white);
      font-size: 15px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .mobile-nav .m-group-title {
      font-weight: 700;
      color: var(--orange);
      padding-top: 16px;
      border-bottom: none;
    }
    .mobile-nav .m-sub a {
      padding-left: 38px;
      font-size: 14px;
      color: var(--light-gray);
    }
    .mobile-nav .nav-phone-mobile {
      display: block;
      margin: 16px 24px 0;
      padding: 12px 18px;
      background: var(--orange);
      color: var(--dark);
      font-weight: 700;
      font-size: 15px;
      border-radius: 4px;
      text-align: center;
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-image: url('images/photos/hero/hero-img9199.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.52);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 760px;
      padding: 40px 24px;
    }
    .hero-content h1 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(32px, 6vw, 60px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .hero-content p {
      font-size: clamp(15px, 2.2vw, 19px);
      color: rgba(255,255,255,0.9);
      margin-bottom: 36px;
      line-height: 1.6;
    }
    .hero-btn {
      display: inline-block;
      background: var(--orange);
      color: var(--dark);
      font-size: 16px;
      font-weight: 700;
      padding: 14px 34px;
      border-radius: 4px;
      letter-spacing: 0.5px;
      transition: background 0.2s;
      text-transform: uppercase;
    }
    .hero-btn:hover { background: #d97a10; }

    /* ===== SECTION WRAPPER ===== */
    .section-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== SERVICE CARDS ===== */
    .services-cards {
      padding: 72px 0 60px;
    }
    .services-cards .section-wrap { text-align: center; }
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      margin-top: 48px;
    }
    .card {
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 6px;
      padding: 36px 20px 30px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.06);
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.12); transform: translateY(-3px); }
    .card-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .card-icon svg { width: 72px; height: 72px; }
    .card h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 17px;
      font-weight: 600;
      color: var(--dark);
      letter-spacing: 0.3px;
      text-transform: uppercase;
    }

    /* ===== SECTION TITLE ===== */
    .section-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(26px, 4vw, 38px);
      font-weight: 700;
      color: var(--dark);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
    }
    .section-subtitle {
      font-size: 16px;
      color: var(--mid-gray);
      max-width: 640px;
      margin: 0 auto 12px;
      line-height: 1.6;
    }
    .orange-bar {
      width: 52px;
      height: 4px;
      background: var(--orange);
      margin: 0 auto 16px;
      border-radius: 2px;
    }

    /* ===== REVAMP SECTION ===== */
    .revamp-section {
      padding: 72px 0;
      background: #fff;
    }
    .revamp-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }
    .revamp-text h2 { text-align: left; }
    .revamp-text .orange-bar { margin-left: 0; }
    .revamp-text p {
      font-size: 16px;
      line-height: 1.8;
      color: var(--mid-gray);
      margin-bottom: 14px;
    }
    .revamp-text .cta-btn {
      display: inline-block;
      margin-top: 10px;
      background: var(--orange);
      color: var(--dark);
      font-weight: 700;
      font-size: 15px;
      padding: 12px 28px;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: background 0.2s;
    }
    .revamp-text .cta-btn:hover { background: #d97a10; }
    .revamp-image img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      border-radius: 6px;
    }

    /* ===== SERVICES LIST SECTION ===== */
    .services-list-section {
      padding: 72px 0;
    }
    .services-list-section .section-wrap { text-align: center; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 44px;
    }
    .service-item {
      background: var(--charcoal);
      color: var(--white);
      padding: 24px 22px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 15.5px;
      font-weight: 500;
      transition: background 0.2s;
    }
    .service-item:hover { background: var(--orange); color: var(--dark); }
    .service-item svg { flex-shrink: 0; width: 22px; height: 22px; }

    /* ===== WHAT SETS US APART ===== */
    .sets-apart {
      padding: 72px 0;
      background: var(--charcoal);
      color: var(--white);
    }
    .sets-apart .section-title { color: var(--white); }
    .sets-apart .section-wrap { text-align: center; }
    .apart-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 48px;
    }
    .apart-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      padding: 30px 24px;
      text-align: center;
      transition: background 0.25s;
    }
    .apart-card:hover { background: rgba(255,255,255,0.11); }
    .apart-icon {
      width: 56px;
      height: 56px;
      background: var(--orange);
      border-radius: 50%;
      margin: 0 auto 18px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .apart-icon svg { width: 28px; height: 28px; color: #fff; }
    .apart-card h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 17px;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 10px;
      letter-spacing: 0.3px;
    }
    .apart-card p {
      font-size: 14.5px;
      line-height: 1.7;
      color: rgba(255,255,255,0.75);
    }

    /* ===== AREAS WE SERVE ===== */
    .areas-section {
      padding: 72px 0;
    }
    .areas-section .section-wrap { text-align: center; }
    .areas-regions {
      margin-top: 40px;
      max-width: 880px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .areas-region h3 {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 18px;
      color: var(--dark);
      margin: 0 0 16px;
      padding-bottom: 8px;
      border-bottom: 2px solid var(--orange);
      display: inline-block;
    }
    .areas-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .area-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: #f7f7f7;
      border: 1px solid #ebebeb;
      border-radius: 999px;
      font-size: 14.5px;
      color: var(--mid-gray);
    }
    .area-chip::before {
      content: '';
      display: inline-block;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--orange);
      flex-shrink: 0;
    }

    /* ===== FOOTER ===== */
    footer {
      background: #242424;
      color: rgba(255,255,255,0.75);
      padding: 56px 0 0;
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
    }
    .footer-logo { height: 55px; width: auto; margin-bottom: 18px; object-fit: contain; }
    .footer-col h4 {
      font-family: 'Oswald', sans-serif;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--white);
      margin-bottom: 16px;
    }
    .footer-col p, .footer-col li {
      font-size: 14px;
      line-height: 1.9;
      color: rgba(255,255,255,0.65);
    }
    .footer-col a {
      color: rgba(255,255,255,0.65);
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--orange); }
    .footer-col ul li { list-style: none; }
    .footer-phone-note {
      font-family: 'Oswald', sans-serif;
      font-size: 11.5px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: rgba(255,255,255,0.45);
      margin-bottom: 4px;
    }
    .footer-hours p { margin-bottom: 2px; }
    .footer-bottom {
      margin-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 18px 24px;
      text-align: center;
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }
    .footer-divider {
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 40px;
    }
    .footer-copyright {
      text-align: center;
      padding: 18px 24px;
      font-size: 13px;
      color: rgba(255,255,255,0.4);
    }
    /* Powered by badge */
    .powered-by {
      text-align: center;
      padding: 12px 24px 18px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-section { padding: 72px 0; background: #fff; }
    .testimonials-section .section-wrap { text-align: center; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 44px;
      text-align: left;
    }
    .testimonials-grid .featured { grid-column: 1 / -1; }
    .testimonial-card {
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 6px;
      padding: 28px 26px 24px;
      box-shadow: 0 2px 14px rgba(0,0,0,0.06);
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.25s, transform 0.25s;
      position: relative;
    }
    .testimonial-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.12); transform: translateY(-3px); }
    .testimonial-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
    }
    .testimonial-mono {
      width: 44px;
      height: 44px;
      min-width: 44px;
      background: var(--orange);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 0.5px;
    }
    .testimonial-meta { flex: 1; min-width: 0; }
    .testimonial-name {
      font-family: 'Oswald', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.4px;
      text-transform: uppercase;
      color: var(--dark);
      line-height: 1.1;
    }
    .testimonial-stars {
      color: var(--orange);
      font-size: 15px;
      letter-spacing: 1px;
      margin-top: 3px;
      line-height: 1;
    }
    .testimonial-text {
      font-size: 15px;
      line-height: 1.7;
      color: var(--mid-gray);
      flex: 1;
    }
    .testimonial-source {
      margin-top: 18px;
      padding-top: 14px;
      border-top: 1px solid #f0f0f0;
      font-family: 'Oswald', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--mid-gray);
    }
    /* Featured (Doug — most recent) */
    .testimonial-card.featured .testimonial-text { font-size: 17px; line-height: 1.75; }
    .recency-tag {
      font-family: 'Oswald', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: var(--mid-gray);
      margin-bottom: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .recency-tag::before {
      content: '';
      display: inline-block;
      width: 22px;
      height: 2px;
      background: var(--orange);
      border-radius: 1px;
    }
    .new-pill {
      position: absolute;
      top: 22px;
      right: 22px;
      background: var(--orange);
      color: #fff;
      font-family: 'Oswald', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      padding: 5px 11px;
      border-radius: 3px;
      line-height: 1;
    }
    /* Divider between featured and supporting */
    .testimonials-divider {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin: 20px auto 4px;
      max-width: 520px;
      color: var(--mid-gray);
      font-family: 'Oswald', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.8px;
      text-transform: uppercase;
    }
    .testimonials-divider > span,
    .testimonials-divider {
      flex-shrink: 0;
    }
    .testimonials-divider::before,
    .testimonials-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, #d8d8d8, transparent);
    }
    /* Compact modifier for the supporting four */
    .testimonial-card.compact { padding: 20px 18px 18px; }
    .testimonial-card.compact .testimonial-mono { width: 36px; height: 36px; min-width: 36px; font-size: 13px; }
    .testimonial-card.compact .testimonial-head { gap: 11px; margin-bottom: 12px; }
    .testimonial-card.compact .testimonial-name { font-size: 13.5px; }
    .testimonial-card.compact .testimonial-stars { font-size: 13px; }
    .testimonial-card.compact .testimonial-text { font-size: 13.5px; line-height: 1.65; }
    .testimonial-card.compact .testimonial-source { margin-top: 14px; padding-top: 11px; font-size: 10px; letter-spacing: 1.2px; }
    .testimonials-cta {
      margin-top: 36px;
      font-size: 14px;
      color: var(--mid-gray);
    }
    .testimonials-cta a {
      color: var(--orange);
      font-weight: 700;
      border-bottom: 1px solid rgba(241,142,47,0.4);
      padding-bottom: 1px;
      transition: border-color 0.2s;
    }
    .testimonials-cta a:hover { border-bottom-color: var(--orange); }
    @media (max-width: 900px) {
      .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
      .new-pill { top: 18px; right: 18px; }
    }
    @media (max-width: 600px) {
      .testimonials-grid { grid-template-columns: 1fr; }
      .testimonials-divider { font-size: 11px; letter-spacing: 1.5px; }
    }

    /* ===== CONTACT FORM ===== */
    .contact-section { padding: 72px 0 80px; }
    .contact-section .section-wrap { text-align: center; }
    .contact-form {
      max-width: 760px;
      margin: 44px auto 0;
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 6px;
      padding: 36px 36px 32px;
      box-shadow: 0 2px 14px rgba(0,0,0,0.06);
      text-align: left;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
    .form-row.single { grid-template-columns: 1fr; }
    .form-field { display: flex; flex-direction: column; gap: 6px; }
    .form-field label {
      font-family: 'Oswald', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--dark);
    }
    .form-field label .req { color: var(--orange); margin-left: 2px; }
    .form-field input,
    .form-field select,
    .form-field textarea {
      font-family: 'Roboto', sans-serif;
      font-size: 15px;
      color: var(--dark);
      background: #fff;
      border: 1px solid var(--light-gray);
      border-radius: 4px;
      padding: 11px 14px;
      width: 100%;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      /* Transparent outline is invisible to normal users; forced-colors
         mode (Windows HCM) replaces it with the system focus color,
         so HCM users still see a focus indicator. */
      outline: 2px solid transparent;
      outline-offset: 2px;
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(241,142,47,0.18);
    }
    .form-field textarea { min-height: 140px; resize: vertical; }
    .form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%235c5c5c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
    .form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 6px; flex-wrap: wrap; }
    .form-submit-row .form-note { font-size: 13px; color: var(--mid-gray); }
    .form-submit-row button {
      background: var(--orange);
      color: var(--dark);
      font-family: 'Oswald', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      padding: 14px 34px;
      border-radius: 4px;
      transition: background 0.2s;
    }
    .form-submit-row button:hover { background: #d97a10; }
    .form-honeypot { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }
    .thank-you {
      display: none;
      max-width: 760px;
      margin: 44px auto 0;
      background: #fff;
      border: 1px solid #e8e8e8;
      border-left: 4px solid var(--orange);
      border-radius: 6px;
      padding: 36px 36px;
      text-align: left;
      box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    }
    .thank-you.show { display: block; }
    .thank-you h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--dark);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
    }
    .thank-you p { font-size: 15.5px; line-height: 1.7; color: var(--mid-gray); }
    @media (max-width: 640px) {
      .contact-form { padding: 26px 22px 22px; }
      .form-row { grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
      .form-submit-row { flex-direction: column; align-items: stretch; }
      .form-submit-row button { width: 100%; }
      .form-submit-row .form-note { text-align: center; }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .nav-links, .nav-phone { display: none; }
      .hamburger { display: flex; }

      .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .revamp-inner { grid-template-columns: 1fr; gap: 32px; }
      .revamp-image { order: -1; }
      .revamp-image img { height: 260px; }
      .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .apart-grid { grid-template-columns: 1fr; gap: 16px; }
      .areas-regions { gap: 24px; }
      .areas-chips { gap: 8px; }
      .area-chip { padding: 7px 13px; font-size: 13.5px; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    @media (max-width: 540px) {
      .cards-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    }

    /* ===== GALLERY ===== */
    .gallery-section { padding: 76px 0 88px; background: #fff; scroll-margin-top: 84px; }
    .gallery-section .section-wrap { text-align: center; }

    /* Featured before/after band */
    .ba-band { margin-top: 50px; display: flex; flex-direction: column; gap: 28px; }
    .ba-pair { background: var(--charcoal); border-radius: 10px; overflow: hidden; box-shadow: 0 12px 34px rgba(0,0,0,0.14); }
    .ba-images { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; position: relative; }
    .ba-fig { position: relative; margin: 0; padding: 0; border: none; cursor: pointer; overflow: hidden; background: #1d1d1d; display: block; }
    .ba-fig img { width: 100%; height: clamp(230px, 36vw, 430px); object-fit: cover; display: block; transition: transform .55s ease; }
    .ba-fig:hover img, .ba-fig:focus-visible img { transform: scale(1.045); }
    .ba-fig:focus-visible { outline: 3px solid var(--orange); outline-offset: -3px; }
    .ba-tag { position: absolute; top: 14px; left: 14px; font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; padding: 5px 12px; border-radius: 3px; color: #fff; pointer-events: none; }
    .ba-tag.before { background: rgba(0,0,0,0.6); }
    .ba-tag.after { background: var(--orange); color: var(--dark); }
    .ba-arrow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: var(--dark); display: flex; align-items: center; justify-content: center; font-size: 22px; line-height: 1; box-shadow: 0 4px 16px rgba(0,0,0,.4); z-index: 3; pointer-events: none; }
    .ba-caption { padding: 17px 22px; text-align: left; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
    .ba-caption h3 { font-family: 'Oswald', sans-serif; color: #fff; font-size: 18px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
    .ba-caption p { color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.5; }

    /* Type group headers */
    .g-group-title { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); text-align: left; margin: 56px 0 6px; display: flex; align-items: center; gap: 16px; scroll-margin-top: 92px; }
    .g-group-title::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, #e2ded6, transparent); }
    .g-group-sub { text-align: left; color: var(--mid-gray); font-size: 14.5px; line-height: 1.5; margin-bottom: 22px; }

    /* Uniform magazine grid — tiles center-crop (object-fit:cover); full photo shows in lightbox */
    .g-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .g-tile { display: block; width: 100%; padding: 0; border: none; background: #ececec; border-radius: 8px; overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 4 / 3; box-shadow: 0 2px 10px rgba(0,0,0,.08); transition: box-shadow .25s, transform .25s; }
    .g-tile:hover { box-shadow: 0 12px 28px rgba(0,0,0,.18); transform: translateY(-2px); }
    .g-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s ease; }
    .g-tile:hover img, .g-tile:focus-visible img { transform: scale(1.055); }
    .g-tile:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
    .g-overlay { position: absolute; inset: auto 0 0 0; padding: 32px 16px 14px; background: linear-gradient(to top, rgba(18,18,18,.84), rgba(18,18,18,.34) 55%, transparent); text-align: left; transform: translateY(8px); opacity: 0; transition: opacity .3s, transform .3s; }
    .g-tile:hover .g-overlay, .g-tile:focus-visible .g-overlay { opacity: 1; transform: translateY(0); }
    .g-overlay .g-name { display: block; font-family: 'Oswald', sans-serif; color: var(--orange); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
    .g-overlay .g-desc { display: block; color: #fff; font-size: 13px; line-height: 1.4; margin-top: 3px; }

    @media (max-width: 900px) { .g-masonry { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) {
      .g-masonry { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .ba-images { grid-template-columns: 1fr; }
      .ba-arrow { transform: translate(-50%,-50%) rotate(90deg); }
      .ba-fig img { height: clamp(220px, 60vw, 340px); }
    }

    /* ===== LIGHTBOX ===== */
    .lightbox { position: fixed; inset: 0; z-index: 2000; display: none; }
    .lightbox.open { display: block; }
    .lb-backdrop { position: absolute; inset: 0; background: rgba(12,12,12,.93); }
    .lb-stage { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 6vh 6vw; pointer-events: none; }
    .lb-img { max-width: 95vw; max-height: 90vh; width: auto; height: auto; object-fit: contain; border-radius: 4px; box-shadow: 0 10px 50px rgba(0,0,0,.6); pointer-events: auto; }
    .lb-cap { position: absolute; left: 0; right: 0; bottom: 16px; text-align: center; padding: 0 20px; }
    .lb-cap .lb-name { display: block; font-family: 'Oswald', sans-serif; color: var(--orange); font-size: 14px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; }
    .lb-cap .lb-desc { display: block; font-size: 14px; color: rgba(255,255,255,.82); margin-top: 4px; }
    .lb-btn { position: absolute; z-index: 10; background: rgba(255,255,255,.13); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; line-height: 1; transition: background .2s, color .2s; }
    .lb-btn:hover, .lb-btn:focus-visible { background: var(--orange); color: var(--dark); outline: none; }
    .lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
    .lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
    .lb-close { top: 18px; right: 18px; width: 46px; height: 46px; font-size: 26px; }
    .lb-count { position: absolute; z-index: 10; top: 24px; left: 24px; color: rgba(255,255,255,.7); font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 1.5px; }
    @media (max-width: 600px) { .lb-prev { left: 8px; } .lb-next { right: 8px; } .lb-btn { width: 44px; height: 44px; font-size: 24px; } .lb-img { max-height: 88vh; } }

    /* ===== RECENT WORK TEASER (homepage) ===== */
    .teaser-section { padding: 72px 0; }
    .teaser-section .section-wrap { text-align: center; }
    .teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
    .teaser-tile { position: relative; display: block; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.1); aspect-ratio: 3 / 4; }
    .teaser-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
    .teaser-tile:hover img, .teaser-tile:focus-visible img { transform: scale(1.06); }
    .teaser-tile:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
    .teaser-tile .t-label { position: absolute; inset: auto 0 0 0; padding: 28px 14px 12px; background: linear-gradient(to top, rgba(18,18,18,.82), transparent); color: #fff; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; text-align: left; }
    .teaser-cta { margin-top: 38px; }
    .teaser-cta a { display: inline-block; background: var(--orange); color: var(--dark); font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: .6px; text-transform: uppercase; padding: 14px 34px; border-radius: 4px; transition: background .2s; }
    .teaser-cta a:hover { background: #d97a10; }
    @media (max-width: 760px) { .teaser-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

