:root {
    --bg: #F5F0EA;
    --bg2: #EBE4DB;
    --ink: #161412;
    --muted: #6B635C;
    --rose: #C25555;
    --rose-light: #E8A0A0;
    --cream: #FFFCFA;
    --white: #FFFFFF;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Syne', system-ui, sans-serif;
    --hand: 'Caveat', cursive;
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.04);
    --shadow-md: 0 12px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 25px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 40px 80px rgba(0,0,0,0.16);
    --radius: 20px;
    --transition: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* ========================================
   ✦ BACKGROUND "L" — MORE VISIBLE
   ======================================== */
.bg-letter {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--serif);
    font-size: clamp(35rem, 50vw, 60rem);
    font-weight: 500;
    color: rgba(194, 85, 85, 0.06);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    user-select: none;
    animation: letterDrift 25s ease-in-out infinite;
    text-shadow: 
        0 0 60px rgba(194, 85, 85, 0.03),
        0 0 120px rgba(194, 85, 85, 0.02);
}

@keyframes letterDrift {
    0%, 100% { 
        transform: translate(-50%, -50%) rotate(-8deg) scale(1); 
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -52%) rotate(4deg) scale(1.04); 
        opacity: 1;
    }
}

/* ========================================
   ✦ FLOATING PARTICLES
   ======================================== */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    font-size: 0.8rem;
    color: var(--rose);
    opacity: 0.15;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; font-size: 1rem; }
.particle:nth-child(2) { top: 20%; right: 8%; animation-delay: -2s; font-size: 0.7rem; }
.particle:nth-child(3) { top: 40%; left: 2%; animation-delay: -4s; font-size: 1.2rem; }
.particle:nth-child(4) { top: 60%; right: 3%; animation-delay: -6s; font-size: 0.6rem; }
.particle:nth-child(5) { top: 80%; left: 10%; animation-delay: -8s; font-size: 0.9rem; }
.particle:nth-child(6) { top: 30%; left: 50%; animation-delay: -10s; font-size: 0.5rem; }
.particle:nth-child(7) { top: 70%; left: 40%; animation-delay: -12s; font-size: 1.1rem; }
.particle:nth-child(8) { top: 15%; left: 80%; animation-delay: -14s; font-size: 0.7rem; }
.particle:nth-child(9) { top: 85%; right: 20%; animation-delay: -16s; font-size: 0.8rem; }
.particle:nth-child(10) { top: 45%; left: 90%; animation-delay: -18s; font-size: 1rem; }
.particle:nth-child(11) { top: 5%; left: 30%; animation-delay: -3s; font-size: 0.6rem; }
.particle:nth-child(12) { top: 55%; left: 15%; animation-delay: -7s; font-size: 0.9rem; }
.particle:nth-child(13) { top: 90%; left: 60%; animation-delay: -11s; font-size: 0.7rem; }
.particle:nth-child(14) { top: 25%; left: 70%; animation-delay: -15s; font-size: 1.1rem; }
.particle:nth-child(15) { top: 75%; left: 85%; animation-delay: -19s; font-size: 0.5rem; }

@keyframes particleFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg); 
        opacity: 0.1;
    }
    25% { 
        transform: translate(20px, -30px) scale(1.2) rotate(90deg); 
        opacity: 0.25;
    }
    50% { 
        transform: translate(-10px, -50px) scale(0.8) rotate(180deg); 
        opacity: 0.15;
    }
    75% { 
        transform: translate(30px, -20px) scale(1.1) rotate(270deg); 
        opacity: 0.2;
    }
}

/* ========================================
   ✦ AMBIENT BACKGROUND ORBS
   ======================================== */
.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: orbFloat 20s ease-in-out infinite alternate;
}

.orb1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(194,85,85,0.12), transparent 70%);
    animation-delay: 0s;
}

.orb2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(194,85,85,0.06), transparent 70%);
    animation-delay: -7s;
}

.orb3 {
    width: 400px;
    height: 400px;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(255,252,248,0.15), transparent 70%);
    animation-delay: -14s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -30px) scale(1.1); }
}

/* ========================================
   ✦ PAPER GRAIN
   ======================================== */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   ✦ NAVIGATION — BETTER LOGO
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 5vw;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(245, 240, 234, 0.92);
    backdrop-filter: blur(20px);
    padding: 0.8rem 5vw;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.04);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--sans);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.3s ease;
}

.logo-icon {
    font-size: 1.8rem;
    display: inline-block;
    animation: knitPulse 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(-15deg) scale(1.1);
}

@keyframes knitPulse {
    0%, 100% { transform: rotate(-5deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.08); }
}

