/* ============================================
   Collective Beauty — Styles
   Plum (#5B2C6F) + Amber (#C8960C) palette
   ============================================ */

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

:root {
    --plum: #5B2C6F;
    --plum-light: #7B3F8E;
    --plum-dark: #3D1D4A;
    --plum-50: #F5EFF7;
    --plum-100: #EDE0F0;
    --plum-200: #D9C0E0;
    --amber: #C8960C;
    --amber-light: #E0B030;
    --amber-dark: #A07808;
    --amber-50: #FDF8E8;
    --amber-100: #FBF0CC;
    --bg: #FAFAF8;
    --bg-dark: #1A1020;
    --text: #1A1020;
    --text-light: #4A3D52;
    --text-muted: #7A6B82;
    --white: #FFFFFF;
    --line: rgba(91, 44, 111, 0.12);
    --line-strong: rgba(91, 44, 111, 0.25);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--plum);
    color: var(--white);
    padding: 0.5rem 1rem;
    z-index: 1000;
    font-size: 0.875rem;
    border-radius: 0 0 4px 4px;
}

.skip-link:focus {
    top: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease-smooth);
}

.navbar.scrolled {
    border-bottom-color: var(--line);
}

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--plum);
    border: 1px solid var(--plum);
    padding: 0.25rem 0.5rem;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a:not(.btn-nav) {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s var(--ease-smooth);
    position: relative;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--plum);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:not(.btn-nav):hover {
    color: var(--plum);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.625rem 1.5rem;
    border-radius: 100px;
    transition: all 0.3s var(--ease-smooth);
}

.btn-nav--amber {
    background: var(--amber);
    color: var(--white);
}

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

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text);
    transition: color 0.3s;
}

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

.hero-bg-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    padding-right: 1rem;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: var(--plum);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 1.75rem;
}

.hero-headline em {
    font-style: italic;
    color: var(--plum);
}

.hero-subheadline {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 100px;
    transition: all 0.35s var(--ease-smooth);
    white-space: nowrap;
}

.btn--plum {
    background: var(--plum);
    color: var(--white);
}

.btn--plum:hover {
    background: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(91, 44, 111, 0.25);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line-strong);
}

.btn--outline:hover {
    border-color: var(--plum);
    color: var(--plum);
}

.btn--amber {
    background: var(--amber);
    color: var(--white);
}

.btn--amber:hover {
    background: var(--amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 150, 12, 0.3);
}

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

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 400;
}

.hero-detail svg {
    flex-shrink: 0;
    opacity: 0.6;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 700px;
}

.hero-img {
    position: absolute;
    overflow: hidden;
}

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

.hero-img--main {
    width: 380px;
    height: 520px;
    top: 60px;
    right: 0;
    z-index: 1;
}

.hero-img--main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(91, 44, 111, 0.15) 100%);
    pointer-events: none;
}

.hero-img--accent {
    width: 260px;
    height: 340px;
    bottom: 40px;
    right: 160px;
    z-index: 2;
    border: 4px solid var(--bg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-accent-line {
    position: absolute;
    top: 100px;
    right: 400px;
    width: 80px;
    height: 1px;
    background: var(--plum);
    opacity: 0.4;
    z-index: 0;
}

.hero-accent-dot {
    position: absolute;
    bottom: 100px;
    right: 396px;
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    z-index: 0;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--plum), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================
   Section shared
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 1rem;
}

.section-eyebrow--light {
    color: var(--amber-light);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 1.25rem;
}

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

.section-line {
    width: 48px;
    height: 1px;
    background: var(--plum);
    margin: 0 auto;
}

.section-line--light {
    background: var(--amber);
}

section {
    padding: 7rem 0;
}

/* ============================================
   Services
   ============================================ */
.services {
    background: var(--bg);
}

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

.service-card {
    padding: 2.5rem 2rem;
    border: 1px solid var(--line);
    margin: -0.5px;
    position: relative;
    transition: all 0.4s var(--ease-smooth);
}

.service-card:hover {
    background: var(--plum-50);
    border-color: var(--plum-200);
    z-index: 1;
}

.service-number {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--plum);
    opacity: 0.5;
    display: block;
    margin-bottom: 1.25rem;
}

