/* Basic resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html { scroll-behavior: smooth; }
:root {
    /* Color system */
    --bg: #faf7f5;
    --surface: #ffffff;
    --text: #2a2a2a;
    --muted: #6b6b6b;
    --brand: #f28b21; /* existing brand */
    --brand-700: #d8721c;
    --brand-50: #fff3e6;
    --border: #ebe6e2;
    --shadow: 0 10px 30px rgba(0,0,0,0.06);

    /* Typography */
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

    /* Radii & spacing */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --container: 1140px;
    --space-1: .5rem; --space-2: .75rem; --space-3: 1rem; --space-4: 1.5rem; --space-5: 2rem; --space-6: 3rem; --space-7: 4rem;
}
body {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    position: relative;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    z-index: 1000;
    transition: width 0.25s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
/* Subtle moiré-like grain and vignette for depth */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
      /* soft corners vignette */
      radial-gradient(1200px 800px at -10% -10%, rgba(0,0,0,0.06), transparent 50%),
      radial-gradient(1000px 700px at 110% 110%, rgba(0,0,0,0.06), transparent 50%),
      /* ultra-subtle repeating lines that create a moiré-style visual texture */
      repeating-linear-gradient(90deg, rgba(0,0,0,0.015) 0 1px, transparent 1px 3px);
    mix-blend-mode: multiply;
    opacity: 0.6;
}

/* Hero section */
.hero {
    position: relative;
    /* Use a locally hosted hero image for faster loading and reliability */
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
    min-height: 68vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Layered gradient to soften image and add warmth */
    background:
      radial-gradient(600px 300px at 20% 20%, rgba(242, 139, 33, 0.35), transparent 60%),
      radial-gradient(700px 350px at 80% 30%, rgba(0, 0, 0, 0.35), transparent 65%),
      linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.35));
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}
.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw + 1rem, 3.25rem);
    letter-spacing: 0.2px;
    margin-bottom: 0.75rem;
}
.hero p {
    font-size: clamp(1rem, 1.2vw + 0.7rem, 1.2rem);
    margin-bottom: 1.75rem;
    opacity: 0.95;
}
.cta-button {
    display: inline-block;
    padding: 0.9rem 1.6rem;
    background: linear-gradient(180deg, var(--brand), var(--brand-700));
    color: #fff;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(242, 139, 33, 0.35);
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(242, 139, 33, 0.45);
}
.cta-button:focus-visible {
    outline: 3px solid var(--brand-50);
    outline-offset: 2px;
}

/* Additional Button Variants */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-outline {
    background: transparent;
    color: var(--brand);
    border-color: var(--brand);
}

.btn-outline:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 139, 33, 0.3);
}

.cta-area {
    text-align: center;
    margin-top: var(--space-4);
}

/* Sections */
section { padding: var(--space-6) var(--space-4); max-width: var(--container); margin: 0 auto; }
section.section-tight { padding-top: var(--space-5); padding-bottom: var(--space-5); }
section h2 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(1.4rem, 1.4vw + 1rem, 2rem);
    margin-bottom: 1rem;
    color: #1e1e1e;
}

.about p {
    margin-bottom: 0.75rem;
    color: var(--muted);
}

