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

:root {
    --plum-deep: #3D1F3D;
    --plum: #5C3D5E;
    --plum-light: #7A527A;
    --plum-pale: #F3ECF4;
    --plum-muted: #EDE4EF;
    --amber: #C8922A;
    --amber-light: #D4A04A;
    --amber-pale: #FDF6E3;
    --amber-muted: #F5E6C8;
    --white: #FEFCFD;
    --off-white: #FAF7FA;
    --cream: #FDF9F6;
    --text: #1A0A1A;
    --text-muted: #6B526B;
    --text-light: #9A829A;
    --line: #E8DDE8;
    --line-light: #F0E8F0;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --radius: 4px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

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

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

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

/* ─── HEADER ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(254, 252, 253, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-light);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 1px 0 var(--line);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--plum-deep);
    letter-spacing: 0.01em;
}

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

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

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

.main-nav a:hover {
    color: var(--plum);
}

.main-nav a:hover::after {
    width: 100%;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.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(92, 61, 94, 0.2);
}

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

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

.btn--ghost.btn--sm {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.btn--full {
    width: 100%;
}

/* ─── NAV TOGGLE ─── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--plum);
    transition: all var(--transition);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── HERO ─── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.hero-inner {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 48px;
    min-height: calc(100vh - 72px);
}

.hero-left {
    padding-right: 16px;
}

.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 24px;
}

h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--plum-deep);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 480px;
}

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

.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

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

.hero-image-wrapper:hover img {
    transform: scale(1.02);
}

.hero-line {
    height: 1px;
    background: linear-gradient(90deg, var(--amber-muted) 0%, var(--line) 40%, transparent 100%);
    margin: 0 24px;
}

/* ─── ABOUT ─── */
.about {
    padding: 120px 0;
    background: var(--off-white);
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .eyebrow {
    margin-bottom: 20px;
}

.about-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--plum-deep);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    max-width: 480px;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
}

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

/* ─── SECTION HEADER ─── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .eyebrow {
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--plum-deep);
    letter-spacing: -0.01em;
}

/* ─── OFFERINGS ─── */
.offerings {
    padding: 120px 0;
    background: var(--white);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.card {
    background: var(--off-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line-light);
    transition: all var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(92, 61, 94, 0.08);
    border-color: var(--plum-muted);
}

.card-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.card:hover .card-image img {
    transform: scale(1.04);
}

.card-body {
    padding: 28px 32px 32px;
}

.card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--plum-deep);
    margin-bottom: 10px;
}

.card-body p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ─── PHILOSOPHY ─── */
.philosophy {
    padding: 120px 0;
    background: var(--plum-deep);
    color: var(--white);
}

.philosophy-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-left .eyebrow {
    color: var(--amber-light);
    margin-bottom: 20px;
}

.philosophy-left h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.philosophy-body {
    color: rgba(254, 252, 253, 0.7);
    margin-bottom: 48px;
    max-width: 440px;
}

.philosophy-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--amber-light);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(254, 252, 253, 0.5);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(254, 252, 253, 0.15);
}

.philosophy-right {
    border-radius: var(--radius);
    overflow: hidden;
}

.philosophy-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── VISIT ─── */
.visit {
    padding: 120px 0;
    background: var(--cream);
    border-top: 1px solid var(--line-light);
}

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

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.visit-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.visit-icon {
    flex-shrink: 0;
    color: var(--amber);
    margin-top: 2px;
}

.visit-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
}

.visit-detail p {
    color: var(--text);
    line-height: 1.7;
    font-size: 1rem;
}

.visit-detail a {
    color: var(--plum);
    border-bottom: 1px solid var(--plum-muted);
    transition: all var(--transition);
}

.visit-detail a:hover {
    color: var(--plum-deep);
    border-color: var(--plum-deep);
}

.visit-map {
    border-radius: var(--radius);
    overflow: hidden;
}

.map-placeholder {
    background: var(--plum-pale);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 64px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.map-placeholder svg {
    color: var(--plum);
    opacity: 0.4;
}

.map-placeholder p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--plum);
}

/* ─── CONTACT ─── */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text .eyebrow {
    margin-bottom: 20px;
}

.contact-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--plum-deep);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.contact-text p {
    color: var(--text-muted);
    max-width: 400px;
}

.contact-form-wrapper {
    background: var(--off-white);
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(92, 61, 94, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: var(--plum-pale);
    border: 1px solid var(--plum-muted);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--plum);
}

.form-success svg {
    flex-shrink: 0;
    color: var(--plum);
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--plum-deep);
    color: var(--white);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 48px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(254, 252, 253, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 0.875rem;
    color: rgba(254, 252, 253, 0.6);
    transition: color var(--transition);
}

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

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

.footer-contact p {
    font-size: 0.875rem;
    color: rgba(254, 252, 253, 0.5);
}

.footer-contact a {
    color: rgba(254, 252, 253, 0.7);
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(254, 252, 253, 0.1);
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(254, 252, 253, 0.3);
}

/* ─── 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);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-inner,
    .about-inner,
    .philosophy-inner,
    .visit-grid,
    .contact-inner {
        gap: 48px;
    }

    .footer-inner {
        gap: 40px;
    }
}

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

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(254, 252, 253, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 40px 24px;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 99;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .main-nav a {
        font-size: 1rem;
        letter-spacing: 0.06em;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 32px;
        padding-bottom: 32px;
        min-height: auto;
    }

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

    .hero-right {
        order: 2;
    }

    .hero-image-wrapper {
        aspect-ratio: 4/3;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        text-align: center;
    }

    .about-inner,
    .philosophy-inner,
    .visit-grid,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        order: -1;
    }

    .philosophy-right {
        order: -1;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .philosophy-stats {
        gap: 28px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}

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

    h1 {
        font-size: 2rem;
    }

    .about,
    .offerings,
    .philosophy,
    .visit,
    .contact {
        padding: 80px 0;
    }

    .visit-detail {
        flex-direction: column;
        gap: 10px;
    }
}
