/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --plum: #5B2C6F;
    --plum-deep: #3D1E4D;
    --plum-light: #7D3C99;
    --amber: #F59E0B;
    --amber-light: #FCD34D;
    --amber-dark: #D97706;
    --bg: #FAFAF8;
    --bg-warm: #F5F0EB;
    --white: #FFFFFF;
    --text: #1A1A1A;
    --text-muted: #6B6B6B;
    --text-light: #999999;
    --line: #E8E4DF;
    --line-light: #F0ECE7;
    --radius: 12px;
    --radius-lg: 20px;
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --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(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

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

/* ── Skip Link ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--plum);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    z-index: 200;
    font-size: 0.875rem;
    transition: top var(--transition);
}
.skip-link:focus { top: 16px; }

/* ── Typography ── */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--plum);
    margin-bottom: 24px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 14px 28px;
    border-radius: 100px;
    border: 1.5px solid transparent;
    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(-2px);
    box-shadow: 0 8px 24px rgba(91, 44, 111, 0.25);
}

.btn-amber {
    background: var(--amber);
    color: var(--plum-deep);
    border-color: var(--amber);
}
.btn-amber:hover {
    background: var(--amber-dark);
    border-color: var(--amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

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

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 248, 0.9);
    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 2px 20px rgba(91, 44, 111, 0.06);
}

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

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

.logo-text { font-weight: 400; }

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.primary-nav a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

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

.primary-nav a:hover { color: var(--plum); }
.primary-nav a:hover::after { width: 100%; }

/* ── Mobile Nav Toggle ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

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

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

/* ── Hero ── */
.hero {
    padding: 140px 0 100px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 44, 111, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--plum);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-accent {
    font-style: italic;
    color: var(--amber-dark);
}

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

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

/* ── Hero Visual ── */
.hero-visual {
    position: relative;
    min-height: 520px;
}

.hero-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 40px rgba(91, 44, 111, 0.08);
}

.hero-card--main {
    width: 100%;
}

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

.hero-card__caption {
    padding: 16px 20px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    border-top: 1px solid var(--line-light);
}

/* ── Float Cards ── */
.float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 24px rgba(91, 44, 111, 0.1);
    border: 1px solid var(--line-light);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.float-card--1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.float-card--2 {
    bottom: 120px;
    left: -30px;
    animation-delay: 1.3s;
}

.float-card--3 {
    bottom: 30px;
    right: -10px;
    animation-delay: 2.6s;
}

.float-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-card__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--plum);
    white-space: nowrap;
}

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

/* ── Products ── */
.products {
    padding: 100px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

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

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(91, 44, 111, 0.1);
    border-color: transparent;
}

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

.product-card:hover .product-card__img img {
    transform: scale(1.03);
}

.product-card__img {
    overflow: hidden;
}

.product-card__body {
    padding: 28px;
}

.product-card__title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--plum);
    margin-bottom: 10px;
}

.product-card__body p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── About ── */
.about {
    padding: 100px 0;
    background: var(--bg);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-images {
    position: relative;
}

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

.about-img--large img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img--small {
    margin-top: -80px;
    margin-left: 40px;
    border: 4px solid var(--bg);
}

.about-img--small img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.about-line {
    position: absolute;
    top: 60px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-left: 1.5px solid var(--amber);
    border-top: 1.5px solid var(--amber);
    pointer-events: none;
}

.about-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--plum);
    line-height: 1;
}

.stat-unit {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--amber-dark);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

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

/* ── Visit ── */
.visit {
    padding: 100px 0;
    background: var(--white);
}

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

.visit-details {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.visit-details a {
    color: var(--plum);
    border-bottom: 1px solid var(--line);
    transition: border-color var(--transition);
}

.visit-details a:hover {
    border-color: var(--amber);
}

.visit-hours {
    margin-bottom: 32px;
}

.visit-hours__title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--plum);
    margin-bottom: 12px;
}

.visit-hours ul li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--line-light);
    color: var(--text-muted);
}

.visit-hours ul li span:first-child {
    color: var(--text);
    font-weight: 400;
}

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

.visit-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--plum);
    box-shadow: 0 4px 16px rgba(91, 44, 111, 0.12);
}

/* ── Contact ── */
.contact {
    padding: 100px 0;
    background: var(--plum);
    color: var(--white);
}

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

.contact .section-eyebrow { color: var(--amber-light); }
.contact .section-title { color: var(--white); }

.contact-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
}

.contact-list a {
    color: var(--amber-light);
    border-bottom: 1px solid rgba(252, 211, 77, 0.3);
    transition: border-color var(--transition);
}

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

/* ── Form ── */
.contact-form {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
}

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

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--white);
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--amber);
    background: rgba(255, 255, 255, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(252, 211, 77, 0.1);
    border: 1px solid rgba(252, 211, 77, 0.25);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    color: var(--amber-light);
}

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

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

.footer-brand p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
    max-width: 280px;
    line-height: 1.7;
}

.footer-brand .logo-text { color: var(--white); }

.footer-nav ul {
    display: flex;
    gap: 28px;
}

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

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

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

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

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

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-layout { gap: 40px; }
    .hero-visual { min-height: 420px; }
    .hero-card img { height: 400px; }
}

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

    .primary-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--white);
        padding: 100px 32px 32px;
        box-shadow: -8px 0 40px rgba(91, 44, 111, 0.1);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 105;
    }

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

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

    .primary-nav a { font-size: 1rem; }

    .hero { padding: 120px 0 80px; }
    .hero-layout { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { min-height: 360px; order: -1; }
    .hero-card img { height: 300px; }
    .float-card--1 { right: 10px; top: 10px; }
    .float-card--2 { left: 10px; bottom: 80px; }
    .float-card--3 { right: 10px; bottom: 10px; }

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

    .about-layout { grid-template-columns: 1fr; gap: 40px; }
    .about-img--large img { height: 360px; }
    .about-img--small { margin-top: -50px; margin-left: 20px; }
    .about-img--small img { height: 200px; }
    .about-line { display: none; }

    .visit-layout { grid-template-columns: 1fr; gap: 40px; }
    .visit-map img { height: 280px; }

    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-form { padding: 24px; }

    .footer-inner { flex-direction: column; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 2.25rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .about-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
    .stat-divider { display: none; }
}

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