.logo-text {
    font-weight: 700;
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--ink) 60%, var(--rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    background: linear-gradient(135deg, var(--rose) 40%, var(--ink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-dot {
    font-size: 2.4rem;
    color: var(--rose);
    line-height: 1;
    margin-left: -0.3rem;
    transition: transform 0.4s ease;
    display: inline-block;
}

.logo:hover .logo-dot {
    transform: scale(1.4) translateY(-4px) rotate(20deg);
}

.nav-links {
    display: flex;
    gap: 2.8rem;
    align-items: center;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link span {
    position: relative;
    padding-bottom: 4px;
}

.nav-link span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--rose);
    transition: width 0.4s var(--transition);
}

.nav-link:hover span::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--rose);
}

.nav-ig {
    font-size: 1.4rem !important;
    color: var(--muted);
    transition: all 0.3s ease;
}

.nav-ig:hover {
    transform: scale(1.2) rotate(-8deg);
    color: var(--rose);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
}

.menu-btn span {
    width: 26px;
    height: 2px;
    background: var(--ink);
    display: block;
    transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ========================================
   ✦ HERO
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 5vw 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose);
    background: rgba(194, 85, 85, 0.08);
    padding: 0.5rem 1.2rem 0.5rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 1.6rem;
    border: 1px solid rgba(194, 85, 85, 0.1);
    animation: fadeInDown 0.8s ease forwards;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--rose);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.6); }
}

@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(3.8rem, 8vw, 6.5rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 1.6rem;
}

.hero h1 .line1 {
    display: block;
    opacity: 0;
    animation: slideUp 0.8s ease 0.2s forwards;
}

.hero h1 .line2 {
    display: block;
    opacity: 0;
    animation: slideUp 0.8s ease 0.4s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--rose);
    position: relative;
    display: inline-block;
}

.hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.15em;
    background: var(--rose);
    opacity: 0.15;
    border-radius: 2px;
}

@keyframes slideUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-text {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 2.2rem;
    line-height: 1.8;
    opacity: 0;
    animation: slideUp 0.8s ease 0.6s forwards;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideUp 0.8s ease 0.8s forwards;
}

.btn-fill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--ink);
    color: var(--cream);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 1.05rem 2.2rem;
    border-radius: 100px;
    transition: all 0.4s var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-fill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--rose), #A04040);
    opacity: 0;
    transition: opacity 0.4s var(--transition);
    border-radius: 100px;
}

.btn-fill:hover::before {
    opacity: 1;
}

.btn-fill > * {
    position: relative;
    z-index: 1;
}

.btn-fill:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(194, 85, 85, 0.35);
}

.btn-fill.big {
    padding: 1.25rem 2.8rem;
    font-size: 1rem;
}

.btn-line {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    border: 1.5px solid var(--ink);
    padding: 1.05rem 2rem;
    border-radius: 100px;
    transition: all 0.4s var(--transition);
    text-decoration: none;
    background: transparent;
}

.btn-line:hover {
    background: var(--ink);
    color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    opacity: 0;
    animation: slideUp 0.8s ease 1s forwards;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(0,0,0,0.06);
}

/* ========================================
   ✦ MARQUEE — ANIMATED
   ======================================== */
.marquee {
    background: var(--ink);
    color: var(--cream);
    padding: 1.2rem 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.marquee-track {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.marquee-inner {
    display: flex;
    gap: 2.5rem;
    white-space: nowrap;
    animation: marquee 35s linear infinite;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0 1rem;
}

.marquee-inner span {
    position: relative;
}

.marquee-inner span:nth-child(odd) {
    color: var(--rose-light);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   ✦ COLLECTION
   ======================================== */
.collection {
    padding: 8rem 5vw;
    position: relative;
    z-index: 1;
}

.sec-head {
    margin-bottom: 4rem;
    text-align: center;
}

.sec-head-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 0.8rem;
}

.sec-head-number {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--muted);
    opacity: 0.3;
}

.sec-head h2 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.sec-head h2 .highlight {
    color: var(--rose);
    font-style: italic;
    position: relative;
}

.sec-head h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0;
    right: 0;
    height: 0.12em;
    background: var(--rose);
    opacity: 0.15;
    border-radius: 2px;
}

.tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
}

.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 320px 280px;
    gap: 1.4rem;
}

.bento-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s var(--transition);
    background: var(--bg2);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}

.bento-item:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: var(--shadow-xl);
    z-index: 5;
}

.bento-item:hover img {
    transform: scale(1.08);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bento-item:hover .bento-overlay {
    opacity: 1;
}

.bento-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.8rem;
    color: white;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s var(--transition);
    z-index: 2;
}

.bento-item:hover .bento-info {
    transform: translateY(0);
    opacity: 1;
}

.bento-info h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.bento-price {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 0.6rem;
}