.service-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.875rem;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-line {
    width: 24px;
    height: 1px;
    background: var(--plum);
    opacity: 0.3;
    transition: width 0.4s var(--ease-out);
}

.service-card:hover .service-line {
    width: 48px;
    opacity: 1;
}

.services-footer {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.services-note {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-light);
}

.services-note a {
    color: var(--plum);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.services-note a:hover {
    border-bottom-color: var(--plum);
}

/* ============================================
   About
   ============================================ */
.about {
    background: var(--bg-dark);
    padding: 7rem 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(200, 150, 12, 0.3);
    z-index: -1;
}

.about-content {
    padding: 1rem 0;
}

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

.about-text {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

.stat-label {
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   Gallery
   ============================================ */
.gallery {
    background: var(--bg);
    padding: 7rem 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    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.05);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 16, 32, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

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

.gallery-item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.02em;
}

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

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

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    background: var(--plum-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border: 1px solid var(--plum-100);
    position: relative;
    transition: all 0.35s var(--ease-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(91, 44, 111, 0.1);
    border-color: var(--plum-200);
}

.testimonial-quote {
    color: var(--plum);
    opacity: 0.2;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
}

/* ============================================
   Contact
   ============================================ */
.contact {
    background: var(--bg-dark);
    padding: 7rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--amber);
    opacity: 0.8;
}

.contact-detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.contact-link {
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--amber-light);
}

/* Form */
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.625rem;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.75rem 0;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-input:focus {
    border-bottom-color: var(--amber);
}

.form-select {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
}

.form-select option {
    background: var(--bg-dark);
    color: var(--white);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(200, 150, 12, 0.1);
    border: 1px solid rgba(200, 150, 12, 0.3);
    color: var(--amber-light);
    font-size: 0.9375rem;
    font-weight: 400;
    border-radius: 4px;
}

.form-success svg {
    flex-shrink: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3rem 0;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-mark--light {
    color: var(--amber);
    border-color: var(--amber);
}

.logo-text--light {
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
}

.footer-address {
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text);
    padding: 1rem 0;
    display: block;
    transition: color 0.3s;
}

.mobile-menu-link:hover {
    color: var(--plum);
}

.mobile-menu-cta {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    margin-top: 1rem;
}

.mobile-menu-divider {
    width: 40px;
    height: 1px;
    background: var(--line-strong);
    margin: 1rem auto;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-layout {
        gap: 2rem;
    }

    .hero-img--main {
        width: 300px;
        height: 420px;
    }

    .hero-img--accent {
        width: 200px;
        height: 260px;
        right: 120px;
    }

    .hero-accent-line {
        right: 320px;
    }

    .hero-accent-dot {
        right: 316px;
    }

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

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

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

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

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

    .gallery-item:nth-child(5) img {
        height: 280px;
    }
}

@media (max-width: 900px) {
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        height: 400px;
    }
}

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

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 4rem;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text {
        padding-right: 0;
        order: 1;
    }

    .hero-visual {
        display: none;
    }

    .hero-headline {
        font-size: clamp(2.75rem, 10vw, 4rem);
    }

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

    .hero-scroll-indicator {
        display: none;
    }

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

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

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

    .gallery-item:nth-child(n) {
        grid-column: 1 / -1;
    }

    .gallery-item img {
        height: 260px;
    }

    section {
        padding: 5rem 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
    }

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

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

    .navbar-inner {
        padding: 0 1.25rem;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }

    .hero-headline {
        font-size: 2.5rem;
    }
}

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

    html {
        scroll-behavior: auto;
    }

    .scroll-line {
        animation: none;
        opacity: 0.5;
    }
}
