/* ============================================
   AVENUE COLLECTIVE SALON — STYLESHEET
   Palette: Plum (#5D3A5C) + Amber (#D4A84B)
   ============================================ */

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

:root {
    --plum-900: #1A0F1C;
    --plum-800: #2D1B30;
    --plum-700: #3D2444;
    --plum-600: #5D3A5C;
    --plum-500: #7A4D78;
    --plum-400: #9E6E9C;
    --plum-100: #F3EBF2;
    --plum-50:  #FAF6FA;

    --amber-600: #B8892E;
    --amber-500: #D4A84B;
    --amber-400: #E0BC6A;
    --amber-100: #FDF3DC;
    --amber-50:  #FFFBF0;

    --neutral-900: #111111;
    --neutral-800: #1E1E1E;
    --neutral-700: #2D2D2D;
    --neutral-600: #404040;
    --neutral-500: #5A5A5A;
    --neutral-400: #7A7A7A;
    --neutral-300: #A0A0A0;
    --neutral-200: #D1D1D1;
    --neutral-100: #F0F0F0;
    --neutral-50:  #FAFAFA;
    --white:       #FFFFFF;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 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;

    --radius-sm:  6px;
    --radius-md:  10px;
    --radius-lg:  16px;
    --radius-xl:  24px;

    --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md:  0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg:  0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
    --shadow-xl:  0 24px 60px rgba(0,0,0,0.12);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--neutral-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

/* ---------- SKIP LINK ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--plum-600);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 500;
    transition: top var(--transition);
}
.skip-link:focus {
    top: var(--space-md);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    padding: 0.8125rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--amber {
    background: var(--amber-500);
    color: var(--plum-900);
    border-color: var(--amber-500);
}
.btn--amber:hover {
    background: var(--amber-400);
    border-color: var(--amber-400);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 75, 0.35);
}

.btn--plum {
    background: var(--plum-600);
    color: var(--white);
    border-color: var(--plum-600);
}
.btn--plum:hover {
    background: var(--plum-700);
    border-color: var(--plum-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 58, 92, 0.35);
}

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

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

.btn--sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

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

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-100);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: var(--space-lg);
}

/* ---------- LOGO ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--plum-900);
    letter-spacing: -0.01em;
}
.logo--light { color: var(--white); }
.logo-mark {
    color: var(--plum-600);
    flex-shrink: 0;
}
.logo--light .logo-mark { color: var(--amber-500); }

/* ---------- NAV ---------- */
.nav-main { display: flex; align-items: center; }
.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}
.nav-list a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-600);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.nav-list a:hover {
    color: var(--plum-600);
    background: var(--plum-50);
}

/* ---------- NAV TOGGLE ---------- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}
.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-700);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--neutral-100);
    box-shadow: var(--shadow-lg);
    padding: var(--space-lg);
    z-index: 999;
}
.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}
.mobile-menu a {
    display: block;
    padding: var(--space-md);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--neutral-700);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.mobile-menu a:hover {
    color: var(--plum-600);
    background: var(--plum-50);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--plum-900);
    overflow: hidden;
    padding-top: 72px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-right: var(--space-xl);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-500);
    margin-bottom: var(--space-lg);
}
.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--amber-500);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}
.hero-headline br { display: none; }

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin-bottom: var(--space-2xl);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber-500);
    line-height: 1;
    margin-bottom: var(--space-xs);
}
.stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
}

/* Hero Image Stack */
.hero-image-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-img--main {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 600/760;
}
.hero-img--accent {
    position: absolute;
    bottom: -40px;
    left: -30px;
    width: 55%;
    max-width: 280px;
    aspect-ratio: 400/300;
    border: 5px solid var(--plum-900);
}
.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--white);
    color: var(--plum-800);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-xl);
    margin-top: var(--space-xl);
    box-shadow: var(--shadow-md);
}
.hero-badge svg {
    color: var(--amber-500);
}

/* Hero accent bar */
.hero-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--plum-600), var(--amber-500), var(--plum-600));
}

/* Decorative background shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(212,168,75,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ---------- SECTION COMMON ---------- */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: var(--space-md);
}
.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--amber-500);
}
.section-header--center .section-eyebrow { justify-content: center; }
.section-header--center .section-eyebrow::before { display: none; }
.section-header--center { text-align: center; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--plum-900);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xl);
}
.section-header--center .section-title { max-width: 600px; margin-left: auto; margin-right: auto; }

/* ---------- SERVICES ---------- */
.services {
    padding: var(--space-4xl) 0;
    background: var(--neutral-50);
}
.services .section-header { margin-bottom: var(--space-3xl); }

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--neutral-100);
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-100);
    color: var(--plum-600);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--plum-600);
    color: var(--white);
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--plum-900);
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    line-height: 1.65;
}

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

