/* ============================================
   ABOVE THE REST — Classic & Elegant Retail
   Burgundy + Blush Palette
   ============================================ */

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

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

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #3a2a2a;
    background-color: #fdf8f6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: #7B2D3B;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5a1f2a;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: #2c1a1a;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #7B2D3B;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 200;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: 16px;
}

/* --- Typography --- */
.section-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7B2D3B;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 24px;
    color: #2c1a1a;
}

.section-desc {
    font-size: 1.1rem;
    color: #6b5050;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn--primary {
    background: #7B2D3B;
    color: #fff;
    border-color: #7B2D3B;
}

.btn--primary:hover {
    background: #5a1f2a;
    border-color: #5a1f2a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
}

.btn--outline {
    background: transparent;
    color: #7B2D3B;
    border-color: #7B2D3B;
}

.btn--outline:hover {
    background: #7B2D3B;
    color: #fff;
    transform: translateY(-2px);
}

.btn--small {
    padding: 10px 24px;
    font-size: 0.8rem;
}

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

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 248, 246, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 24px rgba(44, 26, 26, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2c1a1a;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.logo:hover {
    color: #7B2D3B;
}

.logo-mark {
    color: #7B2D3B;
    flex-shrink: 0;
}

/* Nav */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.main-nav a {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #3a2a2a;
    position: relative;
    padding: 4px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #7B2D3B;
    transition: width 0.3s ease;
}

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

.main-nav a:hover {
    color: #7B2D3B;
}

.main-nav .btn--small {
    margin-left: 8px;
}

/* 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: 24px;
    height: 2px;
    background: #2c1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 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(5px, -5px);
}

/* --- Hero --- */
.hero {
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fdf8f6 0%, #f9ede8 50%, #f5e6d3 100%);
    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(123, 45, 59, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-content {
    padding-right: 20px;
}

.hero-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7B2D3B;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1.5px;
    background: #7B2D3B;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: #2c1a1a;
    margin-bottom: 28px;
}

.hero-headline em {
    font-style: italic;
    color: #7B2D3B;
}

.hero-sub {
    font-size: 1.125rem;
    color: #6b5050;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

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

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 1px solid rgba(123, 45, 59, 0.25);
    border-radius: 100px;
    color: #7B2D3B;
    background: rgba(253, 248, 246, 0.6);
}

/* Hero image */
.hero-image {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(44, 26, 26, 0.15);
}

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

.hero-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(123, 45, 59, 0.15);
    border-radius: 8px;
    z-index: -1;
    pointer-events: none;
}

/* --- About --- */
.about {
    padding: 120px 0;
    background: #fdf8f6;
}

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

.about-content .section-title {
    margin-bottom: 28px;
}

.about-content p {
    font-size: 1.05rem;
    color: #5a4040;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(123, 45, 59, 0.12);
}

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

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #7B2D3B;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a6060;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 20px 48px rgba(44, 26, 26, 0.1);
}

.about-image::after {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(123, 45, 59, 0.12);
    border-radius: 8px;
    z-index: -1;
}

/* --- Collection --- */
.collection {
    padding: 120px 0;
    background: linear-gradient(180deg, #f9ede8 0%, #fdf8f6 100%);
}

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

.collection-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(44, 26, 26, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(44, 26, 26, 0.12);
}

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

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

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

.card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c1a1a;
}

.card-body p {
    font-size: 0.95rem;
    color: #6b5050;
    line-height: 1.7;
}

/* --- Why Us --- */
.why-us {
    padding: 120px 0;
    background: #fdf8f6;
}

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

.why-content .section-title {
    margin-bottom: 48px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

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

.feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7B2D3B 0%, #9a3d4e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.feature-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2c1a1a;
}

.feature-text p {
    font-size: 0.95rem;
    color: #6b5050;
    line-height: 1.7;
}

.why-image {
    position: relative;
}

.why-image img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 20px 48px rgba(44, 26, 26, 0.1);
}

