:root {
  --gold: #C8A050;
  --gold-bright: #E8B84B;
  --charcoal: #1A1A1A;
  --charcoal2: #242424;
  --charcoal3: #2E2E2E;
  --warm-white: #F5F0E8;
  --muted: #93938A;
  --border-dark: rgba(200,160,80,0.18);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--charcoal); color: var(--warm-white); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold-bright); outline-offset: 2px;
}

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

/* NAV */
.nav { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 2.5rem; position: fixed; top: 0; left: 0; right: 0; z-index: 200; border-bottom: 1px solid var(--border-dark); transition: background 0.25s, border-color 0.25s; }
.nav.scrolled { background: rgba(26,26,26,0.92); backdrop-filter: blur(8px); border-bottom-color: var(--border-dark); }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--warm-white); }
.logo-mark { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.logo-name { font-size: 16px; font-weight: 600; color: var(--warm-white); line-height: 1.2; }
.logo-city { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 14px; color: rgba(245,240,232,0.6); text-decoration: none; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--charcoal); border: none; padding: 9px 20px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; text-decoration: none; }
.nav-cta:hover { background: var(--gold-bright); }
.nav-toggle { display: none; background: none; border: none; color: var(--warm-white); font-size: 24px; cursor: pointer; padding: 4px; }

