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

body {
    font-family: 'Inter', sans-serif;
    background: #f6f2ec;
    color: #2c2c2c;
    overflow-x: hidden;
}



h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

.surface {
    background: rgba(75, 53, 40, 0.03) !important;
}

.center {
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 4rem 2rem;
}

.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.15) contrast(1.05);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #3a271d 0%, rgba(0, 0, 0, 0.4), transparent);
}

.hero-content {
    position: relative;
    max-width: 700px;
    color: #f6f2ec;
}

.hero h1 {
    font-size: 4rem;
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.heritage-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.btn-outline.dark {
    border-color: #3a271d;
    color: #3a271d;
}

.grid {
    display: grid;
    gap: 3rem;
}

.grid.two {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}


/* ===================================
   Grid – Three Columns
=================================== */

.grid.three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.grid.three img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: sepia(0.25) contrast(1.05);
}


/* Responsive fallback */

@media (min-width: 785px) and (max-width: 1285px) {
    .nav-link {
        font-size: 10px !important;
    }
}

@media (max-width: 1024px) {
    .grid.three {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .grid.three {
        grid-template-columns: 1fr;
    }
    .logo {
        margin-right: 20px !important;
    }
    /* .webName {
        display: none !important;
    } */
}

.image-card img {
    width: 100%;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin: 4rem 0;
}

.timeline-item {
    padding: 2rem;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(246, 242, 236, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Logo */

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    color: #3a271d;
    margin-right: 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    /* space between image and text */
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.logoImg {
    height: 70px;
    /* control logo size */
    width: auto;
    display: block;
    margin-right: 10px;
}

.site-header {
    display: flex;
    align-items: center;
    height: 100px;
    /* adjust navbar height */
}


/* Desktop Nav */

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2c2c2c;
}

.nav-link.active {
    color: #C79A4D;
}


/* Underline animation */

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #C79A4D;
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}


/* Mobile Toggle */

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #2c2c2c;
    transition: transform 0.3s ease, opacity 0.3s ease;
}


/* Toggle Animation */

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}


/* Mobile Menu */

.nav-mobile {
    max-height: 0;
    overflow: hidden;
    background: rgba(246, 242, 236, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.nav-mobile.open {
    max-height: 500px;
    opacity: 1;
}

.nav-mobile a {
    display: block;
    padding: 0.75rem 1.5rem;
}


/* Responsive */

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
    .menu-toggle {
        display: none;
    }
    .nav-mobile {
        display: none;
    }
}


/* ===================================
   Cinematic Hero – 75 Years Legacy
=================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 5rem 3rem;
    overflow: hidden;
}


/* Background Image */

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.25) contrast(1.1);
}


/* Dark cinematic overlay */

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(42, 27, 20, 0.95) 0%, rgba(42, 27, 20, 0.6) 40%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
}


/* Content */

.hero-content {
    position: relative;
    max-width: 100%;
    color: #f6f2ec;
    bottom: 20px !important;
    z-index: 2;
}

.hero-content .heritage-label {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: #C79A4D;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1rem;
    opacity: 20px !important;
    margin-bottom: 2.5rem;
    color: #fff !important;
}


/* Button */

.hero .btn-outline {
    border: 1px solid #C79A4D;
    color: #C79A4D;
    padding: 0.9rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.25rem;
    text-decoration: none;
}

.hero .btn-outline:hover {
    background: #C79A4D;
    color: #fff;
}


/* 75 Years Badge */

.hero-badge {
    position: absolute;
    right: 11rem;
    top: 55%;
    transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    border: 1px solid rgba(210, 164, 92, 0.6);
    padding: 1.6rem 1.8rem;
    text-align: center;
    color: #C79A4D;
    background: rgb(42 27 20 / 0%);
    /* backdrop-filter: blur(6px); */
    z-index: 2;
}

.badge-number {
    font-size: 2.4rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.max1000 {
    max-width: 1000px;
    margin: auto;
}

.dark {
    background-color: rgba(75, 53, 40, 0.03) !important;
}


/* Responsive */

@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem;
        align-items: center;
    }
    .hero-badge {
        right: 10%;
        top: 50%;
        padding: 1.2rem;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}


/* ===================================
   Our Legacy – Editorial Section
=================================== */

.section {
    padding: 8rem;
    background: #f6f2ec;
}

