/* ==========================================
   Modern Japanese Editorial Hair Salon
   Design by 紀孟勳
   ========================================== */

:root {
    /* Modern Earth Tone Palette */
    --color-dark: #2A2520;
    --color-charcoal: #3E3832;
    --color-mocha: #5C5147;
    --color-sand: #A89886;
    --color-cream: #D4C4B0;
    --color-ivory: #E8DDD0;
    --color-white: #FAF8F5;
    --color-accent: #B8956A;
    --color-accent-dark: #9A7A52;
    
    /* Typography */
    --font-display: 'Fraunces', 'Crimson Pro', serif;
    --font-body: 'DM Sans', 'Noto Sans TC', sans-serif;
    --font-heading: 'Crimson Pro', serif;
    
    /* Spacing */
    --space-unit: 1rem;
    --space-xs: calc(var(--space-unit) * 0.5);
    --space-sm: calc(var(--space-unit) * 1);
    --space-md: calc(var(--space-unit) * 2);
    --space-lg: calc(var(--space-unit) * 4);
    --space-xl: calc(var(--space-unit) * 8);
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
    --transition-base: 0.4s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);
}

/* ==========================================
   Reset & Base
   ========================================== */

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-mocha);
    background: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: var(--color-accent);
    color: white;
}

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

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

/* ==========================================
   Custom Cursor
   ========================================== */

.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    transition: opacity 0.3s, transform 0.3s var(--ease-out-expo);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
}

@media (max-width: 1024px) {
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* ==========================================
   Navigation
   ========================================== */

.navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    background: transparent;
    transition: var(--transition-base);
}

.navbar-modern.scrolled {
    padding: 1rem 0;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(42, 37, 32, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brand-main {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: -0.02em;
}

.brand-sub {
    font-family: var(--font-body);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-sand);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

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

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-mocha);
    position: relative;
}

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

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

.btn-book {
    padding: 0.75rem 1.75rem;
    background: var(--color-accent);
    color: white;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 50px;
    transition: var(--transition-base);
}

