/* Page-specific styles for om-oss.cfm. Shared chrome is in /assets/app.css. */

:root {
    --deep: #ffffff; --navy: #f4f5f7; --slate: #e5e7eb;
    --gold: #f2ea25; --gold-light: #f5ef5a; --gold-dark: #c4bd00;
    --gold-glow: rgba(242, 234, 37, 0.12);
    --green: #1a1a1a; --green-mid: #404040;
    --green-glow: rgba(0, 0, 0, 0.05);
    --cream: #1a1a2e; --text-muted: #6b7280; --text-body: #374151;
    --glass: rgba(255, 255, 255, 0.92); --glass-border: rgba(0, 0, 0, 0.08);
    --radius: 16px; --radius-sm: 10px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
}

/* ─── PAGE HERO ─── */
.page-hero { padding: 10rem 3rem 5rem; text-align: center; background: var(--navy); }
.page-hero .section-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 1rem; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: var(--cream); margin-bottom: 1rem; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; line-height: 1.7; font-weight: 300; }

section { padding: 5rem 3rem; }
.section-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 1rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--cream); margin-bottom: 1rem; line-height: 1.15; }

/* ─── STORY ─── */
.story-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; max-width: 1100px; margin: 0 auto; align-items: center;
}

.story-text p {
    font-size: 1rem; color: var(--text-body); line-height: 1.8; margin-bottom: 1.5rem;
}

.story-visual {
    background: linear-gradient(135deg, var(--green), var(--green-mid));
    border-radius: var(--radius); padding: 3rem;
    text-align: center; color: #fff;
    position: relative; overflow: hidden;
}

.story-visual::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(242, 234, 37, 0.15), transparent 60%);
}

.story-visual .year {
    position: relative;
    font-family: var(--font-display); font-size: 6rem; font-weight: 700;
    color: var(--gold); line-height: 1; margin-bottom: 0.5rem;
}

.story-visual .tagline {
    position: relative;
    font-size: 1rem; font-weight: 300; opacity: 0.85;
}

.story-visual .brand {
    position: relative;
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
    margin-top: 1rem; color: var(--gold-light);
}

/* ─── VALUES ─── */
.values-section { background: var(--navy); }

.values-header { text-align: center; margin-bottom: 3rem; }

.values-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}

.value-card {
    background: #fff; border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius); padding: 2.25rem; text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: rgba(0, 0, 0, 0.2); transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.value-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--green-glow); border: 1px solid rgba(0, 0, 0, 0.12);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem; font-size: 1.5rem;
}

.value-card h3 {
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
    color: var(--cream); margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.85rem; color: var(--text-muted); line-height: 1.6;
}

/* ─── BUSINESS ─── */
.business-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem; max-width: 1100px; margin: 0 auto;
}

.business-header { text-align: center; margin-bottom: 3rem; max-width: 1100px; margin-left: auto; margin-right: auto; }

.business-card {
    background: var(--navy); border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius); padding: 2.5rem; transition: all 0.3s;
}

.business-card:hover {
    border-color: rgba(0, 0, 0, 0.2); transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.business-card-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--green-glow); border: 1px solid rgba(0, 0, 0, 0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; margin-bottom: 1.5rem;
}

.business-card h3 {
    font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
    color: var(--cream); margin-bottom: 0.75rem;
}

.business-card p {
    font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem;
}

.business-card a {
    color: var(--green); text-decoration: none; font-weight: 500; font-size: 0.85rem;
}

.business-card a:hover { text-decoration: underline; }

/* ─── COMPANY INFO ─── */
.info-section { background: var(--navy); }

.info-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; max-width: 1000px; margin: 0 auto;
}

.info-card {
    background: #fff; border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius); padding: 2rem; text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.info-card .info-label {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem;
}

.info-card .info-value {
    font-size: 1rem; color: var(--cream); font-weight: 500; line-height: 1.6;
}

@media (max-width: 768px) {
    .page-hero { padding: 8rem 1.5rem 3rem; }
    section { padding: 3rem 1.5rem; }
    .story-grid { grid-template-columns: 1fr; gap: 2rem; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .business-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
}