/* Services */
.services .service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.service-item {
    background-color: var(--surface);
    padding: 1.5rem;
    flex: 1 1 250px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.2s ease;
}
.service-item h3 {
    margin-bottom: 0.5rem;
    color: var(--brand);
}
.service-item p {
    font-size: 0.95rem;
    color: var(--muted);
}
.service-item:hover {
    transform: translateY(-2px);
    border-color: #eadfd7;
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

/* Areas */
.areas ul {
    list-style-type: none;
    padding-left: 0;
}
.areas li {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
}
.areas li:last-child {
    border-bottom: none;
}
.areas a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.areas a:hover { color: var(--brand); border-color: var(--brand-50); }

/* Contact */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.contact {
    background: linear-gradient(180deg, #fff, #fff),
                radial-gradient(1400px 600px at 10% 0%, #fff7f0 0%, transparent 60%),
                radial-gradient(800px 400px at 90% 20%, #fff2e6 0%, transparent 55%);
    background-blend-mode: normal, multiply, multiply;
    border-top: 1px solid var(--border);
}
.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background: #fff;
}
.contact-form button {
    padding: 0.9rem;
    background-color: var(--brand);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(242, 139, 33, 0.25);
    transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form button:hover {
    background-color: var(--brand-700);
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(242, 139, 33, 0.35);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e6d7cd;
    box-shadow: 0 0 0 4px var(--brand-50);
}

/* Breadcrumb navigation */
.breadcrumb {
    max-width: 1024px;
    margin: 1rem auto;
    font-size: 0.85rem;
    color: var(--muted);
}
.breadcrumb a {
    color: var(--brand);
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb span {
    color: var(--text);
}
/* Footer */
footer {
    background: linear-gradient(180deg, #1f1f1f, #151515);
    color: #e9e9e9;
    padding: var(--space-6) 0;
    font-size: 0.9rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-5);
    margin-bottom: var(--space-5);
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-4);
}
.footer-section h3 {
    color: #fff;
    margin-bottom: var(--space-3);
    font-size: 1.1rem;
}
.footer-section p {
    margin-bottom: var(--space-2);
    line-height: 1.6;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: var(--space-2);
}
.footer-section a { 
    color: #fff; 
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-section a:hover { 
    color: var(--brand-50); 
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-4);
    text-align: center;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

/* Navigation Bar */
.navbar {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: saturate(160%) blur(12px);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
}
.navbar .container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--brand);
    text-decoration: none;
}
.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
}
.navbar .nav-links li { position: relative; }
.navbar .nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: bold;
    padding: 0.25rem 0.1rem;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.navbar .nav-links a:hover {
    color: var(--brand);
    border-color: var(--brand-50);
}
/* Dropdown */
.navbar .has-dropdown > a::after { content: "▾"; margin-left: .25rem; font-size: .8em; }
.navbar .dropdown {
    position: absolute; top: 100%; left: 0; background: #fff; border:1px solid rgba(0,0,0,.06);
    box-shadow: 0 10px 26px rgba(0,0,0,.08); border-radius: 10px; padding: .5rem; display: none; min-width: 220px;
}
.navbar .dropdown a { display:block; padding: .45rem .6rem; border:none; font-weight:600; }
.navbar .dropdown a:hover { background:#f7f5f3; border:none; }
.navbar .has-dropdown:hover .dropdown { display: block; }

/* Mega Menu for Areas */
.navbar .mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-radius: 12px;
    min-width: 600px;
    display: none;
    z-index: 1000;
}

.navbar .has-dropdown:hover .mega-dropdown {
    display: block;
}

.mega-dropdown-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-3);
    padding: var(--space-4);
}

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

.mega-column h4 {
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0 0 var(--space-2) 0;
    padding-bottom: var(--space-1);
    border-bottom: 1px solid rgba(0,0,0,.06);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-column a {
    color: var(--text);
    text-decoration: none;
    padding: var(--space-1) 0;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.mega-column a:hover {
    color: var(--brand);
    background: #f7f5f3;
    padding-left: var(--space-2);
}

.mega-footer {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: var(--space-3);
    border-top: 1px solid rgba(0,0,0,.06);
    margin-top: var(--space-2);
}
.navbar .nav-cta {
    background-color: var(--brand);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 16px rgba(242, 139, 33, 0.25);
}
.navbar .nav-cta:hover {
    background-color: var(--brand-700);
}
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
    }
    .navbar .nav-cta {
        margin-left: auto;
    }
}

/* Feature cards */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1024px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}
.feature-card {
    background-color: var(--surface);
    flex: 1 1 250px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.2s ease;
}
.feature-card svg {
    width: 40px;
    height: 40px;
    fill: var(--brand);
    margin-bottom: 0.5rem;
}
.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--brand);
}
.feature-card p {
    font-size: 0.95rem;
    color: var(--muted);
}
.feature-card:hover {
    transform: translateY(-2px);
    border-color: #eadfd7;
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

/* Mobile optimizations for feature cards */
@media (max-width: 768px) {
    .features {
        gap: 1rem;
        padding: 2rem 1rem;
    }
    .feature-card {
        flex: 1 1 200px;
        padding: 1.2rem;
    }
    .feature-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    }
}

/* Call to Action section */
.cta-section {
    background: linear-gradient(180deg, var(--brand), var(--brand-700));
    color: #fff;
    text-align: center;
    padding: 2rem 1.5rem;
}
.cta-section h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}
.cta-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
}
.cta-section a {
    background-color: #fff;
    color: var(--brand);
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.cta-section a:hover {
    background-color: #fef0e6;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.16);
}

/* Form message styles */
.form-message {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.form-message--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.form-message--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
    .cta-button,
    .feature-card,
    .service-item,
    .contact-form button,
    .cta-section a { transition: none; }
}

/* Cards grid (services/species/locations/blog) */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.2rem;
}

