/* ============================================
   KAIZEN Beauty Space — Stylesheet
   Palette: Plum (#4A1942 / #6B2158 / #8B3A72) + Amber (#C8963E / #D4A03C / #E8C06A)
   Fonts: Cormorant Garamond (serif) + Raleway (sans)
   ============================================ */

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

:root {
    --plum-900: #1A0A18;
    --plum-800: #2D1026;
    --plum-700: #4A1942;
    --plum-600: #5C1F52;
    --plum-500: #6B2158;
    --plum-400: #8B3A72;
    --plum-300: #B8609A;
    --plum-200: #D4A0C4;
    --plum-100: #F0D8E8;
    --plum-50:  #F9EFF5;

    --amber-600: #A07830;
    --amber-500: #C8963E;
    --amber-400: #D4A03C;
    --amber-300: #E8C06A;
    --amber-200: #F2D99A;
    --amber-100: #FBF0D0;

    --cream: #FAF6F1;
    --cream-dark: #F0EAE0;
    --charcoal: #1E1E1E;
    --text-dark: #1A1215;
    --text-mid: #4A3F42;
    --text-light: #7A6E71;

    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Raleway', 'Helvetica Neue', Arial, sans-serif;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ---- Loader ---- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--plum-900);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-letter {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 300;
    color: var(--amber-400);
    letter-spacing: 0.3em;
    animation: loaderPulse 1.2s var(--ease-in-out) infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.97); }
    50% { opacity: 1; transform: scale(1); }
}

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

/* ---- Section Labels ---- */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber-500);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--plum-700);
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    color: var(--amber-500);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(26, 10, 24, 0.95);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--amber-400);
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--plum-200);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum-100);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber-400);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--amber-300);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--plum-700);
    background: var(--amber-400);
    padding: 10px 24px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
    background: var(--amber-300);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--plum-100);
    position: relative;
    transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--plum-100);
    transition: all 0.3s;
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/7750104/pexels-photo-7750104.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1200') center center / cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s var(--ease-in-out) infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 10, 24, 0.88) 0%,
        rgba(74, 25, 66, 0.80) 40%,
        rgba(45, 16, 38, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 0 24px;
    padding-top: 80px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--amber-400);
    margin-bottom: 28px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: #FAF6F1;
    margin-bottom: 28px;
}

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

.hero-sub {
    font-size: 1.1rem;
    color: var(--plum-200);
    line-height: 1.85;
    max-width: 600px;
    margin: 0 auto 44px;
    font-weight: 300;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--plum-200);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    animation: scrollBounce 2s var(--ease-in-out) infinite;
}

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

/* ---- Buttons ---- */
.btn {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-primary:hover {
    background: var(--amber-300);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 150, 62, 0.35);
}

.btn-secondary {
    background: transparent;
    color: #FAF6F1;
    border: 1px solid rgba(240, 216, 232, 0.35);
}

.btn-secondary:hover {
    border-color: var(--amber-400);
    color: var(--amber-300);
    transform: translateY(-2px);
}

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

/* ---- Intro / About ---- */
.intro {
    padding: 120px 0;
    background: var(--cream);
}

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

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid var(--amber-400);
    border-radius: 2px;
    z-index: -1;
}

.intro-text .section-label {
    text-align: left;
}

.intro-text .section-title {
    margin-bottom: 28px;
}

.intro-text p {
    color: var(--text-mid);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.85;
}

.intro-text strong {
    color: var(--plum-700);
}

.intro-stats {
    display: flex;
    gap: 40px;
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid var(--plum-100);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--amber-500);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ---- Services ---- */
.services {
    padding: 120px 0;
    background: var(--plum-800);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber-400), transparent);
}

.services .section-label {
    color: var(--amber-400);
}

.services .section-title {
    color: #FAF6F1;
}

.services .section-subtitle {
    color: var(--plum-200);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 2px;
    padding: 44px 36px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--amber-400);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
    border-color: rgba(200, 150, 62, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--amber-400);
}

