/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    font-family: 'EmiratesEssentials-Bold', system-ui, -apple-system, sans-serif;
    background: #0b0a0c;
    color: #eae6df;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* ===== CUSTOM FONTS ===== */
@font-face {
    font-family: 'EmiratesEssentials-Bold';
    src: url('../fonts/EmiratesEssentials-Bold.woff2') format('woff2'),
         url('../fonts/EmiratesEssentials-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'EmiratesEssentials-Thin';
    src: url('../fonts/EmiratesEssentials-Thin.woff2') format('woff2'),
         url('../fonts/EmiratesEssentials-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'The Stone Tribes';
    src: url('../fonts/The Stone Tribes.woff2') format('woff2'),
         url('../fonts/The Stone Tribes.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montebaldo-Light';
    src: url('../fonts/Montebaldo-Light.woff2') format('woff2'),
         url('../fonts/Montebaldo-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* ===== BACKGROUND ===== */
.site-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background-image: url('../bg/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(12px) brightness(0.55);
    transform: scale(1.02);
    pointer-events: none;
}

/* ===== GLASS UTILITY – same as post card ===== */
.glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    border-radius: inherit;
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(11, 10, 12, 0.6);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    overflow: visible;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.brand-link {
    text-decoration: none;
    font-family: 'The Stone Tribes', cursive, system-ui;
    font-size: 1.7rem;
    letter-spacing: 0.02em;
    color: #f0ebe3;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    transition: opacity 0.2s;
}
.brand-link:hover {
    opacity: 0.8;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}
.nav-desktop .nav-link {
    color: #cbc4bc;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    font-weight: 500;
}
.nav-desktop .nav-link:hover,
.nav-desktop .nav-link.active {
    color: #f0ebe3;
    border-bottom-color: rgba(255, 215, 150, 0.5);
}

/* ── Desktop Search ── */
.search-wrapper {
    position: relative;
    min-width: 200px;
    flex: 0 1 280px;
    z-index: 150;
    overflow: visible;
}
.search-bar {
    display: flex;
    align-items: center;
    padding: 0.3rem 0.8rem;
    border-radius: 40px;
    transition: background 0.2s, border-color 0.2s;
}
.search-bar:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 150, 0.3);
}
.search-icon-svg {
    color: #a09890;
    margin-right: 0.5rem;
    flex-shrink: 0;
}
.search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #f0ebe3;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    min-width: 60px;
    font-family: inherit;
}
.search-bar input::placeholder {
    color: #8a8280;
    opacity: 0.7;
}
.search-clear {
    background: none;
    border: none;
    color: #8a8280;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0 0.2rem;
    display: none;
    line-height: 1;
}
.search-clear.visible {
    display: block;
}
.search-clear:hover {
    color: #f0ebe3;
}

/* Desktop search results – liquid glass */
.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(20, 18, 22, 0.6);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0.6rem 0;
    max-height: 320px;
    overflow-y: auto;
    display: none;
    z-index: 200;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.search-results.active {
    display: block;
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1rem;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    color: #eae6df;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.search-result-item:last-child {
    border-bottom: none;
}
.search-result-item:hover,
.search-result-item:focus {
    background: rgba(255, 255, 255, 0.06);
}
.search-result-item img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.search-result-item .result-info {
    display: flex;
    flex-direction: column;
}
.search-result-item .result-title {
    font-size: 0.9rem;
    font-weight: 600;
}
.search-result-item .result-meta {
    font-size: 0.75rem;
    color: #a09890;
}
.no-results {
    padding: 1rem 1.2rem;
    color: #a09890;
    text-align: center;
    font-size: 0.95rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.13);
    cursor: pointer;
    padding: 0;
    border-radius: 15px;
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.hamburger:hover,
.hamburger.active {
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(255, 255, 255, 0.18);
}

.hamburger:active {
    transform: scale(0.95);
}
.hamburger-line {
    width: 26px;
    height: 2.5px;
    background: #eae6df;
    border-radius: 4px;
    transition: 0.25s ease;
    transform-origin: center;
}
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE NAV – true liquid glass ===== */
.nav-mobile {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    padding: 0 1rem;
    max-height: 0;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035) 45%, rgba(255, 255, 255, 0.07)),
        rgba(16, 17, 20, 0.30);
    backdrop-filter: blur(30px) saturate(180%) contrast(1.05);
    -webkit-backdrop-filter: blur(30px) saturate(180%) contrast(1.05);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.42),
        0 8px 24px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(255, 255, 255, 0.045);
    isolation: isolate;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top right;
    transition:
        max-height 0.4s ease,
        padding 0.3s ease,
        opacity 0.25s ease,
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        visibility 0s linear 0.4s;
}

