/* ============================================================
   Robert Mamani — Sky Hawk Homepage Styles
   Andean Indigenous Theme — Real Photos Edition
   ============================================================ */

/* === CSS VARIABLES === */
:root {
    --bg-dark: #0D0B1A;
    --bg-section: #12101F;
    --bg-card: #1A1730;
    --gold: #D4A017;
    --gold-light: #E8C84A;
    --terracotta: #C2452D;
    --andean-blue: #1B1464;
    --brown: #3B2314;
    --sand: #E8D5B7;
    --text-light: #D0CDE0;
    --text-muted: #8A86A0;
    --font-display: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
    --container: 1200px;
    --radius: 8px;
    --transition: 0.3s ease;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-light);
    background: var(--bg-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-light);
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* === SECTION TITLE === */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.section-title__ornament {
    display: inline-block;
    margin: 0 0.5em;
    color: var(--terracotta);
    font-size: 0.6em;
    vertical-align: middle;
}

/* === SCROLL REVEAL === */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    background: rgba(13, 11, 26, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
}

.header__logo:hover {
    color: var(--gold-light);
}

.header__logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.header__logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 24px;
    /* Reduced from 32px to fit 8 items */
}

.header__nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.03em;
    position: relative;
    padding-bottom: 4px;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.header__nav-link:hover {
    color: var(--gold);
}

.header__nav-link:hover::after {
    width: 100%;
}

/* Language */
.header__lang {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.header__lang-active {
    color: var(--gold);
    font-weight: 700;
}

.header__lang-sep {
    opacity: 0.4;
}

.header__lang-link {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.header__lang-link:hover {
    color: var(--gold);
}

/* Burger */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.header__burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: brightness(0.5) saturate(1.2);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(13, 11, 26, 0.5) 0%,
            rgba(13, 11, 26, 0.2) 40%,
            rgba(13, 11, 26, 0.6) 80%,
            rgba(13, 11, 26, 0.95) 100%);
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 0 24px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--sand);
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.4em;
    letter-spacing: 0.06em;
    animation: fadeInUp 1.2s ease;
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.4s forwards;
}

.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.8s forwards;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    transition: all var(--transition);
    text-transform: none;
}

.hero__cta--primary {
    background: rgba(212, 160, 23, 0.15);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.hero__cta--primary:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(212, 160, 23, 0.3);
}

.hero__cta--secondary {
    background: rgba(194, 69, 45, 0.15);
    color: var(--terracotta);
    border: 2px solid var(--terracotta);
}

.hero__cta--secondary:hover {
    background: var(--terracotta);
    color: #fff;
    transform: translateY(-2px);
}

.hero__cta--ghost {
    color: var(--text-light);
    border: 1px solid rgba(208, 205, 224, 0.3);
}

.hero__cta--ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: var(--gold);
    opacity: 0.5;
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes bounceDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: 100px 0 80px;
    background: var(--bg-dark);
}

.about__grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: center;
}

.about__portrait-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 3px solid rgba(212, 160, 23, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

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

.about__text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about__bio {
    margin-bottom: 1.2em;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about__btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 12px 28px;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all var(--transition);
}

.about__btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    padding: 80px 0;
    background: var(--bg-section);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(212, 160, 23, 0.1);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 160, 23, 0.3);
}

.service-card__img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card__img {
    transform: scale(1.08);
}

.service-card__icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: rgba(13, 11, 26, 0.75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    backdrop-filter: blur(6px);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    padding: 20px 20px 8px;
}

.service-card__desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    padding: 0 20px;
    line-height: 1.6;
}

.service-card__link {
    display: inline-block;
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--terracotta);
    letter-spacing: 0.03em;
}

.service-card__link:hover {
    color: var(--gold);
}

/* ============================================================
   QUOTE
   ============================================================ */
.quote-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.quote-section__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1B1464 0%, #3B2314 50%, #0D0B1A 100%);
}

.quote-section__overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 40px,
            rgba(212, 160, 23, 0.03) 40px,
            rgba(212, 160, 23, 0.03) 41px);
}

.quote-section .container {
    position: relative;
    z-index: 2;
}

.quote-section__text {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--sand);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-style: italic;
    border: none;
    padding: 0;
}