/* ---------- ABOUT ---------- */
.about {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}
.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-img--1 {
    grid-row: 1 / 3;
    aspect-ratio: 480/600;
}
.about-img--2 {
    aspect-ratio: 400/320;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-img:hover img { transform: scale(1.03); }

.about-accent-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--plum-600);
    color: var(--white);
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.accent-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--amber-500);
    line-height: 1;
}
.accent-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
}

.about-content .section-eyebrow { margin-bottom: var(--space-md); }
.about-content .section-title { margin-bottom: var(--space-xl); }

.about-lead {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--neutral-600);
    margin-bottom: var(--space-lg);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}
.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-700);
}
.value-item svg {
    color: var(--amber-500);
    flex-shrink: 0;
}

.about-content > .btn { margin-top: var(--space-md); }

/* ---------- GALLERY ---------- */
.gallery {
    padding: var(--space-4xl) 0;
    background: var(--plum-900);
}
.gallery .section-eyebrow { color: var(--amber-500); }
.gallery .section-title { color: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: var(--space-md);
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,15,28,0.3) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item--large {
    grid-column: 1 / 8;
    aspect-ratio: 600/500;
}
.gallery-item:not(.gallery-item--large) {
    aspect-ratio: 1;
}
.gallery-item--tall {
    grid-column: 8 / 13;
    aspect-ratio: 400/600;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--neutral-50);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--neutral-100);
    position: relative;
    transition: all var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-quote {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    color: var(--plum-600);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--neutral-600);
    margin-bottom: var(--space-xl);
    margin-top: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.author-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--plum-900);
}
.author-detail {
    font-size: 0.8125rem;
    color: var(--neutral-400);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    padding: var(--space-4xl) 0;
    background: var(--plum-600);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212,168,75,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.cta-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-400);
    margin-bottom: var(--space-md);
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}
.cta-text {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}
.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* ---------- CONTACT ---------- */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--neutral-50);
}

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

.contact-info .section-eyebrow { margin-bottom: var(--space-md); }
.contact-info .section-title { margin-bottom: var(--space-lg); }

.contact-intro {
    font-size: 1.0625rem;
    color: var(--neutral-500);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}
.contact-details address { font-style: normal; }

.detail-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}
.detail-icon {
    color: var(--plum-600);
    flex-shrink: 0;
    margin-top: 2px;
}
.detail-item strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--plum-900);
    margin-bottom: 4px;
}
.detail-item span,
.detail-item a {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.6;
}
.detail-item a:hover { color: var(--plum-600); text-decoration: underline; }

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--neutral-100);
    box-shadow: var(--shadow-sm);
}
.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum-900);
    margin-bottom: var(--space-xl);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}
.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--neutral-600);
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--neutral-800);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-500);
    box-shadow: 0 0 0 3px rgba(93,58,92,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--neutral-300);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: var(--space-2xl);
}
.form-success svg {
    color: var(--plum-600);
    margin-bottom: var(--space-md);
}
.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--plum-900);
    margin-bottom: var(--space-sm);
}
.form-success p {
    color: var(--neutral-500);
    font-size: 0.9375rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: var(--space-md);
    max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-500);
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.footer-contact a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-contact span {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}
.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

/* ---------- SCROLL REVEAL (below fold only) ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    .hero-content { padding-right: 0; order: 1; }
    .hero-image-stack { order: 0; max-width: 500px; margin: 0 auto; }
    .hero-img--main { max-width: 100%; }
    .hero-img--accent { display: none; }
    .hero { min-height: auto; padding-bottom: var(--space-2xl); }
    .hero-headline br { display: block; }

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

    .about-grid { grid-template-columns: 1fr; gap: var(--space-3xl); }
    .about-images { max-width: 500px; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item--large { grid-column: 1 / -1; aspect-ratio: 16/9; }
    .gallery-item--tall { grid-column: auto; aspect-ratio: 1; }

    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-card:last-child { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; }

    .contact-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
}

@media (max-width: 768px) {
    .nav-main { display: none; }
    .site-header .btn { display: none; }
    .nav-toggle { display: flex; }

    .hero-headline { font-size: clamp(2.25rem, 10vw, 3rem); }
    .hero-stats { flex-direction: column; align-items: flex-start; gap: var(--space-md); }
    .stat-divider { display: none; }

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

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

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--large { grid-column: auto; aspect-ratio: 4/3; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card:last-child { max-width: 100%; }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 var(--space-md); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