.btn-book:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition-base);
    border-radius: 2px;
}

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(42, 37, 32, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

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

@media (max-width: 991px) {
    .navbar-modern {
        padding: 1rem 0;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
    }

    .nav-wrapper {
        padding: 0 1.5rem;
    }

    .brand-main {
        font-size: 1.5rem;
    }

    .brand-sub {
        font-size: 0.5625rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
        transition: right 0.4s var(--ease-out-expo);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-link {
        font-size: 1.125rem;
        padding: 0.5rem 0;
    }

    .btn-book {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:first-child {
        transform: rotate(45deg) translate(0, 7px);
        background: var(--color-accent);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .menu-toggle.active span:last-child {
        transform: rotate(-45deg) translate(0, -7px);
        background: var(--color-accent);
    }
}

/* ==========================================
   Hero Section
   ========================================== */

.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.layer-1 {
    background: linear-gradient(135deg, #FAF8F5 0%, #E8DDD0 100%);
}

.layer-2 {
    background: radial-gradient(circle at 20% 50%, rgba(184, 149, 106, 0.15) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.layer-3 {
    background: radial-gradient(circle at 80% 30%, rgba(212, 196, 176, 0.2) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.hero-content-main {
    grid-column: 1;
    grid-row: 1;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.hero-heading {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.heading-line {
    display: block;
}

.heading-line.highlight {
    color: var(--color-accent);
    font-style: italic;
}

.hero-tagline {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-mocha);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.btn-hero.btn-primary {
    background: var(--color-accent);
    color: white;
}

.btn-hero.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(184, 149, 106, 0.3);
}

.btn-hero.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border-color: var(--color-dark);
}

.btn-hero.btn-secondary:hover {
    background: var(--color-dark);
    color: white;
    transform: translateY(-3px);
}

.hero-visual {
    grid-column: 2;
    grid-row: 1 / 3;
    position: relative;
    align-self: stretch;
}

.visual-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(42, 37, 32, 0.15);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s var(--ease-out-expo);
}

.carousel-slide.active .visual-image {
    animation: kenburns 8s ease-in-out forwards;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.visual-frame:hover .visual-image {
    animation-play-state: paused;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.indicator {
    position: relative;
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    border-radius: 2px;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.5);
}

.indicator.active::before {
    width: 100%;
    animation: indicatorProgress 5s linear forwards;
}

@keyframes indicatorProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scaleY(1.5);
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(42, 37, 32, 0.6), transparent);
}

.visual-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-accent);
    border-radius: 16px;
    z-index: -1;
}

.hero-stats {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-sand);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-hint {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-sand);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--color-accent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--color-accent-dark);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(300%); }
}

@media (max-width: 991px) {
    .hero-modern {
        min-height: 100vh;
        padding: 0;
        padding-top: calc(60px + 3rem);
        padding-bottom: 3rem;
        display: flex;
        align-items: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 0 1.5rem;
        gap: 2.5rem;
        width: 100%;
    }

    .hero-content-main {
        grid-column: 1;
        grid-row: 1;
        text-align: center;
    }

    .hero-eyebrow {
        font-size: 0.6875rem;
        margin-bottom: 1.5rem;
    }

    .hero-heading {
        font-size: clamp(2rem, 10vw, 3.5rem);
        margin-bottom: 1.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
        margin: 0 auto 2rem;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

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

    .hero-visual {
        grid-column: 1;
        grid-row: 2;
        min-height: 350px;
        max-height: 450px;
    }

    .visual-frame {
        min-height: 350px;
        max-height: 450px;
    }

    .visual-accent {
        display: none;
    }

    .hero-stats {
        grid-column: 1;
        grid-row: 3;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }

    .scroll-hint {
        display: none;
    }

    .carousel-indicators {
        bottom: 1.5rem;
        gap: 0.5rem;
    }

    .indicator {
        width: 30px;
        height: 2.5px;
    }
}

@media (max-width: 767px) {
    .hero-modern {
        padding: 0;
        padding-top: calc(60px + 2rem);
        padding-bottom: 2rem;
    }

    .hero-grid {
        padding: 0 1rem;
        gap: 2rem;
    }

    .hero-heading {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .hero-tagline {
        font-size: 0.9375rem;
    }

    .hero-visual {
        /* min-height: 300px; */
        max-height: 600px;
    }

    .visual-frame {
        /* min-height: 300px; */
        max-height: 600px;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .carousel-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .indicator {
        width: 25px;
        height: 2px;
    }

    .stat-number {
        font-size: 1.75rem;
    }
}

/* ==========================================
   Section Styles
   ========================================== */

section {
    padding: 8rem 0;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.text-accent {
    color: var(--color-accent);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-mocha);
    max-width: 600px;
}

.section-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.section-intro .section-desc {
    margin: 0 auto;
}

/* ==========================================
   About Section
   ========================================== */

.about-modern {
    background: var(--color-ivory);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* About Images - Editorial Collage */
.about-images-editorial {
    position: relative;
    min-height: 650px;
}

.images-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-main {
    position: relative;
    width: 70%;
    z-index: 2;
}

.image-main .image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(42, 37, 32, 0.15);
    transform: rotate(-2deg);
    transition: all 0.6s var(--ease-out-expo);
}

.image-main:hover .image-frame {
    transform: rotate(0deg) translateY(-8px);
    box-shadow: 0 40px 90px rgba(42, 37, 32, 0.2);
}

.image-main img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out-expo);
}

.image-main:hover img {
    transform: scale(1.06);
}

.image-decorative-border {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-accent);
    border-radius: 16px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

.image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    z-index: 3;
}

.image-secondary .image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(42, 37, 32, 0.18);
    border: 6px solid white;
    transform: rotate(3deg);
    transition: all 0.6s var(--ease-out-expo);
}

.image-secondary:hover .image-frame {
    transform: rotate(1deg) translateY(-10px);
    box-shadow: 0 30px 70px rgba(42, 37, 32, 0.25);
}

.image-secondary img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out-expo);
}

.image-secondary:hover img {
    transform: scale(1.08);
}