.nav-mobile::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    border-radius: inherit;
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.20), transparent 32%),
        radial-gradient(circle at 100% 100%, rgba(255, 215, 150, 0.08), transparent 42%);
    pointer-events: none;
}

.nav-mobile::after {
    content: '';
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.055);
    pointer-events: none;
}

.nav-mobile.open {
    max-height: 600px;
    padding: 1.2rem 1rem 1.8rem;
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    overflow: visible;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
}
.nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}
.nav-mobile .nav-link {
    color: #cbc4bc;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 0.5rem 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.nav-mobile .nav-link.active {
    color: #f0ebe3;
}

.mobile-search {
    position: relative;
    width: 100%;
}
.mobile-search .search-bar {
    width: 100%;
}

/* Mobile search results – liquid glass */
.nav-mobile .search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 300;
    max-height: 320px;
    overflow-y: auto;
    background: rgba(20, 18, 22, 0.6);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    display: none;
}
.nav-mobile .search-results.active {
    display: block;
}

/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 5rem 1.5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero-heading {
    font-family: 'EmiratesEssentials-Thin', system-ui, sans-serif;
    font-weight: 100;
    font-size: clamp(2rem, 10vw, 3.5rem);
    letter-spacing: 0.04em;
    color: #f0ebe3;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.6rem;
    line-height: 1.1;
}
.hero-sub {
    font-family: 'EmiratesEssentials-Bold', system-ui, sans-serif;
    font-size: 1.1rem;
    color: #b0a89e;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

/* ===== POSTS GRID ===== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    position: relative;
    z-index: 1;
}

.post-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: inherit;
}
.post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 150, 0.15);
}
.post-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    background: #1a181a;
    transition: transform 0.4s ease;
}
.post-card:hover .post-card-img {
    transform: scale(1.02);
}
.post-card-body {
    padding: 1.2rem 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.post-card-title {
    font-family: 'EmiratesEssentials-Bold', system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #f0ebe3;
    line-height: 1.3;
}
.post-card-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.2rem;
    margin-bottom: 0.6rem;
    font-size: 0.8rem;
    color: #b0a89e;
}
.post-card-author-pic {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.post-card-description {
    font-family: 'EmiratesEssentials-Bold', system-ui, sans-serif;
    font-size: 0.9rem;
    color: #cbc4bc;
    line-height: 1.5;
    margin-top: 0.2rem;
    flex: 1;
}

/* ===== PAGE CONTENT ===== */
.page-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
    position: relative;
    z-index: 1;
}
.page-content h1 {
    font-family: 'EmiratesEssentials-Thin', system-ui, sans-serif;
    font-weight: 100;
    font-size: 2.4rem;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
    color: #f0ebe3;
    line-height: 1.3;
}
.page-content h2 {
    font-size: 1.2rem;
    color: #e0d8ce;
    margin-top: 1.8rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}
.page-content p {
    font-family: 'EmiratesEssentials-Bold', system-ui, sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbc4bc;
    margin-bottom: 1.2rem;
}
.page-content .highlight {
    color: #f0ebe3;
    font-weight: 700;
}
.page-content .divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 2rem 0;
}
.page-content ul {
    color: #cbc4bc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.page-content li {
    margin-bottom: 0.4rem;
}
.page-content .sub {
    color: #b0a89e;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.back-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: #b0a89e;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s, color 0.2s;
}
.back-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #f0ebe3;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2rem 1.8rem;
}
.contact-form label {
    display: block;
    font-size: 0.9rem;
    color: #cbc4bc;
    margin-bottom: 0.3rem;
    margin-top: 1.2rem;
    font-weight: 500;
}
.contact-form label:first-of-type {
    margin-top: 0;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #f0ebe3;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(255, 215, 150, 0.3);
    background: rgba(255, 255, 255, 0.07);
}
.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}
.contact-form .form-message {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    min-height: 1.6rem;
    color: #d4c8b0;
}
.contact-form button {
    margin-top: 1.2rem;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    border: none;
    background: rgba(255, 215, 150, 0.12);
    border: 1px solid rgba(255, 215, 150, 0.15);
    color: #f0ebe3;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: inherit;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.contact-form button:hover {
    background: rgba(255, 215, 150, 0.22);
}
.contact-form button:active {
    transform: scale(0.97);
}