.service-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: #FAF6F1;
    margin-bottom: 14px;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--plum-200);
    line-height: 1.8;
}

/* ---- Gallery ---- */
.gallery {
    padding: 120px 0;
    background: var(--cream);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(26, 10, 24, 0.85), transparent);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}

.gallery-caption span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #FAF6F1;
    font-style: italic;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 5 / 9; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 5 / 7; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 7 / 9; grid-row: 2; }
.gallery-item:nth-child(6) { grid-column: 1 / 5; grid-row: 3; }

/* ---- CTA Section ---- */
.cta-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/7755449/pexels-photo-7755449.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=800') center center / cover no-repeat;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 10, 24, 0.92) 0%, rgba(74, 25, 66, 0.88) 100%);
}

.cta-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-label {
    color: var(--amber-400) !important;
}

.cta-title {
    color: #FAF6F1 !important;
    margin-bottom: 24px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--plum-200);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.85;
}

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

/* ---- Contact ---- */
.contact {
    padding: 120px 0;
    background: var(--cream-dark);
}

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

.contact-info .section-label {
    text-align: left;
}

.contact-info .section-title {
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 44px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--amber-500);
    border: 1px solid var(--amber-200);
    border-radius: 50%;
}

.contact-item strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum-700);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
}

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

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

/* ---- Form ---- */
.contact-form-wrapper {
    background: #fff;
    border-radius: 2px;
    padding: 48px;
    box-shadow: 0 4px 40px rgba(74, 25, 66, 0.08);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--plum-700);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    border: 1px solid var(--plum-100);
    border-radius: 2px;
    padding: 14px 16px;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--amber-400);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.1);
}

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

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

.form-success {
    display: none;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--plum-50);
    border: 1px solid var(--plum-100);
    border-radius: 2px;
    margin-top: 20px;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    color: var(--amber-500);
    flex-shrink: 0;
}

.form-success span {
    font-size: 0.92rem;
    color: var(--plum-700);
    line-height: 1.6;
}

/* ---- Footer ---- */
.footer {
    background: var(--plum-900);
    padding: 80px 0 0;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--amber-400);
}

.footer-sub {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--plum-300);
    margin-top: -4px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--plum-300);
    line-height: 1.8;
    margin-top: 16px;
    max-width: 300px;
}

.footer-links h4,
.footer-hours h4 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-400);
    margin-bottom: 24px;
}

.footer-links ul,
.footer-hours ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--plum-200);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--amber-300);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--plum-200);
    padding: 6px 0;
}

.footer-hours li span:last-child {
    color: var(--plum-300);
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--plum-400);
}

/* ---- Scroll Reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ---- Mobile Menu ---- */
.nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 10, 24, 0.97);
    backdrop-filter: blur(12px);
    padding: 32px 24px;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-menu.mobile-open .nav-link {
    font-size: 0.85rem;
}

.nav-menu.mobile-open .nav-cta {
    text-align: center;
    display: block;
    margin-top: 8px;
}

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

    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto;
    }

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

    .gallery-item {
        height: 320px;
    }

    .gallery-item img {
        height: 100%;
    }
}

@media (max-width: 900px) {
    .intro-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .intro-image {
        max-height: 450px;
    }

    .intro-image::before {
        top: -12px;
        left: -12px;
        right: 12px;
        bottom: 12px;
    }

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

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

    .nav-toggle {
        display: block;
    }

    .hero-headline {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }

    .hero-sub {
        font-size: 1rem;
    }

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

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

    .gallery-item {
        height: 240px;
    }

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

    .contact-form-wrapper {
        padding: 32px 24px;
    }

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

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

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

    .intro,
    .services,
    .gallery,
    .contact {
        padding: 80px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .intro-stats {
        flex-direction: column;
        gap: 24px;
    }

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

    .gallery-item {
        height: 280px;
    }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

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

    .hero-bg {
        animation: none;
    }

    .loader {
        display: none;
    }
}
