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

:root {
    --color-plum-deep: #3D1247;
    --color-plum: #6B1D5E;
    --color-plum-mid: #7B2D8E;
    --color-plum-light: #A855C4;
    --color-plum-pale: #F3E8F9;
    --color-plum-faint: #FBF7FD;
    --color-amber-deep: #B87700;
    --color-amber: #D4922A;
    --color-amber-light: #E8B44D;
    --color-amber-pale: #FFF8EC;
    --color-cream: #FDF9F4;
    --color-warm-white: #FEFCFA;
    --color-text: #2A1B2E;
    --color-text-muted: #6B5270;
    --color-text-light: #9A8298;
    --color-border: #E8D8EE;
    --color-white: #FFFFFF;

    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;

    --shadow-sm: 0 1px 3px rgba(61, 18, 71, 0.06), 0 1px 2px rgba(61, 18, 71, 0.04);
    --shadow-md: 0 4px 16px rgba(61, 18, 71, 0.08), 0 2px 6px rgba(61, 18, 71, 0.05);
    --shadow-lg: 0 12px 40px rgba(61, 18, 71, 0.12), 0 4px 12px rgba(61, 18, 71, 0.06);
    --shadow-glow: 0 0 60px rgba(123, 45, 142, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-warm-white);
    overflow-x: hidden;
}

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

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

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

/* ─── NAVIGATION ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 249, 244, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(253, 249, 244, 0.95);
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-plum-deep);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.01em;
    transition: var(--transition);
}

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

.nav__logo-icon {
    color: var(--color-plum-mid);
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.01em;
}

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

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__toggle:hover {
    background: var(--color-plum-pale);
}

.nav__toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-plum);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(123, 45, 142, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212, 146, 42, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 70% 40% at 50% 80%, rgba(107, 29, 94, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 10% 70%, rgba(184, 119, 0, 0.2) 0%, transparent 40%),
        linear-gradient(160deg, #2D0A35 0%, #4A1058 25%, #6B1D5E 50%, #8B3A7E 65%, #C47A20 80%, #E8A030 95%);
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-amber-light);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.hero__title-accent {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: var(--color-amber-light);
    font-size: 0.85em;
    margin-top: 8px;
}

.hero__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
    animation: fadeUp 0.8s 1.2s forwards;
    opacity: 0;
}

.hero__scroll svg {
    animation: bounce 2s infinite;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.btn--primary {
    background: var(--color-amber);
    color: var(--color-white);
    border-color: var(--color-amber);
    box-shadow: 0 4px 20px rgba(212, 146, 42, 0.35);
}

.btn--primary:hover {
    background: var(--color-amber-deep);
    border-color: var(--color-amber-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 146, 42, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

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

.btn--outline-light:hover {
    background: var(--color-plum);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ─── SECTIONS ─── */
.section {
    padding: 100px 0;
}

.section--alt {
    background: var(--color-plum-faint);
}

.section__header {
    max-width: 680px;
    margin: 0 auto 64px;
    text-align: left;
}

.section__header--center {
    text-align: center;
}

.section__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-plum-mid);
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-plum-deep);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section__subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* ─── ABOUT ─── */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__image-wrap {
    position: relative;
}

.about__image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-amber-light), var(--color-amber));
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.6;
}

.about__content {
    max-width: 520px;
}

.about__content p {
    color: var(--color-text-muted);
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.8;
}

.about__highlights {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-plum);
}

.highlight__icon {
    color: var(--color-amber);
    flex-shrink: 0;
}

/* ─── SERVICES ─── */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-plum-light);
}

.service-card__img-wrap {
    position: relative;
    overflow: hidden;
}

.service-card__img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card__img-wrap img {
    transform: scale(1.05);
}

.service-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-amber);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--radius-xl);
}

.service-card__body {
    padding: 28px;
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-plum-deep);
    margin-bottom: 12px;
}

.service-card__body p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text-muted);
}

/* ─── GALLERY ─── */
.gallery {
    padding: 100px 0;
    background: var(--color-cream);
}

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

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.gallery__item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item--wide img {
    height: 400px;
}

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

/* ─── VISIT ─── */
.section--cta {
    background: linear-gradient(160deg, var(--color-plum-deep) 0%, var(--color-plum) 50%, #5A1A6E 100%);
    color: var(--color-white);
}

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

.visit__info .section__eyebrow {
    color: var(--color-amber-light);
}

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

.visit__desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.visit__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit__detail dt {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: var(--color-amber-light);
}

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

.visit__detail strong {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-amber-light);
}

.visit__detail dd p,
.visit__detail dd a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.visit__detail a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

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

.btn--outline-light {
    border-color: var(--color-amber-light);
    color: var(--color-amber-light);
}

.btn--outline-light:hover {
    background: var(--color-amber-light);
    color: var(--color-plum-deep);
}

.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.visit__map iframe {
    width: 100%;
    height: 480px;
    display: block;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--color-plum-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

.footer__contact p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__nav a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    padding: 4px 0;
}

.footer__nav a:hover {
    color: var(--color-amber-light);
    padding-left: 6px;
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(6px);
    }
    60% {
        transform: translateY(3px);
    }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .about {
        gap: 48px;
    }

    .visit {
        gap: 48px;
    }

    .services {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 249, 244, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

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

    .nav__link {
        padding: 14px 16px;
        font-size: 1rem;
    }

    .hero {
        padding: 140px 24px 100px;
        min-height: 100svh;
    }

    .hero__title {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }

    .section {
        padding: 72px 0;
    }

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

    .about__image-wrap img {
        height: 300px;
    }

    .about__image-accent {
        width: 80px;
        height: 80px;
        bottom: -12px;
        right: -12px;
    }

    .about__content {
        max-width: 100%;
    }

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

    .gallery__item--wide img {
        height: 260px;
    }

    .gallery__item img {
        height: 240px;
    }

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

    .visit__map iframe {
        height: 320px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section__header {
        margin-bottom: 48px;
    }
}

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

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

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

    .about__highlights {
        flex-direction: column;
        gap: 16px;
    }

    .visit__actions {
        flex-direction: column;
    }

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