.grid.two {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    align-items: center;
}


/* Text Side */

.section .heritage-label {
    font-family: Inter, system-ui, sans-serif;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #C79A4D;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    line-height: 1;
    margin-bottom: 2rem;
    color: #3a271d;
}

.mainHead3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 2rem;
    color: #3a271d;
}

.mt20 {
    margin-top: 20px;
}

.link {
    color: #C79A4D !important;
    text-decoration: none;
}
.site-footer a {
    line-height: 1.8;
    font-size: 15px;
    color: #d6c9bd;
    text-decoration: none;
}
.site-footer a:hover {
    line-height: 1.8;
    font-size: 15px;
    color: #C79A4D;
    text-decoration: none;
}


.p4rem {
    padding: 4rem;
}

.section p {
    /* max-width: 520px; */
    font-size: 16px;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
}


/* Button */

.btn-outline.dark {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 0.85rem 1.5rem;
    border: 1px solid #3a271d;
    color: #3a271d;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline.dark:hover {
    background: #3a271d !important;
    color: #f6f2ec !important;
}

.italic {
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.aboutCard {
    background-color: #F6F3EE;
    padding: 30px;
    box-shadow: 0 0 0 1px hsl(20deg 37% 25% / 10%);
}

.aboutCard h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #3a271d;
}


/* Image Card */

.image-card {
    position: relative;
    /* max-width: 520px; */
}

.image-card img {
    width: 100%;
    display: block;
    filter: sepia(0.3) contrast(1.1);
}


/* Bottom Badge */

.image-badge {
    position: absolute;
    left: -1.5rem;
    bottom: -1.5rem;
    background: #4b3528;
    padding: 1.2rem 1.6rem;
    color: #C79A4D;
    text-align: left;
}

.image-badge strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    display: block;
    line-height: 1;
}

.image-badge span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.85;
}


/* Responsive */

@media (max-width: 900px) {
    .grid.two {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .image-badge {
        left: 1rem;
        bottom: 1rem;
    }
    .section h2 {
        font-size: 2rem;
    }
    .section {
        padding: 8rem 2rem;
    }
}

.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem;
}

.heroLabel {
    color: rgba(246, 243, 238, 0.6);
}


/* ===================================
   Our Journey – Modern Chronicle
=================================== */

.journey-modern {
    position: relative;
    overflow: hidden;
}

.journey-inner {
    /* max-width: 1280px; */
    margin: 0 auto;
    /* padding: 0 2rem; */
    position: relative;
    z-index: 2;
}


/* Large background 75 */

.journey-bg {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 30rem;
    font-weight: 800;
    color: rgba(58, 39, 29, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}


/* Header */

.journey-header {
    margin-bottom: 5rem;
}

.journey-subtitle {
    max-width: 680px;
    margin: 2rem auto 0;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.65);
}


/* Grid */

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin-bottom: 4rem;
}


/* Cards */

.journey-card {
    background: #f6f2ec;
    padding: 2.5rem 2.8rem;
}

.journey-year {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(199, 154, 77, 0.45);
    margin-bottom: 1rem;
}

.journey-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
}


/* Responsive */

@media (max-width: 768px) {
    .journey-bg {
        font-size: 14rem;
    }
    .journey-card {
        padding: 2rem;
    }
}


/* outer section background */

.stats-section {
    background: rgba(75, 53, 40, 0.03) !important;
    padding: 80px 0;
}


/* centered box */

.stats {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #f6f3ee;
}


/* each stat */

.stat {
    padding: 45px 20px;
    text-align: center;
    position: relative;
}


/* vertical divider */

.stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 30%;
    height: 40%;
    width: 1px;
    background: rgba(0, 0, 0, 0.15);
}


/* number */

.stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #C79A4D;
    margin-bottom: 10px;
}


/* label */

.stat span {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #555;
    font-weight: 500;
}


/* =========================
FOOTER
========================= */

.site-footer {
    background: #6b3f27;
    color: #d6c9bd;
    padding: 90px 0 40px;
}


/* container */

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 120px;
    padding: 0 20px;
}


/* headings */

.site-footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #e0a354;
    margin-bottom: 20px;
}

.site-footer h4 {
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #e0a354;
    margin-bottom: 25px;
}


/* text */

.site-footer p {
    line-height: 1.8;
    font-size: 15px;
    color: #d6c9bd;
}


