/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #0a1628;
    color: #e8e0d0;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ===== Focus ===== */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: #c9a84c; color: #0a1628; padding: .5rem 1rem;
    border-radius: 0 0 6px 6px; z-index: 200; font-weight: 600;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid #c9a84c; outline-offset: 2px; }

/* ===== Container ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; color: #f5f0e8; }

/* ===== Eyebrow ===== */
.section-eyebrow {
    font-family: 'Inter', sans-serif; font-size: .75rem; font-weight: 600;
    letter-spacing: .2em; text-transform: uppercase; color: #c9a84c;
    margin-bottom: .75rem;
}

/* ===== Section Title ===== */
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }

/* ===== Divider ===== */
.section-divider {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, #c9a84c, transparent);
    margin-bottom: 2.5rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: .9rem;
    letter-spacing: .04em; padding: .875rem 1.75rem;
    border-radius: 6px; transition: all .3s ease; white-space: nowrap;
}
.btn-gold {
    background: linear-gradient(135deg, #c9a84c, #a8872e);
    color: #0a1628; border: 1px solid #c9a84c;
}
.btn-gold:hover { background: linear-gradient(135deg, #d4b85c, #b8973e); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
.btn-outline-gold {
    background: transparent; color: #c9a84c; border: 1px solid rgba(201,168,76,0.5);
}
.btn-outline-gold:hover { background: rgba(201,168,76,0.1); border-color: #c9a84c; transform: translateY(-2px); }
.btn-sm { padding: .6rem 1.25rem; font-size: .8rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== Header ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10,22,40,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    transition: background .3s ease, box-shadow .3s ease;
}
.header.scrolled {
    background: rgba(10,22,40,0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: .6rem; }
.logo-text { font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; font-weight: 700; color: #f5f0e8; }
.logo-accent { color: #c9a84c; }

/* ===== Nav ===== */
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-menu a {
    font-size: .875rem; font-weight: 500; color: rgba(232,224,208,0.75);
    letter-spacing: .03em; transition: color .25s ease; position: relative;
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
    background: #c9a84c; transition: width .3s ease;
}
.nav-menu a:hover { color: #c9a84c; }
.nav-menu a:hover::after { width: 100%; }

/* Hamburger */
.nav-toggle { display: none; padding: .5rem; z-index: 110; }
.hamburger {
    display: block; width: 22px; height: 2px; background: #c9a84c;
    position: relative; transition: all .3s ease;
}
.hamburger::before, .hamburger::after {
    content: ''; position: absolute; width: 22px; height: 2px;
    background: #c9a84c; left: 0; transition: all .3s ease;
}
.hamburger::before { top: -7px; }
.hamburger::after { bottom: -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 { bottom: 0; transform: rotate(-45deg); }

/* ===== Hero ===== */
.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; position: relative;
    padding: 7rem 0 4rem; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 70% 40%, rgba(201,168,76,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center; position: relative;
}
.hero-eyebrow {
    font-size: .75rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
    color: #c9a84c; margin-bottom: 1.25rem;
}
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1.15;
    margin-bottom: 1.5rem; color: #f5f0e8;
}
.hero-title em { font-style: italic; color: #c9a84c; }
.hero-subtitle {
    font-size: 1.05rem; color: rgba(232,224,208,0.65); line-height: 1.8;
    margin-bottom: 2rem; max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-badges { display: flex; gap: 2rem; flex-wrap: wrap; }
.badge-item { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: rgba(232,224,208,0.6); }
.badge-item svg { flex-shrink: 0; }

/* Hero Image */
.hero-image-wrapper { position: relative; }
.hero-image-frame {
    position: relative; border-radius: 12px; overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.hero-image-frame img { width: 100%; height: 500px; object-fit: cover; }
.hero-image-frame::after {
    content: ''; position: absolute; inset: 0;
    border-radius: 12px; padding: 1px;
    background: linear-gradient(180deg, rgba(201,168,76,0.3) 0%, transparent 50%, rgba(201,168,76,0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    pointer-events: none;
}
.hero-image-accent {
    position: absolute; top: -20px; right: -20px; width: 120px; height: 120px;
    border: 1px solid rgba(201,168,76,0.2); border-radius: 12px; z-index: -1;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: .5rem;
    color: rgba(201,168,76,0.5); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(180deg, rgba(201,168,76,0.5), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 1; transform: scaleY(1); } 50% { opacity: .4; transform: scaleY(.6); } }

/* ===== Collections ===== */
.collections { padding: 7rem 0; position: relative; }
.collections::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.collection-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.1);
    border-radius: 12px; overflow: hidden; transition: all .4s ease;
}
.collection-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 40px rgba(201,168,76,0.05); }
.card-image { position: relative; overflow: hidden; }
.card-image img { width: 100%; height: 200px; object-fit: cover; transition: transform .6s ease; }
.collection-card:hover .card-image img { transform: scale(1.05); }
.card-overlay {
    position: absolute; top: 1rem; right: 1rem;
    background: rgba(10,22,40,0.8); backdrop-filter: blur(8px);
    padding: .3rem .75rem; border-radius: 20px;
    border: 1px solid rgba(201,168,76,0.3);
}
.card-tag { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #c9a84c; }
.card-content { padding: 1.75rem; }
.card-icon { margin-bottom: 1rem; }
.card-title { font-size: 1.35rem; margin-bottom: .75rem; }
.card-desc { font-size: .9rem; color: rgba(232,224,208,0.6); line-height: 1.7; margin-bottom: 1.25rem; }
.card-list { display: flex; flex-direction: column; gap: .5rem; }
.card-list li {
    font-size: .85rem; color: rgba(232,224,208,0.55);
    padding-left: 1.25rem; position: relative;
}
.card-list li::before {
    content: ''; position: absolute; left: 0; top: .55em;
    width: 5px; height: 5px; border-radius: 50%;
    background: #c9a84c; opacity: .6;
}

/* ===== About ===== */
.about { padding: 7rem 0; position: relative; }
.about::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-images { position: relative; padding-bottom: 2rem; }
.about-img-main { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-secondary {
    position: absolute; bottom: -40px; right: -30px;
    width: 55%; border-radius: 10px; overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border: 3px solid rgba(201,168,76,0.15);
}
.about-img-secondary img { width: 100%; height: 260px; object-fit: cover; }
.about-accent-box {
    position: absolute; top: -20px; left: -20px;
    background: linear-gradient(135deg, #c9a84c, #a8872e);
    border-radius: 10px; padding: 1.25rem 1.5rem;
    display: flex; flex-direction: column; gap: .25rem;
    box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}
.accent-number { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 700; color: #0a1628; line-height: 1; }
.accent-label { font-size: .75rem; color: rgba(10,22,40,0.7); font-weight: 500; line-height: 1.4; }
.about-content .section-title { margin-top: .25rem; }
.about-text { font-size: .95rem; color: rgba(232,224,208,0.65); line-height: 1.8; margin-bottom: 1.25rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.feature-item { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: rgba(232,224,208,0.7); }
.feature-item svg { flex-shrink: 0; }

/* ===== Visit ===== */
.visit { padding: 7rem 0; }
.visit-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.12);
    border-radius: 16px; overflow: hidden;
    display: grid; grid-template-columns: 1.2fr 1fr;
}
.visit-content { padding: 4rem; }
.visit-title { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1.25rem; }
.visit-desc { font-size: .95rem; color: rgba(232,224,208,0.6); line-height: 1.8; margin-bottom: 2.5rem; }
.visit-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.detail-item { display: flex; align-items: flex-start; gap: 1rem; }
.detail-icon { flex-shrink: 0; margin-top: .15rem; }
.detail-label { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(201,168,76,0.7); margin-bottom: .25rem; }
.detail-value { font-size: .95rem; color: #e8e0d0; line-height: 1.6; }
.detail-value a { color: #c9a84c; transition: color .2s; }
.detail-value a:hover { color: #d4b85c; }
.visit-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.visit-map { padding: 2rem; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.2); }
.map-placeholder {
    text-align: center; padding: 3rem 2rem;
    border: 1px dashed rgba(201,168,76,0.2); border-radius: 12px;
    width: 100%; color: rgba(232,224,208,0.5);
}
.map-placeholder p { font-size: .9rem; margin-top: .75rem; }

/* ===== Contact ===== */
.contact { padding: 7rem 0; position: relative; }
.contact::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-text { font-size: .95rem; color: rgba(232,224,208,0.6); line-height: 1.8; margin-bottom: 2rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-method { display: flex; align-items: center; gap: 1rem; }
.cm-icon { flex-shrink: 0; }
.cm-label { font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(201,168,76,0.6); margin-bottom: .15rem; }
.cm-value { font-size: .9rem; color: #e8e0d0; }
.cm-value a { color: #c9a84c; transition: color .2s; }
.cm-value a:hover { color: #d4b85c; }

/* Form */
.contact-form {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.1);
    border-radius: 12px; padding: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block; font-size: .8rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase; color: rgba(201,168,76,0.8);
    margin-bottom: .5rem;
}
.form-group input, .form-group textarea {
    width: 100%; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.15); border-radius: 6px;
    padding: .875rem 1rem; color: #e8e0d0; font-size: .9rem;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(232,224,208,0.3); }
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: #c9a84c;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .78rem; color: rgba(232,224,208,0.35); margin-top: 1rem; text-align: center; }
.form-success {
    display: none; align-items: center; gap: .75rem;
    background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3);
    border-radius: 8px; padding: 1rem 1.25rem; margin-top: 1rem;
    font-size: .9rem; color: #c9a84c;
}
.form-success.visible { display: flex; }

/* ===== Footer ===== */
.footer { padding: 4rem 0 2rem; border-top: 1px solid rgba(201,168,76,0.1); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-tagline { font-size: .875rem; color: rgba(232,224,208,0.5); line-height: 1.7; max-width: 280px; }
.footer-heading {
    font-family: 'Inter', sans-serif; font-size: .75rem; font-weight: 600;
    letter-spacing: .15em; text-transform: uppercase; color: #c9a84c;
    margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .875rem; color: rgba(232,224,208,0.55); transition: color .2s; }
.footer-links a:hover { color: #c9a84c; }
.footer-contact address { font-style: normal; font-size: .875rem; color: rgba(232,224,208,0.55); line-height: 1.8; }
.footer-contact a { color: #c9a84c; transition: color .2s; }
.footer-contact a:hover { color: #d4b85c; }
.footer-bottom {
    border-top: 1px solid rgba(201,168,76,0.08);
    padding-top: 2rem; display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(232,224,208,0.35); }
.footer-note { font-size: .75rem !important; }

/* ===== Animations ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-grid { gap: 3rem; }
    .hero-image-frame img { height: 400px; }
    .collections-grid { gap: 1.5rem; }
    .about-grid { gap: 3rem; }
    .visit-card { grid-template-columns: 1fr; }
    .visit-content { padding: 3rem; }
    .visit-map { min-height: 300px; }
    .contact-grid { gap: 3rem; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed; top: 0; right: 0;
        width: 280px; height: 100vh;
        background: rgba(10,22,40,0.98); backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center;
        padding: 2rem; gap: 1.5rem;
        transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
        border-left: 1px solid rgba(201,168,76,0.15);
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-menu a { font-size: 1rem; }

    .hero { padding: 6rem 0 3rem; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-image-wrapper { order: -1; max-width: 400px; margin: 0 auto; }
    .hero-image-frame img { height: 350px; }
    .hero-image-accent { display: none; }
    .hero-scroll { display: none; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }

    .collections-grid { grid-template-columns: 1fr; max-width: 480px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-images { max-width: 480px; }
    .about-img-secondary { position: relative; bottom: auto; right: auto; width: 50%; margin-top: -1rem; }
    .about-accent-box { top: -15px; left: -10px; }
    .about-features { grid-template-columns: 1fr; }
    .visit-content { padding: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 1.75rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .hero-title { font-size: 1.85rem; }
    .hero-badges { flex-direction: column; gap: .75rem; }
    .about-img-main img, .about-img-secondary img { height: 220px; }
}
