/* 
   Ariya Path LLC - Exact Vanilla CSS Implementation
   Matching Next.js + Tailwind values 100%
*/

:root {
    --gold: #D9A047;
    --gold-hover: #C8912E;
    --charcoal: #3C3C3C;
    --slate: #666666;
    --eggshell: #FAF9F6;
    --white: #FFFFFF;
    --border: #E5E5E5;
    --footer-bg: #F5F5DC;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background-color: var(--eggshell);
    color: var(--charcoal);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ─── Hero containers: responsive left offset ─── */
/* 
   On large screens, push content ~350px from the left edge 
   (matching the original 21.9rem ≈ 350px at 16px base).
   On medium screens, reduce the offset.
   On mobile, remove the offset entirely.
*/

.about-hero-container,
.home-hero-container,
.contact-hero-container,
.privacy-hero-container {
    /* clamp(min, preferred, max)
       0px   on mobile (< 640px)
       scales up between 640px–1280px
       caps at 350px on large screens */
    margin-left: clamp(0px, calc((100vw - 640px) * 0.55), 350px);
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 640px) {

    .about-hero-container,
    .home-hero-container,
    .contact-hero-container,
    .privacy-hero-container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 1024px) {

    .about-hero-container,
    .home-hero-container,
    .contact-hero-container,
    .privacy-hero-container {
        padding-left: 32px;
        padding-right: 32px;
    }
}

/* ─── Container padding breakpoints ─── */
@media (min-width: 640px) {
    .container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }
}

/* --- Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(60, 60, 60, 0.05);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.nav-inner {
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-inner {
        height: 80px;
    }
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-ap {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .logo-ap {
        font-size: 18px;
    }
}

.logo-line {
    width: 100%;
    height: 1.5px;
    background: var(--charcoal);
    margin-top: 2px;
}

.logo-sub {
    font-size: 16px;
    color: rgba(60, 60, 60, 0.6);
    font-weight: 300;
    margin-top: 8px;
    line-height: 1.625;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 28px;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.025em;
    color: rgba(60, 60, 60, 0.7);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link.active {
    color: var(--gold);
}

.btn-nav {
    background: var(--gold);
    color: white;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 9999px;
}

.btn-nav:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

/* --- Mobile Menu --- */
.hamburger {
    display: block;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--charcoal);
    margin: 6px 0;
    transition: 0.2s;
}