.bento-link {
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 1.5px solid rgba(255,255,255,0.5);
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.bento-link:hover {
    gap: 0.8rem;
    border-color: white;
}

.badge {
    display: inline-block;
    background: var(--rose);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 0.5rem;
}

.bento-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
    transform: translateX(-100%);
}

.bento-item:hover .bento-shine {
    opacity: 1;
    transform: translateX(100%);
    transition: transform 0.8s ease, opacity 0.4s ease;
}

.b1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.b2 { grid-column: 3 / 4; grid-row: 1 / 2; }
.b3 { grid-column: 4 / 5; grid-row: 1 / 2; }
.b4 { grid-column: 3 / 4; grid-row: 2 / 3; }
.b5 { grid-column: 4 / 5; grid-row: 2 / 3; }

/* ========================================
   ✦ STORY
   ======================================== */
.story {
    padding: 6rem 5vw;
    background: linear-gradient(160deg, #EDE6DD 0%, #E5DDD4 30%, #EBE4DB 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.story::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(194,85,85,0.04), transparent 70%);
    pointer-events: none;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.story-content {
    padding: 2rem 0;
}

.story-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.story-number {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--muted);
    opacity: 0.3;
}

.story-title {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 4.5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.6rem;
}

.story-title-line {
    display: block;
}

.story-title .highlight {
    color: var(--rose);
    font-style: italic;
}

.story-text {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 440px;
}

.story-text-main {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 1rem;
}

.story-text-detail {
    opacity: 0.85;
}

.story-footer {
    margin-top: 2rem;
}

.story-signature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sign {
    font-family: var(--hand) !important;
    font-size: 2.2rem !important;
    color: var(--rose) !important;
    font-weight: 600;
}

.signature-squiggle {
    width: 80px;
    height: 24px;
}

.story-visual {
    position: relative;
    height: 500px;
    width: 100%;
}

.story-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 85%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg2);
}

.story-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition);
}

.story:hover .story-image-main img {
    transform: scale(1.04);
}

.story-image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15), transparent 60%);
    pointer-events: none;
}

.story-image-floating {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--bg);
    box-shadow: var(--shadow-lg);
    animation: float 5s ease-in-out infinite;
    z-index: 3;
    background: white;
}

.story-image-floating img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 6px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

/* ========================================
   ✦ CUSTOM
   ======================================== */
.custom {
    padding: 8rem 5vw;
    position: relative;
    z-index: 1;
}

.custom-box {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.custom-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.custom-number {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--muted);
    opacity: 0.3;
}

.custom-text h2 {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 4.5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.4rem;
}

.custom-text h2 .highlight {
    color: var(--rose);
    font-style: italic;
}

.custom-text > p {
    color: var(--muted);
    max-width: 380px;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.custom-features {
    margin-bottom: 2.4rem;
}

.custom-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
    color: var(--muted);
    font-size: 0.95rem;
    list-style: none;
}

.custom-features li i {
    color: var(--rose);
    width: 1.2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.custom-imgs {
    position: relative;
    height: 500px;
}

.ci {
    position: absolute;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s var(--transition);
    border-radius: 20px;
    background: var(--bg2);
}

.ci img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}

.ci:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.ci:hover img {
    transform: scale(1.06);
}

.ci-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1), transparent 60%);
    pointer-events: none;
}

.ci1 {
    width: 320px;
    height: 380px;
    top: 0;
    right: 5%;
    border-radius: 24px;
}

.ci2 {
    width: 240px;
    height: 280px;
    bottom: 0;
    left: 0;
    border-radius: 50% 24px 24px 24px;
    border: 12px solid var(--bg);
    animation: float 6s ease-in-out infinite reverse;
}

.ci-label {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    font-family: var(--hand);
    font-size: 1.4rem;
    color: var(--rose);
    opacity: 0.3;
    transform: rotate(-6deg);
    white-space: nowrap;
}

/* ========================================
   ✦ LOVE NOTES
   ======================================== */
.love {
    padding: 7rem 5vw;
    background: linear-gradient(160deg, #EDE6DD 0%, #E8E0D6 100%);
    position: relative;
    z-index: 1;
}

.love-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.love-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    padding: 2.4rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.5s var(--transition);
    border: 1px solid rgba(255,255,255,0.5);
}

.love-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: rgba(255,255,255,0.85);
}

.love-quote-icon {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--rose);
    opacity: 0.15;
    line-height: 0.8;
    margin-bottom: 0.4rem;
}