.image-accent-shape {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(184, 149, 106, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.floating-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.decoration-line {
    position: absolute;
    bottom: 25%;
    left: -5%;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
    opacity: 0.4;
    animation: float 25s ease-in-out infinite reverse;
}

.about-content {
    max-width: 600px;
}

.about-text {
    margin: 2rem 0;
}

.about-text .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.philosophy-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(42, 37, 32, 0.06);
}

.philosophy-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.philosophy-content p {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.philosophy-content .highlight {
    color: var(--color-accent);
    font-weight: 600;
}

.btn-outlined {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: 2px solid var(--color-dark);
    border-radius: 50px;
    color: var(--color-dark);
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-outlined:hover {
    background: var(--color-dark);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .about-images-editorial {
        min-height: 550px;
    }

    .image-main {
        width: 75%;
    }

    .image-main img {
        height: 450px;
    }

    .image-secondary {
        width: 60%;
    }

    .image-secondary img {
        height: 320px;
    }

    .decoration-circle {
        width: 60px;
        height: 60px;
    }

    .decoration-line {
        width: 100px;
    }
}

@media (max-width: 767px) {
    .about-images-editorial {
        min-height: 450px;
    }

    .image-main {
        width: 85%;
    }

    .image-main img {
        height: 380px;
    }

    .image-main .image-frame {
        transform: rotate(-1deg);
    }

    .image-secondary {
        width: 65%;
        bottom: -20px;
    }

    .image-secondary img {
        height: 260px;
    }

    .image-secondary .image-frame {
        transform: rotate(2deg);
        border-width: 4px;
    }

    .image-decorative-border {
        top: -12px;
        right: -12px;
        border-width: 2px;
    }

    .decoration-circle {
        width: 50px;
        height: 50px;
        top: 10%;
        right: 5%;
    }

    .decoration-line {
        width: 80px;
        bottom: 30%;
    }

    .floating-decoration {
        z-index: 0;
    }
}

/* ==========================================
   Services Section - Editorial Design
   ========================================== */

.services-editorial {
    position: relative;
    padding: 8rem 0;
    background: #FFFEF9;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-accent-circle {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 149, 106, 0.08) 0%, transparent 70%);
    animation: float 30s ease-in-out infinite;
}

.bg-gradient-mesh {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(232, 221, 208, 0.15) 100%
    );
}

.section-label-editorial {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 3rem;
}

.section-label-editorial::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 1px;
    background: var(--color-accent);
}

.section-heading-editorial {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.heading-line-sm {
    display: block;
    font-weight: 400;
}

.heading-accent {
    display: block;
    color: var(--color-accent);
    font-style: italic;
    font-size: 0.8em;
}

.section-desc-editorial {
    font-size: 1.125rem;
    color: var(--color-mocha);
    margin-bottom: 5rem;
    max-width: 600px;
}

.services-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card-editorial {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 40px rgba(42, 37, 32, 0.06);
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
}

.service-card-editorial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-out-expo);
}

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

.service-card-editorial:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(42, 37, 32, 0.12);
}