/* Responsive grid adjustments */
@media (max-width: 768px) {
    .grid-cards {
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .grid-cards {
        gap: 0.6rem;
    }
}
.link-grid { display:grid; grid-template-columns: repeat(12,1fr); gap:1rem; }
.link-grid a { grid-column: span 4; display:block; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md); padding:1rem 1.2rem; text-decoration:none; color:var(--text); font-weight:700; box-shadow:var(--shadow); }
.link-grid a:hover { border-color:#eadfd7; transform: translateY(-2px); box-shadow:0 16px 36px rgba(0,0,0,.08); }
@media (max-width: 960px){ .link-grid a { grid-column: span 6; } }
@media (max-width: 640px){ .link-grid a { grid-column: span 12; } }

/* Map embeds */
.map-embed { 
    margin: var(--space-6) auto; 
    max-width: 800px;
    text-align: center;
}
.map-container { 
    position: relative; 
    width: 100%; 
    height: 450px; 
    border-radius: var(--radius-md); 
    overflow: hidden; 
    box-shadow: var(--shadow);
    margin: 0 auto;
}
.map-embed iframe { 
    width: 100%; 
    height: 100%; 
    border: 0; 
    display: block; 
    border-radius: var(--radius-md);
}
.card {
    grid-column: span 4;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .3s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); border-color: #eadfd7; box-shadow: 0 16px 36px rgba(0,0,0,.1); }
@media (max-width: 768px) {
    .card:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,.08); }
}
.card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.card .card-body { padding: 1rem; }
.card .card-title { font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.card .card-text { color: var(--muted); font-size: .95rem; }
.card .card-link { display: inline-block; margin-top: .6rem; color: var(--brand); text-decoration: none; font-weight: 700; }

/* Responsive breakpoints for cards */
@media (max-width: 1200px) { 
    .card { grid-column: span 6; } 
}
@media (max-width: 768px) { 
    .card { grid-column: span 12; }
    .card img { height: 120px; }
    .card .card-body { padding: 0.8rem; }
    .card .card-title { font-size: 0.95rem; }
    .card .card-text { font-size: 0.9rem; }
}
@media (max-width: 480px) { 
    .card { grid-column: span 12; }
    .card img { height: 140px; }
    .card .card-body { padding: 0.7rem; }
    .card .card-title { font-size: 0.9rem; }
    .card .card-text { font-size: 0.85rem; }
}

/* Testimonials */
.testimonials { position: relative; max-width: 700px; margin: 0 auto; }
.testimonial { 
    display: none; 
    background: var(--surface); 
    border: 1px solid var(--border); 
    border-radius: var(--radius-md); 
    padding: 1.8rem; 
    box-shadow: var(--shadow); 
    text-align: center;
    min-height: 200px;
    flex-direction: column;
    justify-content: center;
}
.testimonial.active {
    display: flex;
}
.testimonial:first-child { display: flex; }
.testimonial .stars { color: #f5b301; margin-bottom: .8rem; font-size: 1.1rem; }
.testimonial p { 
    font-style: italic; 
    font-size: 1.05rem; 
    line-height: 1.6; 
    margin-bottom: 1rem; 
    color: var(--text);
}
.testimonial .muted { 
    font-weight: 600; 
    color: var(--muted); 
    font-size: 0.9rem;
}
.testimonial-nav { 
    display: flex; 
    justify-content: center; 
    gap: .8rem; 
    margin-top: 1.2rem; 
}
.testimonial-nav a { 
    background: var(--brand); 
    color: white; 
    border: none; 
    border-radius: 50%; 
    width: 40px; 
    height: 40px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    font-size: 1.1rem; 
    transition: all 0.2s ease;
}
.testimonial-nav a:hover { 
    background: var(--brand-700); 
    transform: scale(1.05); 
}

/* Trust badges */
.trust { display:flex; gap:1rem; flex-wrap:wrap; align-items:center; justify-content:center; }
.trust img { height:32px; filter: grayscale(100%); opacity:.8; }

/* Sticky CTA for mobile */
.sticky-cta { position: fixed; bottom: 12px; left: 50%; transform: translateX(-50%); background: var(--brand); color:#fff; padding:.9rem 1.4rem; border-radius:999px; box-shadow:0 10px 26px rgba(242,139,33,.35); z-index:999; text-decoration:none; font-weight:700; }
@media (min-width: 768px){ .sticky-cta { display:none; } }

/* Scroll indicator in hero */
.scroll-indicator { position:absolute; bottom:18px; left:50%; transform:translateX(-50%); color:#fff; opacity:.8; font-size:.85rem; }
.scroll-indicator::after { content:"▿"; display:block; text-align:center; margin-top:4px; animation: bob 1.6s infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(4px); } }

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--border);
    z-index: 1000;
}
.scroll-progress::before {
    content: '';
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--brand), var(--brand-700));
    width: 0%;
    transition: width 0.1s ease;
}

