/* ===== LOCAL FONTS ===== */
@font-face { font-family: 'Averia Serif Libre'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/averia-300.ttf') format('truetype'); }
@font-face { font-family: 'Averia Serif Libre'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/averia-400.ttf') format('truetype'); }
@font-face { font-family: 'Averia Serif Libre'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/averia-700.ttf') format('truetype'); }
@font-face { font-family: 'Averia Serif Libre'; font-style: italic; font-weight: 300; font-display: swap; src: url('../fonts/averia-300i.ttf') format('truetype'); }
@font-face { font-family: 'Averia Serif Libre'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/averia-400i.ttf') format('truetype'); }
@font-face { font-family: 'Averia Serif Libre'; font-style: italic; font-weight: 700; font-display: swap; src: url('../fonts/averia-700i.ttf') format('truetype'); }

@font-face { font-family: 'Source Sans 3'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/sourcesans-300.ttf') format('truetype'); }
@font-face { font-family: 'Source Sans 3'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/sourcesans-400.ttf') format('truetype'); }
@font-face { font-family: 'Source Sans 3'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/sourcesans-600.ttf') format('truetype'); }
@font-face { font-family: 'Source Sans 3'; font-style: italic; font-weight: 300; font-display: swap; src: url('../fonts/sourcesans-300i.ttf') format('truetype'); }
@font-face { font-family: 'Source Sans 3'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/sourcesans-400i.ttf') format('truetype'); }

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

:root {
    --color-ink: #2C2416;
    --color-ink-light: #4A3D2B;
    --color-ink-faint: #6B5D49;
    --color-paper: #F0E6D8;
    --color-paper-dark: #E0D8C8;
    --color-accent: #7A6B4F;
    --color-green: #6B8F5E;
    --color-green-dark: #4A6E3A;
    --color-green-hover: #5A7E4E;
    --color-green-faint: rgba(107, 143, 94, 0.08);
    --font-heading: 'Averia Serif Libre', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
    --max-width: 1100px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-ink);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    background-color: var(--color-paper);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23p)' opacity='0.025'/%3E%3C/svg%3E");
    min-height: 100vh;
}

/* ===== GROENE BOVENBALK ===== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 4px;
    background: linear-gradient(90deg, var(--color-green) 0%, var(--color-green-dark) 50%, var(--color-green) 100%);
}

/* ===== NAVIGATIE ===== */
.nav {
    position: fixed;
    top: 4px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(240, 230, 216, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    border-bottom: 1px solid rgba(44, 36, 22, 0.06);
    box-shadow: 0 2px 20px rgba(44, 36, 22, 0.04);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img {
    height: 70px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav-logo:hover img {
    opacity: 0.7;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-ink-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-green);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-ink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--color-ink);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== TAALSWITCH ===== */
.lang-switch {
    display: flex;
    gap: 8px;
    margin-left: 20px;
}

.lang-switch a {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-decoration: none;
    color: var(--color-ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.lang-switch a:hover,
.lang-switch a.active {
    color: var(--color-ink);
}

.nav-book {
    margin-left: 16px;
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* Verborgen maar toegankelijk voor screenreaders */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== CONTENT WRAPPER ===== */
.page-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 120px 40px 60px;
}

/* ===== SECTIE ===== */
.section {
    padding: 100px 20px;
    position: relative;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section + .section {
    border-top: none;
}

/* Handgetekende scheidingslijn tussen secties */
.sketch-divider {
    max-width: 900px;
    height: 20px;
    margin: 20px auto;
    opacity: 0.35;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='20' viewBox='0 0 800 20'%3E%3Cpath d='M0 10 Q50 2 100 10 Q150 18 200 10 Q250 3 300 10 Q350 17 400 10 Q450 4 500 10 Q550 16 600 10 Q650 5 700 10 Q750 15 800 10' stroke='%236B8F5E' stroke-width='0.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ===== SECTIE HEADERS ===== */
.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-green);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-ink);
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
}

.section-text {
    font-size: 1.05rem;
    color: var(--color-ink-light);
    line-height: 1.9;
    max-width: 680px;
    font-weight: 300;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* In hero-split: tekst links uitlijnen */
.hero-split-text .section-label,
.hero-split-text .section-title,
.hero-split-text .section-text {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

/* ===== HERO INTRO ===== */
.hero-intro {
    padding-top: 30px;
    padding-bottom: 20px;
    text-align: center;
}

.hero-intro .section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.hero-intro .section-text {
    font-size: 1.1rem;
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-buttons .btn {
    margin-top: 0;
}

/* ===== HERO SECTIE ===== */
.hero-section {
    padding-top: 60px;
    padding-bottom: 80px;
    max-width: 1000px;
}

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

.hero-split-text {
    text-align: left !important;
}

.hero-split-text .section-title {
    font-size: 2.6rem;
}

.hero-split-text .section-text {
    max-width: 100%;
}

.hero-split-image img {
    width: 100%;
    height: auto;
    display: block;
}

.sketch-note {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--color-green);
    margin-top: 20px;
    text-align: center;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}


/* ===== FEATURE LIST ===== */
.feature-list {
    list-style: none;
    margin-top: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== ACASIA FOTOGALERIJ ===== */
.acasia-hero-photo {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--color-paper-dark);
}

.acasia-hero-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.05) brightness(1.02) sepia(0.08);
    transition: filter 0.4s ease;
}

.acasia-hero-photo:hover img {
    filter: saturate(1) contrast(1.05) brightness(1.02) sepia(0);
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--color-paper-dark);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: saturate(0.85) contrast(1.05) brightness(1.02) sepia(0.08);
}

.gallery-item:hover img {
    transform: scale(1.03);
    filter: saturate(1) contrast(1.05) brightness(1.02) sepia(0);
}

/* ===== BOEKINGSWIDGET ===== */
.booking-widget {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.booking-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, margin 0.4s ease;
    margin-top: 0;
}

.booking-content.open {
    max-height: none;
    opacity: 1;
    margin-top: 30px;
}

.booking-widget iframe {
    border: none;
    width: 100%;
    min-height: 400px;
}


.feature-list li {
    padding: 14px 0;
    font-size: 1rem;
    color: var(--color-ink-light);
    border-bottom: 1px solid rgba(44, 36, 22, 0.06);
    font-weight: 300;
    text-align: center;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list strong {
    font-weight: 600;
    color: var(--color-ink);
}

/* ===== VOORZIENINGEN GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-block h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-ink);
    margin-bottom: 10px;
}

.feature-block .feature-list li {
    text-align: left;
    padding: 8px 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 750px;
    margin: 30px auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(44, 36, 22, 0.1);
    padding: 0;
}

.faq-item summary {
    padding: 18px 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-ink);
    cursor: pointer;
    list-style: none;
}

.faq-item summary::before {
    content: '+';
    display: inline-block;
    width: 24px;
    font-weight: 300;
    font-size: 1.3rem;
    color: var(--color-green);
}

.faq-item[open] summary::before {
    content: '−';
}

.faq-item p {
    padding: 0 0 18px 24px;
    font-size: 0.95rem;
    color: var(--color-ink-light);
    font-weight: 300;
    line-height: 1.6;
}

/* ===== TARIFF TABLE ===== */
.tariff-table {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 1rem;
}

.tariff-table th,
.tariff-table td {
    padding: 10px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(44, 36, 22, 0.12);
}

.tariff-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-ink-light);
    border-bottom: 2px solid rgba(44, 36, 22, 0.2);
}

.tariff-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.tariff-table th:last-child {
    text-align: right;
}

/* ===== STATS ===== */
.stats-row {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(44, 36, 22, 0.06);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-ink);
    line-height: 1;
    font-style: italic;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-ink-faint);
    margin-top: 8px;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* ===== QUOTE ===== */
.quote-section {
    text-align: center;
    padding: 80px 0;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 300;
    font-style: italic;
    color: var(--color-ink-light);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 16px;
}

.quote-author {
    font-size: 0.85rem;
    color: var(--color-ink-faint);
    font-weight: 300;
    letter-spacing: 0.03em;
}

/* ===== TEAM ===== */
.team-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.team-person {
    text-align: center;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-sketch {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin: 0 auto 12px;
    display: block;
}

.team-person h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: 2px;
}

.team-person .role {
    font-size: 0.8rem;
    color: var(--color-ink-faint);
    font-weight: 300;
}

/* ===== NIEUWS ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 36px;
}

.news-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(44, 36, 22, 0.06);
    transition: border-color 0.3s, box-shadow 0.3s;
    text-align: left;
}

.news-card:hover {
    border-color: rgba(44, 36, 22, 0.12);
    box-shadow: 0 4px 20px rgba(44, 36, 22, 0.04);
}

.news-card .date {
    font-size: 0.75rem;
    color: var(--color-ink-faint);
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 0.03em;
}

.news-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-card p {
    font-size: 0.9rem;
    color: var(--color-ink-light);
    font-weight: 300;
    line-height: 1.7;
}

details.news-card {
    cursor: pointer;
}

details.news-card summary {
    list-style: none;
    position: relative;
    padding-right: 30px;
}

details.news-card summary::-webkit-details-marker {
    display: none;
}

details.news-card summary::after {
    content: '+';
    position: absolute;
    top: 0;
    right: 0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-ink-faint);
}

details[open].news-card summary::after {
    content: '\2212';
}

/* ===== AGENDA ===== */
.agenda-list {
    margin-top: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.agenda-item {
    display: flex;
    gap: 28px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(44, 36, 22, 0.06);
    align-items: flex-start;
    text-align: left;
}

.agenda-item:last-child {
    border-bottom: none;
}

.agenda-date {
    text-align: center;
    min-width: 64px;
    flex-shrink: 0;
}

.agenda-date .day {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-ink);
    line-height: 1;
}

.agenda-date .month {
    font-size: 0.75rem;
    color: var(--color-green);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 400;
}

.agenda-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: 4px;
}

.agenda-info p {
    font-size: 0.9rem;
    color: var(--color-ink-light);
    font-weight: 300;
}

.agenda-info .time {
    font-size: 0.8rem;
    color: var(--color-ink-faint);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--color-ink-light);
    margin-bottom: 8px;
    font-weight: 300;
}

.contact-info a {
    color: var(--color-ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(44, 36, 22, 0.15);
    transition: border-color 0.3s;
}

.contact-info a:hover {
    border-color: var(--color-ink);
}

.contact-form label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-ink-faint);
    margin-bottom: 6px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid rgba(44, 36, 22, 0.1);
    background: rgba(255, 255, 255, 0.3);
    color: var(--color-ink);
    margin-bottom: 20px;
    transition: border-color 0.3s, background 0.3s;
    border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-green);
    background: rgba(255, 255, 255, 0.5);
}

.contact-form textarea {
    height: 130px;
    resize: vertical;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: 1px solid var(--color-ink);
    color: var(--color-ink);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.btn:hover {
    background: var(--color-ink);
    color: var(--color-paper);
}

.btn-filled {
    background: var(--color-green);
    color: #fff;
    border-color: var(--color-green);
}

.btn-filled:hover {
    background: var(--color-green-hover);
    border-color: var(--color-green-hover);
}

/* ===== LEES MEER LINK ===== */
.read-more {
    font-size: 0.85rem;
    color: var(--color-ink-faint);
    text-decoration: none;
    border-bottom: 1px solid rgba(44, 36, 22, 0.15);
    transition: all 0.3s;
    margin-top: 20px;
    display: inline-block;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.read-more:hover {
    color: var(--color-ink);
    border-color: var(--color-ink);
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid rgba(44, 36, 22, 0.06);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 12px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    font-style: italic;
    color: var(--color-ink);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-ink-faint);
    font-weight: 300;
}

.footer h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-ink-light);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--color-ink-faint);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-ink);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 50px auto 0;
    padding: 20px 40px 0;
    border-top: 1px solid rgba(44, 36, 22, 0.06);
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-ink-faint);
    font-weight: 300;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(20, 16, 10, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.lightbox.open {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox.open .lightbox-img {
    opacity: 1;
    transform: scale(1);
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    margin-top: 16px;
    text-align: center;
    max-width: 600px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.4rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.lightbox-close:hover {
    color: #fff;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 3.5rem;
    cursor: pointer;
    transition: color 0.2s;
    padding: 20px;
    line-height: 1;
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #fff;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background: rgba(240, 230, 216, 0.98);
        flex-direction: column;
        padding: 24px 40px;
        gap: 16px;
        border-bottom: 1px solid rgba(44, 36, 22, 0.06);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .lang-switch {
        display: none;
    }

    .nav-book {
        margin-left: auto;
        margin-right: 12px;
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .nav-logo img {
        height: 55px;
    }

    .footer-logo {
        height: 65px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-split-text {
        text-align: center;
    }

    .hero-split-text .section-title {
        font-size: 2rem;
    }

    .hero-split-image img {
        max-width: 70%;
        margin: 0 auto;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .grid-2,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .gallery.grid-3 {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 8px;
    }

    .gallery.grid-3 .gallery-item {
        flex: 0 0 80vw;
        scroll-snap-align: start;
    }

    .hero-intro .section-title {
        font-size: 2rem;
    }

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

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

    .stats-row {
        flex-direction: column;
        gap: 28px;
    }

    .team-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-content {
        padding: 90px 24px 40px;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .quote-text {
        font-size: 1.2rem;
    }
}
