:root {
    --gold: #b2512f;
    --gold-light: #E8C97A;
    --gold-dark: #B2512F;
    --sand: #F5EDD8;
    --sand-dark: #E8D9B8;
    --dark: #0A0A0F;
    --dark-2: #12121A;
    --dark-3: #1A1A26;
    --white: #FDFAF4;
    --text-muted: #8A8070;
    --nav-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: background 0.3s;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.nav-logo {
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    text-decoration: none;
}

.nav-logo span {
    color: var(--dark);
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(26, 26, 26, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--sand) !important;
    padding: 0.45rem 1.3rem !important;
    border-radius: 2px;
    font-weight: 700 !important;
    transition: background 0.25s !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta_lng {
/*    background: var(--sand);*/
      border: 1px solid var(--gold);
    color: var(--sand) !important;
    padding: 0.45rem 1.3rem !important;
    border-radius: 2px;
    font-weight: 700 !important;
    transition: background 0.25s !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ── HERO ── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to bottom,
            rgba(178, 81, 47, 0.05) 0%,
            rgba(178, 81, 47, 0.25) 50%,
            rgba(178, 81, 47, 0.4) 100%),
        radial-gradient(ellipse 80% 60% at 50% 70%,
            rgba(178, 81, 47, 0.2) 0%,
            transparent 70%),
        url("../img/background_qasab.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* animated star field */
.stars {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(201, 168, 76, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 35% 60%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 15%, rgba(201, 168, 76, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 45%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 20% 80%, rgba(201, 168, 76, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 70% 75%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 45% 35%, rgba(201, 168, 76, 0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 10%, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    animation: twinkle 4s ease-in-out infinite alternate;
}

.stars::after {
    animation-delay: 2s;
    opacity: 0.6;
}

@keyframes twinkle {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

/* desert silhouette */
.hero-silhouette {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--dark) 30%, transparent);
    z-index: 1;
}

.hero-silhouette svg {
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    padding: 0.35rem 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    animation: heroFadeIn 1s 0.2s both;
}

.hero-title {
    /**/
    font-size: clamp(3.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 0.3rem;
    animation: heroFadeIn 1s 0.4s both;
}

.hero-title .gold {
    color: var(--gold);
}

.hero-subtitle-ar {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    letter-spacing: 0.1em;
    animation: heroFadeIn 1s 0.55s both;
}

.hero-desc {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(253, 250, 244, 0.7);
    line-height: 1.85;
    max-width: 620px;
    margin: 0 auto 2.5rem;
    animation: heroFadeIn 0.25s 0.25s both;
}

.hero-btns {
    display: flex;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 2px;
    overflow: hidden;
    animation: heroFadeIn 1s 0.85s both;
}

.hero-tab {
    flex: 1;
    background: rgba(10, 10, 15, 0.15);
    color: rgba(253, 250, 244, 0.6);
    padding: 0.85rem 1rem;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-left: 1px solid rgba(201, 168, 76, 0.2);
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    text-align: center;
}

.hero-tab:first-child {
    border-left: none;
}

.hero-tab:hover {
    background: rgba(201, 168, 76, 0.15);
    color: var(--white);
}

.hero-tab.active {
    background: var(--gold);
    color: var(--white);
    font-weight: 700;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 1);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(8px)
    }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--white), transparent);
}

/* ── SECTION BASE ── */
section {
    padding: 6rem 4rem;
}

.section-label {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.section-title-sec {

    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1;
    margin-top: .5rem;
    margin-bottom: 1rem;
    color: var(--gold-dark);
}

.section-desc {
    color: #555;
    line-height: 1.85;
    max-width: 680px;
    font-size: 1.05rem;
}

.section-desc-no-width {
    color: #555;
    line-height: 1.85;
    /*max-width: 680px;*/
    font-size: 1.05rem;
}

/* ── ABOUT / OVERVIEW ── */
#about {
    background: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-frame {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f9f4f3, #f9f4f3);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-img-frame img {
    width: 80%;
    height: 80%;
    opacity: 0.85;
}

.about-stat-pill {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    padding: 0.9rem 2.5rem;
    display: flex;
    gap: 3rem;
    border-radius: 2px;
    white-space: nowrap;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 0.2rem;
}

.about-text {
    padding-top: 2rem;
}

.geo-facts {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.geo-fact {
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 1rem 1.2rem;
    border-radius: 2px;
    background: #f9f4f3;
}

.geo-fact-label {
    font-size: 0.72rem;
    color: var(--gold-dark);
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}

.geo-fact-val {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* ── SALT SECTION ── */
#salt {
    background: #f9f4f3;
    display: grid;
    grid-template-columns: 1.8fr .85fr;
    gap: 5rem;
    align-items: center;
}

.salt-visual {
    order: 2;
    display: grid;
    grid-template-columns: 1fr;
    /*gap: 1rem;*/
}

.salt-img {
    /*background: #ede8dc;
    border: 1px solid rgba(201, 168, 76, 0.2);
       border-radius: 2px;*/
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
 
    transition: transform 0.3s;
}

.salt-img:first-child {
    /* grid-column: span 2;
    aspect-ratio: 16/7; */
}

.salt-img:hover {
    transform: scale(1.02);
}

.salt-img svg {
    width: 60%;
    height: 60%;
    opacity: 0.75;
}

.salt-text {
    order: 1;
}

.salt-steps {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.salt-step {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: .5rem 1rem;
    border-right: 2px solid var(--gold);
    background: rgba(201, 168, 76, 0.06);
    transition: background 0.25s;
}

.salt-step:hover {
    background: rgba(201, 168, 76, 0.12);
}

.step-num {
    font-size: 1.5rem;
    color: var(--gold-dark);
    font-weight: 700;
    line-height: 1;
    min-width: 2rem;
}

.step-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #1a1a1a;
}

.step-body p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* ── PLACES ── */
#places {
    background: #ffffff;
}

#places .section-header {
   /* text-align: right;*/
    margin-bottom: 3rem;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.place-card {
    border: 1px solid #e8e0d0;
    background: #f9f4f3;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
}

.place-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 12px 32px rgba(201, 168, 76, 0.15);
}

.place-card:hover .place-icon-bg {
    background: rgba(201, 168, 76, 0.12);
}

.place-icon-bg {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #f0ebe0, rgba(201, 168, 76, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.place-icon-bg svg {
    width: 3.5rem;
    height: 3.5rem;
    opacity: 0.75;
}

.place-icon-bg img {
    width: 36.5rem;
    height: 20.5rem;
    opacity: 1;
}

.place-info {
    padding: 1.2rem 1.4rem;
}

.place-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.place-desc {
    font-size: 0.83rem;
    color: #666;
    line-height: 1.65;
}

.place-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold-dark);
    font-size: 0.8rem;
    margin-top: 0.8rem;
    text-decoration: none;
    transition: gap 0.2s;
}

.place-link:hover {
    gap: 0.7rem;
}

/* ── FESTIVAL ── */
#festival {
    background: #f9f4f3;
}

