/* MPDA — Gold / Black / White Design System */
:root {
    --gold: #C9A227;
    --gold-light: #E8C547;
    --gold-dark: #A6851F;
    --black: #0D0D0D;
    --black-soft: #111111;
    --black-card: #141414;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-400: #999;
    --gray-600: #666;
    --text-muted: rgba(255, 255, 255, 0.6);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --shadow: 0 4px 24px rgba(0,0,0,0.25);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.4);
    --radius: 2px;
    --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--white);
    background: #000;
    line-height: 1.6;
    overflow-x: hidden;
}

.site-theme {
    background: #000;
    color: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.25;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
    color: var(--white);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-subtitle { margin-left: auto; margin-right: auto; }

.gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,162,39,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--gold);
}
.btn-outline:hover {
    background: rgba(201, 162, 39, 0.12);
    color: var(--white);
}

.btn-dark {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}
.btn-dark:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Header — Premium (site-wide) */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header--premium {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-bottom: none;
}

.site-header--premium.scrolled {
    background: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
    height: 80px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    justify-self: start;
    z-index: 2;
}

.logo--text .logo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: block;
    object-fit: cover;
    object-position: center 20%;
}

.logo--text .logo-wordmark {
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.06em;
    line-height: 1.2;
    white-space: nowrap;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    grid-column: 2;
}

.header-end {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    justify-self: end;
    grid-column: 3;
    z-index: 2;
}

.main-nav {
    display: flex;
    align-items: center;
}

.site-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1.75rem);
}

.site-nav-list a {
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
    padding: 0.25rem 0;
    white-space: nowrap;
    background: none;
    transition: color var(--transition);
    position: relative;
}

.site-nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.site-nav-list a:hover,
.site-nav-list a.active {
    color: var(--gold);
    background: none;
}

.site-nav-list a:hover::after,
.site-nav-list a.active::after {
    transform: scaleX(1);
}

.header-nav-mobile {
    display: none;
}

.lang-switch--desktop {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-right: 0.25rem;
}

.lang-switch--desktop a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.15rem 0.3rem;
}

.lang-switch--desktop a.active { color: var(--gold); }
.lang-switch--desktop span { color: rgba(255, 255, 255, 0.2); font-size: 0.65rem; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 1.35rem;
    background: var(--gold);
    color: #000;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
    border-radius: 3px;
    border: none;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.btn-header-cta:hover {
    background: var(--gold-light);
    transform: none;
    box-shadow: none;
    color: #000;
}

.logo-img { width: 44px; height: 44px; }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-text strong { font-size: 1.1rem; color: var(--gold); }
.logo-text small { font-size: 0.7rem; color: var(--gray-400); letter-spacing: 1px; text-transform: uppercase; }

.main-nav {
    display: flex;
    align-items: center;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255,255,255,0.15);
}

.lang-switch a {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
}
.lang-switch a.active { color: var(--gold); }
.lang-switch span { color: rgba(255,255,255,0.3); font-size: 0.75rem; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    justify-self: end;
    grid-column: 3;
    z-index: 3;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--black) 0%, #1a1508 50%, var(--black-soft) 100%);
    overflow: hidden;
    padding-top: 72px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/galery-categorized/01-featured-website/DSC08076.jpg') center/cover;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,13,13,0.95) 40%, rgba(13,13,13,0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(201,162,39,0.15);
    border: 1px solid rgba(201,162,39,0.4);
    border-radius: var(--radius);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.hero-desc {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--gold);
}
.hero-stat span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* Sections */
section { padding: 5.5rem 0; background: #000; }
section.bg-light { background: #0a0a0a; }
section.bg-dark {
    background: #111;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
section.bg-dark .section-title { color: var(--white); }
section.bg-dark .section-subtitle { color: var(--text-muted); }

.page-inner section { background: #000; }

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--black-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), border-color var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.35);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
}

.card-body { padding: 1.5rem; }

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

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

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.card-meta strong { color: var(--gold); min-width: 60px; }

/* Style cards */
.style-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--black-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.style-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
}

.style-card h3 { color: #fff; margin-bottom: 0.75rem; }
.style-card p { color: var(--text-muted); }

.style-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.style-card h3 { margin-bottom: 0.75rem; }

/* Event banner */
.event-banner {
    background: #111;
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: var(--radius);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--white);
}

.event-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.event-banner p { color: var(--text-muted); }

.event-date {
    background: rgba(201, 162, 39, 0.15);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    min-width: 120px;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.event-date strong {
    display: block;
    font-size: 2rem;
    font-family: var(--font-serif);
    color: var(--gold);
}

.event-date span { color: var(--text-muted); font-size: 0.85rem; }

/* Founder section */
.founder-block {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.founder-image {
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.4);
    box-shadow: var(--shadow-lg);
    background: #0a0a0a;
}

.founder-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% 18%;
}

.page-inner .founder-block p {
    color: var(--text-muted);
}

