/* ============================================
   DentalEmerg — Casino Events Australia
   Unique design: slate + copper, bento layout
   Burger menu at 991px
   ============================================ */

:root {
    --dem-bg: #0a0e17;
    --dem-bg-card: #111827;
    --dem-bg-soft: #151c2c;
    --dem-surface: rgba(255, 255, 255, 0.04);
    --dem-border: rgba(255, 255, 255, 0.08);
    --dem-text: #e8e6ed;
    --dem-text-muted: #8b8fa8;
    --dem-accent: #c9a227;
    --dem-accent-hover: #d4af37;
    --dem-accent-soft: rgba(201, 162, 39, 0.15);
    --dem-copper: #b87333;
    --dem-font: 'Manrope', system-ui, sans-serif;
    --dem-font-head: 'Cormorant Garamond', Georgia, serif;
    --dem-radius: 12px;
    --dem-radius-lg: 20px;
    --dem-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --dem-transition: 0.3s var(--dem-ease);
    --dem-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--dem-font);
    background: var(--dem-bg);
    color: var(--dem-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.dem-menu-open { overflow: hidden; }

/* ========== Decorative bg ========== */
.dem-bg-pattern {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 162, 39, 0.07) 0%, transparent 50%),
        linear-gradient(180deg, var(--dem-bg) 0%, var(--dem-bg-soft) 100%);
}

.dem-wrap { position: relative; z-index: 1; }

/* ========== Cookie bar ========== */
.dem-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1rem 1.5rem;
    background: var(--dem-bg-card);
    border-top: 1px solid var(--dem-border);
    transform: translateY(100%);
    transition: transform var(--dem-transition);
}

.dem-cookie.is-visible { transform: translateY(0); }

.dem-cookie__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.dem-cookie__text {
    flex: 1;
    min-width: 260px;
    font-size: 0.9rem;
    color: var(--dem-text-muted);
}

.dem-cookie__text a { color: var(--dem-accent); text-decoration: underline; }

.dem-cookie__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.dem-cookie__btn {
    padding: 0.5rem 1rem;
    border-radius: var(--dem-radius);
    font-family: var(--dem-font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background var(--dem-transition), color var(--dem-transition);
}

.dem-cookie__btn--accept { background: var(--dem-accent); color: #0a0e17; }
.dem-cookie__btn--accept:hover { background: var(--dem-accent-hover); }
.dem-cookie__btn--reject {
    background: var(--dem-surface);
    color: var(--dem-text-muted);
    border: 1px solid var(--dem-border);
}
.dem-cookie__btn--reject:hover { color: var(--dem-text); }

/* ========== Header ========== */
.dem-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.9rem 1.5rem;
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--dem-border);
}

.dem-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.dem-logo {
    font-family: var(--dem-font-head);
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--dem-text);
    text-decoration: none;
    letter-spacing: 0.02em;
}

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

.dem-nav { display: flex; align-items: center; position: relative; }

.dem-nav__toggle {
    display: none;
    position: relative;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: var(--dem-surface);
    border: 1px solid var(--dem-border);
    border-radius: 50%;
    color: var(--dem-text);
    cursor: pointer;
    transition: background var(--dem-transition), transform var(--dem-transition);
}

.dem-nav__toggle:hover {
    background: var(--dem-accent-soft);
    border-color: rgba(201, 162, 39, 0.3);
}

.dem-nav__icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--dem-transition), transform var(--dem-transition);
}

.dem-nav__icon--close {
    opacity: 0;
    transform: rotate(-90deg);
    pointer-events: none;
}

body.dem-menu-open .dem-nav__icon--burger {
    opacity: 0;
    transform: rotate(90deg);
    pointer-events: none;
}

body.dem-menu-open .dem-nav__icon--close {
    opacity: 1;
    transform: rotate(0);
    pointer-events: auto;
}

.dem-nav__overlay {
    display: none;
}

.dem-nav__close-li {
    display: none;
}

.dem-nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.dem-nav__link {
    padding: 0.55rem 1rem;
    color: var(--dem-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--dem-radius);
    transition: color var(--dem-transition), background var(--dem-transition);
}

.dem-nav__link:hover,
.dem-nav__link[aria-current="page"] {
    color: var(--dem-accent);
    background: var(--dem-accent-soft);
}

