/* ============================================
   Brockers Body Shop — Styles
   Deep Navy (#1a2744) + Warm Gold (#c9a84c)
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1a2744;
    --navy-light: #243352;
    --navy-dark: #111b30;
    --gold: #c9a84c;
    --gold-light: #d4b96a;
    --gold-dark: #b8953f;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --cream: #f1efe9;
    --gray-100: #e8e6e1;
    --gray-200: #d1cec6;
    --gray-300: #a8a49c;
    --gray-400: #6e6b65;
    --gray-500: #4a4742;
    --text-primary: #1a1917;
    --text-secondary: #5c5954;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* --- Typography --- */
.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--navy);
    letter-spacing: -0.02em;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
    border-bottom-color: var(--gray-100);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--navy);
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    font-style: italic;
}

.nav-logo-text {
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.8125rem !important;
    font-weight: 500 !important;
    color: var(--gold-dark) !important;
    border: 1px solid var(--gold);
    padding: 8px 18px;
    transition: all 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--white) !important;
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle-line {
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-link {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--navy);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--gold);
}

.mobile-menu-cta {
    margin-top: 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold-dark);
    border: 1px solid var(--gold);
    padding: 12px 28px;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 24px 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 48px;
    align-items: center;
    padding-bottom: 80px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.hero-title-line {
    display: block;
}

.hero-title .serif-italic {
    font-style: italic;
    font-weight: 400;
}

.hero-desc {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 440px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 14px 28px;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border: 1px solid var(--navy);
}

.btn-primary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 39, 68, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--gray-200);
}

.btn-ghost:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

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

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn-full {
    width: 100%;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8125rem;
    color: var(--gray-300);
    letter-spacing: 0.02em;
}

.meta-divider {
    color: var(--gray-200);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.hero-image-wrapper:hover img {
    transform: scale(1.02);
}

.hero-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--gold);
    border-radius: 2px;
    z-index: -1;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-300);
}

.hero-scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* --- Divider --- */
.section-divider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.divider-line {
    height: 1px;
    background: var(--gray-100);
}

/* --- Services --- */
.services {
    padding: 100px 0;
}

.services-header {
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-100);
    border: 1px solid var(--gray-100);
    border-radius: 2px;
    overflow: hidden;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.service-card:hover {
    background: var(--off-white);
}

.service-card:hover .service-number {
    color: var(--gold);
}

.service-card:hover .service-icon svg {
    stroke: var(--gold);
}

.service-number {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gray-200);
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.service-icon {
    margin-bottom: 20px;
    color: var(--navy);
    transition: color 0.3s ease;
}

.service-icon svg {
    stroke: var(--navy);
    transition: stroke 0.3s ease;
}

.service-card h3 {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* --- About --- */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-image-col {
    position: relative;
}

.about-image-main {
    border-radius: 2px;
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    border-radius: 2px;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.about-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content-col {
    padding-top: 40px;
}

.about-body {
    margin-bottom: 40px;
}

.about-body p {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-body p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--navy);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-300);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-100);
    flex-shrink: 0;
}

/* --- Why Us --- */
.why-us {
    padding: 100px 0;
    background: var(--off-white);
}

.why-us-header {
    margin-bottom: 64px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.why-item {
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-100);
}

.why-item:nth-child(odd) {
    padding-right: 48px;
}

.why-item:nth-child(even) {
    padding-left: 48px;
    border-left: 1px solid var(--gray-100);
}

.why-item-line {
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.why-item p {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(201, 168, 76, 0.06);
    border-radius: 50%;
}

.cta-inner {
    position: relative;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-eyebrow {
    color: var(--gold);
}

.cta-title {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-300);
    margin-bottom: 4px;
}

.contact-detail-value,
.contact-detail-value-hover {
    display: block;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.6;
}

.contact-detail-value-hover {
    color: var(--gold-dark);
    transition: color 0.3s ease;
}

.contact-detail-value-hover:hover {
    color: var(--gold);
}

/* Form */
.contact-form-col {
    background: var(--off-white);
    padding: 40px;
    border-radius: 2px;
    border: 1px solid var(--gray-100);
}

.form-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

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

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-primary);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 2px;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gold-dark);
}

.form-success.show {
    display: flex;
}

/* --- Map --- */
.map-section {
    border-top: 1px solid var(--gray-100);
}

.map-section iframe {
    filter: grayscale(0.6) contrast(1.05);
    transition: filter 0.4s ease;
}

.map-section:hover iframe {
    filter: grayscale(0.2) contrast(1.05);
}

/* --- Footer --- */
.footer {
    background: var(--navy-dark);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand .nav-logo-mark {
    width: 44px;
    height: 44px;
}

.footer-brand-name {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin-top: 4px;
}

.footer-links-group,
.footer-contact-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.footer-links-group a {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.footer-links-group a:hover {
    color: var(--white);
}

.footer-contact-group span {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.02em;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 0.7fr;
        gap: 32px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .contact-grid {
        gap: 48px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 72px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 60px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image-wrapper {
        aspect-ratio: 4/3;
    }
    
    .hero-accent {
        display: none;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .services {
        padding: 72px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 32px 28px;
    }
    
    .about {
        padding: 72px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-col {
        order: -1;
    }
    
    .about-image-accent {
        width: 50%;
        bottom: -24px;
        right: -16px;
    }
    
    .about-content-col {
        padding-top: 0;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .why-us {
        padding: 72px 0;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-item:nth-child(odd),
    .why-item:nth-child(even) {
        padding-right: 0;
        padding-left: 0;
        border-left: none;
    }
    
    .why-item:nth-child(even) {
        border-top: 1px solid var(--gray-100);
    }
    
    .cta-banner {
        padding: 72px 0;
    }
    
    .contact {
        padding: 72px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form-col {
        padding: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 48px 0 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-inner {
        padding: 0 20px;
    }
    
    .hero {
        padding: 72px 20px 0;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