.why-image::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(123, 45, 59, 0.12);
    border-radius: 8px;
    z-index: -1;
}

/* --- Testimonial --- */
.testimonial {
    padding: 100px 0;
    background: #7B2D3B;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(245, 230, 211, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.testimonial-inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-quote {
    color: rgba(245, 230, 211, 0.3);
    margin-bottom: 32px;
}

.testimonial blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: #f5e6d3;
    margin-bottom: 32px;
}

.testimonial-source {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 230, 211, 0.6);
}

/* --- Visit --- */
.visit {
    padding: 120px 0;
    background: linear-gradient(180deg, #fdf8f6 0%, #f9ede8 100%);
}

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

.visit-info .section-title {
    margin-bottom: 32px;
}

.visit-address {
    font-style: normal;
    font-size: 1.1rem;
    color: #3a2a2a;
    line-height: 1.8;
    margin-bottom: 36px;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    border-left: 3px solid #7B2D3B;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

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

.detail svg {
    flex-shrink: 0;
    color: #7B2D3B;
    margin-top: 2px;
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a6060;
    margin-bottom: 2px;
}

.detail a,
.detail span {
    font-size: 1rem;
    color: #3a2a2a;
    line-height: 1.6;
}

.detail a:hover {
    color: #7B2D3B;
}

.visit-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(44, 26, 26, 0.1);
    aspect-ratio: 4/3;
}

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

/* --- Contact CTA --- */
.contact-cta {
    padding: 120px 0;
    background: #2c1a1a;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 45, 59, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.cta-content .section-eyebrow {
    color: #f5e6d3;
    opacity: 0.7;
}

.cta-content .section-title {
    color: #f5e6d3;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(245, 230, 211, 0.7);
    line-height: 1.8;
}

/* Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(245, 230, 211, 0.1);
    border-radius: 8px;
    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: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 230, 211, 0.6);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(245, 230, 211, 0.15);
    border-radius: 4px;
    color: #f5e6d3;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 230, 211, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7B2D3B;
    background: rgba(255, 255, 255, 0.08);
}

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

.form-note {
    font-size: 0.8rem;
    color: rgba(245, 230, 211, 0.4);
    margin-top: 12px;
    text-align: center;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(123, 45, 59, 0.2);
    border: 1px solid rgba(123, 45, 59, 0.4);
    border-radius: 4px;
    color: #f5e6d3;
    font-size: 0.9rem;
    margin-top: 16px;
}

.form-success svg {
    flex-shrink: 0;
    color: #7B2D3B;
}

/* --- Footer --- */
.footer {
    padding: 80px 0 0;
    background: #1e1212;
}

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

.logo--light {
    color: #f5e6d3;
    margin-bottom: 16px;
    display: inline-block;
}

.logo--light:hover {
    color: #f5e6d3;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(245, 230, 211, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 230, 211, 0.4);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(245, 230, 211, 0.6);
    transition: color 0.3s ease;
}

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

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(245, 230, 211, 0.5);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(245, 230, 211, 0.5);
}

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

.footer-bottom {
    border-top: 1px solid rgba(245, 230, 211, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 230, 211, 0.3);
}

/* --- Scroll animations --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid,
    .about-inner,
    .why-inner,
    .visit-inner,
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

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

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

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

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

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-inner {
        direction: ltr;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fdf8f6;
        padding: 100px 40px 40px;
        box-shadow: -8px 0 32px rgba(44, 26, 26, 0.1);
        transition: right 0.4s ease;
        z-index: 100;
    }

    .main-nav.open {
        right: 0;
    }

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

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

    .main-nav .btn--small {
        margin-left: 0;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(44, 26, 26, 0.4);
        z-index: 99;
    }

    .nav-overlay.active {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

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

    .about-stats {
        gap: 24px;
    }

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

    .contact-form {
        padding: 28px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

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

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

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .visit-map {
        aspect-ratio: 16/9;
    }
}
