:root {
    --ink: #0e0e0e;
    --cream: #f5f0e8;
    --gold: #c8a96e;
    --gold-light: #e8d5a3;
    --muted: #6b6560;
    --accent: #2a4a3e;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Cormorant Garamond', Georgia, serif;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.35;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 1.2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(245, 240, 232, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(14, 14, 14, 0.07);
}

.nav-logo {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--ink);
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.63rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.2s, opacity 0.2s;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 60px;
}

.hero-left {
    background: var(--accent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 110, 0.18);
}

.hero-left::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 110, 0.12);
}

.owl-emblem {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.hero-left h1 {
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-left h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-tagline {
    font-family: 'DM Mono', monospace;
    font-size: 0.67rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.45);
    margin-top: 2rem;
}

.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
    gap: 3rem;
}

.hero-stat {
    text-decoration: none;
    border-left: 2px solid var(--gold);
    padding: 1rem 1.5rem;
    animation: fadeUp 0.7s ease both;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    border-radius: 4px;
    margin-left: -1.5rem; /* Counteract padding for alignment */
}

.hero-stat:nth-child(2) {
    animation-delay: 0.12s;
}

.hero-stat:nth-child(3) {
    animation-delay: 0.24s;
}
.hero-stat:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(14, 14, 14, 0.03);
}

.hero-stat .num {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
}

.hero-stat .label {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.4rem;
}

/* SECTIONS */
section {
    padding: 7rem 5vw;
}

.section-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.63rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 680px;
}

.section-title em {
    font-style: italic;
    color: var(--accent);
}

.divider {
    width: 54px;
    height: 1px;
    background: var(--gold);
    margin: 2rem 0;
}

/* ABOUT */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-body {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted);
}

.about-body strong {
    color: var(--ink);
    font-weight: 400;
}

/* OFFERINGS */
.offerings-section {
    background: var(--ink);
    color: var(--cream);
}

.offerings-section .section-label {
    color: var(--gold);
}

.offerings-section .section-title em {
    color: var(--gold-light);
}

.offerings-hint {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(200, 169, 110, 0.4);
    margin-top: 1.5rem;
}

/* VERTICALS ACCORDION */
.verticals {
    margin-top: 3rem;
    border-top: 1px solid rgba(200, 169, 110, 0.12);
}

.vertical-item {
    border-bottom: 1px solid rgba(200, 169, 110, 0.12);
    overflow: hidden;
}

.vertical-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    cursor: pointer;
    transition: opacity 0.2s;
    user-select: none;
}

.vertical-trigger {
    /* Fix: Inherit font from body to override button default */
    font-family: inherit;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
}

.vertical-trigger:hover {
    opacity: 0.75;
}

.vertical-trigger-left {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.v-number {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    color: rgba(200, 169, 110, 0.35);
    min-width: 28px;
}

.v-icon {
    font-size: 1.6rem;
}

.v-name {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    color: var(--cream);
}

.vertical-trigger-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.v-tag-count {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(200, 169, 110, 0.4);
}

.v-chevron {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(200, 169, 110, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease, background 0.3s, border-color 0.3s;
    flex-shrink: 0;
}

.v-chevron svg {
    color: var(--gold);
    transition: transform 0.35s ease;
}

.vertical-item.open .v-chevron {
    background: var(--gold);
    border-color: var(--gold);
}

.vertical-item.open .v-chevron svg path {
    stroke: var(--ink);
}

.vertical-item.open .v-chevron svg {
    transform: rotate(180deg);
}

/* PANEL */
.vertical-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vertical-item.open .vertical-panel {
    max-height: 1800px;
}

.panel-inner {
    padding: 0.5rem 0 3rem 4.6rem;
}

.panel-desc {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.55);
    max-width: 620px;
    margin-bottom: 2rem;
}

/* PRODUCT BOXES */
.products-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.product-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 169, 110, 0.14);
    padding: 1.8rem 2rem;
    transition: background 0.3s, border-color 0.3s;
    animation: panelIn 0.35s ease both;
}

.product-box:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(200, 169, 110, 0.35);
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.product-box-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.56rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.7rem;
}

.product-box-name {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.8rem;
}

.product-box-desc {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(245, 240, 232, 0.48);
}

.product-box-bullets {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
}

.product-box-bullets li {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.07em;
    color: rgba(200, 169, 110, 0.65);
}

.product-box-bullets li::before {
    content: '→ ';
    color: var(--gold);
}

.v-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.8rem;
}

.v-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.57rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border: 1px solid rgba(200, 169, 110, 0.2);
    color: rgba(200, 169, 110, 0.65);
    border-radius: 2px;
}

/* FOUNDERS */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.founder-card {
    padding: 3rem;
    border: 1px solid rgba(14, 14, 14, 0.12);
    position: relative;
}

.founder-card::before {
    content: attr(data-initial);
    position: absolute;
    top: -1.4rem;
    left: 2.3rem;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(200, 169, 110, 0.1);
    line-height: 1;
    font-style: italic;
}

.founder-name {
    font-size: 1.9rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.founder-role .founder-history {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

/* CTA */
.cta-section {
    background: var(--accent);
    color: var(--cream);
    text-align: center;
    padding: 8rem 5vw;
}

.cta-section .section-label {
    color: rgba(200, 169, 110, 0.6);
}

.cta-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin: 0 auto 2rem;
    max-width: 680px;
    line-height: 1.15;
}

.cta-title em {
    font-style: italic;
    color: var(--gold);
}

.cta-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.55);
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-email {
    font-family: 'DM Mono', monospace;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 169, 110, 0.4);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}

.cta-email:hover {
    border-color: var(--gold);
}

footer {
    padding: 2rem 5vw;
    border-top: 1px solid rgba(14, 14, 14, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

footer p {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

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

    .hero-left {
        min-height: 55vh;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    nav {
        padding: 1rem 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
    }

    .nav-logo {
        text-align: center;
        flex: 1;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
        padding: 1rem 0 0.5rem;
        text-align: center;
    }

    .nav-links.open {
        display: flex;
    }

    section {
        padding: 5rem 5vw;
    }

    .panel-inner {
        padding-left: 0;
    }
}