/* ===== FOOTER ===== */
.site-footer {
    font-family: 'EmiratesEssentials-Thin', system-ui, sans-serif;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem 1.5rem 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.footer-tagline {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    color: #eae6df;
    margin-bottom: 0.2rem;
}
.footer-copy,
.footer-powered,
.footer-version {
    font-size: 0.85rem;
    color: #adacac;
    letter-spacing: 0.04em;
}
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
}

.social-link {
    color: #b0a89e;
    transition: color 0.2s, transform 0.2s, border-color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.social-link:hover {
    color: #f0ebe3;
    transform: scale(1.08);
    border-color: rgba(255, 215, 150, 0.2);
}
.social-link svg {
    width: 20px;
    height: 20px;
}

/* ===== NEWSLETTER ===== */
.newsletter-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(5, 7, 10, 0.22);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.newsletter-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 32%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 150, 0.055), transparent 34%);
    pointer-events: none;
}
.newsletter-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.newsletter-popup {
    max-width: 460px;
    width: 100%;
    padding: 2.2rem 2rem 2rem;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035) 48%, rgba(255, 255, 255, 0.075)),
        rgba(16, 17, 20, 0.28);
    backdrop-filter: blur(32px) saturate(180%) contrast(1.05);
    -webkit-backdrop-filter: blur(32px) saturate(180%) contrast(1.05);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.48),
        0 10px 30px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(20px) scale(0.985);
    transition: transform 0.45s cubic-bezier(.2,.8,.2,1), opacity 0.4s ease;
    opacity: 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.newsletter-popup::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.22), transparent 30%),
        radial-gradient(circle at 92% 92%, rgba(255, 215, 150, 0.10), transparent 38%);
    pointer-events: none;
    border-radius: inherit;
}

.newsletter-popup::after {
    content: '';
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.055);
    pointer-events: none;
}
.newsletter-overlay.active .newsletter-popup {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.newsletter-content,
.newsletter-close {
    position: relative;
    z-index: 2;
}
.newsletter-close {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    background: none;
    border: none;
    color: #a09890;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.newsletter-close:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #f0ebe3;
}
.newsletter-content {
    text-align: center;
}
.newsletter-content h2 {
    font-family: 'EmiratesEssentials-Bold', system-ui, sans-serif;
    font-size: 1.6rem;
    color: #f0ebe3;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}
.newsletter-content p {
    color: #b0a89e;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}
.newsletter-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.newsletter-input-group input {
    padding: 0.8rem 1rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #f0ebe3;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    font-family: inherit;
}
.newsletter-input-group input:focus {
    border-color: rgba(255, 215, 150, 0.3);
    background: rgba(255, 255, 255, 0.07);
}
.newsletter-input-group input::placeholder {
    color: #8a8280;
}
.newsletter-input-group button {
    padding: 0.8rem 1rem;
    border-radius: 40px;
    border: none;
    background: rgba(255, 215, 150, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 215, 150, 0.15);
    color: #f0ebe3;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: inherit;
}
.newsletter-input-group button:hover {
    background: rgba(255, 215, 150, 0.25);
}
.newsletter-input-group button:active {
    transform: scale(0.97);
}
.newsletter-message {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    min-height: 1.4rem;
    color: #d4c8b0;
}
.newsletter-footnote {
    font-size: 0.75rem;
    color: #7a726a;
    margin-top: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .nav-desktop {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .search-wrapper {
        display: none;
    }
    .header-inner {
        flex-wrap: nowrap;
    }
    .brand-link {
        font-size: 1.4rem;
    }
}

@media (min-width: 993px) {
    .nav-mobile {
        display: none !important;
        max-height: 0 !important;
        padding: 0 !important;
    }
    .mobile-search {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .site-header {
        padding: 0.5rem 1rem;
    }
    .brand-link {
        font-size: 1.2rem;
    }
    .hero {
        padding: 3rem 1rem 2rem;
    }
    .hero-heading {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }
    .posts-grid {
        grid-template-columns: 1fr;
        padding: 1rem 1rem 3rem;
        gap: 1.5rem;
    }
    .newsletter-popup {
        padding: 1.8rem 1.2rem 1.5rem;
        margin: 0.5rem;
        border-radius: 24px;
    }

    .nav-mobile {
        left: 0.75rem;
        right: 0.75rem;
        border-radius: 22px;
    }
    .newsletter-content h2 {
        font-size: 1.3rem;
    }
    .page-content h1 {
        font-size: 1.8rem;
    }
    .contact-form {
        padding: 1.5rem 1rem;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}