.contact-form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.text-muted {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.text-center { text-align: center; }

.form-submit-full {
    margin-top: 1.5rem;
    width: 100%;
}

.founder-quote {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    border-left: 4px solid var(--gold);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.founder-name {
    color: var(--gold);
    font-weight: 600;
}

.founder-block .section-title { color: #fff; }

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--black-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-top: 1.5rem;
}

.testimonial-author strong { color: var(--white); }
.testimonial-author span { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

.stars { color: var(--gold); margin-bottom: 0.5rem; letter-spacing: 2px; }

/* Page header */
.page-header {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.94)),
        url('../images/galery-categorized/01-featured-website/DSC08178.jpg') center 42% / cover no-repeat;
    padding: 9rem 0 4rem;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(201,162,39,0.08) 0%, transparent 55%);
    pointer-events: none;
}

.page-header .container { position: relative; z-index: 1; }

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
    color: #fff;
}

.page-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.page-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1.5rem auto 0;
}

/* About page */
.about-intro {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-intro__image {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.28);
    box-shadow: var(--shadow-lg);
}

.about-intro__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section { margin-bottom: 3rem; }
.about-section h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-family: var(--font-serif);
}

.about-section p {
    color: var(--text-muted);
    line-height: 1.75;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.values-list li {
    padding: 0.75rem 1rem;
    background: var(--black-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--gold);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Gallery */
.gallery-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.gallery-category-list span {
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 0.8rem;
    background: rgba(255, 255, 255, 0.04);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.05), rgba(13, 13, 13, 0.72));
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    opacity: 0;
    transition: opacity var(--transition);
    color: var(--white);
    font-weight: 600;
    padding: 1rem;
}

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

/* Forms */
.form-section { max-width: 720px; margin: 0 auto; }

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

.form-group { margin-bottom: 0; }
.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    background: var(--black-card);
    color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group select option {
    background: #111;
    color: #fff;
}

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

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

.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card {
    padding: 1.5rem;
    background: var(--black-card);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--gold);
}

.contact-info-card h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.contact-info-card p { font-size: 1.05rem; color: rgba(255,255,255,0.85); }
.contact-info-card a:hover { color: var(--gold-light); }

.map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-embed iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card .card-image { height: 180px; }

.blog-date {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.awards-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
}

.awards-list li::before {
    content: '★';
    color: var(--gold);
    flex-shrink: 0;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    background: var(--black-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer — Premium (site-wide) */
.home-footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4rem 0 0;
}

.home-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.home-footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.home-footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 320px;
}

.home-footer-col h4 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-family: var(--font-sans);
}

.home-footer-col ul li { margin-bottom: 0.6rem; }

.home-footer-col a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
}

.home-footer-col a:hover { color: var(--gold); }

.home-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
    text-align: center;
}

.home-footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.social-icons { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,162,39,0.15);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: var(--radius);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    transition: all var(--transition);
}
.social-icons a:hover {
    background: var(--gold);
    color: var(--black);
}

/* Admin styles */
.admin-body { background: var(--gray-100); min-height: 100vh; }
.admin-header {
    background: var(--black);
    color: var(--white);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-header h1 { font-size: 1.25rem; color: var(--gold); }
.admin-nav { display: flex; gap: 1rem; }
.admin-nav a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.admin-nav a:hover { color: var(--gold); }
.admin-content { padding: 2rem; max-width: 1200px; margin: 0 auto; }
.admin-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.admin-table th, .admin-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}
.admin-table th {
    background: var(--gray-100);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.admin-table tr:hover td { background: rgba(201,162,39,0.05); }
.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-pending { background: #fff3cd; color: #856404; }
.badge-approved { background: #d4edda; color: #155724; }
.login-box {
    max-width: 400px;
    margin: 5rem auto;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.login-box h2 { text-align: center; margin-bottom: 1.5rem; color: var(--black); }

/* Responsive */
@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: 1fr auto;
        height: 72px;
    }

    .logo--text .logo-icon {
        width: 38px;
        height: 38px;
    }

    .logo--text .logo-wordmark {
        font-size: clamp(0.95rem, 3.2vw, 1.15rem);
    }

    .header-end {
        display: none;
    }

    .lang-switch--desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.97);
        padding: 1.25rem;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        border-bottom: 1px solid rgba(201,162,39,0.2);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        z-index: 999;
        grid-column: 1 / -1;
    }

    .header-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .site-nav-list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
    }

    .site-nav-list a {
        padding: 0.85rem 0.5rem;
        display: block;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .site-nav-list a::after {
        display: none;
    }

    .header-nav-mobile {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .header-nav-mobile .lang-switch {
        justify-content: center;
        margin: 0;
        padding: 0;
        border: none;
    }

    .btn-header-cta--mobile {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .home-footer-grid { grid-template-columns: 1fr 1fr; }
    .about-intro { grid-template-columns: 1fr; }
    .founder-block { grid-template-columns: 1fr; }
    .founder-image { max-height: 350px; aspect-ratio: auto; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .lang-switch {
        margin: 0;
        padding: 0;
        border-left: none;
        justify-content: center;
    }

    .form-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .event-banner { flex-direction: column; text-align: center; }
    .home-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    section { padding: 3.5rem 0; }
    .hero-content { padding: 2rem 0; }
}
