/* ===== 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, sans-serif;
    color: #1a2a3a;
    background: #faf9f7;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --navy: #0f2a4a;
    --navy-light: #1a3a5c;
    --navy-dark: #091e35;
    --gold: #c9a84c;
    --gold-light: #d4b96a;
    --gold-dark: #b8943f;
    --cream: #faf9f7;
    --warm-gray: #f0ece4;
    --text: #1a2a3a;
    --text-light: #4a5568;
    --text-muted: #718096;
    --white: #ffffff;
    --border: #e2ddd5;
    --shadow-sm: 0 1px 3px rgba(15,42,74,0.06);
    --shadow-md: 0 4px 20px rgba(15,42,74,0.08);
    --shadow-lg: 0 12px 40px rgba(15,42,74,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm);
    font-weight: 500; font-size: 0.9375rem; letter-spacing: 0.01em;
    transition: all var(--transition); white-space: nowrap;
}
.btn--gold {
    background: var(--gold); color: var(--navy-dark);
    border: 2px solid var(--gold);
}
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--light {
    background: var(--white); color: var(--navy);
    border: 2px solid var(--white);
}
.btn--light:hover { background: var(--warm-gray); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline-light {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn--full { width: 100%; }

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250,249,247,0.92);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
    width: 36px; height: 36px; border-radius: var(--radius-sm);
    background: var(--navy); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-weight: 600; font-size: 0.8125rem;
    letter-spacing: 0.05em;
}
.logo-text { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.125rem; color: var(--navy); }
.nav-list { display: flex; align-items: center; gap: 32px; }
.nav-list a {
    font-size: 0.875rem; font-weight: 500; color: var(--text-light);
    letter-spacing: 0.02em; transition: color var(--transition);
    position: relative;
}
.nav-list a:not(.btn):hover { color: var(--navy); }
.nav-list a:not(.btn)::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px;
    background: var(--gold); transition: width var(--transition);
}
.nav-list a:not(.btn):hover::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger {
    width: 20px; height: 2px; background: var(--navy); border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    padding-top: 72px; min-height: 100vh; min-height: 100dvh;
    background: var(--cream);
    display: flex; align-items: center;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: center; padding: 64px 0;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8125rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--gold-dark); margin-bottom: 24px;
}
.hero-eyebrow::before {
    content: ''; width: 24px; height: 1.5px; background: var(--gold);
}
.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700; line-height: 1.1; color: var(--navy);
    margin-bottom: 24px;
}
.hero-headline br { display: none; }
.hero-desc {
    font-size: 1.125rem; color: var(--text-light); line-height: 1.7;
    max-width: 480px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
    display: flex; align-items: center; gap: 0;
    padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-stat { flex: 1; text-align: left; }
.stat-number {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 1.75rem; font-weight: 700; color: var(--navy); line-height: 1;
    margin-bottom: 6px;
}
.stat-label { font-size: 0.8125rem; color: var(--text-muted); letter-spacing: 0.03em; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
.hero-image { position: relative; }
.hero-img-main {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
    position: absolute; bottom: -32px; left: -48px;
    border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 4px solid var(--cream);
}
.hero-badge {
    position: absolute; top: -20px; right: -20px;
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--gold); color: var(--navy-dark);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 4px; font-size: 0.6875rem; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    box-shadow: var(--shadow-md);
}
.hero-badge svg { width: 16px; height: 16px; }

/* ===== SECTION COMMON ===== */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-tag {
    display: inline-block; font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-dark);
    margin-bottom: 16px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700; color: var(--navy); line-height: 1.15;
    margin-bottom: 16px;
}
.section-desc { font-size: 1.0625rem; color: var(--text-light); line-height: 1.7; max-width: 560px; }
.section-header--center .section-desc { margin: 0 auto; }