/* Burger at 991px — unique panel + overlay + close */
@media (max-width: 991px) {
    .dem-nav__toggle { display: flex; }

    .dem-nav__overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(10, 14, 23, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--dem-transition), visibility var(--dem-transition);
        z-index: 98;
    }

    body.dem-menu-open .dem-nav__overlay {
        opacity: 1;
        visibility: visible;
    }

    .dem-nav__list {
        position: fixed;
        top: 0;
        display: none;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: linear-gradient(180deg, var(--dem-bg-card) 0%, var(--dem-bg-soft) 100%);
        border-left: 4px solid var(--dem-accent);
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.4);
        padding: 0;
        flex-direction: column;
        align-items: stretch;
        transform: translateX(100%);
        transition: transform 0.35s var(--dem-ease);
        z-index: 99;
        border-radius: 16px 0 0 16px;
        overflow-y: auto;
    }

    body.dem-menu-open .dem-nav__list {
        transform: translateX(0);
        display: flex;
    }

    .dem-nav__close-li {
        display: flex;
        justify-content: flex-end;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid var(--dem-border);
        flex-shrink: 0;
    }

    .dem-nav__close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        background: var(--dem-surface);
        border: 1px solid var(--dem-border);
        border-radius: 50%;
        color: var(--dem-text);
        cursor: pointer;
        transition: background var(--dem-transition), color var(--dem-transition), border-color var(--dem-transition);
    }

    .dem-nav__close:hover {
        background: var(--dem-accent-soft);
        color: var(--dem-accent);
        border-color: rgba(201, 162, 39, 0.4);
    }

    .dem-nav__list li:not(.dem-nav__close-li) {
        padding: 0 1rem;
        border-bottom: 1px solid var(--dem-border);
    }

    .dem-nav__list li:not(.dem-nav__close-li):last-child {
        border-bottom: none;
    }

    .dem-nav__link {
        display: block;
        padding: 1rem 0.75rem;
        font-size: 1.05rem;
        border-radius: var(--dem-radius);
        border-left: 3px solid transparent;
    }

    .dem-nav__link:hover,
    .dem-nav__link[aria-current="page"] {
        border-left-color: var(--dem-accent);
    }
}

/* ========== Buttons ========== */
.dem-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    font-family: var(--dem-font);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--dem-radius);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background var(--dem-transition), transform 0.2s ease, border-color var(--dem-transition);
}

.dem-btn--primary {
    background: var(--dem-accent);
    color: #0a0e17;
}

.dem-btn--primary:hover {
    background: var(--dem-accent-hover);
    transform: translateY(-2px);
}

.dem-btn--outline {
    background: transparent;
    color: var(--dem-accent);
    border: 2px solid var(--dem-accent);
}

.dem-btn--outline:hover {
    background: var(--dem-accent-soft);
}

/* ========== Hero — diagonal block ========== */
.dem-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 3rem 1.5rem 4rem;
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
    background: linear-gradient(165deg, var(--dem-bg-soft) 0%, var(--dem-bg) 50%);
}

.dem-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dem-hero__content h1 {
    font-family: var(--dem-font-head);
    font-weight: 600;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.2;
    color: var(--dem-text);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.dem-hero__content h1 .dem-highlight { color: var(--dem-accent); }

.dem-hero__lead {
    font-size: 1.15rem;
    color: var(--dem-text-muted);
    margin-bottom: 1.75rem;
    max-width: 480px;
}

.dem-hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--dem-text-muted);
    margin-bottom: 1.5rem;
}

.dem-hero__rating strong { color: var(--dem-accent); }

.dem-hero__media {
    position: relative;
    border-radius: var(--dem-radius-lg);
    overflow: hidden;
    border: 1px solid var(--dem-border);
    box-shadow: var(--dem-shadow);
}

.dem-hero__media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 991px) {
    .dem-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
    .dem-hero__media { order: -1; max-height: 300px; }
    .dem-hero__media img { height: 300px; object-fit: cover; }
    .dem-hero { clip-path: polygon(0 0, 100% 0, 100% 98%, 0 100%); }
}

/* ========== Bento features (what's included) ========== */
.dem-bento {
    padding: 4rem 1.5rem 5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.dem-bento__title {
    font-family: var(--dem-font-head);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--dem-text);
    text-align: center;
    margin-bottom: 0.75rem;
}