/* navigation */

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

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

.footer-nav a {
    text-decoration: none;
    color: #d6c9bd;
    transition: .3s;
}

.footer-nav a:hover {
    color: #e0a354;
}


/* bottom bar */

.footer-bottom {
    max-width: 1200px;
    margin: 70px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #c2b3a7;
}

.footer-bottom span {
    letter-spacing: .15em;
}


/* responsive */

@media(max-width:900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


/* about Page */

.subtitle {
    margin: 15px 0 25px;
    font-size: 18px;
    color: #555;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    border: 1px solid rgba(0, 0, 0, .08);
}

.business-card {
    padding: 40px;
    border-right: 1px solid rgba(0, 0, 0, .08);
    background: #f6f3ee;
}

.business-card:last-child {
    border-right: none;
}

.card-label {
    font-family: Inter, system-ui, sans-serif;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #C79A4D;
}

.business-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.management-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.manager {
    padding: 35px;
}


/* vertical center divider */

.manager:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, .08);
}


/* horizontal center divider */

.manager:nth-child(-n+2) {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.manager h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.role {
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #C79A4D;
    display: block;
    margin-bottom: 10px;
}

.locations-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(0, 0, 0, .08);
}

.location-card {
    padding: 40px;
    border-right: 1px solid rgba(0, 0, 0, .08);
    background: #f6f3ee;
}

.location-card:last-child {
    border-right: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    /* align-items: center; */
}

.image-card img {
    width: 100%;
    display: block;
}


/* mobile */

@media(max-width:900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .business-grid {
        grid-template-columns: 1fr;
        border: none;
    }
    .business-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
    }
    .business-card:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .business-grid {
        grid-template-columns: 1fr;
        border: none;
    }
    .business-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
    }
    .business-card:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .management-grid {
        grid-template-columns: 1fr;
    }
    .manager {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
    }
    .manager:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
    .location-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
    }
    .location-card:last-child {
        border-bottom: none;
    }
}


/* Journey */


/* ===============================
   PAGE HEADER – OUR JOURNEY
================================ */

.page-header {
    padding-top: 160px;
    padding-bottom: 120px;
}

.page-header .container {
    max-width: 1280px;
    margin: auto;
    padding: 0 32px;
}

.page-header h1 {
    font-size: clamp(3.2rem, 6vw, 4.5rem);
    margin-bottom: 20px;
    color: #3a271d;
}

.page-header p {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
}


/* ===============================
   THREE ACTS – GRID
================================ */

.acts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin-top: 80px;
}

.act-card {
    background: #f6f2ec;
    padding: 40px;
}

.act-label {
    font-family: Inter, system-ui, sans-serif;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #C79A4D;
}

.act-card p {
    margin-top: 20px;
}

.founder p {
    margin-top: 20px;
}

.max800 {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .acts-grid {
        grid-template-columns: 1fr;
    }
}


/* ===============================
   FOUNDERS SECTION
================================ */

.founders-section {
    padding: 120px 0;
    background: rgba(75, 53, 40, 0.03);
}

.founder-card {
    background: #f6f2ec;
    padding: 50px;
    max-width: 900px;
    margin: auto;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(0, 0, 0, 0.08);
    max-width: 1100px;
    margin: 80px auto 0;
}

.founder {
    background: #f6f2ec;
    padding: 40px;
}

.founder h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #3a271d;
}

.founder p {
    /* font-size: 14px; */
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 900px) {
    .founders-grid {
        grid-template-columns: 1fr;
    }
}


/* ===============================
   QUOTE BLOCK
================================ */

.quote-block {
    max-width: 760px;
    margin: 80px auto 0;
    border-left: 2px solid #C79A4D;
    padding: 30px;
}

.quote-block p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
}

.quote-author {
    margin-top: 15px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C79A4D;
}


/* ===============================
   VERTICAL TIMELINE
================================ */

.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}


/* Center Line */

.timeline-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(199, 154, 77, 0.5);
    transform: translateX(-50%);
}


/* Timeline Item */

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 60px;
}


/* Left & Right alignment */

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}


/* Dot */

.timeline-item::before {
    content: "";
    position: absolute;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #C79A4D;
    border: 2px solid #f6f2ec;
    border-radius: 50%;
    z-index: 2;
}

.timeline-item.left::before {
    right: -6px;
}