.quote-section__author {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
    padding: 80px 0;
    background: var(--bg-dark);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

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

.gallery__item:hover .gallery__img {
    transform: scale(1.08);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 11, 26, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__overlay span {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--gold);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    backdrop-filter: blur(8px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--sand);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2001;
    transition: color var(--transition);
}

.lightbox__close:hover {
    color: var(--gold);
}

.lightbox__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox__image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox__caption {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: 80px 0;
    background: var(--bg-section);
    overflow: hidden;
}

.testimonials__carousel {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.testimonials__track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    text-align: center;
}

.testimonial-card__avatar {
    margin: 0 auto 20px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(212, 160, 23, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
}

.testimonial-card__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card__name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--gold);
    margin-bottom: 4px;
}

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

.testimonials__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.testimonials__btn {
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.3);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.testimonials__btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.testimonials__dots {
    display: flex;
    gap: 8px;
}

.testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.2);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.testimonials__dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ============================================================
   EVENTS
   ============================================================ */
.events {
    padding: 80px 0;
    background: var(--bg-dark);
}

.events__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid rgba(212, 160, 23, 0.1);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.event-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 160, 23, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.event-card__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.event-card__badge--concert {
    background: rgba(212, 160, 23, 0.15);
    color: var(--gold);
}

.event-card__badge--healing {
    background: rgba(27, 20, 100, 0.3);
    color: #8B7FB8;
}

.event-card__badge--lesson {
    background: rgba(194, 69, 45, 0.15);
    color: var(--terracotta);
}

.event-card__date {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.event-card__day {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.event-card__month {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.event-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--sand);
    margin-bottom: 8px;
}

.event-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.event-card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.events__note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================================
   SOCIAL
   ============================================================ */
.social {
    padding: 60px 0;
    background: var(--bg-section);
}

.social__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.social__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 28px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: var(--radius);
    color: var(--text-muted);
    transition: all var(--transition);
    min-width: 120px;
}

.social__link:hover {
    color: var(--gold);
    border-color: rgba(212, 160, 23, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.social__link span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    padding: 80px 0;
    background: var(--bg-dark);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__field {
    margin-bottom: 20px;
}

.contact__label {
    display: block;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact__input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: var(--radius);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact__input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.contact__input::placeholder {
    color: var(--text-muted);
}

.contact__textarea {
    resize: vertical;
    min-height: 100px;
}

.contact__submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: rgba(212, 160, 23, 0.15);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

.contact__submit:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact__details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Updated Contact Links (Telegram/WhatsApp) */
.contact__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.contact__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition);
    width: fit-content;
    color: #fff;
    /* Default text color for buttons */
}

/* WhatsApp Modifier */
.contact__link--whatsapp {
    background: #25D366;
}

.contact__link--whatsapp:hover {
    background: #1DA851;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

/* Telegram Modifier */
.contact__link--telegram {
    background: #229ED9;
}

.contact__link--telegram:hover {
    background: #1B8ABF;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(34, 158, 217, 0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #080614;
    padding-top: 0;
}

.footer__ornament {
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--terracotta));
    opacity: 0.6;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 32px;
}

.footer__logo {
    border-radius: 50%;
    margin-bottom: 12px;
}

.footer__brand-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer__col-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.footer__col--nav a,
.footer__col--contacts p {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    transition: color var(--transition);
}

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

.footer__social-links {
    display: flex;
    gap: 12px;
}

.footer__social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    transition: all var(--transition);
}

.footer__social-links a:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.footer__bottom {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid rgba(212, 160, 23, 0.1);
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

/* Tablet */
@media (max-width: 1024px) {
    .about__grid {
        grid-template-columns: 260px 1fr;
        gap: 40px;
    }

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

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

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

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

/* Mobile */
@media (max-width: 768px) {
    .header__nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13, 11, 26, 0.97);
        backdrop-filter: blur(16px);
        z-index: 999;
        align-items: center;
        justify-content: center;
    }

    .header__nav.active {
        display: flex;
    }

    .header__nav-list {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .header__nav-link {
        font-size: 1.3rem;
    }

    .header__lang {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .hero__cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero__cta {
        width: 260px;
        justify-content: center;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about__portrait-frame {
        max-width: 280px;
        margin: 0 auto;
    }

    .about__text .section-title {
        text-align: center;
    }

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

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

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

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer__social-links {
        justify-content: center;
    }
}

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

    .social__grid {
        flex-direction: column;
        align-items: center;
    }

    .social__link {
        width: 100%;
        max-width: 280px;
        flex-direction: row;
    }

    /* Contact buttons generic responsive */
    .contact__links {
        flex-direction: column;
    }

    .contact__link {
        width: 100%;
        justify-content: center;
    }
}