@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Work+Sans:wght@300;400;500;600&display=swap");

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

:root {
    --color-primary: #c6a66b;
    --color-primary-dark: #b48f52;
    --color-bg: #f7f4ef;
    --color-surface: #ffffff;
    --color-text: #2b2620;
    --color-muted: #6e665b;
    --color-border: #e5ded3;
    --font-heading: "Cormorant Garamond", "Times New Roman", serif;
    --font-body: "Work Sans", Arial, sans-serif;
    --container-max: 1180px;
    --header-height: 14rem;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

#site-header {
    min-height: var(--header-height);
    background-color: var(--color-surface);
}

#site-header > * {
    opacity: 0;
    transition: opacity 0.2s ease;
}

#site-header.is-ready > * {
    opacity: 1;
}

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

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-surface);
    border-bottom: 0;
    box-shadow: none;
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.25rem;
    height: 2.25rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 50%;
    height: 2px;
    background: var(--color-text);
    margin: 0 auto;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.logo-link {
    flex: 0 0 auto;
    width: 184px;
    height: 184px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    padding: 0.25rem 0;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.35rem;
    height: 2px;
    background: var(--color-primary);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
}

.logo-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lang-dropdown {
    position: relative;
    justify-self: end;
    margin-left: 0;
}

.lang-toggle {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.lang-label {
    display: none;
}

.lang-toggle .flag {
    margin-right: 0.35rem;
}

.lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    list-style: none;
    min-width: 140px;
    padding: 0.35rem 0;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: all 0.2s ease;
}

.lang-dropdown.is-open .lang-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.85rem;
}

.lang-item:hover,
.lang-item.is-active {
    background: rgba(198, 166, 107, 0.15);
}

.flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    border: 1px solid var(--color-border);
    background-size: cover;
    background-position: center;
    flex: 0 0 auto;
}

.flag-de {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='20'%3E%3Crect width='30' height='20' fill='%23000'/%3E%3Crect width='30' height='13.33' y='6.67' fill='%23dd0000'/%3E%3Crect width='30' height='6.67' y='13.33' fill='%23ffce00'/%3E%3C/svg%3E");
}

.flag-en {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='20'%3E%3Crect width='30' height='20' fill='%23012169'/%3E%3Cpath d='M0 0 L30 20 M30 0 L0 20' stroke='%23fff' stroke-width='4'/%3E%3Cpath d='M0 0 L30 20 M30 0 L0 20' stroke='%23c8102e' stroke-width='2'/%3E%3Crect x='12' width='6' height='20' fill='%23fff'/%3E%3Crect y='7' width='30' height='6' fill='%23fff'/%3E%3Crect x='13' width='4' height='20' fill='%23c8102e'/%3E%3Crect y='8' width='30' height='4' fill='%23c8102e'/%3E%3C/svg%3E");
}

.flag-el {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='20'%3E%3Crect width='30' height='20' fill='%23005eb8'/%3E%3Crect y='2.22' width='30' height='2.22' fill='%23fff'/%3E%3Crect y='6.66' width='30' height='2.22' fill='%23fff'/%3E%3Crect y='11.1' width='30' height='2.22' fill='%23fff'/%3E%3Crect y='15.54' width='30' height='2.22' fill='%23fff'/%3E%3Crect width='12' height='12' fill='%23005eb8'/%3E%3Crect x='4.6' width='2.8' height='12' fill='%23fff'/%3E%3Crect y='4.6' width='12' height='2.8' fill='%23fff'/%3E%3C/svg%3E");
}

.flag-pl {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='20'%3E%3Crect width='30' height='10' fill='%23fff'/%3E%3Crect y='10' width='30' height='10' fill='%23dc143c'/%3E%3C/svg%3E");
}