.timeline-item.right::before {
    left: -6px;
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    color: rgba(199, 154, 77, 0.45);
    margin-bottom: 10px;
}

.timeline-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
}


/* Mobile Timeline */

@media (max-width: 768px) {
    .timeline-wrapper::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        text-align: left !important;
    }
    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }
    .timeline-item::before {
        left: -8px;
    }
}

.mt50 {
    margin-top: 50px !important;
}

.mt100 {
    margin-top: 100px !important;
}

.max900 {
    max-width: 800px;
}


/* Story */

.subtitleItalic {
    font-family: Playfair Display, Georgia, serif;
    font-size: 24px !important;
    font-style: italic;
    line-height: 2rem;
    color: #3a271d;
}

@media (max-width: 768px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Remove existing desktop dividers */
    .stat::after {
        display: none;
    }
    /* Vertical center divider */
    .stat:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, 0.15);
    }
    /* Horizontal center divider */
    .stat:nth-child(1),
    .stat:nth-child(2) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    }
    .stats-section {
        padding: 80px 20px;
    }
}


/* ===================================
   Roles & Recognition Section
=================================== */

.roles-section {
    background: #f6f2ec;
    padding: 6rem 2rem;
}

.roles-container {
    max-width: 900px;
    margin: 0 auto;
}


/* Header */

.roles-header h2 {
    font-size: 3rem;
    margin-top: 10px;
    color: #3a271d;
}


/* List */

.roles-list {
    margin-top: 4rem;
}


/* Each row */

.role-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}


/* Year column */

.role-year {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: #C79A4D;
    letter-spacing: 0.05em;
}


/* Text column */

.role-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.75);
}


/* Remove last border */

.role-item:last-child {
    border-bottom: none;
}


/* Responsive */

@media (max-width: 768px) {
    .role-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .role-year {
        font-size: 0.85rem;
    }
}

.role-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

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


/* ===================================
   FOUNDERS — EXACT MATCH
=================================== */

.founders-exact {
    padding: 7rem 2rem 6rem;
}


/* container width like screenshot */

.founders-wrap {
    max-width: 1040px;
    margin: 3.5rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}


/* card */

.founder-item {
    background: #f6f3ee;
    border: 1px solid rgba(0, 0, 0, 0.06);
}


/* image */

.founder-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    /* stronger vintage tone like screenshot */
    filter: sepia(0.45) contrast(1.05) brightness(0.95);
}


/* caption */

.founder-item figcaption {
    padding: 1.6rem 1.8rem 1.9rem;
}


/* text */

.founder-item p {
    font-size: 14.5px;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.68);
    margin-bottom: 1.2rem;
}


/* copyright */

.founder-item span {
    display: block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C79A4D;
    font-weight: 500;
}


/* Main Founder */


/* ===================================
   FOUNDERS — 3 COLUMN VERSION
=================================== */

.founders-exact-three-main {
    padding: 7rem 2rem 6rem;
}


/* grid */

.founders-wrap-three-main {
    max-width: 1100px;
    margin: 3.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}


/* card */

.founder-item-three-main {
    background: #f6f3ee;
    border: 1px solid rgba(0, 0, 0, 0.06);
}


/* image */

.founder-item-three-main img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: top;
    /* same tone as 2-col */
    filter: sepia(0.45) contrast(1.05) brightness(0.95);
    height: 350px;
}


/* caption */

.founder-item-three-main figcaption {
    padding: 1.4rem 1.5rem 1.6rem;
}


/* text */

.founder-item-three-main p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.68);
    margin-bottom: 1rem;
}


/* copyright */

.founder-item-three-main span {
    display: block;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C79A4D;
    font-weight: 500;
}


/* responsive */

@media (max-width: 1024px) {
    .founders-wrap-three-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .founders-wrap-three-main {
        grid-template-columns: 1fr;
    }
}


/* heading spacing match */

.founders-exact .center h2 {
    margin-top: 8px;
}


/* mobile */

@media (max-width: 768px) {
    .founders-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* ===================================
   FOUNDERS — 3 COLUMN VERSION
=================================== */

.founders-exact-three {
    padding: 7rem 2rem 6rem;
}


/* grid */

.founders-wrap-three {
    max-width: 1100px;
    margin: 3.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}


/* card */

.founder-item-three {
    background: #f6f3ee;
    border: 1px solid rgba(0, 0, 0, 0.06);
}


/* image */

.founder-item-three img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    /* same tone as 2-col */
    filter: sepia(0.45) contrast(1.05) brightness(0.95);
}