.service-card-editorial.featured {
    background: linear-gradient(135deg, #FAF8F5 0%, #FFF 100%);
    border: 2px solid rgba(184, 149, 106, 0.2);
}

.service-card-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 100% 100%, rgba(184, 149, 106, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.featured-accent {
    background: radial-gradient(circle at 100% 100%, rgba(184, 149, 106, 0.12) 0%, transparent 70%);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.service-number-editorial {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(184, 149, 106, 0.12);
    line-height: 1;
    font-style: italic;
}

.service-icon-editorial {
    font-size: 3rem;
    filter: grayscale(0.2);
}

.service-title-editorial {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-subtitle-editorial {
    font-size: 0.9375rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.service-desc-editorial {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-mocha);
    margin-bottom: 2rem;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(42, 37, 32, 0.08);
}

.meta-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.meta-label {
    color: var(--color-dark);
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-value {
    color: var(--color-mocha);
}

@media (max-width: 991px) {
    .services-editorial {
        padding: 5rem 0;
    }

    .services-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 2rem;
    }

    .service-card-editorial {
        padding: 2.5rem 2rem;
    }

    .service-number-editorial {
        font-size: 2.5rem;
    }

    .service-icon-editorial {
        font-size: 2.5rem;
    }

    .service-title-editorial {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .services-layout {
        padding: 0 1rem;
        gap: 2rem;
    }

    .service-card-editorial {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .meta-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* ==========================================
   Portfolio Section - Magazine Style
   ========================================== */

.portfolio-magazine {
    position: relative;
    padding: 8rem 0;
    background: #FAFAF8;
    overflow: hidden;
}

.portfolio-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-texture {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(92, 81, 71, 0.03) 2px,
            rgba(92, 81, 71, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(92, 81, 71, 0.03) 2px,
            rgba(92, 81, 71, 0.03) 4px
        );
}

.bg-grain {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.section-intro-portfolio {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-label-portfolio {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-label-portfolio::before,
.section-label-portfolio::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--color-accent);
}

.section-label-portfolio::before {
    right: calc(100% + 1rem);
}

.section-label-portfolio::after {
    left: calc(100% + 1rem);
}

.section-heading-portfolio {
    font-family: var(--font-display);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.heading-main {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.heading-sub {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-mocha);
    font-style: italic;
}

/* Magazine Filter Buttons */
.portfolio-filters-magazine {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.filter-btn-mag {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.875rem 1.5rem;
    background: white;
    border: 1.5px solid rgba(42, 37, 32, 0.12);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-sans);
}

.filter-btn-mag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn-mag:hover::after {
    transform: scaleX(1);
}

.filter-btn-mag.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 149, 106, 0.25);
}

.filter-btn-mag .filter-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-dark);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.filter-btn-mag .filter-count {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-sand);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.filter-btn-mag.active .filter-label,
.filter-btn-mag.active .filter-count {
    color: white;
}

.filter-btn-mag:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(42, 37, 32, 0.08);
}

/* Portfolio Grid - Stable Grid Layout */
.portfolio-grid-editorial {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.portfolio-item,
.portfolio-tile {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: white;
    box-shadow: 0 8px 32px rgba(42, 37, 32, 0.08);
    transition: all 0.4s var(--ease-out-expo);
    aspect-ratio: 4 / 3;
}

.portfolio-item:hover,
.portfolio-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(42, 37, 32, 0.15);
}

.portfolio-link,
.portfolio-tile > a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.portfolio-image-wrapper,
.portfolio-tile > a {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.portfolio-item:hover .portfolio-img,
.portfolio-tile:hover img {
    transform: scale(1.08);
}

.portfolio-overlay,
.tile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(42, 37, 32, 0.92) 0%,
        rgba(42, 37, 32, 0.5) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 1.75rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.portfolio-item:hover .portfolio-overlay,
.portfolio-tile:hover .tile-overlay {
    opacity: 1;
}

.portfolio-info,
.tile-info {
    color: white;
    width: 100%;
    z-index: 3;
}

.portfolio-category,
.tile-category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.625rem;
    background: rgba(184, 149, 106, 0.3);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.portfolio-title,
.tile-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .portfolio-editorial {
        padding: 5rem 0;
    }

    .portfolio-grid-editorial {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 2rem;
    }

    .portfolio-filters-editorial {
        gap: 0.75rem;
        margin-bottom: 3rem;
    }

    .filter-btn {
        padding: 0.875rem 1.25rem;
    }
}

@media (max-width: 767px) {
    .portfolio-grid-editorial {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .section-label-portfolio::before,
    .section-label-portfolio::after {
        display: none;
    }

    .filter-btn {
        flex: 1;
        min-width: calc(50% - 0.5rem);
    }
}

/* Magazine Card Design */
.magazine-card {
    position: relative;
    background: white;
    /* border-radius: 6px; */
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(42, 37, 32, 0.08),
        0 4px 12px rgba(42, 37, 32, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.magazine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), #C9A870);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

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

.magazine-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 8px 24px rgba(42, 37, 32, 0.12),
        0 16px 48px rgba(42, 37, 32, 0.1);
}

.magazine-link {
    display: block;
    text-decoration: none;
    position: relative;
}

.magazine-image-wrapper {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #F5F3EF;
}

.magazine-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.magazine-card:hover .magazine-img {
    transform: scale(1.06);
}

.magazine-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(42, 37, 32, 0.95) 0%,
        rgba(42, 37, 32, 0.6) 40%,
        rgba(42, 37, 32, 0.2) 70%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.magazine-card:hover .magazine-overlay {
    opacity: 1;
}

.magazine-tag {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: white;
    background: rgba(184, 149, 106, 0.9);
    padding: 0.375rem 0.75rem;
    border-radius: 3px;
    margin-bottom: 0.625rem;
    align-self: flex-start;
    backdrop-filter: blur(8px);
}

.magazine-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: white;
    margin: 0;
}

/* Video Card Styles */
.magazine-card-video {
    position: relative;
}

.magazine-video-wrapper {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #2A2520;
}

.magazine-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(42, 37, 32, 0.75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    z-index: 5;
    transition: all 0.3s ease;
}

.magazine-card-video:hover .video-indicator {
    background: rgba(184, 149, 106, 0.9);
    transform: scale(1.1);
}

/* Magazine Responsive */
@media (max-width: 991px) {
    .portfolio-magazine {
        padding: 6rem 0;
    }

    .portfolio-filters-magazine {
        gap: 0.625rem;
        margin-bottom: 3rem;
    }

    .filter-btn-mag {
        padding: 0.75rem 1.25rem;
    }

    .magazine-image-wrapper,
    .magazine-video-wrapper {
        aspect-ratio: 1 / 1;
    }

    .magazine-tag {
        font-size: 0.5625rem;
        padding: 0.3rem 0.625rem;
    }

    .magazine-title {
        font-size: 0.9375rem;
    }
}

@media (max-width: 767px) {
    .portfolio-magazine {
        padding: 5rem 0;
    }

    .portfolio-filters-magazine {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .filter-btn-mag {
        flex: 1;
        min-width: calc(50% - 0.25rem);
        padding: 0.625rem 1rem;
    }

    .filter-btn-mag .filter-label {
        font-size: 0.8125rem;
    }

    .magazine-overlay {
        padding: 1.25rem;
    }

    .magazine-title {
        font-size: 0.875rem;
    }
}

/* ==========================================
   Promotion Section
   ========================================== */

.promotion-modern {
    background: var(--color-white);
}

.promotion-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.promotion-header {
    text-align: center;
    margin-bottom: 4rem;
}

.promotion-desc {
    font-size: 1.125rem;
    color: var(--color-mocha);
    margin-top: 1rem;
}

.promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.promo-card {
    position: relative;
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(42, 37, 32, 0.08);
    transition: var(--transition-base);
}

.promo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 64px rgba(42, 37, 32, 0.12);
    border-color: var(--color-accent);
}

.promo-card.featured {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white;
    border-color: var(--color-accent);
}

.promo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
}

.promo-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.promo-card.featured .promo-title {
    color: white;
}

.promo-discount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.promo-card.featured .promo-discount {
    color: white;
}

.promo-note {
    font-size: 0.9375rem;
    color: var(--color-mocha);
}

.promo-card.featured .promo-note {
    color: rgba(255, 255, 255, 0.9);
}

.promotion-footer {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--color-ivory);
    border-radius: 16px;
}

.promotion-footer p {
    color: var(--color-mocha);
    margin-bottom: 2rem;
}

.btn-promo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: var(--color-accent);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-base);
}

.btn-promo:hover {
    background: var(--color-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(184, 149, 106, 0.3);
}

@media (max-width: 991px) {
    .promotion-wrapper {
        padding: 0 2rem;
    }
    
    .promotion-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   FAQ Section
   ========================================== */

.faq-modern {
    background: var(--color-white);
}

.faq-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border: 1px solid rgba(42, 37, 32, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: 0 8px 32px rgba(42, 37, 32, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: rgba(184, 149, 106, 0.05);
}

.faq-q {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    font-size: 1rem;
}

.faq-text {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.3s var(--ease-out-expo);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo);
    padding: 1.2rem;
}

.faq-item.active .faq-answer {

}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-mocha);
}

@media (max-width: 991px) {
    .faq-wrapper {
        padding: 0 1.5rem;
    }

    .faq-question {
        padding: 1.5rem;
    }

    .faq-answer {
        padding: 0 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.2rem;
    }
}

/* ==========================================
   Contact Section
   ========================================== */

.contact-modern {
    background: var(--color-ivory);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.contact-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-mocha);
    margin: 2rem 0 3rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    transition: var(--transition-base);
}

