/* ========================================
   GUADALAJARA BEAUTY SALON
   Modern Corporate Beauty Salon Website
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-burgundy: #800020;
    --color-burgundy-dark: #5c0017;
    --color-burgundy-light: #a02040;
    --color-blush: #f4c2c2;
    --color-blush-light: #fce8e8;
    --color-blush-lighter: #fdf2f2;
    --color-navy: #1a1a2e;
    --color-navy-light: #2d2d44;
    --color-charcoal: #2c2c2c;
    --color-gray-dark: #4a4a4a;
    --color-gray: #6b6b6b;
    --color-gray-light: #9a9a9a;
    --color-gray-lighter: #e8e8e8;
    --color-off-white: #faf8f8;
    --color-white: #ffffff;
    --color-cream: #fef9f9;

    --font-heading: '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;
    --space-5xl: 8rem;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px 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.12), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.08);

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

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

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

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

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

/* --- Typography --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    background: var(--color-blush-light);
    padding: 0.4em 1em;
    border-radius: 100px;
    margin-bottom: var(--space-lg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-navy);
    margin-bottom: var(--space-lg);
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    max-width: 560px;
    line-height: 1.7;
}

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

.section-header--center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    padding: 0.875em 1.75em;
    border-radius: 100px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-burgundy);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(128, 0, 32, 0.3);
}

.btn--primary:hover {
    background: var(--color-burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(128, 0, 32, 0.4);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: var(--color-white);
    color: var(--color-burgundy);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--color-white);
    color: var(--color-burgundy);
    box-shadow: var(--shadow-md);
}

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

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

.btn--outline-white:hover {
    background: var(--color-white);
    color: var(--color-burgundy);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1em 2em;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 1em 2em;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.06);
    padding: var(--space-sm) 0;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6em;
    z-index: 1001;
}

.nav__logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    transition: color var(--transition-base);
}

.nav.scrolled .nav__logo-text {
    color: var(--color-navy);
}

.nav__logo-accent {
    color: var(--color-blush);
    font-style: italic;
}

.nav.scrolled .nav__logo-accent {
    color: var(--color-burgundy);
}

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

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5em 1em;
    border-radius: 100px;
    transition: all var(--transition-fast);
}

.nav__link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.12);
}

.nav.scrolled .nav__link {
    color: var(--color-gray-dark);
}

.nav.scrolled .nav__link:hover {
    color: var(--color-burgundy);
    background: var(--color-blush-lighter);
}

.nav__cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5em 1.25em;
    border-radius: 100px;
    margin-left: var(--space-sm);
    transition: all var(--transition-fast);
}

.nav__cta:hover {
    background: var(--color-white);
    color: var(--color-burgundy);
}

.nav.scrolled .nav__cta {
    background: var(--color-burgundy);
    color: var(--color-white);
    border-color: var(--color-burgundy);
}

.nav.scrolled .nav__cta:hover {
    background: var(--color-burgundy-dark);
    border-color: var(--color-burgundy-dark);
}

/* Mobile nav toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav.scrolled .nav__toggle-line {
    background: var(--color-navy);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 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(5px, -5px);
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, 
            #800020 0%, 
            #a02040 25%, 
            #c04060 45%, 
            #e8a0b0 65%, 
            #f4c2c2 85%, 
            #fce8e8 100%);
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(128, 0, 32, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(232, 160, 176, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(160, 32, 64, 0.4) 0%, transparent 50%);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--space-5xl) var(--space-xl) var(--space-4xl);
    max-width: 860px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5em 1.25em;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    margin-bottom: var(--space-2xl);
}

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

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

.hero__headline {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-xl);
}

.hero__headline-accent {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: var(--color-blush);
    font-size: 0.85em;
}

.hero__subheadline {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25em;
}

.hero__stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
}

.hero__stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

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

/* --- Services Section --- */
.services {
    padding: var(--space-5xl) 0;
    background: var(--color-white);
}

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

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

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-lighter);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    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(--color-burgundy), var(--color-blush));
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

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

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-blush-lighter);
    border-radius: var(--radius-md);
    color: var(--color-burgundy);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
    background: var(--color-burgundy);
    color: var(--color-white);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.75em;
}

.service-card__desc {
    font-size: 0.9375rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.service-card__list li {
    display: flex;
    align-items: center;
    gap: 0.6em;
    font-size: 0.875rem;
    color: var(--color-gray-dark);
}

.service-card__list li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-burgundy);
    flex-shrink: 0;
}

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

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

.about__images {
    position: relative;
    height: 600px;
}

.about__img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about__img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--color-cream);
}

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

.about__img-badge {
    position: absolute;
    bottom: 45%;
    right: 10%;
    background: var(--color-burgundy);
    color: var(--color-white);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about__badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25em;
}

.about__badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
}

.about__content {
    max-width: 520px;
}

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

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

