/* ============================================
   Gamache's Barber Shop — Custom Styles
   Burgundy + Blush | Warm & Friendly
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --burgundy-950: #1a0a0f;
    --burgundy-900: #2d0a14;
    --burgundy-800: #4a1524;
    --burgundy-700: #6b1d33;
    --burgundy-600: #7B2D3B;
    --burgundy-500: #9B3D4F;
    --burgundy-400: #C4606A;
    --burgundy-300: #D4808A;
    --burgundy-200: #E8A8B0;
    --burgundy-100: #F2C8CE;
    --burgundy-50: #F9E4E7;

    --blush-50: #FDF6F6;
    --blush-100: #FDE8E8;
    --blush-200: #FAD4D6;
    --blush-300: #F5B0B8;

    --cream: #FFFAF8;
    --warm-white: #FFF8F6;
    --warm-gray-50: #FAF5F4;
    --warm-gray-100: #F5EDEB;
    --warm-gray-200: #EDE3E0;
    --warm-gray-300: #D4C8C4;
    --warm-gray-400: #A89892;
    --warm-gray-500: #7A6862;
    --warm-gray-600: #5C4A45;
    --warm-gray-700: #3D2E2A;
    --warm-gray-800: #2A1E1B;
    --warm-gray-900: #1A1311;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 3px rgba(123, 45, 59, 0.06), 0 1px 2px rgba(123, 45, 59, 0.04);
    --shadow-md: 0 4px 16px rgba(123, 45, 59, 0.08), 0 2px 6px rgba(123, 45, 59, 0.05);
    --shadow-lg: 0 12px 40px rgba(123, 45, 59, 0.12), 0 4px 12px rgba(123, 45, 59, 0.06);
    --shadow-xl: 0 24px 60px rgba(123, 45, 59, 0.15), 0 8px 20px rgba(123, 45, 59, 0.08);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --transition-fast: 0.2s 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-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--warm-gray-700);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    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 {
    list-style: none;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--warm-gray-900);
    line-height: 1.2;
    font-weight: 700;
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy-400);
    background: var(--burgundy-50);
    border: 1px solid var(--burgundy-100);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
    color: var(--warm-gray-900);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--warm-gray-500);
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--burgundy-600);
    color: #fff;
    border-color: var(--burgundy-600);
    box-shadow: 0 4px 14px rgba(123, 45, 59, 0.3);
}

.btn-primary:hover {
    background: var(--burgundy-700);
    border-color: var(--burgundy-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 45, 59, 0.4);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--burgundy-600);
    border-color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: var(--blush-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-md {
    padding: 12px 28px;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 250, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--warm-gray-200);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 250, 248, 0.97);
    box-shadow: var(--shadow-md);
}

.nav-container {
    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-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--burgundy-600);
}

.nav-logo-text {
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--warm-gray-600);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--burgundy-600);
    background: var(--burgundy-50);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    background: var(--burgundy-600);
    padding: 9px 20px;
    border-radius: var(--radius-full);
    margin-left: 8px;
    transition: all var(--transition-base);
}

.nav-cta:hover {
    background: var(--burgundy-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(123, 45, 59, 0.3);
}

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

.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--warm-gray-700);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 19, 17, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mobile-overlay.active {
    opacity: 1;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--burgundy-800) 0%,
        var(--burgundy-600) 30%,
        var(--burgundy-500) 50%,
        var(--burgundy-400) 70%,
        var(--burgundy-300) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(circle at 25% 25%, #fff 1px, transparent 1px),
                       radial-gradient(circle at 75% 75%, #fff 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero-badge svg {
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-title-accent {
    display: block;
    font-style: italic;
    font-weight: 600;
    color: var(--blush-100);
    font-size: 0.88em;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.hero-stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.25);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255, 255, 255, 0.5);
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--warm-gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy-400), var(--burgundy-600));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--burgundy-100);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy-50);
    border-radius: var(--radius-md);
    color: var(--burgundy-600);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--burgundy-600);
    color: #fff;
    transform: scale(1.05);
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--warm-gray-900);
}

.service-description {
    font-size: 0.95rem;
    color: var(--warm-gray-500);
    line-height: 1.7;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--warm-gray-50);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream);
}

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

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--burgundy-600);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.about-experience-badge .badge-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .badge-text {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
    line-height: 1.3;
}

.about-content {
    max-width: 500px;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.02rem;
    color: var(--warm-gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--warm-gray-700);
}

.feature-check {
    color: var(--burgundy-400);
    flex-shrink: 0;
}

.about-content .btn {
    margin-top: 8px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 100px 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 45, 59, 0.5);
    opacity: 0;
    transition: opacity var(--transition-base);
    color: #fff;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    aspect-ratio: 6/5;
}

.gallery-item:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
    aspect-ratio: 1;
}

.gallery-item:nth-child(3) {
    grid-column: 8 / 13;
    grid-row: 2 / 3;
    aspect-ratio: 1;
}

.gallery-item:nth-child(4) {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
    aspect-ratio: 1;
}

.gallery-item-wide {
    grid-column: 5 / 13;
    grid-row: 2 / 3;
    aspect-ratio: 2/1;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--burgundy-800) 0%, var(--burgundy-600) 100%);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 20% 80%, #fff 1px, transparent 1px),
                       radial-gradient(circle at 80% 20%, #fff 1px, transparent 1px);
    background-size: 50px 50px;
}

.reviews .section-header {
    position: relative;
    z-index: 1;
}

.reviews .section-tag {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--blush-200);
}

.reviews .section-title {
    color: #fff;
}

.reviews .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.review-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-base);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.review-quote-icon {
    margin-bottom: 20px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: var(--blush-200);
}

.review-author-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--burgundy-500) 0%,
        var(--burgundy-600) 50%,
        var(--burgundy-700) 100%
    );
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 30px 30px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #fff;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    margin-bottom: 40px;
}

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

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--warm-gray-200);
    transition: all var(--transition-base);
}

.contact-card:hover {
    border-color: var(--burgundy-200);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy-50);
    border-radius: var(--radius-md);
    color: var(--burgundy-600);
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--warm-gray-400);
    margin-bottom: 6px;
}

.contact-card-content p {
    font-size: 1rem;
    color: var(--warm-gray-700);
    line-height: 1.7;
}

.contact-card-content a {
    color: var(--burgundy-600);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.contact-card-content a:hover {
    color: var(--burgundy-400);
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.map-link {
    display: block;
    position: relative;
}

.map-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 6/5;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(26, 19, 17, 0.85), transparent);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.map-link:hover .map-overlay {
    background: linear-gradient(to top, rgba(123, 45, 59, 0.9), transparent);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--warm-gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-nav-title,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer-nav-list,
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    transition: all var(--transition-fast);
}

.footer-nav-list a:hover {
    color: var(--burgundy-300);
    padding-left: 4px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-contact-list svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.6;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-fast);
}

.footer-contact-list a:hover {
    color: var(--burgundy-300);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid .review-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 96px 32px 32px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
        z-index: 999;
        border-left: 1px solid var(--warm-gray-200);
    }

    .nav-menu.open {
        right: 0;
    }

    .mobile-overlay.active {
        display: block;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 12px 0;
        width: 100%;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
        justify-content: center;
        width: 100%;
    }

    .hero {
        min-height: 100svh;
        padding: 100px 20px 60px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-img-secondary {
        right: -16px;
        bottom: -20px;
    }

    .about-experience-badge {
        right: 20px;
        top: -12px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-content .section-title,
    .about-content .section-tag {
        text-align: center;
    }

    .about-content .section-header {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-features {
        max-width: 360px;
        margin: 32px auto;
    }

    .about-content .btn {
        margin: 0 auto;
        display: inline-flex;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item-large {
        grid-column: 1 / -1;
        aspect-ratio: 16/9;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1;
    }

    .gallery-item-wide {
        grid-column: 1 / -1;
        aspect-ratio: 16/9;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid .review-card:last-child {
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

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

    .hero {
        padding: 90px 16px 50px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 36px;
        height: 1px;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .services,
    .about,
    .gallery,
    .reviews,
    .contact {
        padding: 72px 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
