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

:root {
    --plum: #4A2040;
    --plum-deep: #3A1830;
    --plum-light: #6B3060;
    --amber: #D4A017;
    --amber-light: #E8B830;
    --amber-pale: #F5E6B8;
    --cream: #FAF8F5;
    --cream-dark: #F0ECE6;
    --text: #1A1A1A;
    --text-muted: #6B6B6B;
    --text-light: #999;
    --white: #FFFFFF;
    --line: rgba(74, 32, 64, 0.1);
    --line-strong: rgba(74, 32, 64, 0.2);

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;

    --radius: 4px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

/* ── TOP BAR ── */
.top-bar {
    background: var(--plum-deep);
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.top-bar__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.7);
}

.top-bar__link {
    color: var(--amber);
    transition: color var(--transition);
}

.top-bar__link:hover {
    color: var(--amber-light);
}

/* ── HEADER ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(74, 32, 64, 0.06);
}

.site-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.site-logo__mark {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--plum);
    letter-spacing: 0.08em;
    border: 1px solid var(--plum);
    padding: 0.3rem 0.5rem;
    border-radius: var(--radius);
}

.site-logo__text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--plum);
    letter-spacing: 0.02em;
}

.nav__list {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav__link {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    transition: color var(--transition);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: width var(--transition);
}

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

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

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

.nav__toggle-line {
    width: 22px;
    height: 1px;
    background: var(--plum);
    transition: var(--transition);
    transform-origin: center;
}

/* ── HERO ── */
.hero {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero__line-left,
.hero__line-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line);
}

.hero__line-left { left: 2rem; }
.hero__line-right { right: 2rem; }

.hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-xl) 2rem;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: var(--space-lg);
    align-items: center;
    position: relative;
    width: 100%;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: 2.5rem;
}

.hero__eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.75rem;
    height: 1px;
    background: var(--amber);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--plum-deep);
    margin-bottom: var(--space-md);
    max-width: 560px;
}

.hero__sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 420px;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
}

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

.btn--primary:hover {
    background: var(--plum-deep);
    border-color: var(--plum-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(74, 32, 64, 0.2);
}

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

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

.btn--amber {
    background: var(--amber);
    color: var(--plum-deep);
    border-color: var(--amber);
    font-weight: 500;
}

.btn--amber:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.3);
}

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

/* ── HERO IMAGE STACK ── */
.hero__image-stack {
    position: relative;
    height: 600px;
}

.hero__image {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(74, 32, 64, 0.12);
}

.hero__image--main {
    width: 100%;
    height: 100%;
}

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

.hero__image--main:hover img {
    transform: scale(1.03);
}

.hero__image--accent {
    position: absolute;
    bottom: -2rem;
    left: -3rem;
    width: 55%;
    border: 4px solid var(--cream);
    box-shadow: 0 10px 40px rgba(74, 32, 64, 0.15);
}

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

/* ── SECTION COMMON ── */
.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: var(--space-sm);
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--plum-deep);
    margin-bottom: var(--space-md);
}

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

.section-divider {
    width: 48px;
    height: 1px;
    background: var(--amber);
    margin-bottom: var(--space-md);
}

.section-divider--light {
    background: rgba(212, 160, 23, 0.5);
}

/* ── ABOUT ── */
.about {
    padding: var(--space-2xl) 2rem;
    background: var(--cream);
}

.about__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about__col--image {
    position: relative;
}

.about__col--image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(74, 32, 64, 0.1);
}

.about__image-accent {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 60%;
    height: 40%;
    border: 1px solid var(--amber);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.4;
}

.about__col p {
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.about__stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--line);
}

.stat__number {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--plum);
    display: block;
    line-height: 1.2;
}

.stat__label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 0.25rem;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--line-strong);
}

/* ── OFFERINGS ── */
.offerings {
    padding: var(--space-2xl) 2rem;
    background: var(--plum-deep);
    position: relative;
}

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

.offerings__header {
    max-width: 1280px;
    margin: 0 auto var(--space-lg);
    text-align: center;
}

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

.offerings__header .section-heading {
    color: var(--white);
}

.offerings__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.offering-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.offering-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.offering-card__img {
    overflow: hidden;
    height: 200px;
}

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

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

.offering-card__body {
    padding: 1.75rem;
}

.offering-card__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.offering-card__desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ── VISIT ── */
.visit {
    padding: var(--space-2xl) 2rem;
    background: var(--plum);
    position: relative;
}

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

.visit__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.visit__details {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.visit__detail dt {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.4rem;
}

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

.visit__detail dd a {
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all var(--transition);
}

.visit__detail dd a:hover {
    color: var(--amber);
    border-color: var(--amber);
}

.visit__map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 360px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visit__map-placeholder {
    text-align: center;
    padding: var(--space-lg);
}

.visit__map-placeholder svg {
    color: var(--amber);
    margin-bottom: var(--space-sm);
    opacity: 0.8;
}

.visit__map-placeholder p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

/* ── CONTACT ── */
.contact {
    padding: var(--space-2xl) 2rem;
    background: var(--cream-dark);
}

.contact__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.contact__col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 400px;
}

/* ── CONTACT FORM ── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-form__label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-form__input,
.contact-form__textarea {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(74, 32, 64, 0.08);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(74, 32, 64, 0.06);
    border: 1px solid rgba(74, 32, 64, 0.12);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--plum);
    margin-top: 0.5rem;
}

.contact-form__success svg {
    flex-shrink: 0;
    color: var(--plum);
}

/* ── FOOTER ── */
.site-footer {
    background: var(--plum-deep);
    padding: var(--space-lg) 2rem;
    border-top: 1px solid rgba(212, 160, 23, 0.15);
}

.site-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-logo__mark--footer {
    border-color: rgba(255,255,255,0.3);
    color: var(--amber);
}

.site-footer__tagline {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.site-footer__info {
    text-align: right;
}

.site-footer__info p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
}

.site-footer__info a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.site-footer__info a:hover {
    color: var(--amber);
}

.site-footer__copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}

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

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

/* ── MOBILE ── */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
    }

    .hero__image-stack {
        height: 400px;
        max-width: 480px;
    }

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

    .about__col--image {
        order: -1;
        max-width: 500px;
    }

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

    .visit__inner,
    .contact__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar__inner {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    .site-header__inner {
        padding: 1rem 1.25rem;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__list {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform var(--transition);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        z-index: 99;
    }

    .nav__list.open {
        transform: translateX(0);
    }

    .nav__link {
        font-size: 0.9rem;
    }

    .nav__toggle.active .nav__toggle-line:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .nav__toggle.active .nav__toggle-line:nth-child(2) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    .hero__line-left,
    .hero__line-right {
        display: none;
    }

    .hero__inner {
        padding: var(--space-md) 1.25rem;
    }

    .hero__image-stack {
        height: 300px;
        order: -1;
    }

    .hero__image--accent {
        left: -1rem;
        bottom: -1rem;
        width: 60%;
    }

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

    .visit__details {
        flex-direction: column;
        gap: var(--space-md);
    }

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

    .site-footer__info {
        text-align: center;
    }
}

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

    .btn {
        justify-content: center;
    }

    .hero__image-stack {
        height: 240px;
    }
}

/* Mobile overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