.dem-bento__subtitle {
    text-align: center;
    color: var(--dem-text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.dem-bento__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.dem-bento__item {
    background: var(--dem-bg-card);
    border: 1px solid var(--dem-border);
    border-radius: var(--dem-radius-lg);
    padding: 2rem;
    transition: border-color var(--dem-transition), transform var(--dem-transition);
}

.dem-bento__item:hover {
    border-color: var(--dem-accent-soft);
    transform: translateY(-4px);
}

.dem-bento__item--wide { grid-column: span 2; }

.dem-bento__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dem-accent-soft);
    border-radius: var(--dem-radius);
    color: var(--dem-accent);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.dem-bento__item h3 {
    font-family: var(--dem-font-head);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dem-text);
    margin-bottom: 0.5rem;
}

.dem-bento__item p {
    font-size: 0.95rem;
    color: var(--dem-text-muted);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .dem-bento__grid { grid-template-columns: 1fr; }
    .dem-bento__item--wide { grid-column: span 1; }
}

/* ========== Entertainment options — cards with image ========== */
.dem-options {
    padding: 4rem 1.5rem 5rem;
    background: var(--dem-bg-soft);
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}

.dem-options__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.dem-options__title {
    font-family: var(--dem-font-head);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--dem-text);
    text-align: center;
    margin-bottom: 0.75rem;
}

.dem-options__subtitle {
    text-align: center;
    color: var(--dem-text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.dem-option-card {
    background: var(--dem-bg-card);
    border-radius: var(--dem-radius-lg);
    overflow: hidden;
    border: 1px solid var(--dem-border);
    transition: border-color var(--dem-transition), box-shadow var(--dem-transition);
}

.dem-option-card:hover {
    border-color: var(--dem-accent-soft);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.dem-option-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.dem-option-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dem-option-card__body { padding: 1.75rem; }

.dem-option-card__body h3 {
    font-family: var(--dem-font-head);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dem-text);
    margin-bottom: 0.6rem;
}

.dem-option-card__body p {
    font-size: 0.95rem;
    color: var(--dem-text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .dem-options__grid { grid-template-columns: 1fr; }
    .dem-options { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); }
}

/* ========== Testimonials — slider-style strip ========== */
.dem-testimonials {
    padding: 4rem 1.5rem 5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.dem-testimonials__title {
    font-family: var(--dem-font-head);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--dem-text);
    text-align: center;
    margin-bottom: 0.75rem;
}

.dem-testimonials__subtitle {
    text-align: center;
    color: var(--dem-text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.dem-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.dem-testimonial {
    background: var(--dem-bg-card);
    border: 1px solid var(--dem-border);
    border-radius: var(--dem-radius-lg);
    padding: 2rem;
    border-left: 4px solid var(--dem-accent);
}

.dem-testimonial__stars {
    color: var(--dem-accent);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
}

.dem-testimonial__quote {
    font-size: 1rem;
    color: var(--dem-text);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.dem-testimonial__author {
    font-weight: 600;
    color: var(--dem-accent);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .dem-testimonials__grid { grid-template-columns: 1fr; }
}

/* ========== Media gallery — masonry-style ========== */
.dem-media {
    padding: 4rem 1.5rem 5rem;
    background: var(--dem-bg-soft);
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}

.dem-media__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.dem-media__title {
    font-family: var(--dem-font-head);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--dem-text);
    text-align: center;
    margin-bottom: 0.75rem;
}

.dem-media__subtitle {
    text-align: center;
    color: var(--dem-text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.dem-media__item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--dem-radius);
    border: 1px solid var(--dem-border);
}

.dem-media__item--tall { grid-row: span 2; aspect-ratio: auto; }

.dem-media__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--dem-transition);
}

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

@media (max-width: 991px) {
    .dem-media__grid { grid-template-columns: repeat(2, 1fr); }
    .dem-media__item--tall { grid-row: span 1; aspect-ratio: 1; }
}

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

/* ========== CTA block ========== */
.dem-cta {
    padding: 4rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.dem-cta__box {
    background: linear-gradient(135deg, var(--dem-accent-soft) 0%, rgba(184, 115, 51, 0.1) 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--dem-radius-lg);
    padding: 3rem;
    text-align: center;
}

.dem-cta__box h2 {
    font-family: var(--dem-font-head);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--dem-text);
    margin-bottom: 0.5rem;
}

.dem-cta__box p {
    color: var(--dem-text-muted);
    margin-bottom: 1.5rem;
}

/* ========== Page hero (inner pages) ========== */
.dem-page-hero {
    padding: 4rem 1.5rem 3rem;
    background: var(--dem-bg-soft);
    border-bottom: 1px solid var(--dem-border);
}

.dem-page-hero__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.dem-page-hero h1 {
    font-family: var(--dem-font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--dem-text);
    margin-bottom: 0.75rem;
}

.dem-page-hero p {
    font-size: 1.1rem;
    color: var(--dem-text-muted);
}

/* ========== Content section ========== */
.dem-content {
    padding: 3rem 1.5rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.dem-content h2 {
    font-family: var(--dem-font-head);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dem-text);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.dem-content h3 { font-size: 1.25rem; margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--dem-text); }

.dem-content p {
    margin-bottom: 1rem;
    color: var(--dem-text-muted);
    line-height: 1.7;
}

.dem-content ul {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--dem-text-muted);
}

.dem-content li { margin-bottom: 0.5rem; }

.dem-content a { text-decoration: underline; }

/* ========== FAQ ========== */
.dem-faq {
    padding: 3rem 1.5rem 4rem;
    max-width: 720px;
    margin: 0 auto;
}

.dem-faq__title {
    font-family: var(--dem-font-head);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--dem-text);
    text-align: center;
    margin-bottom: 2rem;
}

