  :root {
    --gold: #F5C518;
    --gold-dark: #D4A800;
    --gold-light: #FDD835;
    --charcoal: #1C1C1C;
    --charcoal-mid: #2A2A2A;
    --charcoal-light: #3A3A3A;
    --white: #FFFFFF;
    --off-white: #F8F8F6;
    --text-muted: #888888;
    --text-body: #3D3D3D;
    --border: #E5E5E0;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --radius: 4px;
    --radius-md: 8px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* ─── PROMO BANNER ─── */
  .promo-banner {
    background: var(--gold);
    color: var(--charcoal);
    text-align: center;
    padding: 9px 20px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ─── NAV ─── */
  nav {
    background: var(--charcoal);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--charcoal-mid);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;

  }

  .logo_img {
      width: 160px;
    }

  .logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1.1;
  }

  .logo-text span {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-transform: uppercase;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .nav-phone {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }

  .nav-phone:hover { color: var(--gold); }

  .nav-phone svg { width: 16px; height: 16px; color: var(--gold); }

  .nav-cta {
    background: var(--gold);
    color: var(--charcoal);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }

  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ─── HERO ─── */
  .hero {
    min-height: calc(100vh - 100px);
    background-image: url('assets/hero-image.jpg');
    background-size: cover;
    background-position: center 30%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 40px;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(18,18,18,0.92) 45%, rgba(18,18,18,0.65) 100%);
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 60px;
    align-items: center;
  }

  .hero-left {}

  .hero-eyebrow {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
  }

  .hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.0;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
  }

  .hero-h1 .location {
    color: var(--gold);
    display: block;
  }

  .hero-tagline {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.6;
  }

  .hero-usps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
  }

  .hero-usps li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    font-weight: 500;
  }

  .usp-check {
    width: 22px;
    height: 22px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .usp-check svg { width: 12px; height: 12px; color: var(--charcoal); }

  .hero-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .trust-badge-img {
    height: 80px;
    width: auto;
    object-fit: contain;
  }

  /* ─── HERO FORM ─── */
  .hero-form-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  }

  .form-card-header {
    background: var(--gold);
    padding: 20px 28px;
  }

  .form-card-header h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
  }

  .form-card-header p {
    font-size: 13px;
    color: rgba(0,0,0,0.6);
  }

  .form-card-body {
    padding: 24px 28px 28px;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-body);
    margin-bottom: 5px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-body);
    background: var(--off-white);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--gold-dark);
    background: var(--white);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 90px;
  }

  .form-submit {
    width: 100%;
    padding: 14px 20px;
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
  }

  .form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
  .form-submit svg { width: 16px; height: 16px; }

  .form-disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
  }

  /* ─── SECTION BASE ─── */
  section { padding: 80px 40px; }

  .section-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .section-eyebrow {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-dark);
    text-align: center;
    margin-bottom: 10px;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 14px;
    line-height: 1.0;
    letter-spacing: -0.01em;
  }

  .section-subtitle {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 48px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
  }

  /* ─── REVIEWS SECTION ─── */
  .reviews-section {
    background: var(--charcoal);
    padding: 60px 40px;
  }

  .yell-rating-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .yell-logo-pill {
    background: #e8173a;
    border-radius: 6px;
    padding: 6px 14px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    color: white;
    letter-spacing: 0.04em;
  }

  .yell-rating-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
  }

  .yell-stars {
    color: var(--gold);
    font-size: 22px;
    letter-spacing: 2px;
  }

  .yell-count {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
  }

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

  .review-card {
    background: var(--charcoal-mid);
    border: 1px solid var(--charcoal-light);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: border-color 0.2s;
  }

  .review-card:hover { border-color: var(--gold-dark); }

  .review-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
  }

  .reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--charcoal);
    flex-shrink: 0;
  }

  .reviewer-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
  }

  .reviewer-date {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
  }

  .yell-badge-small {
    background: #e8173a;
    color: white;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.06em;
  }

  .review-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .review-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
  }

  /* ─── SERVICES ─── */
  .services-section { background: var(--off-white); }

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

  .service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  }

  .service-image {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--charcoal-light);
    overflow: hidden;
  }

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

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

  .service-icon-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-icon-badge svg { width: 22px; height: 22px; color: var(--charcoal); }

  .service-card-body { padding: 22px 24px 24px; }

  .service-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--charcoal);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
  }

  .service-card-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .service-link {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s, color 0.2s;
  }

  .service-link:hover { gap: 10px; color: var(--charcoal); }

  /* ─── ABOUT ─── */
  .about-section { background: var(--white); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .about-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
  }

  .about-stat-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gold);
    padding: 16px 24px;
    display: flex;
    gap: 32px;
  }

  .about-stat { text-align: center; flex: 1; }

  .about-stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--charcoal);
    line-height: 1;
  }

  .about-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(0,0,0,0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .about-content .section-title,
  .about-content .section-eyebrow { text-align: left; }

  .about-content .section-subtitle { text-align: left; margin: 0 0 28px; }

  .about-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
  }

  .about-text:last-of-type { margin-bottom: 28px; }

  .about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--charcoal);
    padding: 13px 28px;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
  }

  .about-cta:hover { background: var(--gold-light); }

  /* ─── WHY CHOOSE US ─── */
  .why-section {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
  }

  .why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1523413363574-c34f14694f0c?w=1600&q=60');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
  }

  .why-section .section-inner { position: relative; }
  .why-section .section-title { color: var(--white); }
  .why-section .section-eyebrow { color: var(--gold); }
  .why-section .section-subtitle { color: rgba(255,255,255,0.55); }

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

  .why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: background 0.2s, border-color 0.2s;
  }

  .why-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(245,197,24,0.4);
  }

  .why-icon {
    width: 52px;
    height: 52px;
    background: var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }

  .why-icon svg { width: 26px; height: 26px; color: var(--charcoal); }

  .why-card-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 10px;
  }

  .why-card-text {
    font-size: 14px;
    color: rgba(255,255,255,0.58);
    line-height: 1.65;
  }

  /* ─── GALLERY ─── */
  .gallery-section { background: var(--off-white); }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
  }

  .gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }

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

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

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1;
  }

  .gallery-item:not(:first-child) { aspect-ratio: 4/3; }

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
  }

  .gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.35); }

  .gallery-overlay svg {
    width: 40px;
    height: 40px;
    color: white;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s, transform 0.3s;
  }

  .gallery-item:hover .gallery-overlay svg { opacity: 1; transform: scale(1); }

  /* ─── CONTACT FORM ─── */
  .contact-section { background: var(--white); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
  }

  .contact-left .section-title,
  .contact-left .section-eyebrow { text-align: left; }

  .contact-left .section-subtitle { text-align: left; margin: 0 0 32px; }

  .contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .contact-info-icon {
    width: 46px;
    height: 46px;
    background: var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-info-icon svg { width: 22px; height: 22px; color: var(--charcoal); }

  .contact-info-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 3px;
  }

  .contact-info-value {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--charcoal);
  }

  .contact-form-wrapper {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px;
  }

  .contact-form-wrapper h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: 0.04em;
  }

  /* ─── HOW IT WORKS ─── */
  .how-section { background: var(--off-white); }

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

  .steps-row::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 16px);
  }

  .step-item { text-align: center; }

  .step-num {
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    color: var(--charcoal);
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
  }

  .step-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--charcoal);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
  }

  .step-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

  /* ─── FAQS ─── */
  .faq-section { background: var(--white); }

  .faq-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    text-align: left;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background 0.2s;
    letter-spacing: 0.02em;
  }

  .faq-question:hover { background: var(--off-white); }

  .faq-question.open { background: var(--gold); color: var(--charcoal); }

  .faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.25s;
  }

  .faq-question.open .faq-chevron { transform: rotate(180deg); }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    padding: 0 22px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  .faq-answer.open {
    max-height: 300px;
    padding: 14px 22px 18px;
  }

  /* ─── MAP ─── */
  .map-section { padding: 0; }

  .map-section iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
    filter: grayscale(20%);
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--charcoal);
    padding: 56px 40px 32px;
  }

  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

 

  .footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }

  .footer-logo-row .logo-icon { width: 38px; height: 38px; }

  .footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .footer-trust-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .footer-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
  }

  .footer-col h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 16px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-links li a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links li a:hover { color: var(--gold); }

  .footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
  }

  .footer-contact-item svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

  .footer-contact-item a { color: rgba(255,255,255,0.5); text-decoration: none; }
  .footer-contact-item a:hover { color: var(--white); }

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

  .footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
  }

  .footer-legal {
    display: flex;
    gap: 20px;
  }

  .footer-legal a {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-legal a:hover { color: var(--gold); }

  /* ─── FORM SUCCESS ─── */
  .form-success {
    display: none;
    text-align: center;
    padding: 24px;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: var(--radius);
    color: #2e7d32;
    font-weight: 600;
    font-size: 15px;
  }

  /* ─── RESPONSIVE ─── */

  /* Tablet ≤1024px */
  @media (max-width: 1024px) {
    nav { padding: 0 24px; }
    section { padding: 64px 24px; }
    .reviews-section { padding: 48px 24px; }
    footer { padding: 48px 24px 28px; }

    .hero { padding: 48px 24px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-form-card { max-width: 560px; }

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

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-content .section-title,
    .about-content .section-eyebrow { text-align: center; }
    .about-content .section-subtitle { text-align: center; margin: 0 auto 28px; }

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

    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item:first-child { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-left .section-title,
    .contact-left .section-eyebrow { text-align: center; }
    .contact-left .section-subtitle { text-align: center; margin: 0 auto 32px; }

    .steps-row { grid-template-columns: repeat(2, 1fr); }
    .steps-row::before { display: none; }

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

  /* Mobile ≤768px */
  @media (max-width: 768px) {
    nav { padding: 0 20px; height: 60px; }
    .nav-phone { display: flex; font-size: 13px; }
    .logo_img { width: 130px; }

    section { padding: 48px 20px; }
    .reviews-section { padding: 40px 20px; }
    footer { padding: 40px 20px 24px; }

    .promo-banner { font-size: 12px; letter-spacing: 0.04em; padding: 9px 16px; }

    .hero { padding: 40px 20px; min-height: auto; }

    .yell-rating-bar { flex-direction: column; gap: 8px; text-align: center; }
    .reviews-grid { grid-template-columns: 1fr; }

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

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

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:first-child { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }

    .faq-cols { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
    .footer-legal { justify-content: center; }

    .footer-logo-row { justify-content: center; }
    .footer-tagline { text-align: center; }
    .footer-trust-badges { justify-content: center; }
    .footer-col { text-align: center; }
    .footer-links { align-items: center; }
    .footer-contact-items { align-items: center; }
    .footer-contact-item { justify-content: center; }

    .trust-badge-img { height: 56px; }
    .contact-form-wrapper { padding: 24px 20px; }
  }

  /* Small phone ≤480px */
  @media (max-width: 480px) {
    nav { padding: 0 16px; }
    .nav-cta { padding: 9px 14px; font-size: 12px; }

    section { padding: 40px 16px; }
    .reviews-section { padding: 32px 16px; }
    footer { padding: 32px 16px 20px; }

    .hero { padding: 32px 16px; }
    .hero-inner { gap: 28px; }

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:first-child { grid-column: span 1; }
    .gallery-item { aspect-ratio: 16/9; }

    .steps-row { grid-template-columns: 1fr; }

    .trust-badge-img { height: 44px; }
  }