/* ===== COLLECTION ===== */
.collection { padding: 100px 0; }
.collection-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
.collection-card {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    cursor: pointer; min-height: 320px;
}
.collection-card--large { grid-column: span 7; }
.collection-card--wide { grid-column: span 12; min-height: 260px; }
.collection-card:not(.collection-card--large):not(.collection-card--wide) { grid-column: span 5; }
.collection-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.collection-card:hover img { transform: scale(1.05); }
.collection-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,42,74,0.85) 0%, rgba(15,42,74,0.2) 50%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 32px; transition: background var(--transition);
}
.collection-card:hover .collection-card-overlay {
    background: linear-gradient(to top, rgba(15,42,74,0.9) 0%, rgba(15,42,74,0.3) 60%, transparent 100%);
}
.collection-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 600; color: var(--white);
    margin-bottom: 8px;
}
.collection-card p { font-size: 0.9375rem; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.collection-card-link {
    font-size: 0.875rem; font-weight: 600; color: var(--gold);
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap var(--transition);
}
.collection-card:hover .collection-card-link { gap: 10px; }

/* ===== CRAFT ===== */
.craft { padding: 100px 0; background: var(--navy); color: var(--white); }
.craft-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: center;
}
.craft-image { position: relative; }
.craft-image img { border-radius: var(--radius-lg); width: 100%; height: 100%; object-fit: cover; }
.craft-image-accent {
    position: absolute; top: -24px; right: -24px;
    color: var(--gold); opacity: 0.4;
}
.craft .section-tag { color: var(--gold); }
.craft .section-title { color: var(--white); }
.craft-intro {
    font-size: 1.0625rem; color: rgba(255,255,255,0.7); line-height: 1.7;
    margin-bottom: 40px;
}
.craft-features { display: flex; flex-direction: column; gap: 32px; }
.craft-feature { display: flex; gap: 20px; }
.craft-feature-icon {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: var(--radius-md);
    background: rgba(201,168,76,0.15); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
}
.craft-feature-title {
    font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 4px;
}
.craft-feature-desc { font-size: 0.9375rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: center;
}
.about-text {
    font-size: 1.0625rem; color: var(--text-light); line-height: 1.75;
    margin-bottom: 16px;
}
.about-values { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-value {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 20px; background: var(--warm-gray); border-radius: var(--radius-md);
}
.about-value-number {
    font-family: 'Playfair Display', serif; font-size: 1.25rem;
    font-weight: 700; color: var(--gold-dark); line-height: 1;
}
.about-value-text { font-size: 0.875rem; font-weight: 500; color: var(--text); line-height: 1.4; padding-top: 4px; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-small {
    position: absolute; bottom: -40px; right: -32px;
    border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 4px solid var(--cream);
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--warm-gray); }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-quote-mark {
    font-family: 'Playfair Display', serif; font-size: 4rem;
    line-height: 1; color: var(--gold); margin-bottom: 8px;
}
.testimonial-text {
    font-size: 0.9375rem; color: var(--text-light); line-height: 1.75;
    margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; flex-direction: column; gap: 2px; }
.testimonial-name { font-size: 0.9375rem; font-weight: 600; color: var(--navy); }
.testimonial-location { font-size: 0.8125rem; color: var(--text-muted); }

/* ===== VISIT ===== */
.visit { padding: 100px 0; }
.visit-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: start;
}
.visit-desc { font-size: 1.0625rem; color: var(--text-light); line-height: 1.7; margin-bottom: 40px; }
.visit-details { display: flex; flex-direction: column; gap: 24px; }
.visit-detail { display: flex; gap: 16px; }
.visit-detail-icon {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius-md);
    background: var(--navy); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
}
.visit-detail-label {
    display: block; font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted);
    margin-bottom: 4px;
}
.visit-detail-value { font-size: 0.9375rem; color: var(--text); line-height: 1.5; }
.visit-detail-value a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; transition: color var(--transition); }
.visit-detail-value a:hover { color: var(--gold-dark); }
.visit-form-wrap { }
.visit-form-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.visit-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 8px;
}
.visit-form-subtitle { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label {
    display: block; font-size: 0.8125rem; font-weight: 500;
    color: var(--text); margin-bottom: 6px;
}
.form-input {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); font-size: 0.9375rem; color: var(--text);
    background: var(--cream); transition: border-color var(--transition), box-shadow var(--transition);
    font-family: inherit;
}
.form-input:focus {
    outline: none; border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-input::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 16px; border-radius: var(--radius-sm);
    background: #f0fdf4; border: 1px solid #bbf7d0;
    color: #166534; font-size: 0.9375rem; font-weight: 500;
    margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px;
    padding-bottom: 48px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-tagline { font-size: 0.9375rem; line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-heading {
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--gold); margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9375rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact address { font-style: normal; display: flex; flex-direction: column; gap: 8px; font-size: 0.9375rem; }
.footer-contact a { transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0; text-align: center;
    font-size: 0.8125rem; color: rgba(255,255,255,0.4);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .collection-card--large { grid-column: span 8; }
    .collection-card:not(.collection-card--large):not(.collection-card--wide) { grid-column: span 4; }
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-image { max-width: 480px; }
    .hero-img-accent { left: -16px; bottom: -16px; }
    .craft-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-small { right: -16px; bottom: -24px; }
    .visit-grid { grid-template-columns: 1fr; gap: 48px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-list {
        position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
        background: rgba(250,249,247,0.98); backdrop-filter: blur(12px);
        flex-direction: column; justify-content: center; gap: 24px;
        transform: translateX(100%); transition: transform var(--transition);
    }
    .nav-list.open { transform: translateX(0); }
    .nav-list a { font-size: 1.125rem; }
    .hero { padding-top: 72px; }
    .hero-headline br { display: block; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .hero-stat-divider { display: none; }
    .collection-grid { grid-template-columns: 1fr; }
    .collection-card--large,
    .collection-card:not(.collection-card--large):not(.collection-card--wide) { grid-column: span 1; }
    .collection-card--wide { grid-column: span 1; }
    .about-values { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-img-accent { display: none; }
    .hero-badge { width: 64px; height: 64px; top: -12px; right: -12px; }
    .craft-image-accent { display: none; }
    .about-img-small { display: none; }
}