#festival .section-header {
    /*text-align: right;*/
    margin-bottom: 3rem;
}

.festival-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.tab-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #888;
    padding: 0.9rem 2rem;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.25s, border-color 0.25s;
}

.tab-btn.active {
    color: var(--gold-dark);
    border-color: var(--gold);
}

.tab-btn:hover {
    color: #1a1a1a;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.festival-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.f-stat {
    text-align: center;
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 1.2rem 1.5rem;
    border-radius: 2px;
    background: rgba(201, 168, 76, 0.07);
}

.f-stat-num {
    font-size: 2rem;
    color: var(--gold-dark);
    font-weight: 700;
    line-height: 1;
}

.f-stat-label {
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.4rem;
}

.sponsors-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.sponsor-badge {
    /* background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3); 
    border-radius: 2px;
    */
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;

}

.sponsor-badge img {
    max-width: 100px;
    max-height: 50px;
    opacity: 1;
    /*border: 2px solid red;*/
    border-radius: 10px;
}

.festival-visual {
    /*background: linear-gradient(135deg, #ede8dc, #f5f0e8);
    border: 1px solid rgba(201, 168, 76, 0.25);*/
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.festival-visual svg {
    width: 70%;
    height: 70%;
    opacity: 0.75;
}

.festival-visual img {
    width: 95%;
    height: 70%;
    opacity: 1;
    /*border: 2px solid red;*/
    border-radius: 50px 20px;
}


/* ── WINTER CALENDAR ── */
#winter {
    background: #ffffff;
}