/* New shared content section styles */
.process, .options, .faq {
    max-width: 1024px;
    margin: 0 auto;
    padding: 2.25rem 1.5rem;
}
.process h2, .options h2, .faq h2 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(1.3rem, 1.2vw + 1rem, 1.8rem);
    margin-bottom: 0.75rem;
}
.process p, .options p, .faq p { color: var(--muted); }
.process-steps {
    counter-reset: step;
    list-style: none;
    display: grid;
    gap: 1rem;
    margin-top: 0.75rem;
}
.process-steps li {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem 1rem 3.25rem;
    position: relative;
    box-shadow: var(--shadow);
}
.process-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.faq details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.9rem 1rem;
    box-shadow: var(--shadow);
}
.faq details + details { margin-top: 0.75rem; }
.faq summary {
    cursor: pointer;
    font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] { border-color: #eadfd7; }

/* Hero per-page modifiers (replace with local images when available) */
/* Include base hero as a secondary layer fallback */
.hero--collection { background-image: url('images/services/collection-hero.jpg'), url('images/hero.png'); }
.hero--cremation { background-image: url('images/services/cremation-hero.jpg'), url('images/hero.png'); }
.hero--return { background-image: url('images/services/return-hero.jpg'), url('images/hero.png'); }
.hero--camps-bay { background-image: url('images/locations/camps-bay-hero.jpg'), url('images/hero.png'); }
.hero--constantia { background-image: url('images/locations/constantia-hero.jpg'), url('images/hero.png'); }
.hero--bantry-bay { background-image: url('images/locations/bantry-bay-hero.jpg'), url('images/hero.png'); }
.hero--rondebosch { background-image: url('images/locations/rondebosch-hero.jpg'), url('images/hero.png'); }
.hero--tokai { background-image: url('images/locations/tokai-hero.jpg'), url('images/hero.png'); }
.hero--somerset-west { background-image: url('images/locations/somerset-west-hero.jpg'), url('images/hero.png'); }
.hero--strand { background-image: url('images/locations/strand-hero.jpg'), url('images/hero.png'); }
.hero--gordons-bay { background-image: url('images/locations/gordons-bay-hero.jpg'), url('images/hero.png'); }
.hero--bishopscourt { background-image: url('images/locations/bishopscourt-hero.jpg'), url('images/hero.png'); }
.hero--newlands { background-image: url('images/locations/newlands-hero.jpg'), url('images/hero.png'); }
.hero--claremont { background-image: url('images/locations/claremont-hero.jpg'), url('images/hero.png'); }
.hero--kenilworth { background-image: url('images/locations/kenilworth-hero.jpg'), url('images/hero.png'); }
.hero--wynberg { background-image: url('images/locations/wynberg-hero.jpg'), url('images/hero.png'); }
.hero--sea-point { background-image: url('images/locations/sea-point-hero.jpg'), url('images/hero.png'); }
.hero--green-point { background-image: url('images/locations/green-point-hero.jpg'), url('images/hero.png'); }
.hero--gardens { background-image: url('images/locations/gardens-hero.jpg'), url('images/hero.png'); }
.hero--durbanville { background-image: url('images/locations/durbanville-hero.jpg'), url('images/hero.png'); }
.hero--plattekloof { background-image: url('images/locations/plattekloof-hero.jpg'), url('images/hero.png'); }
.hero--brackenfell { background-image: url('images/locations/brackenfell-hero.jpg'), url('images/hero.png'); }
.hero--bellville { background-image: url('images/locations/bellville-hero.jpg'), url('images/hero.png'); }
.hero--blouberg { background-image: url('images/locations/blouberg-hero.jpg'), url('images/hero.png'); }
.hero--parklands { background-image: url('images/locations/parklands-hero.jpg'), url('images/hero.png'); }
.hero--noordhoek { background-image: url('images/locations/noordhoek-hero.jpg'), url('images/hero.png'); }
.hero--kommetjie { background-image: url('images/locations/kommetjie-hero.jpg'), url('images/hero.png'); }
.hero--fish-hoek { background-image: url('images/locations/fish-hoek-hero.jpg'), url('images/hero.png'); }
.hero--simons-town { background-image: url('images/locations/simons-town-hero.jpg'), url('images/hero.png'); }
.hero--muizenberg { background-image: url('images/locations/muizenberg-hero.jpg'), url('images/hero.png'); }

