@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
    --black: #0A0A0A;
    --ink: #1C1C1C;
    --ink2: #4A4A4A;
    --ink3: #9A9A9A;
    --gold: #B8832A;
    --gold2: #D4A045;
    --gold-pale: #FBF6ED;
    --gold-line: #E8D5B0;
    --white: #FFFFFF;
    --off: #FAFAF9;
    --surf: #F5F4F1;
    --stroke: #EBEBEA;
    --teal: #146B58;
    --teal-pale: #EAF4F0;
    --rose: #B03050;
    --rose-pale: #FAECF0;
}

/* Layout - Sticky Footer Setup */
html, body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body {
    flex: 1;
    overflow-x: hidden;
}

/* Main content wrapper - pushes footer to bottom */
body > *:not(footer):not(.toast-zone) {
    flex-shrink: 0;
}

body > footer {
    margin-top: auto;
    flex-shrink: 0;
    width: 100%;
}

/* Navbar */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--stroke);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 52px;
    height: 66px;
    min-height: 66px;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    transition: gap 0.3s ease;
    max-width: 70%;
}

.logo-mark {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    background: var(--black);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.logo-mark svg {
    width: 22px;
    height: 22px;
}

.logo-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-wordmark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.01em;
    transition: font-size 0.3s ease;
    white-space: nowrap;
}

.logo-wordmark span {
    color: var(--gold);
}

.logo-sub {
    font-size: 9px;
    color: var(--ink3);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 1px;
    transition: font-size 0.3s ease, letter-spacing 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 13px;
    color: var(--ink2);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: color .2s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-search {
    border: 1px solid var(--stroke);
    border-radius: 10px;
    padding: 9px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: var(--off);
    transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-search:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
}

.nav-search span {
    font-size: 13px;
    color: var(--ink3);
}

.nav-search svg {
    width: 15px;
    height: 15px;
    color: var(--ink3);
}

.nav-cart {
    background: linear-gradient(145deg, var(--black), #1A1A1A);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cart-badge {
    background: linear-gradient(145deg, var(--gold), var(--gold2));
    color: var(--black);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--black);
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--white);
    z-index: 90;
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--stroke);
}

.mobile-menu.open {
    height: calc(100vh - 66px);
}

.mobile-menu-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-content a {
    font-size: 18px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--stroke);
}

.mobile-menu-content a.active {
    color: var(--gold);
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--white) 0%, var(--off) 100%);
    border-top: 1px solid var(--stroke);
    padding: 60px 52px 28px;
    transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-sizing: border-box;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 52px;
    margin-bottom: 52px;
}

.foot-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.fl-mark {
    width: 34px;
    height: 34px;
    background: linear-gradient(145deg, var(--black), #1A1A1A);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fl-mark svg {
    width: 16px;
    height: 16px;
}

.fl-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
}

.fl-name span {
    color: var(--gold);
}

.foot-about {
    font-size: 14px;
    color: var(--ink3);
    line-height: 1.7;
    font-weight: 300;
    max-width: 240px;
    margin-bottom: 22px;
}

.foot-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fbadge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(145deg, var(--surf), var(--white));
    border: 1px solid var(--stroke);
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 11px;
    color: var(--ink3);
}

.fbadge svg {
    width: 13px;
    height: 13px;
    color: var(--teal);
}

.foot-col h5 {
    font-size: 12px;
    color: var(--black);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 18px;
}

.foot-col a {
    display: block;
    font-size: 14px;
    color: var(--ink3);
    text-decoration: none;
    margin-bottom: 12px;
    font-weight: 300;
    transition: all .2s ease;
}

