  :root {
    --cream: #F0F4F8;
    --off-white: #F7F9FB;
    --dark: #1A1A14;
    --dark-mid: #2C2C22;
    --navy: #1B3A5C;
    --water-blue: #2196F3;
    --water-light: #42A5F5;
    --water-deep: #1565C0;
    --teal: #0097A7;
    --text: #3A3A2E;
    --text-muted: #6A7A8A;
    --border: rgba(33, 150, 243, 0.15);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--text);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
  }

  /* ── STICKY HEADER ── */
  .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(26, 26, 20, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(33, 150, 243, 0.2);
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
  }

  .header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    background: var(--water-blue);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
  }

  .logo-text span { color: var(--water-blue); }

  .header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .header-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--water-light);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .header-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4CAF50;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
  }

  .header-cta {
    background: var(--water-blue);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s;
  }

  .header-cta:hover { background: var(--water-light); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--dark);
    background-image: linear-gradient(rgba(26,26,20,0.82), rgba(26,26,20,0.90)), url('https://images.unsplash.com/photo-1583024011680-5d51e7e75e3b?w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 50%, rgba(33,150,243,0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(0,151,167,0.06) 0%, transparent 40%);
    pointer-events: none;
  }

  .hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(33,150,243,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(33,150,243,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 60px 80px 80px;
    position: relative;
    z-index: 2;
  }

  .hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s 0.1s ease both;
  }

  .hero-headline .accent {
    color: var(--water-blue);
    font-style: italic;
  }

  .hero-subhead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s 0.3s ease both;
  }

  .stat {
    display: flex;
    flex-direction: column;
  }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--water-blue);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  .stat-divider {
    width: 1px;
    background: rgba(33,150,243,0.2);
    align-self: stretch;
  }

  .hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeUp 0.6s 0.4s ease both;
  }

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

  .trust-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
  }

  .hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 80px 80px 40px;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  /* ── FORM CARD ── */
  .form-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow:
      0 0 0 1px rgba(33, 150, 243, 0.12),
      0 32px 80px rgba(0,0,0,0.4),
      0 8px 24px rgba(0,0,0,0.2);
    position: relative;
  }

  .form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--water-blue), var(--teal));
    border-radius: 20px 20px 0 0;
  }

  .form-header {
    margin-bottom: 1.5rem;
  }

  .form-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--water-blue);
    margin-bottom: 6px;
  }

  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
  }

  .form-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 6px;
  }

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

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

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--water-blue);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
  }

  .form-group textarea {
    resize: none;
    height: 80px;
  }

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

  .submit-btn {
    width: 100%;
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.2s, transform 0.1s;
    position: relative;
    overflow: hidden;
  }

  .submit-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(33,150,243,0.2), transparent);
    pointer-events: none;
  }

  .submit-btn:hover { background: var(--water-deep); transform: translateY(-1px); }
  .submit-btn:active { transform: translateY(0); }

  .form-footer-note {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .form-success {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
  }

  .form-success.visible { display: block; }
  .form-fields.hidden { display: none; }

  .success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .success-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }

  .success-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  /* ── WHY TAMPA SECTION ── */
  .section-why {
    background: var(--cream);
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
  }

  .section-why::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(33,150,243,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

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

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--water-blue);
    margin-bottom: 1rem;
  }

  .section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--water-blue);
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
  }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .why-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .why-text p strong {
    color: var(--text);
    font-weight: 600;
  }

  .warning-signs {
    background: var(--dark);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }

  .warning-signs::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F44336, var(--water-blue));
  }

  .warning-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .warning-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .warning-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
  }

  .warning-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #F44336;
    border-radius: 2px;
    flex-shrink: 0;
    transform: rotate(45deg);
  }

  /* ── SERVICES ── */
  .section-services {
    background: var(--dark);
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
  }

  .section-services .section-title { color: #fff; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 3rem;
    background: rgba(33,150,243,0.15);
    border-radius: 16px;
    overflow: hidden;
  }

  .service-card {
    background: var(--dark-mid);
    padding: 2rem;
    transition: background 0.2s;
    cursor: default;
  }

  .service-card:hover { background: #2F2F24; }

  .service-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
    line-height: 1.2;
  }

  .service-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
  }

  /* ── PROCESS ── */
  .section-process {
    background: var(--off-white);
    padding: 100px 80px;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--water-blue), var(--water-blue), transparent);
    opacity: 0.3;
  }

  .step {
    text-align: center;
    position: relative;
  }

  .step-num {
    width: 56px;
    height: 56px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--water-blue);
    border: 2px solid rgba(33,150,243,0.2);
    position: relative;
    z-index: 1;
  }

  .step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }

  .step-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* ── REVIEWS ── */
  .section-reviews {
    background: var(--cream);
    padding: 100px 80px;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.8rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }

  .review-stars {
    color: var(--water-blue);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }

  .review-text {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 1.2rem;
    font-style: italic;
  }

  .review-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--water-blue);
    flex-shrink: 0;
  }

  .author-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
  }

  .author-location {
    font-size: 0.75rem;
    color: var(--text-muted);
  }

  .review-source {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    text-transform: uppercase;
    background: var(--cream);
    padding: 3px 8px;
    border-radius: 4px;
  }

  .reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
  }

  .summary-stat {
    text-align: center;
  }

  .summary-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark);
    display: block;
  }

  .summary-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  /* ── FAQ ── */
  .section-faq {
    background: var(--dark);
    padding: 100px 80px;
  }

  .section-faq .section-title { color: #fff; }
  .section-faq .section-label { color: var(--water-light); }
  .section-faq .section-label::before { background: var(--water-light); }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 3rem;
    background: rgba(33,150,243,0.1);
    border-radius: 16px;
    overflow: hidden;
  }

  .faq-item {
    background: var(--dark-mid);
    padding: 2rem;
    cursor: pointer;
    transition: background 0.2s;
  }

  .faq-item:hover { background: #2C2C20; }

  .faq-q {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.4;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }

  .faq-toggle {
    color: var(--water-blue);
    font-size: 1.2rem;
    font-weight: 300;
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.2s;
  }

  .faq-item.open .faq-toggle { transform: rotate(45deg); }

  .faq-a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
  }

  .faq-item.open .faq-a {
    max-height: 300px;
    margin-top: 0.8rem;
  }

  /* ── SERVICE AREA ── */
  .section-area {
    background: var(--off-white);
    padding: 80px 80px;
  }

  .area-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2rem;
  }

  .area-tag {
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 100px;
    transition: border-color 0.2s, color 0.2s;
  }

  .area-tag:hover {
    border-color: var(--water-blue);
    color: var(--navy);
  }

  /* ── BOTTOM CTA ── */
  .section-cta {
    background: var(--dark);
    padding: 100px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 30% 50%, rgba(33,150,243,0.08), transparent 50%),
      radial-gradient(circle at 70% 50%, rgba(0,151,167,0.06), transparent 50%);
  }

  .cta-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--water-blue);
    margin-bottom: 1rem;
    position: relative;
  }

  .cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .cta-title .accent { color: var(--water-blue); font-style: italic; }

  .cta-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    position: relative;
  }

  .cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
  }

  .btn-primary {
    background: var(--water-blue);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

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

  .btn-secondary {
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 16px 28px;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-secondary:hover {
    border-color: rgba(255,255,255,0.35);
    color: #fff;
  }

  /* ── FOOTER ── */
  .footer {
    background: #111110;
    padding: 40px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .footer-left {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
  }

  .footer-left strong {
    font-weight: 600;
    color: rgba(255,255,255,0.5);
  }

  .footer-right {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    text-align: right;
  }

  /* ── PHONE BAR (mobile) ── */
  .phone-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: var(--water-blue);
    padding: 14px;
    text-align: center;
  }

  .phone-bar a {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.02em;
  }

  /* ── MARKETPLACE BADGE ── */
  .marketplace-badge {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 90;
    background: rgba(26, 26, 20, 0.85);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.5);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .marketplace-badge:hover {
    opacity: 0.7;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 100px 2rem 2rem; }
    .hero-right { padding: 0 2rem 4rem; justify-content: stretch; }
    .form-card { max-width: 100%; }
    .section-why, .section-services, .section-process, .section-reviews,
    .section-faq, .section-area, .section-cta, .footer { padding: 60px 2rem; }
    .two-col, .services-grid, .faq-grid, .process-steps, .reviews-grid { grid-template-columns: 1fr; }
    .process-steps::before { display: none; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .stat-divider { display: none; }
    .header { padding: 0 1rem; }
    .phone-bar { display: block; }
    .marketplace-badge { bottom: 60px; }
    body { padding-bottom: 60px; }
    .reviews-summary { flex-direction: column; gap: 1rem; }
  }

  @media (max-width: 600px) {
    .header-tag { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; justify-content: center; }
    .footer { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-right { text-align: center; }
  }

  /* ── LOCATION PAGES ── */
  .location-hero {
    background: var(--dark);
    padding: 120px 80px 60px;
    position: relative;
    overflow: hidden;
  }

  .location-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 50%, rgba(33,150,243,0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 30%, rgba(0,151,167,0.07) 0%, transparent 40%);
    pointer-events: none;
  }

  .location-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    position: relative;
  }

  .location-hero h1 .accent {
    color: var(--water-blue);
    font-style: italic;
  }

  .location-hero .location-tagline {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    max-width: 600px;
    position: relative;
  }

  .location-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 80px;
  }

  .location-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin: 2.5rem 0 1rem;
    line-height: 1.2;
  }

  .location-content h2:first-child {
    margin-top: 0;
  }

  .location-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
  }

  .location-content p strong {
    color: var(--text);
    font-weight: 600;
  }

  .location-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }

  .location-content th,
  .location-content td {
    padding: 14px 18px;
    text-align: left;
    font-size: 0.9rem;
  }

  .location-content th {
    background: var(--dark);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
  }

  .location-content td {
    background: #fff;
    border-bottom: 1px solid var(--border);
    color: var(--text);
  }

  .location-content tr:last-child td {
    border-bottom: none;
  }

  .location-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
  }

  .location-area-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .location-area-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  }

  .location-area-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
  }

  .location-area-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
  }

  .location-emergency {
    background: var(--dark);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .location-emergency-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }

  .location-emergency-info p strong {
    color: #fff;
  }

  .location-emergency .header-cta {
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 10px;
    white-space: nowrap;
  }

  @media (max-width: 900px) {
    .location-hero { padding: 100px 2rem 40px; }
    .location-content { padding: 40px 2rem; }
    .location-emergency { flex-direction: column; text-align: center; }
  }
