/* ========================================
   ADIL NASIR — GLOBAL STYLES
   ======================================== */

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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent: #c9a96e;
    --accent-dim: rgba(201, 169, 110, 0.15);
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background: var(--accent);
    color: var(--bg-primary);
}

img {
    max-width: 100%;
    display: block;
}

.mobile-only { display: none; }
.desktop-only { display: inline; }

@media (max-width: 900px) {
    .mobile-only { display: inline; }
    .desktop-only { display: none; }
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

.text-large {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 2rem;
    transition: gap 0.3s ease;
}

.text-link:hover {
    gap: 0.85rem;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 400;
    line-height: 1.2;
    max-width: 600px;
}

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

/* ========================================
   NAV
   ======================================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s ease;
}

nav.scrolled {
    padding: 1rem 3rem;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* ========================================
   PAGE HEADER (inner pages)
   ======================================== */

.page-header {
    padding: 10rem 3rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header-inner {
    max-width: 800px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

/* ========================================
   HERO (home page)
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f3460 60%, #1a1a2e 100%);
    position: relative;
}

.hero-image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 35%, rgba(201,169,110,0.06) 0%, transparent 60%);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-primary) 0%, rgba(10,10,10,0.7) 40%, rgba(10,10,10,0.2) 100%);
}

.hero-vignette {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
}

.hero-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.hero-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6.5vw, 6.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.hero-name em {
    font-style: italic;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-meta {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    max-width: 600px;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-meta-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-primary);
}

.hero-meta-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ========================================
   HOME INTRO
   ======================================== */

.home-intro {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.home-intro-inner {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.home-intro-lead {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.home-intro-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.home-intro-text .text-link {
    justify-content: center;
}

/* ========================================
   HOME VENTURES PREVIEW
   ======================================== */

.home-ventures-full {
    padding: 6rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.home-ventures-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.home-ventures-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 3rem;
    background: var(--border);
}

.home-venture-card {
    background: var(--bg-secondary);
    padding: 3rem 2.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.home-venture-card:hover {
    background: var(--bg-tertiary);
}

.home-venture-number {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.home-venture-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.home-venture-type {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.home-venture-arrow {
    font-size: 1.25rem;
    color: var(--accent);
    margin-top: auto;
    transition: transform 0.3s ease;
}

.home-venture-card:hover .home-venture-arrow {
    transform: translateX(6px);
}

/* ========================================
   QUOTE BAND
   ======================================== */

.quote-band {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.quote-band-inner {
    text-align: center;
}

.quote-band-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-band-text::before {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 2rem;
}

/* ========================================
   CTA BAND
   ======================================== */

.cta-band {
    padding: 5rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-band-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 3rem;
}

.cta-band-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
}

.cta-band-inner .text-link {
    justify-content: center;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-intro {
    padding: 2rem 3rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.about-image-frame {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 2px;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05) saturate(0.9);
}

.about-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent);
    border-radius: 2px;
    opacity: 0.3;
    z-index: -1;
}

.about-intro-image {
    position: relative;
}

.about-intro-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.9;
}

/* ALYCIUM SECTION */
.about-alycium-full {
    padding: 6rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-alycium-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.about-alycium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-alycium-text .section-title {
    margin-bottom: 2rem;
    max-width: 500px;
}

.about-alycium-body p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.about-alycium-frame {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 2px;
}

.about-alycium-frame svg {
    width: 100%;
    height: 100%;
}

/* STATS */
.about-stats-section {
    padding: 5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
}

.about-stat {
    background: var(--bg-primary);
    padding: 3rem 2rem;
    text-align: center;
}

.about-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ETHOS */
.about-philosophy {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-philosophy-inner {
    max-width: 700px;
}

.about-philosophy-inner p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
}

.about-ethos {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-ethos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.about-ethos-left .section-title {
    margin-bottom: 2rem;
}

.about-ethos-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--text-primary);
    padding-left: 2rem;
    border-left: 2px solid var(--accent);
    margin-top: 2rem;
}

.about-ethos-right p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-ethos-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 2px;
}

/* ========================================
   VENTURES PAGE
   ======================================== */

/* Ventures Stats Bar */
.ventures-stats-section {
    padding: 0 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.ventures-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--border);
}

.ventures-stat {
    background: var(--bg-primary);
    padding: 2.5rem 2rem;
    text-align: center;
}

.ventures-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.ventures-stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.venture-section {
    padding: 4rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.venture-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.venture-layout.reverse {
    direction: rtl;
}

.venture-layout.reverse > * {
    direction: ltr;
}

.venture-image-large {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 2px;
}

.venture-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.1) saturate(0.85);
    transition: all 0.6s ease;
}

.venture-section:hover .venture-image-large img {
    filter: brightness(0.85) contrast(1.05) saturate(0.9);
}

.venture-number-large {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 1rem;
}

.venture-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.venture-type-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.venture-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.venture-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.venture-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.venture-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.venture-stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.section-divider {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
}

.section-divider::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--border);
}

/* ========================================
   PHILANTHROPY PAGE
   ======================================== */

.philanthropy-main {
    padding: 2rem 3rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.philanthropy-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: start;
}

.philanthropy-image-frame {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 2px;
}

.philanthropy-image-frame svg {
    width: 100%;
    height: 100%;
}

.philanthropy-body p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.philanthropy-principles {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philanthropy-principle {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 2px;
    transition: border-color 0.3s ease;
}

.philanthropy-principle:hover {
    border-color: var(--border-light);
}

.principle-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.principle-icon svg {
    width: 24px;
    height: 24px;
}

.principle-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.principle-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
}

/* ========================================
   PERSONAL PAGE
   ======================================== */

.personal-intro {
    padding: 2rem 3rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.personal-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: start;
}

.personal-image-frame {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 2px;
}

.personal-intro-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Family */
.personal-family-full {
    padding: 5rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.personal-family-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.personal-family-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.family-photo-card {
    flex: 0 1 calc(33.333% - 1rem);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.family-photo {
    overflow: hidden;
    border-radius: 2px;
}

.family-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    filter: brightness(0.9) saturate(0.9);
    transition: filter 0.3s ease;
}

.family-photo-card:hover .family-photo img {
    filter: brightness(1) saturate(1);
}

.family-caption {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Downtime */
.personal-downtime-section {
    padding: 5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.personal-downtime-content {
    max-width: 650px;
}

.personal-downtime-content .section-title {
    margin-bottom: 1.5rem;
}

.personal-downtime-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
}

/* Downtime (legacy) */
.personal-downtime-full {
    padding: 5rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.personal-downtime-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.personal-downtime-list {
    max-width: 650px;
    margin-top: 2rem;
}

.personal-downtime-list p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
}

/* OSRS */
.personal-osrs {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.personal-osrs-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.personal-osrs-body p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.osrs-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.osrs-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.osrs-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--text-primary);
}

.osrs-stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.osrs-visual-frame {
    aspect-ratio: 6 / 5;
    overflow: hidden;
    border-radius: 2px;
}

.osrs-visual-frame svg {
    width: 100%;
    height: 100%;
}

/* Philanthropy */
.personal-philanthropy {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.personal-philanthropy-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.personal-philanthropy-text {
    margin-bottom: 2.5rem;
}

.personal-philanthropy-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.personal-philanthropy-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.philanthropy-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 2.5rem;
    width: 220px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.philanthropy-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.philanthropy-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

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

/* Restaurants */
.personal-restaurants-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    max-width: 1400px;
    padding: 0 3rem;
}

.restaurant-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 1.5rem 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.restaurant-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.restaurant-city {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.restaurant-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Hover Caption */
.hover-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: rgba(200, 200, 200, 0.85);
    color: #1a1a1a;
    font-size: 0.8rem;
    font-weight: 400;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.photo-hover-caption:hover .hover-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Social */
.personal-social-full {
    padding: 5rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.personal-social-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.personal-social-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem 4rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 2px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.social-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.social-icon {
    width: 36px;
    height: 36px;
    color: var(--accent);
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.social-handle {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
}

.social-platform {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ========================================
   ALYCIUM DEVICE VISUAL
   ======================================== */

.alycium-device-visual {
    background: #141416;
    border-radius: 2px;
    overflow: hidden;
}

.alycium-device-visual.light {
    background: #1e1e22;
}

.alycium-device-visual svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-main {
    padding: 2rem 3rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-channel {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.contact-channel:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-channel-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.contact-channel-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-channel-value:hover {
    color: var(--accent);
}

.contact-channel-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
}

.contact-location {
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.contact-legal-notice {
    margin-top: 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    grid-column: 1 / -1;
}

.contact-legal-notice p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
}

.contact-legal-notice a {
    color: var(--text-muted);
    text-decoration: underline;
}

.contact-location-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Contact Form */
.contact-form-header {
    margin-bottom: 2.5rem;
}

.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 2px;
    padding: 0.9rem 1rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    transition: border-color 0.3s ease;
    outline: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    align-self: flex-start;
}

.form-submit:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 4rem 2rem;
}

.form-success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent);
}

.form-success-icon svg {
    width: 28px;
    height: 28px;
}

.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.form-success p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
}

/* ========================================
   IMAGE PLACEHOLDERS
   ======================================== */

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

.image-placeholder.portrait {
    aspect-ratio: 3 / 4;
}

.image-placeholder.wide {
    aspect-ratio: 16 / 10;
}

.image-placeholder.dark {
    background: #0d0d0d;
}

.image-placeholder span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 169, 110, 0.25);
}

.image-placeholder svg {
    width: 100%;
    height: 100%;
}

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

footer {
    padding: 0;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.footer-location {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

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

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.footer-domain {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ========================================
   PAGE TRANSITIONS
   ======================================== */

body {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .about-intro-grid,
    .about-alycium-grid,
    .about-ethos-grid,
    .venture-layout,
    .venture-layout.reverse,
    .philanthropy-grid,
    .contact-grid,
    .personal-intro-grid,
    .personal-osrs-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-grid .contact-right {
        order: -1;
    }

    .contact-legal-notice {
        order: 10;
    }


    .venture-layout.reverse {
        direction: ltr;
    }

    .about-intro-image {
        max-width: 400px;
    }

    .about-stats-grid,
    .ventures-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ventures-stats-grid .ventures-stat:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .ventures-stats-section {
        padding: 0 1.5rem 2rem;
    }

    .home-ventures-grid,
    .personal-family-grid .family-photo-card {
        flex: 0 1 100%;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1.25rem 1.5rem;
    }

    nav.scrolled {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
    }

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

    .nav-links a.active::after {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .page-header {
        padding: 8rem 1.5rem 3rem;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.4;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-meta {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .home-intro,
    .about-intro,
    .about-ethos,
    .about-stats-section,
    .venture-section,
    .philanthropy-main,
    .contact-main,
    .personal-intro,
    .personal-downtime-section,
    .personal-osrs,
    .quote-band {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .home-ventures-inner,
    .about-alycium-inner,
    .cta-band-inner,
    .personal-family-inner,
    .personal-downtime-inner,
    .personal-social-inner {
        padding: 0 1.5rem;
    }

    .home-ventures-full,
    .about-alycium-full,
    .personal-family-full,
    .personal-downtime-full,
    .personal-social-full,
    .cta-band {
        padding: 4rem 0;
    }

    .footer-inner {
        padding: 3rem 1.5rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }


    .section-divider {
        padding: 0 1.5rem;
    }

    .personal-philanthropy {
        padding: 4rem 1.5rem;
    }

    .personal-philanthropy-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .personal-philanthropy-grid .philanthropy-card {
        width: auto;
        aspect-ratio: auto;
    }

    .personal-philanthropy-grid .philanthropy-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }
}

@media (max-width: 540px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-meta-value {
        font-size: 1.5rem;
    }

    .about-stat-value {
        font-size: 2rem;
    }
}
