/* ============================================
   Pine Hill Auto Parts — Editorial Style
   Plum + Amber Color Palette
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --plum-900: #1a0a1c;
    --plum-800: #2d1030;
    --plum-700: #4A1942;
    --plum-600: #5c2052;
    --plum-500: #6e2a64;
    --plum-400: #8a3d82;
    --plum-300: #b06aad;
    --plum-200: #d4a8d4;
    --plum-100: #f0d8f0;
    --plum-50: #faf0fa;
    
    --amber-600: #b8860b;
    --amber-500: #D4A843;
    --amber-400: #e0bc5e;
    --amber-300: #ebd080;
    --amber-200: #f5e4a8;
    --amber-100: #fdf6e0;
    
    --neutral-900: #0f0f0f;
    --neutral-800: #1a1a1a;
    --neutral-700: #2a2a2a;
    --neutral-600: #3a3a3a;
    --neutral-500: #555555;
    --neutral-400: #777777;
    --neutral-300: #999999;
    --neutral-200: #cccccc;
    --neutral-100: #e8e8e8;
    --neutral-50: #f5f5f5;
    --neutral-25: #fafafa;
    --white: #ffffff;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.15);
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.nav.scrolled {
    background: rgba(26, 10, 28, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
    transition: opacity var(--transition-fast);
}

.nav__logo:hover {
    opacity: 0.85;
}

.nav__logo-icon {
    color: var(--amber-500);
    flex-shrink: 0;
}

.nav__logo-accent {
    color: var(--amber-500);
    font-weight: 400;
    font-style: italic;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav__link {
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--amber-500);
    transition: width var(--transition-base);
}

.nav__link:hover {
    color: var(--white);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    padding: var(--space-sm) var(--space-lg);
    border: 1px solid rgba(212, 168, 67, 0.5);
    border-radius: var(--radius-sm);
    color: var(--amber-500);
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--amber-500);
    color: var(--plum-900);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 0;
    z-index: 1001;
}

.nav__toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--plum-900);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

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

.mobile-menu__link {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
    color: var(--amber-500);
}

.mobile-menu__link--cta {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-md) var(--space-2xl);
    border: 1px solid var(--amber-500);
    border-radius: var(--radius-sm);
    color: var(--amber-500);
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__menu {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 10, 28, 0.88) 0%,
        rgba(74, 25, 66, 0.75) 50%,
        rgba(26, 10, 28, 0.85) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    padding-top: var(--space-5xl);
    padding-bottom: var(--space-4xl);
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 50px;
    color: var(--amber-400);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-2xl);
    width: 100%;
    max-width: 280px;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber-500);
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero__headline {
    font-size: clamp(3rem, 8vw, 6.5rem);
    color: var(--white);
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: var(--space-xl);
    max-width: 900px;
}

.hero__headline-accent {
    color: var(--amber-500);
    font-style: italic;
    font-weight: 700;
}

.hero__subheadline {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: var(--space-2xl);
    font-weight: 300;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-2xl);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn--primary {
    background: var(--amber-500);
    color: var(--plum-900);
}

.btn--primary:hover {
    background: var(--amber-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.3);
}

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

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

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

.btn--outline:hover {
    background: var(--white);
    color: var(--plum-900);
}

.btn--large {
    padding: var(--space-lg) var(--space-3xl);
    font-size: 1rem;
}

/* Hero Scroll */
.hero__scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255,255,255,0.4);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 480px) {
    .hero__content {
        padding-top: var(--space-4xl);
    }
    
    .hero__badge {
        max-width: 100%;
    }
}

/* --- Trust Bar --- */
.trust-bar {
    background: var(--plum-900);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}

.trust-bar__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-item__icon {
    color: var(--amber-500);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-bar__items {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

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

/* --- Section Shared --- */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    color: var(--plum-900);
    margin-bottom: var(--space-lg);
    line-height: 1.05;
}

.section-title-accent {
    color: var(--plum-600);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-500);
    line-height: 1.7;
    max-width: 600px;
    font-weight: 300;
}

/* --- Parts Section --- */
.parts {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.section-header {
    margin-bottom: var(--space-4xl);
}

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

.part-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-100);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.part-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.part-card__img-wrapper {
    overflow: hidden;
    aspect-ratio: 3/2;
}