.foot-col a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.foot-bottom {
    border-top: 1px solid var(--stroke);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.foot-copy {
    font-size: 13px;
    color: var(--ink3);
}

.foot-pays {
    display: flex;
    gap: 10px;
}

.fpay {
    background: linear-gradient(145deg, var(--surf), var(--white));
    border: 1px solid var(--stroke);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 11px;
    color: var(--ink3);
    font-weight: 500;
}

/* Toast */
.toast-zone {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.toast {
    background: linear-gradient(145deg, var(--black), #1A1A1A);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 400;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid var(--gold);
    pointer-events: auto;
    max-width: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.toast.in {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal="zoom"] { transform: scale(0.9); }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }

.revealed {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* Responsive */
@media (max-width: 1024px) {
    nav { padding: 0 24px; height: 64px; }
    .logo-mark { width: 36px; height: 36px; }
    .logo-wordmark { font-size: 20px; }
    .nav-links { gap: 24px; }
    .nav-links a { font-size: 12px; }
    footer { padding: 48px 24px 24px; }
    .foot-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    nav { padding: 0 16px; height: 60px; min-height: 60px; }
    .logo { gap: 10px; }
    .logo-mark { width: 34px; height: 34px; }
    .logo-wordmark { font-size: 19px; }
    .nav-links { display: none; }
    .menu-toggle { display: flex; align-items: center; justify-content: center; }
    .mobile-menu { top: 60px; }
    .mobile-menu.open { height: calc(100vh - 60px); overflow-y: auto; }
    footer { padding: 40px 20px 24px; }
    .foot-grid { grid-template-columns: 1fr; gap: 32px; }
    .foot-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 640px) {
    nav { padding: 0 12px; height: 56px; min-height: 56px; }
    .logo { gap: 10px; max-width: 60%; }
    .logo-mark { width: 32px; height: 32px; min-width: 32px; }
    .logo-mark svg { width: 18px; height: 18px; }
    .logo-wordmark { font-size: 17px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .logo-sub { font-size: 8px; letter-spacing: 0.1em; }
    .nav-right { gap: 8px; flex-shrink: 0; }
    .nav-search { padding: 8px; border-radius: 50%; min-width: 36px; min-height: 36px; justify-content: center; }
    .nav-search span { display: none; }
    .nav-search svg { width: 18px; height: 18px; }
    .nav-cart { padding: 8px 12px; font-size: 12px; gap: 6px; min-height: 36px; }
    .nav-cart svg { width: 16px; height: 16px; }
    .cart-badge { width: 16px; height: 16px; font-size: 9px; }
    .menu-toggle { padding: 6px; display: flex; align-items: center; justify-content: center; }
    .menu-toggle svg { width: 22px; height: 22px; }
    .mobile-menu { top: 56px; }
    .mobile-menu.open { height: calc(100vh - 56px); overflow-y: auto; }
    .mobile-menu-content { padding: 24px 20px; gap: 12px; }
    .mobile-menu-content a { font-size: 16px; padding-bottom: 10px; line-height: 1.4; }
    .mobile-menu-content .btn-dark { padding: 12px 20px; font-size: 13px; margin-top: 16px; }
    
    footer { padding: 32px 16px 20px; width: 100%; box-sizing: border-box; }
    .foot-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 28px; }
    .foot-logo-row { margin-bottom: 12px; }
    .fl-mark { width: 30px; height: 30px; }
    .fl-mark svg { width: 14px; height: 14px; }
    .fl-name { font-size: 19px; }
    .foot-about { font-size: 13px; max-width: 100%; margin-bottom: 14px; line-height: 1.6; }
    .foot-badges { gap: 8px; flex-wrap: wrap; }
    .fbadge { padding: 6px 12px; font-size: 10px; }
    .fbadge svg { width: 12px; height: 12px; }
    .foot-col h5 { font-size: 11px; margin-bottom: 12px; }
    .foot-col a { font-size: 13px; margin-bottom: 8px; }
    .foot-bottom { flex-direction: column; gap: 14px; text-align: center; padding-top: 18px; }
    .foot-copy { font-size: 12px; }
    .foot-pays { flex-wrap: wrap; justify-content: center; gap: 6px; }
    .fpay { padding: 5px 10px; font-size: 10px; }
    
    .toast-zone { bottom: 16px; right: 16px; left: 16px; align-items: center; }
    .toast { max-width: 100%; width: 100%; text-align: center; font-size: 13px; padding: 12px 20px; box-sizing: border-box; }
}

@media (max-width: 480px) {
    nav { padding: 0 10px; height: 54px; min-height: 54px; }
    .logo { gap: 8px; max-width: 55%; }
    .logo-mark { width: 30px; height: 30px; min-width: 30px; }
    .logo-wordmark { font-size: 15px; }
    .logo-sub { font-size: 7px; letter-spacing: 0.08em; }
    .nav-right { gap: 6px; }
    .nav-search { padding: 6px; min-width: 32px; min-height: 32px; }
    .nav-search svg { width: 16px; height: 16px; }
    .nav-cart { padding: 6px 10px; font-size: 11px; min-height: 32px; }
    .nav-cart svg { width: 14px; height: 14px; }
    .cart-badge { width: 16px; height: 16px; font-size: 9px; }
    .menu-toggle { padding: 5px; }
    .menu-toggle svg { width: 20px; height: 20px; }
    .mobile-menu { top: 54px; }
    .mobile-menu.open { height: calc(100vh - 54px); }
    .mobile-menu-content { padding: 20px 16px; }
    .mobile-menu-content a { font-size: 15px; padding-bottom: 8px; }
    
    footer { padding: 28px 12px 16px; width: 100%; }
    .foot-grid { gap: 20px; margin-bottom: 24px; }
    .fl-name { font-size: 17px; }
    .foot-about { font-size: 12px; line-height: 1.5; }
    .foot-badges { gap: 6px; }
    .fbadge { padding: 5px 10px; font-size: 9px; }
    .foot-col h5 { font-size: 10px; margin-bottom: 10px; }
    .foot-col a { font-size: 12px; margin-bottom: 6px; }
    .foot-bottom { gap: 12px; padding-top: 16px; }
    .foot-copy { font-size: 11px; }
    .foot-pays { gap: 5px; }
    .fpay { padding: 4px 8px; font-size: 9px; }
}

@media (max-width: 360px) {
    nav { padding: 0 8px; height: 52px; min-height: 52px; }
    .logo { gap: 6px; max-width: 50%; }
    .logo-mark { width: 28px; height: 28px; min-width: 28px; }
    .logo-wordmark { font-size: 14px; }
    .logo-sub { font-size: 6px; letter-spacing: 0.06em; }
    .nav-right { gap: 4px; }
    .nav-search { min-width: 30px; min-height: 30px; padding: 5px; }
    .nav-search svg { width: 14px; height: 14px; }
    .nav-cart { padding: 5px 8px; font-size: 10px; min-height: 30px; gap: 4px; }
    .nav-cart svg { width: 12px; height: 12px; }
    .cart-badge { width: 12px; height: 12px; font-size: 7px; }
    .menu-toggle { padding: 4px; }
    .menu-toggle svg { width: 18px; height: 18px; }
    .mobile-menu { top: 52px; }
    .mobile-menu.open { height: calc(100vh - 52px); }
    .mobile-menu-content { padding: 16px 14px; }
    .mobile-menu-content a { font-size: 14px; padding-bottom: 6px; }
    
    footer { padding: 24px 10px 14px; }
    .foot-grid { gap: 18px; margin-bottom: 20px; }
    .fl-mark { width: 26px; height: 26px; }
    .fl-mark svg { width: 12px; height: 12px; }
    .fl-name { font-size: 16px; }
    .foot-about { font-size: 11px; margin-bottom: 12px; }
    .foot-badges { gap: 5px; }
    .fbadge { padding: 4px 8px; font-size: 9px; }
    .foot-col h5 { font-size: 9px; margin-bottom: 8px; }
    .foot-col a { font-size: 11px; margin-bottom: 5px; }
    .foot-bottom { gap: 10px; padding-top: 14px; }
    .foot-copy { font-size: 10px; }
    .foot-pays { gap: 4px; }
    .fpay { padding: 3px 6px; font-size: 8px; }
}