/* ================================================
   FUNDACJA TALERZ TRADYCJI I PASJI
   Premium Visual Design - Making it POP!
   ================================================ */

:root {
    /* Rich Color Palette */
    --color-bg: #faf9f7;
    --color-bg-warm: #f5f2ed;
    --color-bg-dark: #0f0d0b;
    --color-bg-accent: #1a1714;
    
    --color-text: #1a1714;
    --color-text-light: #4a4540;
    --color-text-muted: #7a756e;
    
    --color-gold: #c9a227;
    --color-gold-light: #e5c84b;
    --color-gold-dark: #a88520;
    --color-gold-glow: rgba(201, 162, 39, 0.3);
    
    --color-copper: #b87333;
    --color-cream: #f0ebe3;
    --color-border: #e0dbd3;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    
    /* Spacing */
    --section-padding: clamp(5rem, 12vw, 9rem);
    --container: 1240px;
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection {
    background: var(--color-gold);
    color: white;
}

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

a { 
    color: inherit; 
    text-decoration: none; 
}

button { 
    font-family: inherit; 
    cursor: pointer; 
    border: none; 
    background: none; 
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ------------------------------------------------
   Typography
   ------------------------------------------------ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
}

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

.section-dark .section-title {
    color: white;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header .section-label::before {
    display: none;
}

/* ------------------------------------------------
   Navigation
   ------------------------------------------------ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s var(--ease-out-expo);
}

.nav.scrolled {
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 1px 0 var(--color-border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s var(--ease-out-expo);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s var(--ease-out-expo);
}

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

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

.nav-cta {
    padding: 0.75rem 1.5rem !important;
    background: var(--color-gold) !important;
    color: white !important;
    border-radius: 50px;
    transition: all 0.3s var(--ease-out-expo) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--color-gold-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--color-gold-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s var(--ease-out-expo);
    transform-origin: center;
}

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

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
    transform: scale(1.05);
    animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 13, 11, 0.85) 0%,
        rgba(15, 13, 11, 0.6) 50%,
        rgba(15, 13, 11, 0.75) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem 4rem;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-gold-light);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    animation: fadeSlideUp 1s 0.2s var(--ease-out-expo) both;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.5;
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
}

.title-small {
    display: block;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
    animation: fadeSlideUp 1s 0.3s var(--ease-out-expo) both;
}

.title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    animation: fadeSlideUp 1s 0.4s var(--ease-out-expo) both;
}

.title-accent {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-gold);
    margin-top: 0.25rem;
    animation: fadeSlideUp 1s 0.5s var(--ease-out-expo) both;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp 1s 0.6s var(--ease-out-expo) both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    animation: fadeSlideUp 1s 0.7s var(--ease-out-expo) both;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: fadeIn 1s 1.2s both;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: scrollPulse 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.3; }
}

.hero-stats {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    animation: fadeSlideLeft 1s 0.8s var(--ease-out-expo) both;
}

.stat {
    text-align: right;
    color: white;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
}

/* ------------------------------------------------
   Buttons
   ------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s var(--ease-out-expo);
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out-expo);
}

.btn-primary {
    background: var(--color-gold);
    color: white;
    box-shadow: 0 4px 20px var(--color-gold-glow);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--color-gold-glow);
}

.btn-primary:hover svg {
    transform: translate(3px, -3px);
}

.btn-glass {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

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

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-full { width: 100%; }

/* ------------------------------------------------
   Sections
   ------------------------------------------------ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-warm {
    background: var(--color-bg-warm);
}

.section-dark {
    background: var(--color-bg-dark);
    color: white;
}

.section-dark .section-desc {
    color: rgba(255,255,255,0.7);
}

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

.about-images {
    position: relative;
    height: 600px;
}

.about-img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-img-main {
    width: 70%;
    height: 450px;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img-secondary {
    width: 55%;
    height: 300px;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.about-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    background: 
        radial-gradient(circle at 2px 2px, var(--color-gold) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    bottom: 60px;
    left: -40px;
    z-index: 1;
}

.about-content {
    padding-left: 2rem;
}

.about-text {
    margin-bottom: 2.5rem;
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.about-text strong {
    color: var(--color-text);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: all 0.3s var(--ease-out-expo);
}

.feature:hover {
    border-color: var(--color-gold-light);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
}

.feature h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.feature p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ------------------------------------------------
   Founder Section
   ------------------------------------------------ */
.section-dark.section {
    position: relative;
    overflow: hidden;
}

.founder-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.founder-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.2) saturate(0.8);
}

.founder-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(15, 13, 11, 0.95) 0%,
        rgba(15, 13, 11, 0.7) 50%,
        rgba(15, 13, 11, 0.9) 100%
    );
}

#zalozyciel .container {
    position: relative;
    z-index: 1;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-intro {
    text-align: right;
}

.founder-intro .section-label::before {
    display: none;
}

.founder-intro .section-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    margin-left: 0.75rem;
}

