/* ========================================
   Collingwood Marquees - Bold Modern Design
   Typography: Cormorant Garamond (display) + Outfit (body)
   Palette: Deep charcoal, warm cream, copper accent
   ======================================== */

:root {
    /* Core palette - Navy blue brand */
    --black: #070b27;
    --charcoal: #070b27;
    --charcoal-light: #0d1340;
    --cream: #f5f0e8;
    --cream-dark: #e8e0d4;
    --white: #ffffff;
    --copper: #c9a227;
    --copper-light: #d4b84b;
    --copper-dark: #a68b1f;
    
    /* Text */
    --text-dark: #070b27;
    --text-mid: #070b27;
    --text-light: #4a4e6a;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 5rem;
    --space-xl: 8rem;
    
    /* Container */
    --container: 1280px;
    
    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.4s;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--black);
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p { margin-bottom: 1.25rem; color: var(--text-mid); }
a { color: inherit; text-decoration: none; transition: color var(--duration) var(--ease); }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-sm) 0;
    background: transparent;
    transition: all var(--duration) var(--ease);
}

.header.scrolled,
.header.header-solid {
    background: var(--charcoal);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    filter: brightness(0) invert(1);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--white);
    transition: all var(--duration) var(--ease);
}

.nav-link:hover {
    color: var(--copper-light);
}

.nav-link--cta {
    background: transparent;
    color: #d4b84b !important;
}

.nav-link--cta:hover {
    background: transparent !important;
    color: #a68b1f !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--duration) var(--ease);
}

.nav-close {
    display: none;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

/* ========================================
   Hero - Cinematic, editorial
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 11, 39, 0.85) 0%,
        rgba(7, 11, 39, 0.7) 50%,
        rgba(7, 11, 39, 0.9) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: var(--space-md);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    margin-bottom: var(--space-md);
    animation: fadeInDown 1s ease 0.2s both;
}

.hero h1 {
    color: var(--white);
    font-weight: 500;
    margin-bottom: var(--space-sm);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero h1 em {
    font-style: italic;
    color: var(--copper-light);
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 1s ease 0.6s both;
}

.hero .btn {
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    margin-top: var(--space-sm);
    animation: scrollPulse 2s ease infinite;
}

.hero-nav {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-md);
    z-index: 2;
    display: flex;
    gap: 0.75rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--copper);
    border-color: var(--copper);
}

/* ========================================
   Intro Section - SEO rich
   ======================================== */
.intro {
    padding: var(--space-xl) 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-xl);
    align-items: start;
}

.intro-content h2 {
    margin-bottom: var(--space-md);
}

.intro-lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--cream);
    border-radius: 4px;
}

.stat {
    text-align: center;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--cream-dark);
}

.stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--copper);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #070b27;
    margin-top: var(--space-xs);
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.section-header--light {
    color: var(--white);
}

.section-header--light h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.section-header--light p {
    color: rgba(255,255,255,0.7);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: var(--space-sm);
}

.section-header--light .section-tag {
    color: var(--copper-light);
}

/* ========================================
   Services
   ======================================== */
.services {
    padding: var(--space-xl) 0;
    background: var(--cream);
}

.service-card--feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--white);
    margin-bottom: var(--space-lg);
    overflow: hidden;
}

.service-card--feature .service-card__image img {
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.service-card--feature .service-card__content {
    padding: var(--space-lg) var(--space-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card--feature .service-card__icon {
    margin: 0 auto var(--space-sm);
}

.service-card--feature .service-card__icon svg {
    width: 40px;
    height: 40px;
}

.service-card.service-card--feature h3 {
    text-align: center;
    font-size: 2rem;
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid #c9a227;
    margin-bottom: var(--space-md);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.service-card {
    background: var(--white);
    overflow: hidden;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.service-card__image {
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--duration) var(--ease);
}

.service-card:hover .service-card__image img {
    transform: scale(1.05);
}

.service-card__content {
    padding: var(--space-sm) var(--space-md) var(--space-md);
    text-align: center;
}

.service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xs);
}

.service-card__icon svg {
    width: 36px;
    height: 36px;
    color: var(--copper);
}

.service-card h3 {
    font-size: 1.6rem;
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid #c9a227;
    margin-bottom: var(--space-sm);
}

.service-card p {
    text-align: left;
}

.service-card p:last-of-type {
    margin-bottom: 0;
}

.service-card .btn {
    margin-top: var(--space-md);
}

/* ========================================
   Areas
   ======================================== */
.areas {
    padding: var(--space-xl) 0;
    background: var(--charcoal);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: var(--space-lg);
}

.area-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-xs);
    background: var(--charcoal);
    text-align: center;
    transition: all var(--duration) var(--ease);
}

.area-card:hover {
    background: var(--charcoal-light);
}

.area-card__name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
}

.area-card__distance {
    font-size: 0.8rem;
    color: var(--copper-light);
    letter-spacing: 0.05em;
}