.about__value {
    display: flex;
    align-items: center;
    gap: 0.75em;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-charcoal);
}

.about__value-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-burgundy);
    flex-shrink: 0;
}

/* --- Gallery Section --- */
.gallery {
    padding: var(--space-5xl) 0;
    background: var(--color-white);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: var(--space-md);
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

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

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(128, 0, 32, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
}

.gallery__item--large {
    grid-column: span 5;
    grid-row: span 2;
    min-height: 500px;
}

.gallery__item--wide {
    grid-column: span 7;
    min-height: 240px;
}

.gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
    min-height: 220px;
}

/* --- Testimonials Section --- */
.testimonials {
    padding: var(--space-5xl) 0;
    background: var(--color-navy);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 0% 0%, rgba(128, 0, 32, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(232, 160, 176, 0.15) 0%, transparent 50%);
}

.testimonials .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-blush);
}

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

.testimonials .section-title .text-accent {
    color: var(--color-blush);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.testimonial-card__stars {
    display: flex;
    gap: 0.25em;
    margin-bottom: var(--space-lg);
}

.testimonial-card__text {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75em;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-blush));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.testimonial-card__author span {
    font-weight: 600;
    color: var(--color-white);
    font-size: 0.9375rem;
}

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

.cta__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-burgundy-light) 50%, var(--color-blush) 100%);
}

.cta__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

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

.cta__content .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-blush);
}

.cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.cta__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

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

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

.contact__text {
    font-size: 1.0625rem;
    color: var(--color-gray);
    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__detail {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: var(--radius-md);
    color: var(--color-burgundy);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.25em;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact__detail p,
.contact__detail a {
    font-size: 0.9375rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.contact__detail a:hover {
    color: var(--color-burgundy);
}

.contact__map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact__form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-lighter);
}

.contact__form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.5em;
}

.contact__form-subtitle {
    font-size: 0.9375rem;
    color: var(--color-gray);
    margin-bottom: var(--space-2xl);
}

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

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

.form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-gray-dark);
    margin-bottom: 0.5em;
}

.form__input {
    width: 100%;
    padding: 0.875em 1em;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-charcoal);
    background: var(--color-off-white);
    border: 1.5px solid var(--color-gray-lighter);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form__input:focus {
    border-color: var(--color-burgundy);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

.form__input::placeholder {
    color: var(--color-gray-light);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1em center;
    padding-right: 2.5em;
    cursor: pointer;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Success */
.form__success {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}

.form__success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    background: var(--color-blush-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form__success-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.5em;
}

.form__success-text {
    font-size: 0.9375rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background: var(--color-navy);
    color: var(--color-white);
    padding: var(--space-4xl) 0 var(--space-xl);
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.6em;
    margin-bottom: var(--space-md);
}

.footer__logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
}

.footer__logo-accent {
    color: var(--color-blush);
    font-style: italic;
}

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

.footer__heading {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.footer__links ul,
.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75em;
}

.footer__links a,
.footer__contact li {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--color-blush);
}

.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.45);
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    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);
}

.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) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__layout {
        gap: var(--space-3xl);
    }

    .gallery__item--large {
        grid-column: span 7;
    }

    .gallery__item--wide {
        grid-column: span 5;
    }

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

    .testimonials__grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

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

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

    /* Mobile Navigation */
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem var(--space-xl) var(--space-xl);
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
        z-index: 1000;
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__link {
        color: var(--color-charcoal);
        padding: 0.875em 1em;
        border-radius: var(--radius-sm);
        font-size: 1rem;
    }

    .nav__link:hover {
        background: var(--color-blush-lighter);
        color: var(--color-burgundy);
    }

    .nav__cta {
        margin-left: 0;
        margin-top: var(--space-md);
        text-align: center;
        background: var(--color-burgundy);
        color: var(--color-white);
        border-color: var(--color-burgundy);
        padding: 0.875em 1.25em;
    }

    .nav__overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav__overlay.active {
        display: block;
    }

    /* Hero */
    .hero__content {
        padding: var(--space-4xl) var(--space-lg) var(--space-3xl);
    }

    .hero__headline {
        font-size: clamp(1.75rem, 7vw, 2.75rem);
    }

    .hero__stats {
        gap: var(--space-md);
    }

    .hero__stat-number {
        font-size: 1.5rem;
    }

    /* Services */
    .services__grid {
        grid-template-columns: 1fr;
    }

    /* About */
    .about__layout {
        grid-template-columns: 1fr;
    }

    .about__images {
        height: 400px;
        order: -1;
    }

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

    /* Gallery */
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery__item--large {
        grid-column: span 2;
        min-height: 300px;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
        min-height: 180px;
    }

    /* Testimonials */
    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .testimonials__grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    /* Contact */
    .contact__layout {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

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

    /* Footer */
    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

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

    .hero__stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }

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

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

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

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 1;
    }
}