/* caption */

.founder-item-three figcaption {
    padding: 1.4rem 1.5rem 1.6rem;
}


/* text */

.founder-item-three p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.68);
    margin-bottom: 1rem;
}


/* copyright */

.founder-item-three span {
    display: block;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C79A4D;
    font-weight: 500;
}


/* responsive */

@media (max-width: 1024px) {
    .founders-wrap-three {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .founders-wrap-three {
        grid-template-columns: 1fr;
    }
}


/* heading spacing match */

.founders-exact .center h2 {
    margin-top: 8px;
}


/* mobile */

@media (max-width: 768px) {
    .founders-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* ===================================
   GALLERY III — SINGLE FEATURE
=================================== */

.gallery-single {
    padding: 7rem 2rem 6rem;
}


/* container */

.gallery-single-wrap {
    max-width: 700px;
    margin: 3.5rem auto 0;
}


/* card */

.gallery-single-item {
    background: #f6f3ee;
    border: 1px solid rgba(0, 0, 0, 0.06);
}


/* image */

.gallery-single-item img {
    width: 100%;
    height: 100%;
    /* full visual impact */
    display: block;
    /* same vintage tone */
    filter: sepia(0.45) contrast(1.05) brightness(0.95);
}


/* caption */

.gallery-single-item figcaption {
    padding: 1.8rem 2rem 2.2rem;
}


/* text */

.gallery-single-item p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1.2rem;
}


/* copyright */

.gallery-single-item span {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C79A4D;
    font-weight: 500;
}


/* responsive */

@media (max-width: 768px) {
    .gallery-single-item img {
        height: 360px;
    }
}

.borderNone {
    border: none;
}

.role-item {
    padding: 20px;
}


/* Lightbox */


/* ================================
   LIGHTBOX — IMAGE-BOUND CAPTION
   ================================ */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}


/* Card behaves like image width */

.lightbox-content {
    display: table;
    /* KEY: shrink-wraps to image */
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}


/* Image */

.lightbox-img {
    display: block;
    max-width: 90vw;
    max-height: 75vh;
    width: auto;
    height: auto;
    object-fit: contain;
    background: #000;
}


/* Caption — AUTO MATCHES IMAGE WIDTH */

.lightbox-caption {
    display: table-caption;
    /* KEY: same width as image */
    caption-side: bottom;
    padding: 18px 22px;
    font-size: 16px;
    line-height: 1.6;
    color: #111;
    background: #fff;
    border-top: 1px solid #e6e6e6;
}


/* Close button */

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 34px;
    color: #fff;
    cursor: pointer;
}


/* Navigation arrows */

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 48px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}


/* Cursor hint */

figure img {
    cursor: zoom-in;
}


/* Nav mobile */

.nav-mobile {
        position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    background: rgb(246 242 236);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18), 0 4px 8px rgba(0, 0, 0, 0.10);
    transition: max-height 0.4s ease;
    z-index: 0;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
    .menu-toggle {
        display: none;
    }
    .nav-mobile {
        display: none;
    }
    .site-header {
        height: auto;
        /* FIX */
    }
}

.nav-mobile {
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
}

.nav-mobile.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        align-items: flex-end;
        /* KEY: move content to bottom */
        padding: 3rem 1.5rem 4rem;
    }
    .hero-content {
        position: relative;
        width: 100%;
        max-width: 100%;
        bottom: 0;
        /* remove forced offset */
        text-align: left;
    }
    .hero-content h1 {
        font-size: 2.6rem;
        line-height: 1;
    }
    .hero-sub {
        margin-bottom: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding-bottom: 1rem;
    }
}

.recognition-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

/* Two Images Row */
.recognition-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.recognition-card {
    height: 320px; /* SAME HEIGHT */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.recognition-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.recognition-card:hover img {
    transform: scale(1.08);
}

.recognition-video {
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

.recognition-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}
/* Responsive */
@media (max-width: 768px) {
    .recognition-images {
        grid-template-columns: 1fr;
    }

    .recognition-card,
    .recognition-video {
        height: auto;
    }
}
.text-white{
    color: #fff !important;
}