/* ============================================================
   Talalkozopont - Tarsasagi Etterem es Talalkozohely
   Color System: 07 - Nature Calm
   Designer: OpenAgent
   ============================================================ */

/* ----- CSS Custom Properties (Nature Calm palette) ----- */
:root {
    /* Nature Calm palette */
    --color-ivory: #f5f0eb;
    --color-warm-white: #faf8f5;
    --color-sage-green: #8a9a7b;
    --color-sage-light: #c8d5b9;
    --color-sandstone: #d4c5a9;
    --color-copper: #c17f59;
    --color-walnut: #5a4a3a;
    --color-soft-olive: #7a8b6e;
    --color-graphite: #3a3a3a;
    --color-graphite-light: #6a6a6a;

    /* Semantic tokens */
    --color-bg: var(--color-warm-white);
    --color-bg-alt: var(--color-ivory);
    --color-bg-card: #ffffff;
    --color-text: var(--color-graphite);
    --color-text-light: var(--color-graphite-light);
    --color-text-muted: #99928a;
    --color-accent: var(--color-sage-green);
    --color-accent-hover: var(--color-soft-olive);
    --color-copper-accent: var(--color-copper);
    --color-border: var(--color-sandstone);
    --color-border-light: #e8e0d6;

    /* Typography */
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 0.8125rem;
    --font-size-sm: 0.9375rem;
    --font-size-base: 1.0625rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.75rem;
    --font-size-4xl: 3.5rem;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 860px;
    --header-height: 72px;
    --bottom-nav-height: 64px;
    --cta-bar-height: 60px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.5s ease;
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: var(--bottom-nav-height);
}

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

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

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

ul, ol {
    list-style: none;
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: var(--font-size-3xl); margin-bottom: var(--space-md); }
h2 { font-size: var(--font-size-2xl); margin-bottom: var(--space-sm); }
h3 { font-size: var(--font-size-xl); margin-bottom: var(--space-sm); }
h4 { font-size: var(--font-size-lg); margin-bottom: var(--space-xs); }

p {
    margin-bottom: var(--space-md);
    color: var(--color-text-light);
}

p:last-child {
    margin-bottom: 0;
}

/* ----- Container ----- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container--narrow {
    max-width: var(--container-narrow);
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: 500;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.btn--primary {
    background-color: var(--color-accent);
    color: #ffffff;
}

.btn--primary:hover {
    background-color: var(--color-accent-hover);
    color: #ffffff;
}

.btn--secondary {
    background-color: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.btn--secondary:hover {
    background-color: var(--color-accent);
    color: #ffffff;
}

.btn--copper {
    background-color: var(--color-copper-accent);
    color: #ffffff;
}

.btn--copper:hover {
    background-color: #b06e4a;
    color: #ffffff;
}

.btn--small {
    padding: 0.5rem 1.25rem;
    font-size: var(--font-size-xs);
}

.btn--large {
    padding: 1rem 2.25rem;
    font-size: var(--font-size-base);
}

/* ============================================================
   HEADER (HeaderFooter 08 / App Style)
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background-color: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    transition: background-color var(--transition-base);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    flex-shrink: 0;
    line-height: 0;
}

.header__logo-img {
    display: block;
}

.header__nav {
    display: none;
}

@media (min-width: 992px) {
    .header__nav {
        display: flex;
        align-items: center;
    }

    .header__nav-list {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    .header__nav-link {
        display: block;
        padding: 0.5rem 1rem;
        font-size: var(--font-size-sm);
        color: var(--color-text-light);
        border-radius: 4px;
        transition: all var(--transition-fast);
        position: relative;
    }

    .header__nav-link:hover {
        color: var(--color-accent);
        background-color: rgba(138, 154, 123, 0.08);
    }

    .header__nav-link--active {
        color: var(--color-accent);
    }

    .header__nav-link--active::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 1rem;
        right: 1rem;
        height: 2px;
        background-color: var(--color-accent);
    }

    .header__nav-link--cta {
        background-color: var(--color-accent);
        color: #ffffff;
        padding: 0.5rem 1.25rem;
        border-radius: 0;
    }

    .header__nav-link--cta:hover {
        background-color: var(--color-accent-hover);
        color: #ffffff;
    }

    .header__nav-link--cta.header__nav-link--active::after {
        display: none;
    }
}

/* Burger button (mobile) */
.header__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

@media (min-width: 992px) {
    .header__burger {
        display: none;
    }
}

.header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

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

