:root {
    --navy: #1a3267;
    --navy-deep: #0f1d3d;
    --navy-light: #2a4a8a;
    --gold: #f4b41a;
    --gold-light: #ffd54f;
    --gold-dark: #c9930f;
    --cream: #fdf8f0;
    --white: #ffffff;
    --charcoal: #1a1a1a;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(255,255,255,0.98);
    padding: 14px 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 44px;
    transition: all 0.3s;
}

.nav.scrolled .nav-logo img {
    height: 36px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--navy);
}

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

.nav-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    background: var(--gold);
    color: var(--navy-deep) !important;
    padding: 12px 24px;
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════
   PAGE HERO
   ════════════════════════════════════════════════════════════ */
.page-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--navy-deep);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/mnt/user-data/uploads/bg.jpg');
    background-size: cover;
    background-position: center 20%;
    opacity: 0.3;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 29, 61, 0.7) 0%,
        rgba(15, 29, 61, 0.9) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 160px 40px 100px;
    text-align: center;
}

.page-hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.2s;
}

.page-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.4s;
}

.page-hero-sub {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════
   MAIN CONTENT CONTAINER
   ════════════════════════════════════════════════════════════ */
.content-section {
    padding: 100px 40px;
}

.content-section.bg-white {
    background: white;
}

.content-section.bg-cream {
    background: var(--cream);
}

.content-section.bg-gray {
    background: var(--gray-light);
}

.content-section.bg-navy {
    background: var(--navy);
}

.content-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════
   TWO COLUMN LAYOUT
   ════════════════════════════════════════════════════════════ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

.col-image {
    position: relative;
}

.col-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.col-image.framed::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--gold);
    border-radius: 4px;
    z-index: -1;
}

.col-image.framed.reverse::before {
    left: 20px;
    right: -20px;
}

.col-content {
    padding: 20px 0;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.col-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 28px;
}

.col-content p {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.8;
}

.col-content p strong {
    color: var(--navy);
}

.col-content p.lead {
    font-size: 1.35rem;
    color: var(--navy);
}

/* ════════════════════════════════════════════════════════════
   QUOTE BLOCK
   ════════════════════════════════════════════════════════════ */
.quote-section {
    padding: 100px 40px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f4b41a' fill-opacity='0.05'%3E%3Cpath d='M30 5l2.47 7.6h7.99l-6.47 4.7 2.47 7.6L30 20.2l-6.46 4.7 2.47-7.6-6.47-4.7h7.99L30 5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.quote-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-mark {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 10rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    line-height: 0.5;
    margin-bottom: -30px;
}

.quote-text {
    font-size: 2rem;
    font-style: italic;
    color: white;
    line-height: 1.5;
    margin-bottom: 30px;
}

.quote-attribution {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

/* ════════════════════════════════════════════════════════════
   TIMELINE
   ════════════════════════════════════════════════════════════ */
.timeline-section {
    padding: 100px 40px;
    background: var(--gray-light);
}

.timeline-header {
    text-align: center;
    margin-bottom: 70px;
}

.timeline-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.timeline-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: var(--navy);
    opacity: 0.2;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    border: 4px solid var(--gray-light);
    z-index: 1;
}

.timeline-item.major .timeline-dot {
    width: 28px;
    height: 28px;
    background: var(--navy);
}

.timeline-image {
    width: calc(50% - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

.timeline-item:nth-child(odd) .timeline-image {
    justify-content: flex-end;
}

.timeline-item:nth-child(even) .timeline-image {
    justify-content: flex-start;
}

.timeline-content {
    width: calc(50% - 40px);
    background: white;
    padding: 28px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.timeline-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.timeline-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   THE FAMILY / TEAM SECTION
   ════════════════════════════════════════════════════════════ */
.family-section {
    padding: 100px 40px;
    background: white;
}

.family-header {
    text-align: center;
    margin-bottom: 60px;
}

.family-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.family-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.family-member {
    text-align: center;
}

.family-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--navy-light);
    margin: 0 auto 24px;
    overflow: hidden;
    border: 4px solid var(--cream);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.family-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.family-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.family-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.family-bio {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════════════════ */
.cta-section {
    padding: 100px 40px;
    background: var(--cream);
    text-align: center;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-section h2 span {
    color: var(--gold-dark);
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 180, 26, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: white;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
    background: var(--navy-deep);
    color: white;
    padding: 80px 40px 40px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-brand h3 span {
    color: var(--gold);
}

.footer-brand p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 2;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer-legal {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-badges {
    display: flex;
    gap: 16px;
    align-items: center;
}

.badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .two-col.reverse {
        direction: ltr;
    }
    
    .col-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .col-image.framed.reverse::before {
        left: -20px;
        right: 20px;
    }
    
    .family-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 16px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .page-hero-content {
        padding: 120px 24px 80px;
    }
    
    .content-section {
        padding: 70px 24px;
    }
    
    .col-content h2,
    .timeline-header h2,
    .family-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .quote-text {
        font-size: 1.5rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
        text-align: left;
        padding-left: 50px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}