/* ============================================
   JENNIFER'S BEAUTY WORLD — STYLESHEET
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --charcoal: #2C2C2C;
    --charcoal-deep: #1A1A1A;
    --charcoal-light: #3D3D3D;
    --coral: #F27A5A;
    --coral-light: #F49780;
    --coral-pale: #FDE8E3;
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --cream: #F5F4F0;
    --gray-100: #F7F7F5;
    --gray-200: #E8E8E4;
    --gray-300: #D1D1CC;
    --gray-400: #A0A09A;
    --gray-500: #6B6B66;
    --gray-600: #4A4A46;
    
    --font-display: 'Bodoni Moda', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--charcoal);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 200;
    font-size: 0.875rem;
    text-decoration: none;
    transition: top var(--transition);
}
.skip-link:focus {
    top: var(--space-sm);
}

/* LAYOUT */
.layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--gray-200);
    background: var(--white);
    z-index: 100;
}

.nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-decoration: none;
    color: var(--charcoal);
}

.logo-mark {
    width: 48px;
    height: 48px;
    background: var(--charcoal);
    color: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.4;
    color: var(--charcoal);
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-links a {
    display: block;
    padding: 0.6rem 0;
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--charcoal);
    border-bottom-color: var(--coral);
}

.sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 300;
    line-height: 1.5;
}

.contact-line a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color var(--transition);
}

.contact-line a:hover {
    color: var(--coral);
}

/* ============================================
   MAIN
   ============================================ */
.main {
    min-width: 0;
    background: var(--white);
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

.btn-primary:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--charcoal);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 0.9375rem;
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-2xl);
    padding: var(--space-3xl) var(--space-xl) var(--space-2xl);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 580px;
    padding-right: var(--space-lg);
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--charcoal);
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
}

.title-accent {
    color: var(--coral);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: var(--space-xl);
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* Hero Image Stack */
.hero-image-stack {
    position: relative;
    height: 85vh;
    min-height: 600px;
}

.hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.hero-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-main {
    width: 72%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 1;
}

.hero-img-accent {
    width: 55%;
    height: 55%;
    left: 0;
    bottom: 5%;
    z-index: 2;
    border: 4px solid var(--white);
}

.hero-badge {
    position: absolute;
    bottom: 28%;
    right: 5%;
    z-index: 3;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.hero-badge svg {
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.hero-badge span {
    display: block;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 0.02em;
    line-height: 1.4;
}

/* Decorative line */
.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 8%;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--coral), transparent);
    z-index: 0;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
    background: var(--charcoal);
    padding: var(--space-md) 0;
    overflow: hidden;
    border-top: 1px solid var(--charcoal-light);
    border-bottom: 1px solid var(--charcoal-light);
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    white-space: nowrap;
    padding: 0 var(--space-md);
}

.marquee-dot {
    color: var(--coral);
    white-space: nowrap;
    padding: 0 var(--space-sm);
    font-size: 0.75rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.text-accent {
    color: var(--coral);
    font-style: italic;
}

.section-desc {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-500);
    max-width: 520px;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

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

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

.service-card {
    background: var(--white);
    padding: var(--space-xl);
    position: relative;
    transition: background var(--transition);
}

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

.service-card:hover .service-icon {
    background: var(--coral);
    color: var(--white);
}

.service-number {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--gray-300);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    transition: all var(--transition);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--gray-500);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

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

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

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    position: relative;
}

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

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

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item:nth-child(1) {
    grid-column: 1 / 5;
    grid-row: span 2;
    min-height: 500px;
}

.gallery-item:nth-child(2) {
    grid-column: 5 / 9;
    min-height: 240px;
}

.gallery-item:nth-child(3) {
    grid-column: 9 / 13;
    min-height: 240px;
}

.gallery-item:nth-child(4) {
    grid-column: 5 / 9;
    min-height: 240px;
}

.gallery-item:nth-child(5) {
    grid-column: 9 / 13;
    grid-row: span 2;
    min-height: 500px;
}

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

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

.about-image {
    position: relative;
}

.about-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.about-stat {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--charcoal);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-stat .stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--coral);
}

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

.about-content {
    padding-left: var(--space-lg);
}

.about-text {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-200);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--charcoal);
}

.feature-item svg {
    color: var(--coral);
    flex-shrink: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--space-3xl) 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242,122,90,0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-content .section-eyebrow {
    color: var(--coral-light);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-desc {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--off-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-info {
    padding-top: var(--space-sm);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.6;
}

.contact-item a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color var(--transition);
}

.contact-item a:hover {
    color: var(--coral);
}

.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(242,122,90,0.1);
}

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

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%236B6B66' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-success {
    text-align: center;
    padding: var(--space-xl);
}

.form-success svg {
    color: var(--coral);
    margin-bottom: var(--space-md);
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    font-weight: 300;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--charcoal-deep);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--charcoal-light);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-brand .logo-mark {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--coral);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--gray-500);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--charcoal);
}

.mobile-toggle svg {
    width: 24px;
    height: 24px;
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,26,26,0.5);
    z-index: 150;
    opacity: 0;
    transition: opacity var(--transition);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .layout {
        grid-template-columns: 220px 1fr;
    }
    
    .sidebar {
        padding: var(--space-lg);
    }
    
    .hero {
        gap: var(--space-xl);
        padding: var(--space-2xl) var(--space-lg);
    }
    
    .hero-image-stack {
        height: 70vh;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item:nth-child(1) {
        grid-column: 1 / 6;
        min-height: 350px;
    }
    
    .gallery-item:nth-child(2) {
        grid-column: 6 / 13;
        min-height: 350px;
    }
    
    .gallery-item:nth-child(3) {
        grid-column: 1 / 7;
        min-height: 350px;
    }
    
    .gallery-item:nth-child(4) {
        grid-column: 7 / 13;
        min-height: 350px;
    }
    
    .gallery-item:nth-child(5) {
        grid-column: 1 / 13;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        transform: translateX(-100%);
        transition: transform var(--transition);
        z-index: 200;
        background: var(--white);
        box-shadow: none;
        border-right: none;
    }
    
    .sidebar.open {
        transform: translateX(0);
        box-shadow: 0 0 60px rgba(0,0,0,0.2);
    }
    
    .mobile-toggle {
        display: flex;
        position: fixed;
        top: 1.25rem;
        left: 1.25rem;
        z-index: 150;
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-sm);
        padding: 0.5rem;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    .sidebar-info {
        display: none;
    }
    
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 6rem;
        padding-bottom: var(--space-2xl);
    }
    
    .hero-content {
        padding-right: 0;
        order: 2;
    }
    
    .hero-image-stack {
        height: 50vh;
        min-height: 350px;
        order: 1;
    }
    
    .hero::before {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-stat {
        right: 0;
        bottom: -1rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        min-height: 250px !important;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .marquee-track {
        animation: none;
    }
    
    .gallery-item img {
        transition: none;
    }
}
</style>