/* Mobile navigation overlay */
@media (max-width: 991px) {
    .header__nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-base);
        z-index: 999;
    }

    .header__nav--open {
        opacity: 1;
        pointer-events: all;
    }

    .header__nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--space-xs);
    }

    .header__nav-link {
        font-size: var(--font-size-xl);
        padding: var(--space-sm) var(--space-lg);
        color: var(--color-text);
        text-align: center;
        border-radius: 4px;
    }

    .header__nav-link:hover {
        color: var(--color-accent);
        background-color: rgba(138, 154, 123, 0.08);
    }

    .header__nav-link--cta {
        background-color: var(--color-accent);
        color: #ffffff;
        padding: 0.75rem 2.5rem;
        margin-top: var(--space-sm);
    }

    .header__nav-link--cta:hover {
        background-color: var(--color-accent-hover);
        color: #ffffff;
    }
}

/* ============================================================
   ANCHOR NAVIGATION (Navigation 09)
   ============================================================ */
.anchor-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(250, 248, 245, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border-light);
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-base);
    pointer-events: none;
}

.anchor-nav--visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.anchor-nav__list {
    display: flex;
    overflow-x: auto;
    gap: 0.25rem;
    padding: 0.5rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.anchor-nav__list::-webkit-scrollbar {
    display: none;
}

.anchor-nav__link {
    display: block;
    white-space: nowrap;
    padding: 0.35rem 0.85rem;
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
    border-radius: 20px;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.anchor-nav__link:hover {
    color: var(--color-accent);
    border-color: var(--color-sage-light);
    background-color: rgba(138, 154, 123, 0.06);
}

.anchor-nav__link--active {
    color: var(--color-accent);
    background-color: rgba(138, 154, 123, 0.1);
    border-color: var(--color-accent);
}

/* ============================================================
   BOTTOM MOBILE NAV (HeaderFooter 08)
   ============================================================ */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--bottom-nav-height);
    background-color: rgba(250, 248, 245, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
}

.bottom-nav__list {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    padding: 0 var(--space-sm);
}

.bottom-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0.35rem 0.5rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    font-size: 0.65rem;
    text-decoration: none;
}

.bottom-nav__link:hover {
    color: var(--color-accent);
}

.bottom-nav__link--active {
    color: var(--color-accent);
}

.bottom-nav__icon {
    display: block;
}

.bottom-nav__label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}