.contact-info-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(42, 37, 32, 0.08);
}

.info-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-ivory);
    border-radius: 50%;
    font-size: 1.75rem;
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.info-content p {
    font-size: 1rem;
    color: var(--color-mocha);
    margin: 0;
}

.info-content a {
    color: var(--color-accent);
    font-weight: 600;
}

.info-content a:hover {
    text-decoration: underline;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    flex: 1;
    padding: 1rem 2rem;
    background: var(--color-dark);
    color: white;
    text-align: center;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-base);
}

.social-btn:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(42, 37, 32, 0.2);
}

.contact-cta-box {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.contact-cta-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: white;
    margin-bottom: 0.75rem;
}

.contact-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--color-accent);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-base);
}

.btn-contact-cta:hover {
    background: var(--color-ivory);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.contact-map {
    position: relative;
    min-height: 600px;
}

.map-frame {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(42, 37, 32, 0.12);
}

@media (max-width: 991px) {
    .contact-layout {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }
    
    .contact-map {
        min-height: 400px;
    }
}

/* ==========================================
   Footer
   ========================================== */

.footer-modern {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 3rem;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-desc {
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-contact a {
    color: var(--color-accent);
}

.footer-contact a:hover {
    color: var(--color-cream);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 2rem 3rem 0; */
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    text-align: center;
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9375rem;
}

.footer-bottom a {
    color: var(--color-accent);
}

.footer-bottom a:hover {
    color: var(--color-cream);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }
    
    .footer-bottom {
        padding: 2rem 2rem 0;
    }
}

/* ==========================================
   Back to Top Button
   ========================================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
    box-shadow: 0 8px 24px rgba(184, 149, 106, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-accent-dark);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(184, 149, 106, 0.4);
}

/* ==========================================
   Responsive Utilities
   ========================================== */

@media (max-width: 767px) {
    :root {
        font-size: 15px;
    }

    section {
        padding: 4rem 0;
    }

    .section-intro {
        margin-bottom: 3rem;
    }

    .section-heading {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .section-desc {
        font-size: 1rem;
    }

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
    }

    /* Hero adjustments */
    .btn-hero {
        font-size: 0.9375rem;
        padding: 0.875rem 1.75rem;
    }

    /* Service cards */
    .service-card-modern {
        padding: 2rem 1.5rem;
    }

    .service-number {
        font-size: 2.5rem;
    }

    /* Portfolio */
    .portfolio-filters {
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .filter-tag {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }

    /* Promo cards */
    .promo-card {
        padding: 2.5rem 1.5rem;
    }

    .promo-icon {
        font-size: 3rem;
    }

    .promo-discount {
        font-size: 2.5rem;
    }

    /* FAQ */
    .faq-wrapper {
        padding: 0 1rem;
    }

    .faq-question {
        padding: 1.25rem 1rem;
        gap: 0.875rem;
    }

    .faq-q {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }

    .faq-text {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .faq-answer {
        padding: 0 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.2rem;
    }

    .faq-answer p {
        font-size: 0.9375rem;
        padding-left: calc(40px + 0.875rem);
    }

    /* Contact */
    .contact-info-item {
        padding: 1.25rem;
        gap: 1rem;
    }

    .info-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .contact-social {
        flex-direction: column;
    }

    .social-btn {
        padding: 0.875rem 1.75rem;
    }
}

/* ==========================================
   Animation Utilities
   ========================================== */

[data-aos] {
    pointer-events: auto;
}

[data-aos="fade-up"] {
    transform: translate3d(0, 30px, 0);
    opacity: 0;
}

[data-aos="fade-up"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

[data-aos="fade-down"] {
    transform: translate3d(0, -30px, 0);
    opacity: 0;
}

[data-aos="fade-down"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

[data-aos="fade-left"] {
    transform: translate3d(30px, 0, 0);
    opacity: 0;
}

[data-aos="fade-left"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translate3d(-30px, 0, 0);
    opacity: 0;
}

[data-aos="fade-right"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
    opacity: 0;
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
}

/* ==========================================
   Print Styles
   ========================================== */

@media print {
    .navbar-modern,
    .scroll-hint,
    .back-to-top,
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}