.founder-intro .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.founder-tagline {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-gold-light);
    margin-top: 0.75rem;
}

.founder-portrait {
    position: relative;
}

.portrait-frame {
    position: relative;
    border-radius: 200px 200px 24px 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.portrait-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--color-gold);
    border-radius: inherit;
    z-index: 2;
    opacity: 0.5;
}

.portrait-frame img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.portrait-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-bg-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 10px 30px var(--color-gold-glow);
}

.portrait-badge span {
    display: block;
    font-weight: 600;
    line-height: 1.2;
}

.portrait-badge span:first-child {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.portrait-badge span:last-child {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.founder-bio {
    padding-left: 1rem;
}

.bio-quote {
    margin-bottom: 2rem;
    position: relative;
}

.quote-icon {
    width: 40px;
    height: 40px;
    fill: var(--color-gold);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.bio-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.founder-bio p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.founder-bio strong {
    color: var(--color-gold-light);
}

/* ------------------------------------------------
   Moments Section
   ------------------------------------------------ */
.section-moments {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 100%);
}

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

.moment-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.moment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-copper));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}

.moment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: var(--color-gold-light);
}

.moment-card:hover::before {
    transform: scaleX(1);
}

.moment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.moment-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    background: rgba(201, 162, 39, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.moment-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.moment-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.moment-featured {
    grid-column: span 1;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1f1b18 100%);
    color: white;
    border-color: transparent;
}

.moment-featured h3 {
    color: var(--color-gold);
}

.moment-featured p {
    color: rgba(255,255,255,0.7);
}

/* ------------------------------------------------
   Collaborations Section
   ------------------------------------------------ */
.section-collabs {
    background: var(--color-bg-dark);
    color: white;
    overflow: hidden;
}

.collabs-header {
    text-align: center;
    margin-bottom: 3rem;
}

.collabs-header .section-label::before {
    display: none;
}

.collabs-marquee {
    margin-bottom: 4rem;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: rgba(255,255,255,0.3);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.collabs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.collab-category h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.collab-category li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.collab-category li:hover {
    color: white;
}

/* ------------------------------------------------
   Goals Section
   ------------------------------------------------ */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.goal-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all 0.4s var(--ease-out-expo);
}

.goal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}

.goal-visual {
    height: 220px;
    overflow: hidden;
}

.goal-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

.goal-content {
    padding: 2rem;
}

.goal-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-cream);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.goal-card:hover .goal-number {
    color: var(--color-gold-light);
}

.goal-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.goal-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.goal-featured {
    border-color: var(--color-gold-light);
}

.goal-featured .goal-number {
    color: var(--color-gold);
}

/* ------------------------------------------------
   Detailed Activities Section
   ------------------------------------------------ */
.section-activities-detailed {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 100%);
}

.activities-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.activity-block {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    transition: all 0.4s var(--ease-out-expo);
}

.activity-block:hover {
    border-color: var(--color-gold-light);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: translateY(-6px);
}

.activity-block-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.activity-block-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 14px;
    flex-shrink: 0;
}

.activity-block-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.activity-block h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
}

.activity-block-list {
    list-style: none;
}

.activity-block-list li {
    position: relative;
    padding-left: 1.5rem;
    padding-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.activity-block-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
}

.activity-block-list li:last-child {
    padding-bottom: 0;
}

/* Special Initiatives */
.special-initiatives {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.initiative-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
}

.initiative-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.initiative-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.initiative-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.initiative-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ------------------------------------------------
   Activities Section
   ------------------------------------------------ */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.activity {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: all 0.3s var(--ease-out-expo);
}

.activity:hover {
    border-color: var(--color-gold-light);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.activity-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: 12px;
    transition: all 0.3s var(--ease-out-expo);
}

.activity:hover .activity-icon {
    background: var(--color-gold);
}

.activity-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-gold);
    transition: stroke 0.3s;
}

.activity:hover .activity-icon svg {
    stroke: white;
}

.activity h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.activity p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ------------------------------------------------
   Gallery Section
   ------------------------------------------------ */
.section-gallery {
    padding-bottom: 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-dark) 100%);
}

.section-gallery .section-header {
    color: var(--color-text);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15,13,11,0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-expo);
}

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-out-expo);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item-tall {
    grid-row: span 2;
}

/* ------------------------------------------------
   Region Section
   ------------------------------------------------ */
.region-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
}

.region-intro p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.region-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out-expo);
}

.region-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--color-gold);
    transform: translateY(-8px);
}

.region-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.region-card h4 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
}

.region-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.partners {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.partners-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
}

.partners-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.partners-tags span {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s var(--ease-out-expo);
}

.partners-tags span:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: white;
}

/* ------------------------------------------------
   Products Section
   ------------------------------------------------ */
.products-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.products-intro p {
    color: var(--color-text-light);
    margin-top: 1rem;
}

.products-showcase {
    display: grid;
    gap: 1.5rem;
}

