/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: #1a1a2e;
    background: #faf9f7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ─── Custom Properties ─── */
:root {
    --plum: #7B2D8B;
    --plum-deep: #5a1f66;
    --plum-light: #9b4dab;
    --amber: #F5C518;
    --amber-light: #fce97a;
    --cream: #faf9f7;
    --warm-gray: #f0ece6;
    --text: #1a1a2e;
    --text-muted: #6b6b80;
    --thin: 300;
    --body: 300;
    --med: 400;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Utility ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--plum); color: #fff; padding: 0.5rem 1rem; z-index: 100; font-size: 0.875rem; }
.skip-link:focus { left: 0; }

/* ─── Typography ─── */
.section-eyebrow {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    padding: 0.875rem 2rem;
    border: 1px solid transparent;
    border-radius: 0;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    text-transform: uppercase;
}
.btn-primary {
    background: var(--plum);
    color: #fff;
    border-color: var(--plum);
}
.btn-primary:hover { background: var(--plum-deep); border-color: var(--plum-deep); }
.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-full { width: 100%; justify-content: center; }

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease);
}
.site-header.scrolled {
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(123, 45, 139, 0.1);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.625rem; }
.logo-mark {
    width: 28px;
    height: 28px;
    background: var(--plum);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}
.logo-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 16px;
    background: var(--amber);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}
.logo-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    color: var(--text);
}
.site-header.scrolled .logo-text { color: var(--text); }

/* ─── Nav ─── */
.main-nav ul { display: flex; align-items: center; gap: 2.5rem; }
.main-nav a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s var(--ease);
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--plum);
    transition: width 0.3s var(--ease);
}
.main-nav a:hover { color: var(--plum); }
.main-nav a:hover::after { width: 100%; }
.nav-cta {
    border: 1px solid var(--plum);
    padding: 0.5rem 1.25rem;
    color: var(--plum) !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--plum); color: #fff !important; }

/* ─── Mobile Nav Toggle ─── */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    padding: 0;
}
.nav-toggle-lines {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text);
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 0.3s var(--ease);
}
.nav-toggle-lines::before,
.nav-toggle-lines::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text);
    position: absolute;
    left: 0;
    transition: all 0.3s var(--ease);
}
.nav-toggle-lines::before { top: -8px; }
.nav-toggle-lines::after { top: 8px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after { top: 0; transform: rotate(-45deg); }

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2d0a35 0%, #7B2D8B 35%, #a855c9 55%, #F5C518 100%);
    z-index: 0;
}
.hero-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(123,45,139,0.6) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(245,197,24,0.3) 0%, transparent 50%);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
}
.hero-eyebrow {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}
.hero-headline {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
}
.hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.3);
}
.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 16px;
    background: #fff;
    margin: 0 auto;
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── About ─── */
.about { padding: 8rem 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}
.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}
.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(123,45,139,0.15);
}
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 2.5rem;
    color: var(--plum);
    line-height: 1;
    margin-bottom: 0.375rem;
}
.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ─── Offerings ─── */
.offerings {
    padding: 8rem 0;
    background: var(--warm-gray);
}
.section-header { text-align: center; max-width: 560px; margin: 0 auto 4rem; }
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.offering-card {
    background: var(--cream);
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.offering-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(123,45,139,0.1);
}
.offering-icon {
    padding: 2rem 2rem 0;
    width: 40px;
    height: 40px;
    color: var(--plum);
}
.offering-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.5rem;
    margin: 1rem 2rem 0.75rem;
    color: var(--text);
}
.offering-card p {
    padding: 0 2rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.offering-card img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

/* ─── Philosophy ─── */
.philosophy { padding: 8rem 0; }
.philosophy-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.philosophy-text p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}
.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/2;
}

/* ─── Visit ─── */
.visit {
    padding: 8rem 0;
    background: var(--warm-gray);
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.visit-info { max-width: 480px; }
.visit-details { margin: 2rem 0; }
.visit-address, .visit-phone, .visit-email {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
}
.visit-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--plum);
}
.visit-phone a, .visit-email a { color: var(--text); transition: color 0.3s; }
.visit-phone a:hover, .visit-email a:hover { color: var(--plum); }
.visit-city { display: block; font-size: 0.8125rem; color: var(--text-muted); }
.visit-hours h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text);
}
.visit-hours table { font-size: 0.9375rem; }
.visit-hours td {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(123,45,139,0.1);
    color: var(--text-muted);
}
.visit-hours td:first-child { color: var(--text); font-weight: 400; }
.visit-map iframe {
    width: 100%;
    height: 400px;
    filter: saturate(0.6) brightness(1.05);
}

/* ─── Contact ─── */
.contact { padding: 8rem 0; }
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-text p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}
.contact-form { max-width: 480px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid rgba(123,45,139,0.25);
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text);
    transition: border-color 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--plum);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(123,45,139,0.06);
    border-left: 2px solid var(--plum);
    font-size: 0.875rem;
    color: var(--plum);
}

/* ─── Footer ─── */
.site-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(123,45,139,0.12);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
}
.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 280px;
    line-height: 1.7;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-links a {
    font-size: 0.8125rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--plum); }
.footer-copy {
    grid-column: 1 / -1;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(123,45,139,0.08);
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ─── Scroll Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .about-grid,
    .philosophy-inner,
    .visit-grid,
    .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image { order: -1; }
    .philosophy-image { order: -1; }
    .offerings-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .container { padding: 0 1.25rem; }
    .nav-toggle { display: block; z-index: 60; }
    .main-nav {
        position: fixed;
        inset: 0;
        background: rgba(250,249,247,0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s var(--ease);
    }
    .main-nav.open { opacity: 1; pointer-events: all; }
    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .main-nav a { font-size: 1rem; letter-spacing: 0.12em; }
    .hero { padding: 7rem 1.25rem 4rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .about-stats { gap: 1.5rem; flex-wrap: wrap; }
    .form-row { grid-template-columns: 1fr; }
    .footer-copy { flex-direction: column; gap: 0.5rem; }
    .visit-map iframe { height: 280px; }
}