/* Hero */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    margin-top: -1px;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 12, 8, 0.55), rgba(16, 12, 8, 0.75));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 720px;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero-tagline {
    font-size: clamp(1rem, 2.4vw, 1.35rem);
    margin-bottom: 1.75rem;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.6rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

.apartment-book {
    align-self: flex-start;
    margin: 0.15rem 0 0.15rem;
}

/* Booking modal (DiBooq widget) */
.booking-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1000;
    padding: 1.5rem;
}

.booking-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.booking-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 90vh;
    background: var(--color-surface);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.booking-modal__frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.booking-modal__close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: none;
    background: var(--color-primary);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
    transition: background 0.2s ease;
    z-index: 2;
}

.booking-modal__close:hover {
    background: var(--color-primary-dark);
}

/* iCal availability calendar modal */
.ical-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1000;
    padding: 1.5rem;
}

.ical-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.ical-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--color-surface);
    border-radius: 1.25rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    padding: 1.75rem 1.5rem 1.5rem;
    max-height: 90vh;
    overflow-y: auto;
}

.ical-modal__title {
    margin: 0 2rem 1rem 0;
    font-size: 1.2rem;
    color: var(--color-text);
}

.ical-modal__close {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: none;
    background: var(--color-primary);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ical-modal__close:hover {
    background: var(--color-primary-dark);
}

.ical-cal__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.ical-cal__month {
    font-weight: 600;
    text-transform: capitalize;
    color: var(--color-text);
}

.ical-cal__prev,
.ical-cal__next {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.ical-cal__prev:hover:not(:disabled),
.ical-cal__next:hover:not(:disabled) {
    background: var(--color-bg);
}

.ical-cal__prev:disabled,
.ical-cal__next:disabled {
    opacity: 0.35;
    cursor: default;
}

.ical-cal__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.ical-cal__wd {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-muted);
    padding-bottom: 0.35rem;
}

.ical-cal__cell {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: 0.45rem;
}

.ical-cal__cell--blank {
    background: transparent;
}

.ical-cal__cell--free {
    background: rgba(96, 153, 102, 0.16);
    color: #2f6b3a;
    font-weight: 600;
}

.ical-cal__cell--booked {
    background: rgba(179, 143, 82, 0.18);
    color: var(--color-muted);
    text-decoration: line-through;
}

.ical-cal__cell--past {
    color: #c4bcae;
}

.ical-cal__cell--outside {
    opacity: 0.4;
}

.ical-cal__legend {
    display: flex;
    gap: 1.25rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--color-text);
}

.ical-legend__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.ical-swatch {
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 0.25rem;
    display: inline-block;
}

.ical-swatch--free {
    background: rgba(96, 153, 102, 0.55);
}

.ical-swatch--booked {
    background: rgba(179, 143, 82, 0.55);
}

.ical-cal__status {
    margin: 1rem 0 0;
    text-align: center;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.ical-cal__status:empty {
    display: none;
}

/* Date selection */
.ical-cal__cell--free {
    cursor: pointer;
}

.ical-cal__cell--free:hover {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
}

.ical-cal__cell--inrange {
    background: rgba(198, 166, 107, 0.28);
    color: var(--color-text);
    font-weight: 600;
    border-radius: 0;
}

.ical-cal__cell--selstart,
.ical-cal__cell--selend {
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
}

.ical-hint {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.ical-cal__selection {
    margin: 0.9rem 0 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.ical-cal__selection:empty {
    display: none;
}

.ical-sel__row {
    display: block;
}

.ical-actions {
    display: flex;
    gap: 0.6rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.ical-actions .btn {
    margin: 0;
}

.ical-step[data-step='done'] .ical-actions {
    justify-content: center;
}

/* Request form */
.ical-summary {
    margin: 0 0 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.ical-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ical-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: left;
}

.ical-field__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-muted);
}

.ical-field input {
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 0.6rem;
    font: inherit;
    color: var(--color-text);
    background: var(--color-surface);
}

.ical-field input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.ical-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.ical-note {
    margin: 0.25rem 0 0;
    font-size: 0.82rem;
    font-style: italic;
    color: var(--color-muted);
}

.ical-form__status {
    margin: 0;
    min-height: 1.2em;
    font-size: 0.88rem;
}

.ical-form__status.error {
    color: #b3261e;
}

.ical-form__status.info {
    color: var(--color-muted);
}

.ical-done__msg {
    margin: 1rem 0 0;
    text-align: center;
    font-size: 1rem;
    color: var(--color-text);
}

/* Layout */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background: rgba(255, 255, 255, 0.7);
}

.section-intro {
    padding: 3.5rem 0 2rem;
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

.section-lead {
    max-width: 65ch;
    font-size: 1.05rem;
    color: var(--color-muted);
}

.apartments-section .section-lead {
    max-width: none;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}

h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.4rem);
    margin-bottom: 1rem;
}