.dem-faq__item {
    border-bottom: 1px solid var(--dem-border);
    padding: 1.25rem 0;
}

.dem-faq__item:first-child { padding-top: 0; }

.dem-faq__q {
    font-weight: 600;
    color: var(--dem-text);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.dem-faq__a {
    font-size: 0.95rem;
    color: var(--dem-text-muted);
    line-height: 1.65;
}

/* ========== Contact form ========== */
.dem-contact-form {
    max-width: 560px;
    margin: 0 auto;
}

.dem-form__group {
    margin-bottom: 1.25rem;
}

.dem-form__group label {
    display: block;
    font-weight: 500;
    color: var(--dem-text);
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.dem-form__group input,
.dem-form__group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--dem-font);
    font-size: 1rem;
    color: var(--dem-text);
    background: var(--dem-bg-card);
    border: 1px solid var(--dem-border);
    border-radius: var(--dem-radius);
    transition: border-color var(--dem-transition);
}

.dem-form__group input:focus,
.dem-form__group textarea:focus {
    outline: none;
    border-color: var(--dem-accent);
}

.dem-form__group textarea { min-height: 140px; resize: vertical; }

.dem-form__success {
    padding: 1rem;
    background: var(--dem-accent-soft);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--dem-radius);
    color: var(--dem-accent);
    font-weight: 500;
    margin-bottom: 1rem;
    display: none;
}

.dem-form__success.is-visible { display: block; }

/* ========== Footer ========== */
.dem-footer {
    padding: 3rem 1.5rem 2rem;
    background: var(--dem-bg-card);
    border-top: 1px solid var(--dem-border);
    margin-top: 4rem;
}

.dem-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.dem-footer__top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.dem-footer__brand .dem-logo { font-size: 1.5rem; margin-bottom: 0.75rem; display: inline-block; }

.dem-footer__brand p {
    font-size: 0.9rem;
    color: var(--dem-text-muted);
    max-width: 260px;
}

.dem-footer__col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dem-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.dem-footer__col ul { list-style: none; }

.dem-footer__col li { margin-bottom: 0.5rem; }

.dem-footer__col a {
    font-size: 0.95rem;
    color: var(--dem-text-muted);
    text-decoration: none;
    transition: color var(--dem-transition);
}

.dem-footer__col a:hover { color: var(--dem-accent); }

.dem-footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--dem-border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.dem-footer__social {
    display: flex;
    gap: 1rem;
}

.dem-footer__social a {
    color: var(--dem-text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color var(--dem-transition);
}

.dem-footer__social a:hover { color: var(--dem-accent); }

@media (max-width: 991px) {
    .dem-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .dem-footer__top { grid-template-columns: 1fr; text-align: center; }
    .dem-footer__brand p { max-width: none; }
    .dem-footer__bottom { flex-direction: column; }
    .dem-footer__social {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
}

/* ========== Utilities ========== */
.dem-section-title {
    font-family: var(--dem-font-head);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--dem-text);
    margin-bottom: 1rem;
}

.dem-section-subtitle {
    color: var(--dem-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.dem-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