.part-card__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.part-card:hover .part-card__img-wrapper img {
    transform: scale(1.05);
}

.part-card__body {
    padding: var(--space-xl);
}

.part-card__title {
    font-size: 1.375rem;
    color: var(--plum-900);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.part-card__desc {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    line-height: 1.6;
    font-weight: 300;
}

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

@media (max-width: 640px) {
    .parts-grid {
        grid-template-columns: 1fr;
    }
    
    .parts {
        padding: var(--space-4xl) 0;
    }
}

/* --- About Section --- */
.about {
    padding: var(--space-5xl) 0;
    background: var(--neutral-25);
}

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

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about__img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
    max-width: 280px;
}

.about__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__stat {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--plum-700);
    color: var(--white);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.about__stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber-500);
    line-height: 1;
}

.about__stat-text {
    font-size: 0.8125rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about__content {
    max-width: 520px;
}

.about__text {
    font-size: 1.0625rem;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.about__feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-700);
}

.about__feature-icon {
    color: var(--amber-500);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .about__layout {
        grid-template-columns: 1fr;
    }
    
    .about__images {
        max-width: 500px;
    }
    
    .about__img-secondary {
        right: -20px;
        bottom: -20px;
    }
    
    .about__content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .about__img-secondary {
        display: none;
    }
}

/* --- Why Us Section --- */
.why-us {
    padding: var(--space-5xl) 0;
    background: var(--plum-900);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.why-us__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
    position: relative;
    z-index: 1;
}

.why-us__header .section-tag {
    color: var(--amber-500);
}

.why-us__header .section-title {
    color: var(--white);
}

.why-us__header .section-title-accent {
    color: var(--amber-500);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.why-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(212, 168, 67, 0.3);
}

.why-card__number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(212, 168, 67, 0.15);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.why-card__title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.why-card__text {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    font-weight: 300;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
}

.cta-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26, 10, 28, 0.92) 0%,
        rgba(74, 25, 66, 0.85) 60%,
        rgba(74, 25, 66, 0.6) 100%
    );
}

.cta-banner__content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.cta-banner__title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.cta-banner__title-accent {
    color: var(--amber-500);
    font-style: italic;
}

.cta-banner__text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
    font-weight: 300;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* --- Contact Section --- */
.contact {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

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

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--neutral-100);
}

.contact__detail:first-child {
    padding-top: 0;
}

.contact__detail-icon {
    color: var(--plum-700);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neutral-400);
    margin-bottom: 2px;
}

.contact__detail-value {
    font-size: 1.0625rem;
    color: var(--neutral-800);
    font-weight: 500;
    line-height: 1.5;
}

.contact__link {
    color: var(--plum-700);
    transition: color var(--transition-fast);
}

.contact__link:hover {
    color: var(--amber-600);
}

/* Hours */
.contact__hours {
    background: var(--plum-900);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-2xl);
}

.contact__hours-title {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: var(--space-xl);
    font-weight: 700;
}

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

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

.hours-time {
    font-size: 0.9375rem;
    color: var(--white);
    font-weight: 500;
}

.hours-row--closed .hours-day,
.hours-row--closed .hours-time {
    color: var(--neutral-400);
}

.hours-row--closed .hours-time {
    color: var(--plum-400);
}

.hours-note {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
}

.hours-note svg {
    flex-shrink: 0;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .contact__layout {
        grid-template-columns: 1fr;
    }
}

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

.map-section__inner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.map-section__frame {
    width: 100%;
    height: 100%;
    filter: saturate(0.6) contrast(1.1);
    transition: filter var(--transition-base);
}

.map-section__inner:hover .map-section__frame {
    filter: saturate(0.8) contrast(1.05);
}

/* --- Footer --- */
.footer {
    background: var(--plum-900);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.footer__logo-icon {
    color: var(--amber-500);
}

.footer__logo-accent {
    color: var(--amber-500);
    font-weight: 400;
    font-style: italic;
}

.footer__tagline {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    font-weight: 300;
    max-width: 280px;
}

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

.footer__nav a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    font-weight: 400;
    transition: color var(--transition-fast);
}

.footer__nav a:hover {
    color: var(--amber-500);
}

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

.footer__phone {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--amber-500);
    font-size: 1.0625rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.footer__phone:hover {
    color: var(--amber-400);
}

.footer__address {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
}

.footer__copy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}

.footer__location {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
