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

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

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* ── Navigation ───────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(245, 239, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(107, 58, 93, 0.08);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(107, 58, 93, 0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #6B3A5D;
}

.nav-logo-icon {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6B3A5D;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4A84B;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

.nav-links a:hover {
    color: #D4A84B;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #6B3A5D;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    padding: 72px 0 0;
    overflow: hidden;
}

.hero-content {
    padding: 4rem 4rem 4rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #D4A84B;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #6B3A5D;
    margin-bottom: 1.75rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(107, 58, 93, 0.7);
    max-width: 440px;
    margin-bottom: 2.5rem;
}

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

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #6B3A5D;
    color: #F5EFF5;
    border: 1px solid #6B3A5D;
}

.btn-primary:hover {
    background: #5A2E4E;
    border-color: #5A2E4E;
}

.btn-ghost {
    background: transparent;
    color: #6B3A5D;
    border: 1px solid rgba(107, 58, 93, 0.3);
}

.btn-ghost:hover {
    border-color: #D4A84B;
    color: #D4A84B;
}

.hero-image {
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

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

/* ── Divider ──────────────────────────────────────── */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

/* ── Section Shared ───────────────────────────────── */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #D4A84B;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #6B3A5D;
    margin-bottom: 1.5rem;
}

/* ── About ────────────────────────────────────────── */
.about {
    padding: 6rem 0;
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrap {
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 6.2;
    object-fit: cover;
}

.about-content {
    padding: 1rem 0;
}

.about-content p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(107, 58, 93, 0.75);
    margin-bottom: 1.25rem;
}

.about-signature {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #D4A84B;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(107, 58, 93, 0.1);
}

/* ── Shop ─────────────────────────────────────────── */
.shop {
    padding: 6rem 0 5rem;
}

.shop-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

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

.shop-card {
    group: shop-card;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.shop-card:hover {
    transform: translateY(-4px);
}

.shop-card-image {
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.shop-card-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.shop-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #6B3A5D;
    margin-bottom: 0.5rem;
}

.shop-card-body p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(107, 58, 93, 0.65);
}

.shop-note {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(107, 58, 93, 0.5);
    margin-top: 3rem;
    padding: 0 2rem;
}

/* ── Values ───────────────────────────────────────── */
.values {
    padding: 6rem 0;
    background: #6B3A5D;
}

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

.values-item {
    text-align: center;
    padding: 2rem 1rem;
}

.values-item svg {
    margin: 0 auto 1.5rem;
}

.values-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #F5EFF5;
    margin-bottom: 0.75rem;
}

.values-item p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245, 239, 245, 0.65);
}

/* ── Visit ────────────────────────────────────────── */
.visit {
    padding: 6rem 0;
}

.visit-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.visit-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(107, 58, 93, 0.12);
}

.visit-detail {
    padding: 2rem 0;
    padding-right: 2rem;
}

.visit-divider {
    border-left: 1px solid rgba(107, 58, 93, 0.12);
}

.visit-detail-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #D4A84B;
    margin-bottom: 0.6rem;
}

.visit-detail-value {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: #6B3A5D;
    white-space: pre-line;
}

.visit-link {
    transition: color 0.2s ease;
}

.visit-link:hover {
    color: #D4A84B;
}

.visit-map {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 400px;
    overflow: hidden;
}

.visit-map iframe {
    filter: saturate(0.3) brightness(1.05);
    transition: filter 0.3s ease;
}

.visit-map:hover iframe {
    filter: saturate(0.6) brightness(1.02);
}

/* ── Contact ──────────────────────────────────────── */
.contact {
    padding: 6rem 0;
    background: rgba(107, 58, 93, 0.03);
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(107, 58, 93, 0.7);
    margin-top: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6B3A5D;
}

.form-group input,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #6B3A5D;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(107, 58, 93, 0.2);
    padding: 0.6rem 0;
    outline: none;
    transition: border-color 0.2s ease;
    resize: none;
    border-radius: 0;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: #D4A84B;
}

.btn-submit {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.form-success {
    display: none;
    font-size: 0.88rem;
    font-weight: 300;
    color: #D4A84B;
    font-style: italic;
    margin-top: 0.5rem;
}

.form-success.show {
    display: block;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
    padding: 4rem 0 2.5rem;
    background: #6B3A5D;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #F5EFF5;
}

.footer-brand svg {
    flex-shrink: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 239, 245, 0.6);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #D4A84B;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.footer-contact a {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(245, 239, 245, 0.7);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #D4A84B;
}

.footer-contact span {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(245, 239, 245, 0.5);
}

.footer-copy {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(245, 239, 245, 0.35);
    letter-spacing: 0.05em;
}

/* ── Scroll Animations ────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        padding: 8rem 2rem 3rem;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        min-height: 400px;
        max-height: 50vh;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image-wrap img {
        aspect-ratio: 4 / 3;
    }

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

    .values-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .visit-details {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .visit-divider {
        border-left: none;
        border-top: 1px solid rgba(107, 58, 93, 0.12);
    }

    .visit-detail {
        padding-right: 0;
        padding-bottom: 2rem;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(245, 239, 245, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(107, 58, 93, 0.08);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 7rem 1.5rem 2.5rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }

    .shop-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .visit-map {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        min-height: 300px;
        max-height: 40vh;
    }

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

    .btn {
        width: 100%;
        max-width: 260px;
    }
}
