/* ============================================
   Lisa's Chocolates and Gifts — Stylesheet
   Color Palette: Plum (#6B2D5B) + Amber (#D4A017)
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --plum: #6B2D5B;
    --plum-dark: #4A1E3E;
    --plum-light: #8B3A6B;
    --plum-lighter: #A84978;
    --amber: #D4A017;
    --amber-light: #E8B828;
    --amber-dark: #B8860F;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE0;
    --white: #FFFFFF;
    --text-dark: #1A0A14;
    --text-medium: #4A3040;
    --text-light: #7A5A6A;
    --shadow-sm: 0 2px 8px rgba(107, 45, 91, 0.08);
    --shadow-md: 0 8px 30px rgba(107, 45, 91, 0.12);
    --shadow-lg: 0 20px 60px rgba(107, 45, 91, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* --- Geometric Background Shapes --- */
.geo-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    opacity: 0.04;
}

.geo-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--plum);
    top: -200px;
    right: -200px;
}

.geo-circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--amber);
    bottom: 20%;
    left: -150px;
}

.geo-square-1 {
    width: 200px;
    height: 200px;
    background: var(--plum);
    top: 40%;
    right: 5%;
    transform: rotate(45deg);
}

.geo-triangle-1 {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid var(--amber);
    top: 60%;
    left: 10%;
    transform: rotate(-15deg);
}

.geo-circle-3 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--plum-light);
    top: 80%;
    right: 15%;
}

.geo-rect-1 {
    width: 300px;
    height: 80px;
    background: var(--amber);
    top: 30%;
    left: 5%;
    transform: rotate(-30deg);
    border-radius: 40px;
}

/* --- Typography --- */
.text-amber { color: var(--amber); }
.text-dark { color: var(--text-dark); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--plum);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(107, 45, 91, 0.35);
}

.btn-primary:hover {
    background: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 45, 91, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--plum);
    border: 2px solid var(--plum);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 1rem;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 45, 91, 0.08);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--plum);
    letter-spacing: -0.02em;
}

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

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

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

/* --- Navigation --- */
.nav {
    position: relative;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--plum);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--plum);
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
    border-radius: 50px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--plum);
    background: rgba(107, 45, 91, 0.08);
}

.nav-cta {
    background: var(--plum);
    color: var(--white) !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--plum-dark);
    color: var(--white) !important;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 50%, #3A1530 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--amber);
    top: -150px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--amber-light);
    bottom: 10%;
    left: -80px;
    border-radius: 50%;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    border: 3px solid var(--amber);
    top: 30%;
    left: 15%;
    transform: rotate(45deg);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 40px;
    padding-bottom: 120px;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.3);
    color: var(--amber-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-headline .text-amber {
    color: var(--amber);
    font-style: italic;
}

.hero-subheadline {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--amber);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Image Grid */
.hero-visual {
    position: relative;
}

.hero-image-grid {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero-img-1 {
    width: 280px;
    height: 360px;
    top: 0;
    left: 0;
    z-index: 3;
}

.hero-img-2 {
    width: 240px;
    height: 200px;
    top: 40px;
    right: 0;
    z-index: 2;
}

.hero-img-3 {
    width: 220px;
    height: 280px;
    bottom: 20px;
    right: 40px;
    z-index: 1;
}

.hero-img-accent {
    width: 140px;
    height: 140px;
    bottom: 80px;
    left: 60px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accent-card {
    background: var(--amber);
    color: var(--plum-dark);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.4;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* --- Section Shared --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--amber-dark);
    background: rgba(212, 160, 23, 0.12);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag--light {
    color: var(--amber-light);
    background: rgba(212, 160, 23, 0.2);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--plum);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

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

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.section-subtitle--light {
    color: rgba(255, 255, 255, 0.7);
}

/* --- Products Section --- */
.products {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 24px;
}

.product-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-card--large {
    grid-column: span 7;
}

.product-card--wide {
    grid-column: span 12;
}

.product-card:not(.product-card--large):not(.product-card--wide) {
    grid-column: span 6;
}

.product-card-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.product-card:hover .product-card-bg {
    opacity: 1;
}

.product-card-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
}

.product-card--large .product-card-content,
.product-card--wide .product-card-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.product-card-image {
    overflow: hidden;
    height: 260px;
}

.product-card--large .product-card-image,
.product-card--wide .product-card-image {
    height: 320px;
}

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

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

.product-card-info {
    padding: 28px;
}

.product-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-dark);
    background: rgba(212, 160, 23, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--plum);
    margin-bottom: 10px;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--plum);
    transition: var(--transition);
}

