/* Frumkin Brothers - Est. 1892 */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --navy: #1a2a3a;
    --navy-dark: #0f1a24;
    --gold: #c9a959;
    --gold-light: #d4bc7a;
    --cream: #f8f6f1;
    --cream-dark: #e8e4db;
    --charcoal: #2d2d2d;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    background: var(--cream);
}

h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--navy); }
a { color: var(--navy); }
a:hover { color: var(--gold); }

/* ===== NAVIGATION ===== */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}

.main-nav ul { display: flex; list-style: none; gap: 2rem; }
.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.main-nav a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    text-align: center;
    color: white;
    padding: 3rem 2rem;
}

.hero-content { max-width: 600px; }

.est-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

.logo-emblem {
    width: 120px;
    height: 120px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 auto 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold);
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 2rem auto;
}

.location {
    font-size: 1rem;
    opacity: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.legacy-text {
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.7;
    font-size: 1.1rem;
}

/* ===== STATS RIBBON ===== */
.stats-ribbon {
    display: flex;
    justify-content: center;
    background: var(--charcoal);
}

.stat-box {
    flex: 1;
    max-width: 200px;
    padding: 2rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-box:last-child { border-right: none; }

.stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
}

/* ===== TIMELINE STRIP ===== */
.timeline-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: var(--navy-dark);
    gap: 0;
}

.tl-point {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    text-align: center;
    padding: 0 1rem;
}

.tl-point span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.tl-point.active {
    color: white;
    background: rgba(201,169,89,0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
}

.tl-connector {
    width: 40px;
    height: 2px;
    background: var(--gold);
    opacity: 0.5;
}

/* ===== HOME GRID ===== */
.home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-card {
    background: white;
    padding: 2rem 1.5rem;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border-bottom: 3px solid transparent;
}

.grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-bottom-color: var(--gold);
}

.grid-card.featured {
    background: var(--navy);
    color: white;
}
.grid-card.featured h2 { color: white; }
.grid-card.featured p { color: rgba(255,255,255,0.8); }
.grid-card.featured:hover { border-bottom-color: var(--gold-light); }

.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.grid-card h2 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.grid-card p { color: #666; margin: 0; font-size: 0.9rem; }

/* ===== HOME QUOTE ===== */
.home-quote {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.home-quote blockquote {
    text-align: center;
    border-left: none;
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
    padding: 2.5rem;
    background: white;
}

/* ===== PAGE LAYOUT ===== */
.page {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.page .subtitle { color: var(--gold); font-size: 1.1rem; margin-bottom: 2rem; }
.page section { margin-bottom: 2rem; }
.page h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-dark);
}
.page section:first-of-type h2 { border-top: none; padding-top: 0; }

/* Lists */
.product-list, .link-list { list-style: none; margin: 1rem 0; }
.product-list li { padding: 0.5rem 0; border-bottom: 1px solid var(--cream-dark); }
.link-list li { padding: 1rem 0; border-bottom: 1px solid var(--cream-dark); }
.link-list a { font-weight: 600; display: block; }
.link-list span { font-size: 0.9rem; color: #666; }

/* Blockquote */
blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    padding: 1.5rem;
    background: white;
    border-left: 3px solid var(--gold);
    margin: 1.5rem 0;
}
blockquote cite {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.75rem;
    font-style: normal;
}

/* Dark Theme */
.page.dark {
    background: var(--navy);
    color: white;
    max-width: none;
    padding: 4rem 2rem;
    text-align: center;
}
.page.dark h1, .page.dark h2 { color: white; }
.page.dark .subtitle { color: var(--gold); }
.page.dark section h2 { border-color: rgba(255,255,255,0.1); }
.page.dark .highlight {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
}

/* ===== FOOTER ===== */
footer {
    padding: 2.5rem 2rem;
    text-align: center;
    background: var(--charcoal);
    color: white;
    font-size: 0.9rem;
}
footer a { color: var(--gold); }
footer.dark { background: var(--navy-dark); }
.footer-est {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .home-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline-strip { flex-wrap: wrap; gap: 0.5rem; }
    .tl-connector { display: none; }
}

@media (max-width: 768px) {
    .stats-ribbon { flex-wrap: wrap; }
    .stat-box {
        flex: 1 1 50%;
        max-width: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .stat-box:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
    .stat-box:nth-child(even) { border-right: none; }
    .stat-box:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2.25rem; letter-spacing: 3px; }
    .tagline { font-size: 1.2rem; }
    .logo-emblem { width: 90px; height: 90px; font-size: 2.25rem; }
    .main-nav { flex-direction: column; gap: 1rem; }
    .main-nav ul { gap: 1rem; flex-wrap: wrap; justify-content: center; }
    .home-grid { grid-template-columns: 1fr; }
    .stat-num { font-size: 2rem; }
}