.areas-cta {
    text-align: center;
}

/* ========================================
   Marquee Types
   ======================================== */
.marquee-style {
    padding: var(--space-lg) 0 var(--space-lg);
    background: var(--white);
}

.marquee-type {
    margin-bottom: var(--space-lg);
}

.marquee-type:last-child {
    margin-bottom: 0;
}

.marquee-type__content {
    margin-bottom: var(--space-md);
}

.marquee-type__content h3 {
    font-size: 1.75rem;
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid #c9a227;
    margin-bottom: var(--space-sm);
    display: inline-block;
}

.marquee-type__content p {
    margin-bottom: 0.75rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.marquee-type__content p:last-child {
    margin-bottom: 0;
}

.marquee-type__images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.marquee-type__images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.marquee-type__images a {
    display: block;
    cursor: zoom-in;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color var(--duration) var(--ease);
}

.lightbox-close:hover {
    color: var(--copper);
}

@media (max-width: 768px) {
    .marquee-type__images {
        grid-template-columns: 1fr 1fr;
    }
    
    .marquee-type__images img {
        height: 180px;
    }
    
    .marquee-type__images a:first-child {
        grid-column: 1 / -1;
    }
    
    .marquee-type__images a:first-child img {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .marquee-type__images {
        grid-template-columns: 1fr;
    }
    
    .marquee-type__images a:first-child {
        grid-column: auto;
    }
    
    .marquee-type__images img,
    .marquee-type__images a:first-child img {
        height: 200px;
    }
}

/* ========================================
   Photo Gallery
   ======================================== */
.gallery {
    padding: var(--space-lg) 0;
    background: var(--cream);
}

.gallery .section-header--light .section-tag {
    color: var(--copper);
}

.gallery .section-header--light h2 {
    color: var(--charcoal);
}

.gallery-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gallery-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--charcoal);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration) var(--ease);
}

.gallery-arrow:hover {
    background: var(--copper);
}

.gallery-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.gallery-track-container {
    flex: 1;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.4s ease;
}

.gallery-item {
    flex-shrink: 0;
    width: calc((100% - 3rem) / 4);
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration) var(--ease);
}

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

@media (max-width: 1024px) {
    .gallery-item {
        width: calc((100% - 2rem) / 3);
    }
}

@media (max-width: 768px) {
    .gallery-item {
        width: calc((100% - 1rem) / 2);
    }
    
    .gallery-arrow {
        width: 40px;
        height: 40px;
    }
    
    .gallery-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: calc((100% - 1rem) / 2);
    }
    
    .gallery-arrow {
        width: 32px;
        height: 32px;
    }
    
    .gallery-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .gallery-wrapper {
        gap: 0.5rem;
    }
}

/* ========================================
   Safety
   ======================================== */
.safety {
    padding: var(--space-xl) 0;
    background: var(--white);
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.safety-content h2 {
    margin-bottom: var(--space-md);
}

.safety-badges {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--cream-dark);
}

.safety-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
}

.safety-badge svg {
    width: 20px;
    height: 20px;
    color: var(--copper);
}

.safety-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ========================================
   Contact
   ======================================== */
.contact {
    padding: var(--space-xl) 0;
    background: var(--charcoal);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-info h2 {
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.contact-info > p {
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
    color: rgba(255,255,255,0.7);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    color: var(--white);
}

.contact-link svg {
    width: 20px;
    height: 20px;
    color: var(--copper);
    flex-shrink: 0;
}

.contact-link:hover {
    color: var(--copper);
}

.contact .section-tag {
    color: var(--copper);
}

.contact-form {
    background: var(--charcoal);
    padding: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--white);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all var(--duration) var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-group select {
    cursor: pointer;
    color: rgba(255,255,255,0.5);
}

.form-group select option {
    background: var(--charcoal);
    color: var(--white);
    padding: 0.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--copper);
    background: rgba(255,255,255,0.15);
}
}

.form-status {
    margin-top: var(--space-lg);
    padding: 2rem 1rem;
    display: none;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.form-status.success {
    display: block;
    text-align: center;
}

.form-status.success .status-icon {
    display: block;
    font-size: 3.5rem;
    color: var(--white);
    margin: 0 auto 1rem;
    text-align: center;
}

.form-status.success .status-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--copper);
    margin-bottom: 0.75rem;
    text-align: center;
}

.form-status.success .status-text {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.form-status.error {
    display: block;
    text-align: center;
}

.form-status.error .status-icon {
    display: block;
    font-size: 3.5rem;
    color: #dc3545;
    margin: 0 auto 1rem;
    text-align: center;
}

.form-status.error .status-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: #dc3545;
    margin-bottom: 0.75rem;
}

.form-status.error .status-text {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.btn-accent {
    background: var(--copper);
    color: var(--white);
}

.btn-accent:hover {
    background: var(--copper-dark);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--charcoal);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: var(--space-xl) 0 var(--space-md);
    background: var(--black);
    color: rgba(255,255,255,0.6);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: var(--space-md);
}