.nav-mobile-panel { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: min(78vw, 300px); background: var(--charcoal2); z-index: 250; border-left: 1px solid var(--border-dark); padding: 5.5rem 1.75rem 2rem; flex-direction: column; gap: 1.5rem; transform: translateX(100%); visibility: hidden; transition: transform 0.28s ease, visibility 0s linear 0.28s; }
.nav-mobile-panel.open { transform: translateX(0); visibility: visible; transition: transform 0.28s ease, visibility 0s linear 0s; }
.nav-mobile-panel a { color: var(--warm-white); text-decoration: none; font-size: 16px; }
.nav-mobile-panel .nav-cta { align-self: flex-start; }
.nav-scrim { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 240; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.nav-scrim.open { opacity: 1; pointer-events: auto; }

/* HERO */
.hero-wrap { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1626668893632-6f3a4466d22f?w=1800&q=85&auto=format&fit=crop'); background-size: cover; background-position: center; filter: brightness(0.45) saturate(0.9); z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.55) 55%, rgba(26,26,26,0.97) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding: 10rem 2.5rem 5rem; max-width: 960px; margin: 0 auto; width: 100%; }
.hero-tag { display: inline-flex; align-items: center; gap: 7px; background: rgba(200,160,80,0.12); border: 1px solid rgba(200,160,80,0.35); padding: 5px 14px; border-radius: 99px; font-size: 12px; color: var(--gold); letter-spacing: 0.3px; margin-bottom: 1.75rem; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); display: inline-block; }
.hero-content h1 { font-size: 64px; font-weight: 700; line-height: 1.05; letter-spacing: -2.5px; margin-bottom: 1.25rem; color: var(--warm-white); }
.hero-content h1 .gold { color: var(--gold); }
.hero-content p { font-size: 18px; color: rgba(245,240,232,0.65); line-height: 1.75; max-width: 540px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-gold { background: var(--gold); color: var(--charcoal); border: none; padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; text-decoration: none; display: inline-block; }
.btn-gold:hover { background: var(--gold-bright); }
.btn-ghost { background: transparent; color: var(--warm-white); border: 1px solid rgba(200,160,80,0.35); padding: 14px 28px; border-radius: 8px; font-size: 15px; cursor: pointer; font-family: inherit; text-decoration: none; display: inline-block; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* HERO DIAGONAL ACCENT — transition into the trust strip below */
.hero-diagonal { position: absolute; left: 0; right: 0; bottom: 0; height: 90px; z-index: 2; overflow: hidden; pointer-events: none; }
.hero-diagonal::before { content: ""; position: absolute; inset: 0; background: var(--charcoal2); clip-path: polygon(0 100%, 100% 55%, 100% 100%, 0 100%); }
.hero-diagonal::after { content: ""; position: absolute; inset: 0; background: var(--gold); opacity: 0.85; clip-path: polygon(0 100%, 100% 40%, 100% 55%, 0 100%); }

/* HERO TIRE ANIMATION — decorative, desktop only */
.hero-tire { position: absolute; top: 50%; right: 4%; width: 300px; height: 300px; transform: translateY(-50%); z-index: 1; opacity: 0.22; pointer-events: none; color: var(--gold); }
.hero-tire svg { width: 100%; height: 100%; display: block; animation: tire-spin 7s linear infinite; }
@keyframes tire-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (max-width: 900px) { .hero-tire { display: none; } }

/* TRUST STRIP */
.strip { background: var(--charcoal2); border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); padding: 1.1rem 2.5rem; display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; }
.strip-item { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.strip-item i { color: var(--gold); font-size: 15px; }

/* EMERGENCY BANNER */
.emergency-outer { padding: 2.5rem 2.5rem 0; max-width: 960px; margin: 0 auto; }
.emergency-banner { background: linear-gradient(135deg, #1A1A1A 0%, #2A1F0A 100%); border: 1px solid var(--gold); border-radius: 12px; padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.emergency-left { display: flex; align-items: center; gap: 14px; }
.emergency-icon { font-size: 28px; color: #ef4444; }
.emergency-title { font-size: 17px; font-weight: 700; color: var(--warm-white); margin-bottom: 3px; }
.emergency-sub { font-size: 13px; color: var(--muted); }
.emergency-btn { background: #ef4444; color: #fff; border: none; padding: 11px 22px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; text-decoration: none; white-space: nowrap; }
.emergency-btn:hover { background: #dc2626; }

/* SECTION WRAPPER */
.section { padding: 4.5rem 2.5rem; max-width: 960px; margin: 0 auto; }
.section-label { font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.section h2 { font-size: 34px; font-weight: 700; letter-spacing: -1px; margin-bottom: 2.5rem; color: var(--warm-white); }

/* Anchor-jump offset so the fixed nav never covers a scrolled-to target */
#services, #testimonials, #about, #area, #booking, #browse, #featured, .cat-block { scroll-margin-top: 90px; }

/* BROWSE BY SERVICE (quick nav) */
.browse-wrap { padding: 4.5rem 2.5rem; max-width: 960px; margin: 0 auto; }
.browse { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.browse-text p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 1.75rem; }
.browse-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.browse-tile { display: flex; align-items: center; gap: 10px; background: var(--charcoal2); border: 1px solid var(--border-dark); border-radius: 10px; padding: 0.9rem 1.1rem; text-decoration: none; color: var(--warm-white); font-size: 14px; font-weight: 600; transition: border-color 0.15s, transform 0.15s; }
.browse-tile i { color: var(--gold); font-size: 18px; flex-shrink: 0; }
.browse-tile:hover { border-color: var(--gold); transform: translateY(-2px); }
.browse-tile-emergency { border-color: rgba(239,68,68,0.35); }
.browse-tile-emergency i { color: #ef4444; }
.browse-tile-emergency:hover { border-color: #ef4444; }
.browse-photo { border-radius: 14px; overflow: hidden; min-height: 260px; }
.browse-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* FEATURED SERVICES (tabbed) */
.featured-wrap { background: var(--charcoal2); border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); padding: 4.5rem 2.5rem; }
.featured-wrap > .section-label, .featured-wrap > h2 { max-width: 960px; margin-left: auto; margin-right: auto; }
.featured-wrap > h2 { margin-bottom: 2rem; }
.feat-tabs { max-width: 960px; margin: 0 auto 2rem; display: flex; gap: 8px; flex-wrap: wrap; }
.feat-tab { background: transparent; border: 1px solid var(--border-dark); color: var(--muted); padding: 10px 20px; border-radius: 99px; font-size: 14px; font-weight: 600; font-family: inherit; cursor: pointer; }
.feat-tab[aria-selected="true"] { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.feat-tab:hover:not([aria-selected="true"]) { border-color: var(--gold); color: var(--gold); }
.feat-panel { max-width: 960px; margin: 0 auto; }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.feat-card { background: var(--charcoal); border: 1px solid var(--border-dark); border-radius: 12px; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.feat-card-icon { font-size: 26px; color: var(--gold); }
.feat-card h3 { font-size: 15px; font-weight: 700; color: var(--warm-white); }
.feat-card p { font-size: 13px; color: var(--muted); line-height: 1.6; flex-grow: 1; }
.feat-cta { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 9px 14px; border-radius: 8px; font-size: 13px; font-weight: 700; font-family: inherit; cursor: pointer; margin-top: 0.4rem; }
.feat-cta:hover { background: var(--gold); color: var(--charcoal); }

/* CTA BANNER */
.cta-banner-wrap { background: linear-gradient(135deg, #1A1A1A 0%, #2A1F0A 100%); border-bottom: 1px solid var(--border-dark); }
.cta-banner { max-width: 960px; margin: 0 auto; padding: 3.5rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-banner-text h2 { font-size: 28px; font-weight: 700; letter-spacing: -0.6px; margin: 0.4rem 0 0.5rem; color: var(--warm-white); }
.cta-banner-text h2 .gold { color: var(--gold); }
.cta-banner-text p { font-size: 14px; color: var(--muted); max-width: 420px; }
.cta-banner-btn { background: var(--gold); color: var(--charcoal); border-radius: 8px; padding: 14px 28px; font-size: 16px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.cta-banner-btn:hover { background: var(--gold-bright); }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* SERVICE PHOTO BANNERS */
.services-categories { display: flex; flex-direction: column; gap: 2.5rem; }
.cat-block { border-radius: 14px; overflow: hidden; border: 1px solid var(--border-dark); }
.cat-photo { position: relative; height: 200px; overflow: hidden; }
.cat-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.4s ease; }
.cat-block:hover .cat-photo img { transform: scale(1.03); }
.cat-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.4) 60%, rgba(26,26,26,0.1) 100%); display: flex; align-items: center; padding: 0 2rem; }
.cat-photo-title { display: flex; align-items: center; gap: 12px; }
.cat-photo-title i { font-size: 28px; color: var(--gold); }
.cat-photo-title h3 { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.5px; }
.cat-photo-title p { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 3px; }
.cat-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); background: var(--charcoal2); }
.cat-item { padding: 0.9rem 1.5rem; border-right: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); display: flex; align-items: center; gap: 8px; }
.cat-item i { font-size: 13px; color: var(--gold); flex-shrink: 0; }
.cat-item span { font-size: 13px; color: rgba(245,240,232,0.8); }
.cat-item.emergency span { color: #ef4444; font-weight: 600; }
.cat-item.emergency i { color: #ef4444; }

/* WHY SECTION */
.why-wrap { background: var(--charcoal2); border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); }
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; max-width: 960px; margin: 0 auto; }
.why-photo { position: relative; min-height: 420px; overflow: hidden; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.why-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, var(--charcoal2) 100%); }
.why-text { padding: 3.5rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.why-text h2 { font-size: 30px; font-weight: 700; letter-spacing: -0.8px; margin-bottom: 1rem; color: var(--warm-white); }
.why-text p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.why-stats { display: flex; flex-direction: column; gap: 1px; }
.stat-row { padding: 1rem 0; border-bottom: 1px solid var(--border-dark); display: flex; align-items: center; gap: 1rem; }
.stat-row:last-child { border-bottom: none; }
.stat-num { font-size: 26px; font-weight: 700; color: var(--gold); min-width: 90px; }
.stat-label { font-size: 13px; color: var(--muted); }

/* PHOTO GALLERY STRIP */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; max-width: 100%; overflow: hidden; }
.gallery-img { height: 160px; overflow: hidden; position: relative; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; filter: brightness(0.75) saturate(0.8); }
.gallery-img:hover img { transform: scale(1.06); filter: brightness(0.9) saturate(1); }

/* TESTIMONIALS */
.testimonials-wrap { padding: 4.5rem 2.5rem; max-width: 960px; margin: 0 auto; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testimonial-card { background: var(--charcoal2); border: 1px solid var(--border-dark); border-radius: 12px; padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.testimonial-quote { font-size: 14px; line-height: 1.7; color: rgba(245,240,232,0.85); flex-grow: 1; }
.testimonial-person { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(200,160,80,0.15); border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.testimonial-name { font-size: 13px; font-weight: 600; color: var(--warm-white); }
.testimonial-meta { font-size: 12px; color: var(--muted); }
.testimonials-note { margin-top: 1.5rem; font-size: 12px; color: var(--muted); border-top: 1px solid var(--border-dark); padding-top: 1rem; }

/* SERVICE AREA */
.area-wrap { background: var(--charcoal2); border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); }
.area { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 960px; margin: 0 auto; align-items: stretch; }
.area-text { padding: 3.5rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.area-text h2 { font-size: 30px; font-weight: 700; letter-spacing: -0.8px; margin-bottom: 1rem; color: var(--warm-white); }
.area-text p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.area-chip { font-size: 12px; color: rgba(245,240,232,0.8); background: rgba(200,160,80,0.08); border: 1px solid var(--border-dark); padding: 6px 12px; border-radius: 99px; }
.area-map { min-height: 380px; border: 0; width: 100%; display: block; filter: saturate(0.85) contrast(1.05); }

/* BOOKING */
.booking-wrap { padding: 4.5rem 2.5rem; }
.booking-inner { max-width: 960px; margin: 0 auto; }
.booking-inner h2 { font-size: 34px; font-weight: 700; letter-spacing: -1px; margin-bottom: 0.5rem; color: var(--warm-white); }
.booking-inner > p { font-size: 15px; color: var(--muted); margin-bottom: 2.25rem; line-height: 1.7; }
.booking-card { background: var(--charcoal2); border: 1px solid var(--border-dark); border-radius: 12px; padding: 2.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; color: rgba(245,240,232,0.6); font-weight: 500; }
.form-field input, .form-field select, .form-field textarea { background: var(--charcoal); border: 1px solid var(--border-dark); border-radius: 8px; padding: 11px 14px; font-size: 14px; font-family: inherit; color: var(--warm-white); outline: none; transition: border-color 0.15s; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #555; }
.form-field select option { background: var(--charcoal); color: var(--warm-white); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-footer { grid-column: 1 / -1; display: flex; align-items: center; gap: 1rem; margin-top: 4px; flex-wrap: wrap; }
.submit-btn { background: var(--gold); color: var(--charcoal); border: none; padding: 13px 32px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; display: flex; align-items: center; gap: 8px; }
.submit-btn:hover { background: var(--gold-bright); }
.submit-btn:disabled { background: #555; color: #888; cursor: not-allowed; }
.submit-note { font-size: 13px; color: var(--muted); }
.form-success { display: none; background: rgba(200,160,80,0.08); border: 1px solid rgba(200,160,80,0.3); border-radius: 10px; padding: 1.5rem; text-align: center; margin-top: 1.5rem; }
.form-success.show { display: block; }
.form-success i { font-size: 32px; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.form-success h3 { font-size: 17px; font-weight: 600; color: var(--warm-white); margin-bottom: 0.25rem; }
.form-success p { font-size: 14px; color: var(--muted); }
.form-error { display: none; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); border-radius: 8px; padding: 0.85rem 1rem; font-size: 13px; color: #f87171; margin-top: 1rem; }
.form-error.show { display: block; }
.setup-banner { background: rgba(200,160,80,0.08); border: 1px solid rgba(200,160,80,0.3); border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--gold); }
.setup-banner i { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.setup-banner strong { display: block; margin-bottom: 2px; }
.setup-banner code { background: rgba(200,160,80,0.15); padding: 2px 6px; border-radius: 4px; font-size: 12px; }

/* BACK TO TOP */
.back-to-top { position: fixed; bottom: 22px; right: 22px; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--charcoal); border: none; display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.25s, transform 0.25s, visibility 0s linear 0.25s; z-index: 150; box-shadow: 0 4px 14px rgba(0,0,0,0.35); }
.back-to-top.show { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity 0.25s, transform 0.25s, visibility 0s linear 0s; }
.back-to-top:hover { background: var(--gold-bright); }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 22px; left: 22px; width: 52px; height: 52px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 26px; text-decoration: none; box-shadow: 0 4px 14px rgba(0,0,0,0.35); z-index: 150; transition: transform 0.2s ease, background 0.2s ease; }
.whatsapp-float:hover { background: #1ebe5a; transform: scale(1.06); }

/* FOOTER */
footer { background: #111; border-top: 1px solid var(--border-dark); padding: 3rem 2.5rem; }
.footer-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; align-items: start; }
.footer-logo { font-size: 15px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.footer-sub { font-size: 13px; color: var(--muted); line-height: 1.9; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.footer-col a, .footer-col .footer-static { font-size: 13px; color: var(--muted); text-decoration: none; line-height: 1.6; }
.footer-col a:hover { color: var(--gold); }
.footer-copy { background: #0a0a0a; text-align: center; padding: 1.25rem; font-size: 12px; color: var(--muted); }

@media (max-width: 780px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .area { grid-template-columns: 1fr; }
  .area-map { min-height: 260px; }
  .browse { grid-template-columns: 1fr; }
  .browse-photo { min-height: 220px; order: -1; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-scrim, .nav-mobile-panel { display: flex; }
  .nav { padding: 1rem 1.25rem; }
  .hero-content { padding: 8rem 1.25rem 4rem; }
  .hero-content h1 { font-size: 36px; letter-spacing: -1.2px; }
  .strip { padding: 1rem 1.25rem; gap: 1rem; justify-content: flex-start; }
  .section { padding: 3rem 1.25rem; }
  .emergency-outer { padding: 2rem 1.25rem 0; }
  .cat-photo { height: 150px; }
  .cat-photo-title h3 { font-size: 18px; }
  .cat-items { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .why-photo { min-height: 240px; }
  .why-photo-overlay { background: linear-gradient(to bottom, transparent 40%, var(--charcoal2) 100%); }
  .why-text { padding: 2rem 1.25rem; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .testimonials-wrap { padding: 3rem 1.25rem; }
  .area-text { padding: 2rem 1.25rem; }
  .booking-wrap { padding: 3rem 1.25rem; }
  .booking-card { padding: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; }
  .whatsapp-float { bottom: 16px; left: 16px; width: 46px; height: 46px; font-size: 22px; }
  .browse-wrap { padding: 3rem 1.25rem; }
  .browse-grid { grid-template-columns: 1fr; }
  .featured-wrap { padding: 3rem 1.25rem; }
  .feat-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.5rem 1.25rem; }
  .cta-banner-text h2 { font-size: 22px; }
}
