/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --plum-50:  #F9F0F9;
    --plum-100: #F3E0F3;
    --plum-200: #E8C0E8;
    --plum-400: #B86BB8;
    --plum-500: #9B4D96;
    --plum-600: #803578;
    --plum-700: #662660;
    --plum-800: #4A1942;
    --plum-900: #2E0F2A;
    --amber-300: #FCD34D;
    --amber-400: #F5C518;
    --amber-500: #D97706;
    --amber-600: #B45309;
    --white: #FFFFFF;
    --gray-50:  #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

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

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

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--plum-800);
    letter-spacing: -0.02em;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-weight: 500;
    font-style: italic;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-line {
    width: 20px;
    height: 1.5px;
    background: var(--plum-800);
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-600);
    letter-spacing: 0.01em;
    transition: color 0.25s;
    position: relative;
}

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

.nav__link:hover {
    color: var(--plum-700);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--plum-700);
    border: 1px solid var(--plum-200);
    padding: 8px 18px;
    border-radius: 100px;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.nav__cta:hover {
    background: var(--plum-800);
    color: var(--white);
    border-color: var(--plum-800);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 80px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero__bg-pattern {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--plum-50) 0%, transparent 70%);
    pointer-events: none;
}

.hero__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.hero__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber-400);
    display: inline-block;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.hero__headline-accent {
    color: var(--plum-700);
    font-style: italic;
}

.hero__subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 460px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    letter-spacing: -0.01em;
}

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

.btn--primary:hover {
    background: var(--plum-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 25, 66, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn--ghost:hover {
    border-color: var(--plum-400);
    color: var(--plum-700);
}

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

.btn--amber:hover {
    background: var(--amber-300);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 197, 24, 0.35);
}

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

.btn--outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

/* ===== HERO VISUAL ===== */
.hero__visual {
    position: relative;
    min-height: 480px;
}

.hero-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(74, 25, 66, 0.12);
    position: relative;
}

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

.hero-card--main {
    width: 100%;
    aspect-ratio: 520/380;
}

.hero-card__badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--plum-800);
}

/* Floating stat cards */
.hero-stat-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-stat-card--1 {
    top: 10%;
    left: -40px;
    animation-delay: 0s;
}

.hero-stat-card--2 {
    bottom: 25%;
    left: -30px;
    animation-delay: 2s;
}

.hero-stat-card--3 {
    bottom: 5%;
    right: -20px;
    animation-delay: 4s;
}

.hero-stat-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stat-card__label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-stat-card__value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
}

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

.hero__line {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero__line::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gray-200), transparent);
}

/* ===== SECTIONS ===== */
.section {
    padding: 120px 0;
}

.section__header {
    max-width: 640px;
    margin-bottom: 64px;
}

.section__header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.section__eyebrow--light {
    color: rgba(255,255,255,0.6);
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    margin-bottom: 20px;
}

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

.section__title em {
    font-style: italic;
    color: var(--plum-700);
}

.section__title--light em {
    color: var(--amber-400);
}

.section__desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-600);
    font-weight: 300;
}

/* ===== SERVICES ===== */
.services {
    background: var(--gray-50);
}

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

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 32px;
    border: 1px solid var(--gray-200);
    transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.service-card:hover {
    border-color: var(--plum-200);
    box-shadow: 0 12px 40px rgba(74, 25, 66, 0.08);
    transform: translateY(-4px);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--plum-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card__title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-900);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.service-card__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--gray-600);
    font-weight: 300;
}

/* ===== ABOUT ===== */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-stack {
    position: relative;
    height: 560px;
}

.about__image-main {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

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

.about__image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 240px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border: 4px solid var(--white);
}

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

.about__image-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--plum-800);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 8px 24px rgba(74, 25, 66, 0.3);
}

.about__content {
    max-width: 480px;
}

.about__text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 16px;
    font-weight: 300;
}

.about__features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--gray-700);
}

.about__feature-line {
    width: 24px;
    height: 1px;
    background: var(--amber-400);
    flex-shrink: 0;
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--white);
}

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

.gallery__item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery__item--wide {
    grid-column: span 8;
    aspect-ratio: 16/9;
}

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

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

/* ===== CTA ===== */
.cta {
    background: var(--plum-800);
    padding: 100px 0;
}

.cta__card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 72px 64px;
    text-align: center;
}

.cta__bg-accent {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,197,24,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta__content {
    position: relative;
    z-index: 1;
}

.cta__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto 40px;
    font-weight: 300;
}

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

/* ===== LOCATION ===== */
.location {
    background: var(--gray-50);
}

.location__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: stretch;
}

.location__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location__card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 32px;
    border: 1px solid var(--gray-200);
    transition: border-color 0.3s;
}

.location__card:hover {
    border-color: var(--plum-200);
}

.location__card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.location__detail {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-800);
    font-weight: 400;
}

.location__link {
    color: var(--plum-600);
    transition: color 0.2s;
}

.location__link:hover {
    color: var(--plum-800);
}

.location__map {
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    padding: 64px 0 40px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 12px;
}

.footer__logo-text {
    font-family: var(--font-serif);
    font-weight: 500;
    font-style: italic;
}

.footer__tagline {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.45);
    max-width: 300px;
    line-height: 1.6;
    font-weight: 300;
}

.footer__nav {
    display: flex;
    gap: 32px;
}

.footer__nav a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}

.footer__nav a:hover {
    color: var(--amber-400);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 12px;
}

.footer__link {
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}

.footer__link:hover {
    color: var(--amber-400);
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos][data-delay="80"]  { transition-delay: 0.08s; }
[data-aos][data-delay="120"] { transition-delay: 0.12s; }
[data-aos][data-delay="160"] { transition-delay: 0.16s; }
[data-aos][data-delay="240"] { transition-delay: 0.24s; }
[data-aos][data-delay="320"] { transition-delay: 0.32s; }
[data-aos][data-delay="400"] { transition-delay: 0.40s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__visual {
        max-width: 560px;
        margin: 0 auto;
        min-height: 400px;
    }

    .hero-stat-card--1 { left: 0; }
    .hero-stat-card--2 { left: 10px; }
    .hero-stat-card--3 { right: 0; }

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

    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image-stack {
        height: 400px;
        max-width: 500px;
    }

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

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

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid var(--gray-200);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
        pointer-events: none;
    }

    .nav__menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__toggle.open .nav__toggle-line:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    .nav__toggle.open .nav__toggle-line:nth-child(2) {
        opacity: 0;
    }
    .nav__toggle.open .nav__toggle-line:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

    .hero__visual {
        min-height: 320px;
    }

    .hero-stat-card {
        padding: 12px 16px;
    }

    .hero-stat-card__icon {
        width: 32px;
        height: 32px;
    }

    .hero-stat-card__label {
        font-size: 0.6875rem;
    }

    .hero-stat-card__value {
        font-size: 0.8125rem;
    }

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

    .section {
        padding: 80px 0;
    }

    .section__header {
        margin-bottom: 48px;
    }

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

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

    .cta__card {
        padding: 48px 32px;
    }

    .footer__top {
        flex-direction: column;
    }

    .footer__nav {
        flex-wrap: wrap;
        gap: 16px 24px;
    }

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

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

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

    .hero-stat-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin-top: 12px;
    }

    .hero__visual {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .about__image-stack {
        height: 300px;
    }

    .about__image-accent {
        width: 160px;
        height: 140px;
        right: -16px;
        bottom: -16px;
    }
}