.product-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    transition: all 0.4s var(--ease-out-expo);
}

.product-card:hover {
    border-color: var(--color-gold-light);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    transform: translateX(8px);
}

.product-image {
    height: 140px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-bg-warm) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon-large {
    font-size: 3.5rem;
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h4 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-info p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ------------------------------------------------
   Contact Section
   ------------------------------------------------ */
.section-contact {
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.15) saturate(0.7);
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 13, 11, 0.97) 0%,
        rgba(15, 13, 11, 0.85) 100%
    );
}

.section-contact .container {
    position: relative;
    z-index: 1;
}

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

.contact-info {
    color: white;
}

.contact-info > p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-gold);
}

.contact-item strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.25rem;
}

.contact-item span {
    font-size: 1.1rem;
}

.contact-roles p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

.roles-list {
    display: flex;
    gap: 0.75rem;
}

.roles-list span {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    background: var(--color-gold);
    color: var(--color-bg-dark);
    border-radius: 50px;
    transition: all 0.3s var(--ease-out-expo);
}

.roles-list span:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
}

.contact-form {
    padding: 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    transition: all 0.3s var(--ease-out-expo);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: white;
    box-shadow: 0 0 0 4px var(--color-gold-glow);
}

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

.contact-form .btn {
    margin-top: 0.5rem;
}

/* ------------------------------------------------
   Footer
   ------------------------------------------------ */
.footer {
    background: var(--color-bg-dark);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
}

.footer-brand > p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    max-width: 350px;
    margin-bottom: 2rem;
}

.footer-founder {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    width: fit-content;
}

.founder-mini {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold);
}

.footer-founder span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
}

.footer-founder strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
}

/* ------------------------------------------------
   Animations
   ------------------------------------------------ */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .goal-card,
    .activity,
    .moment-card,
    .region-card,
    .product-card,
    .feature,
    .activity-block,
    .initiative-card {
        opacity: 0;
        transform: translateY(24px);
    }
    
    .goal-card.visible,
    .activity.visible,
    .moment-card.visible,
    .region-card.visible,
    .product-card.visible,
    .feature.visible,
    .activity-block.visible,
    .initiative-card.visible {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.6s var(--ease-out-expo);
    }
}

/* ------------------------------------------------
   Responsive Design
   ------------------------------------------------ */
@media (max-width: 1200px) {
    .founder-grid {
        grid-template-columns: 1fr 280px 1fr;
        gap: 3rem;
    }
    
    .hero-stats {
        right: 2rem;
    }
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-images {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    .about-content .section-label::before {
        display: none;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .founder-intro {
        text-align: center;
        order: 1;
    }
    
    .founder-intro .section-label::after {
        display: none;
    }
    
    .founder-portrait {
        order: 2;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .founder-bio {
        order: 3;
        padding-left: 0;
    }
    
    .hero-stats {
        display: none;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .moments-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .collabs-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .activities-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .special-initiatives {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .products-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .products-intro {
        text-align: center;
    }
    
    .products-intro .section-label::before {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 200px);
    }
    
    .gallery-item-tall {
        grid-row: span 1;
    }
    
.footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-brand > p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-founder {
        margin: 0 auto;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: right 0.4s var(--ease-out-expo);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 1.5rem;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-cta {
        font-size: 1.25rem !important;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-logo-text {
        display: none;
    }
    
    .nav-logo-img {
        height: 40px;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-logo-text {
        font-size: 1.35rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .about-images {
        height: 350px;
    }
    
    .about-img-main {
        width: 80%;
        height: 320px;
    }
    
    .about-img-secondary {
        width: 60%;
        height: 200px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .moments-grid {
        grid-template-columns: 1fr;
    }
    
    .collabs-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .activity {
        flex-direction: column;
        text-align: center;
    }
    
    .activity-icon {
        margin: 0 auto;
    }
    
    .activity-block {
        padding: 1.75rem;
    }
    
    .activity-block-header {
        flex-direction: column;
        text-align: center;
    }
    
    .special-initiatives {
        grid-template-columns: 1fr;
    }
    
    .initiative-card {
        padding: 1.5rem;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .roles-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }
    
    .gallery-item-wide {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: clamp(3rem, 10vw, 5rem);
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-accent {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .moment-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .portrait-badge {
        padding: 0.75rem 1.5rem;
    }
    
    .portrait-badge span:first-child {
        font-size: 1.25rem;
    }
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}

/* Success ripple for the contact form button.
   Defined here (not injected from JS) so the Content-Security-Policy
   can disallow inline styles. */
@keyframes ripple {
    from {
        transform: scale(0);
        opacity: 1;
    }
    to {
        transform: scale(1);
        opacity: 0;
    }
}

.btn-success-ripple {
    position: absolute;
    inset: 0;
    background: rgba(45, 106, 79, 0.1);
    border-radius: inherit;
    animation: ripple 0.6s ease-out;
}