.section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.text-link {
    color: var(--color-primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.text-link:hover {
    text-decoration: underline;
}

.image-credit {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.image-credit a {
    color: inherit;
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(15, 15, 15, 0.95);
    color: #fff;
    padding: 1rem 1.5rem;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
}

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

.cookie-banner__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cookie-link {
    color: #fff;
    text-decoration: underline;
}

.cookie-accept {
    border: none;
    background: #fff;
    color: #111;
    font-weight: 600;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    cursor: pointer;
}

.cookie-accept:hover {
    background: #f1f1f1;
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.rooftop-section .split-grid {
    grid-template-columns: 1fr;
}

.split-media img {
    border-radius: 1.25rem;
    height: 100%;
    object-fit: cover;
}

.thassos-beach-crop {
    height: 295px;
    overflow: hidden;
    border-radius: 1.25rem;
}

.thassos-beach-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.highlight-grid,
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.apartment-grid {
    margin: 2rem 0 1.5rem;
}

.highlight-card,
.info-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 1.25rem;
    padding: 1.6rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.apartment-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.apartment-photo {
    width: 100%;
    border-radius: 1rem;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.highlight-card h3,
.info-card h3 {
    margin-bottom: 0.5rem;
}

.card-meta {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 0.6rem;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin-top: 1rem;
}

.pill-list li {
    background: rgba(198, 166, 107, 0.2);
    color: var(--color-text);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

.facilities-list {
    list-style: disc;
    list-style-position: outside;
    padding-left: 1.5rem;
    margin-left: 0;
    margin-top: 1rem;
}

.amenities-block {
    margin-top: 1rem;
}

.amenities-block .facilities-list {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.amenities-heading {
    font-weight: 600;
    margin-top: 1rem;
}

.spacer {
    height: 0.75rem;
}

.no-wrap {
    white-space: nowrap;
}

.construction-note {
    background: #fff4d6;
    color: #6b4f00;
    border-bottom: 1px solid rgba(107, 79, 0, 0.2);
    padding: 0.75rem 0;
}

.construction-note p {
    margin: 0;
    font-weight: 600;
    text-align: center;
}

.page-hero {
    padding: 4.5rem 0 3.5rem;
    background: linear-gradient(135deg, rgba(198, 166, 107, 0.18), rgba(255, 255, 255, 0.6));
    position: relative;
    color: var(--color-text);
}

.explore-hero {
    background-image: linear-gradient(135deg, rgba(198, 166, 107, 0.2), rgba(255, 255, 255, 0.6)), url("assets/pictures/Insel_Thassos/beach.jpg");
    background-size: cover;
    background-position: center 42%;
}

.news-hero {
    background-image: linear-gradient(135deg, rgba(198, 166, 107, 0.2), rgba(255, 255, 255, 0.6)), url("assets/pictures/Blue_Aegean_Apartment/appartment_table.jpg");
    background-size: cover;
    background-position: center;
}

.photos-hero {
    background-image: linear-gradient(135deg, rgba(198, 166, 107, 0.2), rgba(255, 255, 255, 0.6)), url("assets/pictures/Blue_Aegean_Apartment/appartment_table.jpg");
    background-size: cover;
    background-position: center;
}

.contact-hero {
    background-image: linear-gradient(135deg, rgba(198, 166, 107, 0.2), rgba(255, 255, 255, 0.6)), url("assets/pictures/Blue_Aegean_Apartment/appartment_door.jpg");
    background-size: cover;
    background-position: center;
}

.kavala-hero {
    background-image: linear-gradient(135deg, rgba(198, 166, 107, 0.2), rgba(255, 255, 255, 0.6)), url("assets/pictures/Kavala_Nacht/hearts.jpg");
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 12, 10, 0.45), rgba(15, 12, 10, 0.6));
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .section-eyebrow,
.page-hero h1,
.page-hero .section-lead {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Hero subtitles use the full banner width and only balance when they wrap. */
.page-hero .section-lead {
    max-width: none;
    text-wrap: balance;
}

.chrysoupoli-hero {
    background-image: linear-gradient(135deg, rgba(198, 166, 107, 0.2), rgba(255, 255, 255, 0.6)), url("assets/pictures/Chrysoupoli/apartment_view.jpg");
    background-size: cover;
    background-position: center 55%;
}

.page-hero h1 {
    margin-bottom: 0.75rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.photo-thumb {
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.photo-thumb img {
    width: 100%;
    max-height: 140px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.photo-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1000;
    padding: 1.5rem;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-dialog {
    position: relative;
    max-width: min(1100px, 95vw);
    max-height: 90vh;
}

.lightbox-image {
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    background: #111;
}

.lightbox-close {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #111;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem;
    align-items: start;
}

.contact-info {
    padding: 2rem;
    background: var(--color-surface);
    border-radius: 1.25rem;
    border: 1px solid var(--color-border);
}

.contact-info h2 {
    margin-bottom: 0.5rem;
}

.contact-actions {
    margin-top: 1rem;
}

.contact-form-wrap {
    background: var(--color-surface);
    border-radius: 1.25rem;
    border: 1px solid var(--color-border);
    padding: 2rem;
}

.status-message {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.status-message.success {
    background: #d4edda;
    color: #155724;
}

.status-message.error {
    background: #f8d7da;
    color: #721c24;
}

.status-message.info {
    background: #d1ecf1;
    color: #0c5460;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

#contactForm label {
    margin-top: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
}

#contactForm label:first-of-type {
    margin-top: 0;
}

#contactForm select,
#contactForm input,
#contactForm textarea {
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
}

#contactForm select:focus,
#contactForm input:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(198, 166, 107, 0.2);
}

.form-note {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.map-embed {
    height: 400px;
    width: 100%;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.map-embed--home {
    height: 310px;
}

/* Footer */
.site-footer {
    background-color: #1f1b16;
    color: #fff;
    text-align: center;
    padding: 2.5rem 1.5rem;
    margin-top: 2rem;
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-copy {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer-credit {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.footer-credit a {
    color: #fff;
    text-decoration: underline;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.footer-link:visited {
    color: #fff;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: none;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.2s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* Responsive */
@media (max-width: 980px) {
    .split-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        margin-top: 0;
    }

    /* Burger left, logo centered, language selector right (nav is off-canvas). */
    .logo-link {
        margin-left: auto;
        margin-right: auto;
    }

    .lang-dropdown {
        margin-top: 0;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-surface);
        display: block;
        max-height: 0;
        opacity: 0;
        overflow-y: auto;
        padding: 1rem 1.5rem 1.5rem;
        border-bottom: 1px solid var(--color-border);
        visibility: hidden;
        transform: translateY(-6px);
        transition: max-height 0.6s ease, opacity 0.35s ease, transform 0.35s ease;
    }

    .main-nav.is-open {
        max-height: calc(100vh - var(--header-height));
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-accept {
        align-self: flex-start;
    }

    .nav-logo {
        margin: 0.5rem 0;
    }

    .lang-dropdown {
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .header-inner {
        padding: 0 1rem;
        gap: 1rem;
    }

    .hero {
        min-height: 80vh;
    }

    .section {
        padding: 3rem 0;
    }

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

    .event-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