#winter .section-header {
    text-align: right;
    margin-bottom: 3rem;
}

.winter-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.winter-card {
    padding: 2rem 2.2rem;
    border: 1px solid #e8e0d0;
    border-radius: 3px;
    background: #faf8f4;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.winter-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s;
}

.winter-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.12);
}

.winter-card:hover::before {
    height: 100%;
}

.winter-card-icon {
    width: 2.8rem;
    height: 2.8rem;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.winter-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--gold-dark);
}

.winter-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: #1a1a1a;
}

.winter-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.75;
}

/* ── BOOKING / CONTACT ── */
#booking {
    background:#ffffff;
}

#booking .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#booking .section-title {
    margin: 0 auto 1rem;
}

#booking .section-desc {
    margin: 0 auto 2rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.4rem;
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.contact-detail-icon {
    width: 2.2rem;
    height: 2.2rem;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 1rem;
    height: 1rem;
    stroke: var(--gold-dark);
}

.contact-detail-text {
    font-size: 0.9rem;
    color: #444;
}

.faq-section {
    max-width: 1000px;
    margin: 4rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.faq-title {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.faq-list {
    margin-top: 0;
}

.faq-item {
    border-bottom: 1px solid #e8e0d0;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    gap: 1rem;
}

.faq-q svg {
    width: 1rem;
    height: 1rem;
    stroke: var(--gold-dark);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-q.open svg {
    transform: rotate(45deg);
}

.faq-a {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-a.open {
    max-height: 200px;
    padding-bottom: 1rem;
}

/* Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    color: var(--gold-dark);
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid #ddd4be;
    color: #1a1a1a;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.25s;
    direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.form-submit {
    background: var(--gold);
    color: var(--gold-light);
    padding: 0.9rem 2rem;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.25s, transform 0.2s;
    align-self: flex-start;
}

.form-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
    background: #f9f4f3;
    border-top: 1px solid rgba(201, 168, 76, 0.25);
    padding: 3rem 4rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand h3 {
    color: var(--gold-dark);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.75;
}

.footer-col h4 {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    color: var(--gold-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-col ul a {
    color: #777;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.25s;
}

.footer-col ul a:hover {
    color: var(--gold-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #999;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s;
    font-size: 0.75rem;
}

.social-links a:hover {
    border-color: var(--gold-dark);
    color: var(--gold-dark);
}

/* ── MOBILE MENU ── */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    right: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding: 1.5rem 2rem;
    z-index: 999;
    flex-direction: column;
    gap: 1.2rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: #444;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #eee;
    transition: color 0.25s;
}

.mobile-menu a:hover {
    color: var(--gold-dark);
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    section {
        padding: 4rem 2rem;
    }

    nav {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    #about,
    #salt {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .salt-visual {
        order: 0;
    }

    .salt-text {
        order: 0;
    }

    .places-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tab-panel.active {
        grid-template-columns: 1fr;
    }

    .winter-cards {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 2.5rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .about-stat-pill {
        position: static;
        transform: none;
        margin-top: 2rem;
    }
}

@media (max-width: 600px) {
    .places-grid {
        grid-template-columns: 1fr;
    }

    .festival-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: row;
    }

    .hero-tab {
        font-size: 0.8rem;
        padding: 0.7rem 0.5rem;
    }

    .geo-facts {
        grid-template-columns: 1fr;
    }
}

/* golden divider */
.divider {
    width: 3rem;
    height: 2px;
    background: var(--gold);
    margin: 1rem 0 1.5rem;
}

.divider.center {
    margin: 1rem auto 1.5rem;
}

/* toast */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--gold);
    color: var(--dark);
    padding: 0.8rem 2rem;
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.4s ease;
    z-index: 9999;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}