.product-link:hover {
    color: var(--amber-dark);
    gap: 10px;
}

.product-link svg {
    transition: var(--transition);
}

/* --- About Section --- */
.about {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--white);
}

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

.about-visual {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

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

.about-floating-card {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--amber);
    color: var(--plum-dark);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.about-content {
    max-width: 500px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

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

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--plum);
    margin-bottom: 4px;
}

.about-feature-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* --- Occasions Section --- */
.occasions {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 100%);
    overflow: hidden;
}

.occasions-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.occasions-shape {
    position: absolute;
    opacity: 0.06;
}

.occasions-shape-1 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--amber);
    top: -100px;
    left: -100px;
}

.occasions-shape-2 {
    width: 250px;
    height: 250px;
    background: var(--amber-light);
    bottom: -50px;
    right: 10%;
    border-radius: 50%;
}

.occasions-shape-3 {
    width: 120px;
    height: 120px;
    border: 3px solid var(--amber);
    top: 20%;
    right: 5%;
    transform: rotate(30deg);
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.occasion-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.occasion-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-4px);
}

.occasion-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--amber-light));
    opacity: 0;
    transition: var(--transition);
}

.occasion-card:hover .occasion-card-accent {
    opacity: 1;
}

.occasion-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 160, 23, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--amber);
}

.occasion-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.occasion-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* --- Testimonial Strip --- */
.testimonial-strip {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: var(--cream-dark);
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    margin-bottom: 24px;
    opacity: 0.3;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    color: var(--plum);
    line-height: 1.7;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-author-avatar {
    width: 40px;
    height: 40px;
    background: var(--plum);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
}

.testimonial-author-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.testimonial-author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--plum);
}

.testimonial-author-location {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* --- Contact Section --- */
.contact {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--cream);
}

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

.contact-intro {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(107, 45, 91, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.contact-link {
    color: var(--plum);
}

.contact-link:hover {
    color: var(--amber-dark);
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(107, 45, 91, 0.15);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--plum);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(107, 45, 91, 0.1);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%236B2D5B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    margin-bottom: 16px;
}

.success-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum);
    margin-bottom: 8px;
}

.success-text {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* --- Footer --- */
.footer {
    background: var(--plum-dark);
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum), var(--amber), var(--plum));
}

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

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-top: 16px;
    max-width: 280px;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

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

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.65);
}

.footer-link:hover {
    color: var(--amber);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-location {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Animations --- */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-3deg); }
}

.hero-img-1 { animation: float 6s ease-in-out infinite; }
.hero-img-3 { animation: floatReverse 7s ease-in-out infinite; }
.hero-img-2 { animation: float 5s ease-in-out infinite 1s; }

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

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

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

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

    .hero-image-grid {
        height: 450px;
    }

    .product-card--large {
        grid-column: span 12;
    }

    .product-card:not(.product-card--large):not(.product-card--wide) {
        grid-column: span 6;
    }

    .product-card--large .product-card-content,
    .product-card--wide .product-card-content {
        grid-template-columns: 1fr;
    }

    .product-card--large .product-card-image,
    .product-card--wide .product-card-image {
        height: 260px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        max-width: 100%;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

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

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 32px 32px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

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

    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

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

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

    .hero-image-grid {
        height: 350px;
    }

    .hero-img-1 {
        width: 200px;
        height: 260px;
    }

    .hero-img-2 {
        width: 160px;
        height: 140px;
    }

    .hero-img-3 {
        width: 150px;
        height: 200px;
    }

    .hero-img-accent {
        width: 100px;
        height: 100px;
    }

    .accent-card {
        font-size: 0.7rem;
        padding: 12px;
    }

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

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

    .product-card--large,
    .product-card--wide,
    .product-card:not(.product-card--large):not(.product-card--wide) {
        grid-column: span 1;
    }

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

    .about-image-secondary {
        right: -10px;
        bottom: -20px;
    }

    .about-floating-card {
        right: 10px;
        top: 20px;
    }

    .contact-form-card {
        padding: 28px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

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

    .hero-headline {
        font-size: 2.4rem;
    }

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

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

    .section-title {
        font-size: 1.8rem;
    }

    .product-card-info {
        padding: 20px;
    }
}
