  :root {
    --bg: #ffffff;
    --bg-alt: #f5f1ea;
    --bg-dark: #15110d;
    --ink: #15110d;
    --ink-2: #3a342c;
    --muted: #6e6659;
    --line: #e6dfd2;
    --brand: #c8a35a;
    --brand-deep: #a37f37;
    --whats: #25d366;
    --whats-deep: #1ebe5c;
    --danger: #c0392b;
    --shadow: 0 12px 40px rgba(21, 17, 13, 0.08);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; }

  .display { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -0.02em; }

  .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

  /* ---------- TOP BAR ---------- */
  .topbar {
    background: var(--ink);
    color: #f5f1ea;
    font-size: 13px;
    padding: 9px 0;
  }
  .topbar-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .topbar a {
    color: #f5f1ea;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: color .2s;
  }
  .topbar a:hover { color: var(--brand); }
  .topbar-info { display: flex; gap: 28px; flex-wrap: wrap; }
  .topbar-info span { color: rgba(245, 241, 234, 0.72); display: inline-flex; align-items: center; gap: 8px; }

  /* ---------- NAV ---------- */
  .nav {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0; z-index: 90;
    transition: box-shadow .25s;
  }
  .nav.scrolled { box-shadow: 0 4px 20px rgba(21, 17, 13, 0.06); }
  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
  }
  .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .brand-mark {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: var(--ink);
    color: var(--brand);
    display: grid; place-items: center;
    flex-shrink: 0;
    padding: 6px;
  }
  .brand-mark svg { width: 100%; height: 100%; }
  .brand-mark--light { background: var(--bg-alt); color: var(--ink); }
  .brand-full { height: 56px; width: auto; color: var(--ink); }
  .brand-text { line-height: 1.05; }
  .brand-text .b1 { font-weight: 700; font-size: 17px; color: var(--ink); display: block; letter-spacing: -0.01em; }
  .brand-text .b2 { font-size: 11px; color: var(--muted); margin-top: 3px; display: block; font-weight: 500; }
  .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
  .nav-links a {
    text-decoration: none;
    color: var(--ink-2);
    font-size: 14px;
    font-weight: 500;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--brand-deep); }

  /* ---------- BUTTONS ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .2s ease;
    line-height: 1.1;
    white-space: nowrap;
  }
  .btn-whats { background: var(--whats); color: #fff; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32); }
  .btn-whats:hover { background: var(--whats-deep); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4); }
  .btn-call { background: var(--ink); color: #fff; }
  .btn-call:hover { background: #2a231b; transform: translateY(-2px); }
  .btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
  .btn-outline:hover { background: var(--ink); color: #fff; }
  .btn-lg { padding: 18px 28px; font-size: 16px; }

  /* ---------- HERO ---------- */
  .hero {
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    padding: 56px 0 64px;
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200, 163, 90, 0.14);
    color: var(--brand-deep);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
  }
  .hero-tag .dot {
    width: 8px; height: 8px;
    background: var(--whats);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
    animation: pulseDot 1.6s infinite;
  }
  @keyframes pulseDot {
    0%,100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
  }
  .hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(38px, 5.4vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .hero h1 span { color: var(--brand-deep); }
  .hero .lead {
    font-size: 18px;
    color: var(--ink-2);
    margin-bottom: 28px;
    max-width: 540px;
  }
  .hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .hero-bullets {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
    margin-top: 8px;
  }
  .hero-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-2);
    font-weight: 500;
  }
  .hero-bullets svg { color: var(--whats); flex-shrink: 0; }

  .hero-visual {
    position: relative;
    aspect-ratio: 4/4.4;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .hero-visual img { width: 100%; height: 100%; object-fit: cover; }
  .hero-rating {
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 16px 40px rgba(21, 17, 13, 0.18);
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .hero-rating-num {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    color: var(--ink);
  }
  .hero-rating-info { flex: 1; }
  .hero-rating-stars { color: var(--brand); font-size: 14px; letter-spacing: 2px; line-height: 1; }
  .hero-rating-text { font-size: 12px; color: var(--muted); margin-top: 4px; }
  .hero-rating-google {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 14px;
    background: linear-gradient(135deg, #4285F4, #EA4335 50%, #FBBC05);
    color: #fff;
  }

  /* ---------- TRUST STRIP ---------- */
  .trust-strip {
    background: var(--ink);
    color: #f5f1ea;
    padding: 22px 0;
  }
  .trust-strip-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: center;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .trust-item svg { color: var(--brand); flex-shrink: 0; }
  .trust-item .ti-text strong { display: block; font-size: 15px; color: #fff; font-weight: 600; }
  .trust-item .ti-text span { font-size: 12px; color: rgba(245, 241, 234, 0.65); }

  /* ---------- SECTION ---------- */
  .section { padding: 80px 0; }
  .section-alt { background: var(--bg-alt); }

  .section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
  .eyebrow {
    display: inline-block;
    color: var(--brand-deep);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
  }
  .section-head h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.12;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }
  .section-head p { color: var(--muted); font-size: 17px; max-width: 580px; margin: 0 auto; }

  /* ---------- SERVICES ---------- */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: all .25s ease;
  }
  .service-card:hover {
    border-color: var(--brand);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
  }
  .service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--bg-alt);
    color: var(--brand-deep);
    display: grid; place-items: center;
    margin-bottom: 18px;
  }
  .service-card h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--ink);
  }
  .service-card .price-hint {
    font-size: 13px;
    color: var(--brand-deep);
    font-weight: 600;
    margin-bottom: 12px;
  }
  .service-card p {
    color: var(--muted);
    font-size: 14.5px;
    margin-bottom: 18px;
    flex-grow: 1;
  }
  .service-card ul {
    list-style: none;
    margin-bottom: 22px;
  }
  .service-card ul li {
    font-size: 14px;
    padding: 6px 0;
    color: var(--ink-2);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .service-card ul li::before {
    content: '';
    width: 16px; height: 16px;
    background: var(--whats);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19l12-12-1.41-1.41z'/></svg>") center/contain no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19l12-12-1.41-1.41z'/></svg>") center/contain no-repeat;
    flex-shrink: 0;
  }
  .service-card .btn { width: 100%; }

  /* ---------- WHY ---------- */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .why-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid var(--line);
    text-align: left;
  }
  .why-num {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 36px;
    color: var(--brand-deep);
    margin-bottom: 10px;
    line-height: 1;
  }
  .why-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .why-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
  }

  /* ---------- BIG CTA ---------- */
  .big-cta {
    background: linear-gradient(135deg, #1c1814 0%, #2c2418 100%);
    color: #fff;
    border-radius: 22px;
    padding: 48px;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .big-cta::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 60%; height: 200%;
    background: radial-gradient(circle, rgba(200, 163, 90, 0.18), transparent 60%);
  }
  .big-cta-content { position: relative; z-index: 2; }
  .big-cta h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(28px, 3.4vw, 38px);
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }
  .big-cta h2 span { color: var(--brand); }
  .big-cta p { color: rgba(245, 241, 234, 0.78); font-size: 16px; margin-bottom: 24px; max-width: 480px; }
  .big-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .big-cta-side { position: relative; z-index: 2; }
  .big-cta-stat {
    background: rgba(245, 241, 234, 0.06);
    border: 1px solid rgba(245, 241, 234, 0.12);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
  }
  .big-cta-stat:last-child { margin-bottom: 0; }
  .big-cta-stat strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 26px;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 6px;
  }
  .big-cta-stat span { font-size: 13px; color: rgba(245, 241, 234, 0.7); }

  /* ---------- REVIEWS ---------- */
  .reviews-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 14px;
  }
  .reviews-head .gbadge {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4, #EA4335 50%, #FBBC05);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 22px;
  }
  .reviews-head-text strong { font-size: 22px; color: var(--ink); display: block; line-height: 1.2; }
  .reviews-head-text span { font-size: 13px; color: var(--muted); }
  .reviews-stars { color: var(--brand); font-size: 18px; letter-spacing: 4px; text-align: center; margin-bottom: 30px; }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .review-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px;
  }
  .review-stars { color: var(--brand); letter-spacing: 2px; font-size: 14px; margin-bottom: 12px; }
  .review-card p { color: var(--ink-2); font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
  .review-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
  .review-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--brand-deep);
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 15px;
  }
  .review-author strong { font-size: 14px; color: var(--ink); display: block; }
  .review-author span { font-size: 12px; color: var(--muted); }

  /* ---------- AREA / GALLERY ---------- */
  .area-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
  }
  .area-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 24px 0;
  }
  .area-list span {
    font-size: 14px;
    color: var(--ink-2);
    padding: 10px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
  }
  .area-list span::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand);
    flex-shrink: 0;
  }
  .area-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .area-imgs > div {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
  }
  .area-imgs > div:first-child { aspect-ratio: 1/1.6; grid-row: span 2; }
  .area-imgs img { width: 100%; height: 100%; object-fit: cover; }

  /* ---------- FAQ ---------- */
  .faq-list { max-width: 820px; margin: 0 auto; }
  .faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .2s;
  }
  .faq-item.open { border-color: var(--brand); }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-family: inherit;
  }
  .faq-q .icon {
    width: 28px; height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    display: grid; place-items: center;
    transition: all .25s;
  }
  .faq-item.open .faq-q .icon {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: rotate(45deg);
  }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
  .faq-item.open .faq-a { max-height: 400px; }
  .faq-a-inner { padding: 0 24px 22px; color: var(--ink-2); font-size: 15px; line-height: 1.65; }

  /* ---------- CONTACT ---------- */
  .contact {
    background: var(--ink);
    color: #fff;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  .contact h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(30px, 3.6vw, 42px);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .contact h2 span { color: var(--brand); }
  .contact > .container > .contact-grid > .contact-copy > p { color: rgba(245, 241, 234, 0.78); font-size: 17px; margin-bottom: 28px; }
  .contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }
  .contact-info-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(245, 241, 234, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: background .2s;
  }
  .contact-info-row:hover { background: rgba(200, 163, 90, 0.12); }
  .contact-info-row svg { color: var(--brand); flex-shrink: 0; }
  .contact-info-row .ci-text { line-height: 1.3; }
  .contact-info-row .ci-text strong { display: block; font-size: 16px; font-weight: 600; }
  .contact-info-row .ci-text span { font-size: 12px; color: rgba(245, 241, 234, 0.6); }

  .contact-form {
    background: #fff;
    color: var(--ink);
    border-radius: 18px;
    padding: 32px;
  }
  .contact-form h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 6px;
  }
  .contact-form .lead {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 22px;
  }
  .field { margin-bottom: 14px; }
  .field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-2);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .field input, .field select, .field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--ink);
    background: #fff;
    transition: border-color .2s;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--brand);
  }
  .field textarea { resize: vertical; min-height: 80px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .contact-form .btn-whats { width: 100%; padding: 16px; font-size: 16px; }
  .form-disclaimer {
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px;
    text-align: center;
  }

  /* ---------- FOOTER ---------- */
  footer {
    background: #0e0b08;
    color: rgba(245, 241, 234, 0.62);
    padding: 48px 0 24px;
    font-size: 14px;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(245, 241, 234, 0.08);
  }
  footer h5 {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    font-weight: 700;
  }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 8px; }
  footer ul li a { color: rgba(245, 241, 234, 0.62); text-decoration: none; transition: color .2s; }
  footer ul li a:hover { color: var(--brand); }
  .foot-brand p { line-height: 1.6; max-width: 300px; margin: 14px 0 18px; }
  .foot-bottom {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: rgba(245, 241, 234, 0.42);
  }

  /* ---------- WHATS FLOAT ---------- */
  .whats-float {
    position: fixed;
    bottom: 28px; right: 24px;
    background: var(--whats);
    color: #fff;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: grid; place-items: center;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.42);
    text-decoration: none;
    z-index: 95;
    transition: transform .25s;
    animation: pulse 2s infinite;
  }
  .whats-float:hover { transform: scale(1.08); }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  }

  /* ---------- MOBILE STICKY BAR ---------- */
  .mobile-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 10px 12px;
    z-index: 96;
    box-shadow: 0 -10px 40px rgba(21, 17, 13, 0.12);
    gap: 8px;
  }
  .mobile-bar a {
    flex: 1;
    padding: 12px 6px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .mobile-bar .m-call { background: var(--ink); color: #fff; }
  .mobile-bar .m-whats { background: var(--whats); color: #fff; }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 980px) {
    .nav-links { display: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { aspect-ratio: 4/3.4; }
    .trust-strip-wrap { grid-template-columns: 1fr 1fr; gap: 18px; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .big-cta { grid-template-columns: 1fr; padding: 32px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .area-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .section { padding: 60px 0; }
    .topbar-info { display: none; }
    .topbar-wrap { justify-content: center; }
    .mobile-bar { display: flex; }
    body { padding-bottom: 70px; }
    .whats-float { bottom: 84px; }
  }
  @media (max-width: 580px) {
    .trust-strip-wrap { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .area-list { grid-template-columns: 1fr; }
    .area-imgs { grid-template-columns: 1fr; }
    .area-imgs > div:first-child { grid-row: auto; aspect-ratio: 4/3; }
    .form-row { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; gap: 24px; }
    .hero-bullets { grid-template-columns: 1fr; }
    .hero { padding: 40px 0 50px; }
    .container { padding: 0 18px; }
    .contact-form { padding: 24px; }
    .big-cta { padding: 28px 24px; }
    .brand-text .b1 { font-size: 15px; }
    .brand-text .b2 { font-size: 10px; }
  }