/* --- Section Label --- */
.section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.label-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- Hero --- */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--eggshell);
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(217, 160, 71, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217, 160, 71, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-glow-1 {
    position: absolute;
    top: 25%;
    right: 0;
    width: 384px;
    height: 384px;
    background: radial-gradient(circle, rgba(217, 160, 71, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 112px;
    padding-bottom: 80px;
}

@media (min-width: 768px) {
    .hero-content {
        padding-top: 144px;
        padding-bottom: 112px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 160, 71, 0.1);
    border: 1px solid rgba(217, 160, 71, 0.2);
    border-radius: 9999px;
    padding: 6px 16px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .hero-badge {
        margin-bottom: 40px;
    }
}

.hero-badge-text {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.h1-hero {
    font-size: 48px;
    line-height: 1.0;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
    max-width: 48rem;
}

@media (min-width: 640px) {
    .h1-hero {
        font-size: 60px;
    }
}

@media (min-width: 768px) {
    .h1-hero {
        font-size: 72px;
    }
}

@media (min-width: 1024px) {
    .h1-hero {
        font-size: 96px;
    }
}

.italic-gold {
    color: var(--gold);
    font-style: italic;
    font-family: inherit;
}

.hero-p {
    color: rgba(60, 60, 60, 0.65);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.625;
    max-width: 32rem;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .hero-p {
        font-size: 18px;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .hero-actions {
        margin-bottom: 80px;
    }
}

.btn-primary {
    background: var(--gold);
    color: white;
    font-weight: 500;
    font-size: 18px;
    padding: 14px 28px;
    border-radius: 9999px;
}

@media (min-width: 640px) {
    .btn-primary {
        font-size: 16px;
    }
}

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    color: rgba(60, 60, 60, 0.65);
    font-size: 18px;
    font-weight: 300;
    border-bottom: 1px solid rgba(60, 60, 60, 0.2);
    padding-bottom: 2px;
}

@media (min-width: 640px) {
    .btn-secondary {
        font-size: 16px;
    }
}

.btn-secondary:hover {
    color: var(--charcoal);
    border-bottom-color: var(--charcoal);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(60, 60, 60, 0.1);
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    color: rgba(60, 60, 60, 0.4);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- Innovation Section --- */
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 112px;
        padding-bottom: 112px;
    }
}

.centered-header {
    max-width: 48rem;
    margin: 0 auto 56px;
    text-align: center;
}

@media (min-width: 768px) {
    .centered-header {
        margin-bottom: 72px;
    }
}

.h2-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

@media (min-width: 640px) {
    .h2-title {
        font-size: 48px;
    }
}

.h2-p {
    color: #64748B;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.625;
}

@media (min-width: 640px) {
    .h2-p {
        font-size: 18px;
    }
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(60, 60, 60, 0.1);
    border: 1px solid rgba(60, 60, 60, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-card {
    background: white;
    padding: 32px;
    transition: background 0.25s;
}

@media (min-width: 768px) {
    .info-card {
        padding: 40px;
    }
}

.info-card:hover {
    background: var(--footer-bg);
}

.info-card .card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0;
    transition: opacity 0.25s;
}

.info-card:hover .card-num {
    opacity: 1;
}

.info-card .card-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
    color: var(--gold);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 12px;
}

.info-card p {
    color: #64748B;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.625;
}

/* --- Ventures Section --- */
.ventures-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 56px;
}

@media (min-width: 1024px) {
    .ventures-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.h2-ventures {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.025em;
    max-width: 32rem;
}

@media (min-width: 640px) {
    .h2-ventures {
        font-size: 48px;
    }
}

@media (min-width: 768px) {
    .h2-ventures {
        font-size: 60px;
    }
}

.ventures-p {
    color: rgba(60, 60, 60, 0.6);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.625;
    max-width: 20rem;
}

@media (min-width: 1024px) {
    .ventures-p {
        text-align: right;
    }
}

.ventures-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .ventures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.venture-card {
    background: white;
    border: 1px solid rgba(60, 60, 60, 0.1);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.25s;
}

@media (min-width: 768px) {
    .venture-card {
        padding: 32px;
    }
}

.venture-card:hover {
    background: var(--footer-bg);
    border-color: rgba(217, 160, 71, 0.25);
    transform: translateY(-4px);
}

.venture-card .header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.venture-card .card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.venture-card .arrow {
    color: var(--gold);
    font-size: 18px;
    opacity: 0.6;
    transition: all 0.2s;
}

.venture-card:hover .arrow {
    opacity: 1;
    transform: translate(4px, -4px);
}

.venture-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .venture-card h3 {
        font-size: 24px;
    }
}

.venture-card p {
    color: #64748B;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.625;
}

/* --- CTA Section --- */
.cta-box {
    background: var(--footer-bg);
    border-radius: 24px;
    padding: 64px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(60, 60, 60, 0.05);
}

@media (min-width: 768px) {
    .cta-box {
        padding: 80px 64px;
    }
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle, var(--charcoal) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.cta-box h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .cta-box h2 {
        font-size: 48px;
    }
}

@media (min-width: 768px) {
    .cta-box h2 {
        font-size: 60px;
    }
}

.cta-box p {
    color: rgba(60, 60, 60, 0.55);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.625;
    max-width: 24rem;
    margin: 0 auto 36px;
}

@media (min-width: 640px) {
    .cta-box p {
        font-size: 18px;
    }
}

/* --- Footer --- */
footer {
    background: var(--footer-bg);
    color: var(--charcoal);
}

.footer-inner {
    padding-top: 56px;
    padding-bottom: 56px;
}

@media (min-width: 768px) {
    .footer-inner {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .footer-brand {
        grid-column: span 2;
    }
}

.footer-email-cta {
    display: inline-block;
    margin-top: 20px;
    color: var(--gold);
    font-size: 18px;
}

.footer-email-cta:hover {
    color: var(--gold-hover);
}

.footer-label {
    color: rgba(60, 60, 60, 0.4);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(60, 60, 60, 0.6);
    font-size: 18px;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(60, 60, 60, 0.1);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    color: rgba(60, 60, 60, 0.3);
    font-size: 16px;
    font-weight: 300;
}