.footer-brand img {
    max-width: 280px;
    height: auto;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer-muta {
    font-size: 0.85rem !important;
    line-height: 1.7 !important;
}

.footer-muta strong {
    color: var(--white);
    font-size: 0.9rem;
}

.footer-nav h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.5rem;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--copper-light);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: var(--space-sm);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
    background: var(--copper);
    color: var(--white);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
    color: var(--copper-light);
}

/* ========================================
   Location Pages
   ======================================== */
.breadcrumb {
    padding: 5.5rem 0 1rem;
    background: var(--charcoal);
    font-size: 0.85rem;
}

.breadcrumb .container {
    display: flex;
    gap: 0.5rem;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--copper); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

.location-hero {
    padding: 10rem 0 4rem;
    background: var(--cream);
}

.location-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.location-intro {
    font-size: 1rem;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.location-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

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

.location-stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--copper);
    line-height: 1;
}

.location-stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.section { padding: 4rem 0; }
.section-white { background: var(--white); }
.section-light { background: var(--cream); }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }

.section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #c9a227;
    display: inline-block;
}

.section .section-icon {
    display: block;
    width: 36px;
    height: 36px;
    color: var(--copper);
    margin-bottom: 0.5rem;
}

.section-dark .section-icon {
    color: var(--copper-light);
}

.section p {
    font-size: 0.95rem;
}

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-question {
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}
.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-light);
}
.faq-item.active .faq-question::after {
    content: '−';
    color: var(--copper);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1rem;
}

.related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.related-link {
    padding: 0.6rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
}

.related-link:hover {
    border-color: var(--copper);
    color: var(--black);
}

/* Areas Index Page */
.areas-header {
    background: var(--charcoal);
    padding: 5.5rem 0 1rem;
}

.areas-breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.areas-breadcrumb a { color: rgba(255,255,255,0.6); }
.areas-breadcrumb a:hover { color: var(--copper); }
.areas-breadcrumb span { color: rgba(255,255,255,0.4); }

.areas-section {
    margin-bottom: 2.5rem;
}

.areas-region {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--copper);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--cream-dark);
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.areas-list__item {
    padding: 0.875rem 1.25rem;
    background: var(--cream);
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--charcoal);
    text-align: center;
    transition: all var(--duration) var(--ease);
}

.areas-list__item:hover {
    background: var(--charcoal);
    color: var(--white);
}

@media (max-width: 768px) {
    .areas-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .areas-list {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .intro-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .intro-stats { flex-direction: row; justify-content: space-around; }
    .stat { padding: 0 var(--space-md); border-bottom: none; border-right: 1px solid var(--cream-dark); }
    .stat:last-child { border-right: none; }
    .service-card--feature { grid-template-columns: 1fr; }
    .service-card--feature .service-card__image img { min-height: 350px; }
    .service-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
    .safety-grid { grid-template-columns: 1fr; }
    .safety-image { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo img {
        height: 42px;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: var(--charcoal);
        padding: 5rem 1.5rem 1.5rem;
        transition: right var(--duration) var(--ease);
        gap: 0;
    }
    
    .nav.active { right: 0; }
    
    .nav-close { display: block; }
    
    .nav-link {
        color: var(--white);
        padding: 0.875rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }
    
    .nav-link:hover {
        color: var(--copper-light);
    }
    
    .nav-link--cta {
        margin-top: 0.5rem;
        text-align: center;
    }
    
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    
    .hero-scroll { display: none; }
    .hero-nav { right: 50%; transform: translateX(50%); }
    
    .intro { padding: 3rem 0; }
    
    .intro-stats { 
        flex-direction: column; 
        gap: 0;
        padding: 1.5rem;
    }
    .stat { 
        padding: 0.75rem 0; 
        border-right: none; 
        border-bottom: 1px solid var(--cream-dark); 
    }
    .stat:last-child { border-bottom: none; }
    
    .services { padding: 3rem 0; }
    .service-card__content { padding: 1.5rem; }
    
    .areas { padding: 3rem 0; }
    .area-card { padding: 0.875rem 1rem; }
    
    .contact { padding: 3rem 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form { 
        padding: 1.5rem;
    }
    .form-row { grid-template-columns: 1fr; }
    
    .content-grid { grid-template-columns: 1fr; }
    .content-grid.reverse { direction: ltr; }
    
    .location-hero { padding: 5rem 0 2.5rem; }
    .location-stats { justify-content: center; gap: 1.5rem; }
    
    .section { padding: 2.5rem 0; }
    
    .footer { padding: 3rem 0 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
    .footer-brand img { margin: 0 auto 0.75rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
    .footer-social { justify-content: center; }
    .footer-contact { display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .safety-badges { flex-direction: column; gap: var(--space-sm); }
}

[id] { scroll-margin-top: 80px; }