@media (min-width: 992px) {
    .bottom-nav {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main {
    padding-top: var(--header-height);
}

/* ============================================================
   HERO SECTION (Hero 02 - Full Width Background)
   ============================================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-ivory);
}

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

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

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(250, 248, 245, 0.95) 0%,
        rgba(250, 248, 245, 0.8) 50%,
        rgba(245, 240, 235, 0.9) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    padding: var(--space-xl) var(--space-lg);
}

.hero__subtitle {
    display: inline-block;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.hero__title {
    font-size: var(--font-size-4xl);
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.hero__title em {
    font-style: italic;
    color: var(--color-accent);
}

.hero__desc {
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.hero--small {
    min-height: 50vh;
}

.hero--small .hero__title {
    font-size: var(--font-size-3xl);
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }

    .hero__title {
        font-size: var(--font-size-2xl);
    }

    .hero--small {
        min-height: 40vh;
    }

    .hero--small .hero__title {
        font-size: var(--font-size-2xl);
    }

    .hero__desc {
        font-size: var(--font-size-base);
    }
}

/* ============================================================
   SECTION - General (Masonry variant 08)
   ============================================================ */
.section {
    padding: var(--space-2xl) 0;
}

.section--alt {
    background-color: var(--color-bg-alt);
}

.section--sm {
    padding: var(--space-xl) 0;
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.section__label {
    display: inline-block;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.section__title {
    font-size: var(--font-size-2xl);
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.section__desc {
    color: var(--color-text-light);
    font-size: var(--font-size-base);
    line-height: 1.7;
}

/* ============================================================
   MASONRY GRID (Section Layout 08)
   ============================================================ */
.masonry {
    column-count: 1;
    column-gap: var(--space-lg);
}

.masonry__item {
    break-inside: avoid;
    margin-bottom: var(--space-lg);
}

.masonry__card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    padding: var(--space-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.masonry__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(90, 74, 58, 0.08);
}

.masonry__card-image {
    width: 100%;
    margin-bottom: var(--space-md);
}

.masonry__card-image img {
    width: 100%;
    height: auto;
}

.masonry__card-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.masonry__card-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}

@media (min-width: 640px) {
    .masonry {
        column-count: 2;
    }
}

@media (min-width: 992px) {
    .masonry {
        column-count: 3;
    }

    .masonry__item--wide {
        column-span: 2;
    }
}

/* ============================================================
   CONTENT BLOCK - for text-heavy sections
   ============================================================ */
.content-block {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.content-block p {
    margin-bottom: var(--space-md);
    font-size: var(--font-size-base);
    line-height: 1.8;
}

.content-block--wide {
    max-width: var(--container-max);
}

/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */
.cols-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .cols-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.cols-2__image img {
    width: 100%;
    height: auto;
}

.cols-2__content h2 {
    margin-bottom: var(--space-sm);
}

.cols-2__content p {
    margin-bottom: var(--space-md);
}

/* ============================================================
   THREE-COLUMN GRID
   ============================================================ */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    padding: var(--space-lg);
    transition: transform var(--transition-base);
    text-align: center;
}

.grid-card:hover {
    transform: translateY(-3px);
}

.grid-card__icon {
    margin-bottom: var(--space-md);
    color: var(--color-accent);
}

.grid-card__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.grid-card__text {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================================
   NARRATIVE / STORY FLOW
   ============================================================ */
.narrative {
    position: relative;
}

.narrative__step {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    align-items: center;
}

@media (min-width: 768px) {
    .narrative__step {
        grid-template-columns: 1fr 1fr;
    }

    .narrative__step--reverse .narrative__image {
        order: 2;
    }

    .narrative__step--reverse .narrative__text {
        order: 1;
    }
}

.narrative__image img {
    width: 100%;
    height: auto;
}

.narrative__number {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    color: var(--color-sage-light);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.narrative__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.narrative__text p {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

/* ============================================================
   FAQ ACCORDION (Legal 04)
   ============================================================ */
.faq {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--color-border-light);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: var(--font-size-base);
    color: var(--color-text);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq__question:hover {
    color: var(--color-accent);
}

.faq__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.faq__item--open .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-base);
}

.faq__item--open .faq__answer {
    max-height: 600px;
    padding-bottom: var(--space-md);
}

.faq__answer-inner {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}

.faq__answer-inner p {
    margin-bottom: var(--space-sm);
}

.faq__answer-inner p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-grid__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-grid__item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.gallery-grid__item:hover img {
    transform: scale(1.05);
}

.gallery-grid__item--wide {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-grid__item--tall img {
    height: 400px;
}

/* Custom Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.lightbox--open {
    display: flex;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.lightbox__close:hover {
    opacity: 1;
}

/* ============================================================
   CTA STICKY BAR (CTA 06)
   ============================================================ */
.cta-bar {
    position: fixed;
    bottom: var(--bottom-nav-height);
    left: 0;
    right: 0;
    z-index: 998;
    background-color: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-border-light);
    padding: 0.75rem 0;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.cta-bar--visible {
    transform: translateY(0);
}

.cta-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-bar__text {
    font-size: var(--font-size-sm);
    color: var(--color-text);
    margin: 0;
    font-weight: 500;
}

.cta-bar__dismiss {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0.25rem;
    line-height: 1;
    transition: color var(--transition-fast);
}

.cta-bar__dismiss:hover {
    color: var(--color-text);
}

@media (min-width: 992px) {
    .cta-bar {
        bottom: 0;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background-color: var(--color-ivory);
    border-top: 1px solid var(--color-border-light);
    padding: var(--space-2xl) 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (min-width: 640px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

.footer__logo {
    margin-bottom: var(--space-md);
}

.footer__description {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer__link {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--color-accent);
}

.footer__contact-line {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-xs);
}

.footer__contact-note {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
}

.footer__bottom {
    border-top: 1px solid var(--color-border-light);
    padding-top: var(--space-lg);
}

.footer__legal-text {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}

.footer__legal-text--small {
    font-size: 0.7rem;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: calc(var(--bottom-nav-height) + var(--cta-bar-height));
    left: 0;
    right: 0;
    z-index: 997;
    background-color: var(--color-ivory);
    border-top: 1px solid var(--color-border-light);
    padding: var(--space-sm) 0;
    display: none;
}

.cookie-banner--visible {
    display: block;
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cookie-banner__text {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
    margin: 0;
    flex: 1;
    min-width: 240px;
}

.cookie-banner__link {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-banner__btn {
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .cookie-banner {
        bottom: var(--cta-bar-height);
    }
}

/* ============================================================
   18+ AGE GATE POPUP
   ============================================================ */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.age-gate--visible {
    display: flex;
}

.age-gate__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
}

.age-gate__modal {
    position: relative;
    z-index: 1;
    background-color: var(--color-bg-card);
    max-width: 420px;
    width: 90%;
    padding: var(--space-xl);
    text-align: center;
}

.age-gate__symbol {
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.age-gate__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.age-gate__text {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.age-gate__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.age-gate__btn {
    width: 100%;
}

@media (min-width: 480px) {
    .age-gate__buttons {
        flex-direction: row;
    }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-text);
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 0;
    transition: border-color var(--transition-fast);
    appearance: none;
}

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

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

/* ============================================================
   CONTENT PAGES (About, etc.)
   ============================================================ */
.content-page {
    padding: var(--space-2xl) 0;
}

.content-page article {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.content-page article p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.content-page article h2 {
    margin-top: var(--space-xl);
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thank-you {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you__inner {
    max-width: 500px;
}

.thank-you__icon {
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 639px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 640px) and (max-width: 991px) {
    .hide-tablet {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .hide-desktop {
        display: none !important;
    }
}