.love-card p {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.love-author {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.love-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.love-location {
    font-size: 0.85rem;
    color: var(--muted);
}

.love-stars {
    margin-top: 0.5rem;
    color: #F5A623;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

/* ========================================
   ✦ FINAL CTA
   ======================================== */
.final {
    padding: 8rem 5vw;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-inner {
    max-width: 600px;
    margin: 0 auto;
}

.final-deco {
    font-size: 2rem;
    color: var(--rose);
    opacity: 0.15;
    margin-bottom: 1rem;
    display: inline-block;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.final h2 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.final h2 .highlight {
    color: var(--rose);
    font-style: italic;
}

.final p {
    color: var(--muted);
    margin-bottom: 2.4rem;
    font-size: 1.15rem;
}

/* ========================================
   ✦ FOOTER
   ======================================== */
.footer {
    background: var(--ink);
    color: var(--cream);
    padding: 3.5rem 5vw 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 600px;
    margin: 0 auto;
}

.footer .logo {
    color: var(--cream);
    display: inline-flex;
    margin-bottom: 0.4rem;
}

.footer .logo .logo-text {
    color: var(--cream);
    background: none;
    -webkit-text-fill-color: var(--cream);
}

.footer .logo .logo-dot {
    color: var(--rose);
}

.footer-tagline {
    opacity: 0.4;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-socials a {
    font-size: 1.3rem;
    opacity: 0.4;
    transition: all 0.3s ease;
    color: var(--cream);
}

.footer-socials a:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: var(--rose);
}

.copy {
    font-size: 0.75rem;
    opacity: 0.2;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    letter-spacing: 0.03em;
}

.copy .heart {
    color: var(--rose);
    display: inline-block;
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* ========================================
   ✦ RESPONSIVE
   ======================================== */
@media (max-width: 1000px) {
    .bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .b1 {
        grid-column: 1 / 3;
        grid-row: auto;
        height: 400px;
    }

    .b2, .b3, .b4, .b5 {
        grid-column: auto;
        grid-row: auto;
        height: 280px;
    }

    .love-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .story-container,
    .custom-box {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story {
        padding: 4rem 1.5rem;
    }

    .story-visual {
        height: 400px;
    }

    .story-image-main {
        width: 85%;
        height: 80%;
    }

    .story-image-floating {
        width: 130px;
        height: 130px;
    }

    .story-text {
        max-width: 100%;
    }

    .custom-imgs {
        height: 400px;
        max-width: 450px;
        margin: 0 auto;
    }

    .ci1 {
        width: 65%;
        height: 320px;
        right: 0;
    }

    .ci2 {
        width: 50%;
        height: 240px;
    }
}

@media (max-width: 700px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 1.8rem 2rem;
        gap: 1.2rem;
        box-shadow: var(--shadow-md);
        border-top: 1px solid rgba(0,0,0,0.03);
    }

    .nav-links.open {
        display: flex;
    }

    .menu-btn {
        display: flex;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 10vw, 4rem);
    }

    .hero-text {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .bento {
        grid-template-columns: 1fr;
    }

    .b1, .b2, .b3, .b4, .b5 {
        grid-column: 1;
        height: 280px;
    }

    .story {
        padding: 3rem 1rem;
    }

    .story-container {
        gap: 2rem;
    }

    .story-visual {
        height: 320px;
    }

    .story-image-main {
        width: 90%;
        height: 75%;
    }

    .story-image-floating {
        width: 100px;
        height: 100px;
        border-width: 6px;
    }

    .story-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .story-text-main {
        font-size: 1rem;
    }

    .story-text {
        font-size: 0.95rem;
    }

    .sign {
        font-size: 2rem !important;
    }

    .custom {
        padding: 4rem 1.5rem;
    }

    .custom-imgs {
        height: 300px;
    }

    .ci1 {
        width: 70%;
        height: 250px;
    }

    .ci2 {
        width: 55%;
        height: 170px;
    }

    .ci-label {
        display: none;
    }

    .love-card {
        padding: 1.8rem 1.5rem;
    }

    .love-card p {
        font-size: 1rem;
    }

    .final {
        padding: 4rem 1.5rem;
    }

    .btn-fill.big {
        padding: 1rem 1.8rem;
        font-size: 0.9rem;
    }

    .sec-head h2 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .collection {
        padding: 4rem 1.5rem;
    }

    .marquee-inner {
        font-size: 0.75rem;
        gap: 1.5rem;
    }

    .nav {
        padding: 1rem 1.5rem;
    }

    .logo {
        font-size: 1.6rem;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .logo-dot {
        font-size: 2rem;
    }

    .logo-icon {
        font-size: 1.4rem;
    }

    .hero-btns .btn-line span {
        display: none;
    }

    .hero-btns .btn-line {
        padding: 1.05rem 1.2rem;
    }

    .particles {
        display: none;
    }
}

@media (max-width: 400px) {
    .story-visual {
        height: 260px;
    }

    .story-image-floating {
        width: 80px;
        height: 80px;
    }
}