/* ── Papers Desktop Redesign ───────────────────────────────────── */

body.desktop {
    background: #F5F4EE;
    font-family: 'Onest', 'Stapel', sans-serif;
    color: #1A2420;
    margin: 0;
    padding: 0;
    max-width: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.desktop div#content {
    background: transparent;
    border-radius: 0;
    padding: 40px;
    max-width: 1360px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: visible;
}

/* ── Sticky Nav ─────────────────────────────────────────────────── */
.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 40px;
    background: #F5F4EE;
    border-bottom: 1px solid rgba(7, 91, 63, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    box-sizing: border-box;
}

.site-nav .nav-left {
    display: flex;
    align-items: center;
    gap: 44px;
}

.site-nav .nav-logo {
    font: 600 24px/1 'Literata', serif;
    color: #075B3F;
    text-decoration: none;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.site-nav .nav-logo .dot {
    color: #9EEF27;
}

.site-nav .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.site-nav .nav-links a {
    font: 500 15px 'Onest', sans-serif;
    color: #5C6B63;
    text-decoration: none;
    cursor: pointer;
}

.site-nav .nav-links a.nav-active {
    font-weight: 600;
    color: #075B3F;
    padding-bottom: 3px;
    border-bottom: 2px solid #9EEF27;
}

.site-nav .nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav .lang-toggle {
    display: flex;
    padding: 3px;
    background: rgba(7, 91, 63, 0.07);
    border-radius: 9px;
    gap: 2px;
}

.site-nav .lang-toggle button {
    font: 600 12px 'Onest', sans-serif;
    padding: 5px 11px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    background: transparent;
    color: #5C6B63;
    transition: all 0.15s;
}

.site-nav .lang-toggle button.active {
    background: #075B3F;
    color: #F5F4EE;
}

/* ── Back link ──────────────────────────────────────────────────── */
body.desktop .headerA {
    display: inline-block;
    background: none;
    color: #5C6B63;
    font: 500 14px 'Onest', sans-serif;
    padding: 0;
    margin: 0 0 22px;
    width: auto;
    margin-left: 0;
    text-decoration: none;
    cursor: pointer;
}

/* ── Hero card ──────────────────────────────────────────────────── */
.hero-card {
    position: relative;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    background: repeating-linear-gradient(135deg, #0A4E37, #0A4E37 13px, #0C573E 13px, #0C573E 26px);
    background-size: cover;
    background-position: center;
    margin-bottom: 32px;
    cursor: pointer;
}

.hero-card .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,40,28,0.15) 0%, rgba(7,40,28,0.82) 100%);
}

.hero-card .hero-inner {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 34px;
}

.hero-label {
    font: 600 12px 'Onest', sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9EEF27;
    margin-bottom: 14px;
}

.hero-card h2 {
    font: 600 40px/1.1 'Literata', serif;
    color: #F5F4EE;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
    max-width: 720px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-date {
    font: 500 15px 'Onest', sans-serif;
    color: rgba(245, 244, 238, 0.85);
}

.hero-price {
    font: 600 17px 'Literata', serif;
    color: #F5F4EE;
}

.btn-lime {
    font: 600 14px 'Onest', sans-serif;
    color: #075B3F;
    background: #9EEF27;
    border: none;
    padding: 11px 22px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.15s;
}

.btn-lime:hover { background: #FF9E00; }

/* ── Section heading ─────────────────────────────────────────── */
.section-label {
    font: 600 13px 'Onest', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5C6B63;
    margin: 0 0 18px;
}

/* ── Events grid ─────────────────────────────────────────────── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    background: #FFFFFF;
    border: 1px solid rgba(7, 91, 63, 0.1);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.15s, transform 0.15s;
}

.event-card:hover {
    box-shadow: 0 8px 24px rgba(7, 91, 63, 0.12);
    transform: translateY(-2px);
}

.card-photo {
    height: 152px;
    object-fit: cover;
    width: 100%;
    display: block;
}

.card-photo-placeholder {
    height: 152px;
    background: repeating-linear-gradient(135deg, #E5E4DA, #E5E4DA 11px, #EEEDE4 11px, #EEEDE4 22px);
}

.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Category pill */
.cat-pill {
    display: inline-block;
    font: 600 11px 'Onest', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.cat-pill.lecture   { background: #9EEF27; color: #075B3F; border: none; }
.cat-pill.excursion { background: #FF9E00; color: #1A2420; border: none; }
.cat-pill.bar       { background: #075B3F; color: #9EEF27; border: none; }
.cat-pill.podcast   { background: transparent; color: #075B3F; border: 1px solid rgba(7,91,63,.35); }

.event-card h3 {
    font: 600 20px/1.22 'Literata', serif;
    color: #1A2420;
    margin: 0 0 10px;
    min-height: 48px;
}

.event-date {
    font: 500 13px 'Onest', sans-serif;
    color: #5C6B63;
    margin-bottom: 16px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 8px;
}

.event-price {
    font: 600 18px 'Literata', serif;
    color: #1A2420;
}

.btn-dark {
    font: 600 13px 'Onest', sans-serif;
    color: #F5F4EE;
    background: #075B3F;
    border: none;
    padding: 9px 16px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
    line-height: 1;
}

.btn-dark:hover { background: #9EEF27; color: #075B3F; }

/* ── Event Detail Page ───────────────────────────────────────────── */
.event-detail {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.event-detail-main {
    flex: 1;
    min-width: 0;
    max-width: 720px;
}

.back-link {
    font: 500 14px 'Onest', sans-serif;
    color: #5C6B63;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 22px;
    cursor: pointer;
}

.back-link:hover { color: #075B3F; }

.detail-photo {
    height: 360px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 28px;
    background: repeating-linear-gradient(135deg, #E5E4DA, #E5E4DA 13px, #EEEDE4 13px, #EEEDE4 26px);
}

.detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-title {
    font: 600 42px/1.12 'Literata', serif;
    color: #1A2420;
    letter-spacing: -0.015em;
    margin: 0 0 22px;
}

.detail-meta {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid rgba(7, 91, 63, 0.13);
    border-bottom: 1px solid rgba(7, 91, 63, 0.13);
    margin-bottom: 30px;
}

.detail-meta-item .meta-label {
    font: 600 11px 'Onest', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8A978F;
    margin-bottom: 5px;
}

.detail-meta-item .meta-value {
    font: 500 16px 'Onest', sans-serif;
    color: #1A2420;
}

.detail-about {
    font: 600 22px 'Literata', serif;
    color: #1A2420;
    margin: 0 0 14px;
}

.detail-body {
    font: 400 17px/1.7 'Onest', sans-serif;
    color: #3C4842;
    white-space: pre-line;
}

.detail-body p {
    margin: 0 0 18px;
    white-space: pre-line;
}

/* ── Booking sidebar ─────────────────────────────────────────────── */
.event-detail-aside {
    width: 340px;
    flex: none;
    position: sticky;
    top: 90px;
}

.booking-card {
    background: #FFFFFF;
    border: 1px solid rgba(7, 91, 63, 0.12);
    border-radius: 12px;
    padding: 26px;
    box-shadow: 0 6px 20px rgba(7, 91, 63, 0.07);
}

.booking-price {
    font: 600 36px/1 'Literata', serif;
    color: #075B3F;
    margin-bottom: 6px;
}

.booking-price.free {
    font-size: 24px;
}

.booking-date {
    font: 500 14px 'Onest', sans-serif;
    color: #5C6B63;
    margin-bottom: 22px;
}

.booking-app-label {
    font: 600 12px 'Onest', sans-serif;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #075B3F;
    margin-bottom: 6px;
}

.booking-app-desc {
    font: 400 14px/1.5 'Onest', sans-serif;
    color: #5C6B63;
    margin-bottom: 18px;
}

.btn-book {
    width: 100%;
    font: 600 16px 'Onest', sans-serif;
    color: #075B3F;
    background: #9EEF27;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s;
    margin-bottom: 14px;
    display: block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-book:hover { background: #FF9E00; }

.booking-secondary {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
}

.booking-secondary .btn-secondary { flex: 1; }

.btn-secondary {
    font: 600 13px 'Onest', sans-serif;
    color: #075B3F;
    background: transparent;
    border: 1px solid rgba(7, 91, 63, 0.25);
    padding: 11px;
    border-radius: 9px;
    cursor: pointer;
    transition: background 0.15s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.btn-secondary:hover { background: rgba(7, 91, 63, 0.06); }

.booking-location {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding-top: 20px;
    border-top: 1px solid rgba(7, 91, 63, 0.12);
}

.booking-location .loc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9EEF27;
    margin-top: 6px;
    flex: none;
}

.booking-location .loc-text {
    font: 400 13px/1.5 'Onest', sans-serif;
    color: #5C6B63;
}

/* ── Responsive for detail page ─────────────────────────────────── */
@media (max-width: 900px) {
    .event-detail { flex-direction: column; }
    .event-detail-main { max-width: none; }
    .event-detail-aside { width: 100%; position: static; }
    .booking-card { max-width: 480px; }
    .detail-photo { height: 260px; }
    .detail-title { font-size: 30px; }
}

/* ── Page header (shared: Residents, Coworking, Contacts) ───────── */
.page-header { padding: 48px 0 28px; }

.page-kicker {
    font: 600 12px 'ui-monospace', 'Menlo', monospace;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #8A978F;
    margin-bottom: 16px;
}

.page-title {
    font: 600 48px/1.05 'Literata', serif;
    color: #1A2420;
    letter-spacing: -.02em;
    margin: 0 0 16px;
    max-width: 680px;
}

.page-subtitle {
    font: 400 19px/1.55 'Onest', sans-serif;
    color: #46544D;
    margin: 0 0 28px;
    max-width: 560px;
}

/* ── Residents grid ──────────────────────────────────────────────── */
.residents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-bottom: 80px;
}

.resident-card {
    background: #FFFFFF;
    border: 1px solid rgba(7, 91, 63, 0.1);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all .15s;
}

.resident-card:hover {
    box-shadow: 0 10px 28px rgba(7, 91, 63, 0.12);
    transform: translateY(-2px);
}

.resident-photo {
    height: 240px;
    position: relative;
    background: repeating-linear-gradient(135deg, #E5E4DA, #E5E4DA 12px, #EEEDE4 12px, #EEEDE4 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.resident-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.resident-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }

.resident-name {
    font: 600 23px/1.15 'Literata', serif;
    color: #1A2420;
    margin: 0 0 5px;
}

.resident-role { font: 500 14px 'Onest', sans-serif; color: #075B3F; margin-bottom: 12px; }

.resident-bio {
    font: 400 15px/1.55 'Onest', sans-serif;
    color: #5C6B63;
    margin: 0 0 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.resident-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.resident-events { font: 500 13px 'Onest', sans-serif; color: #5C6B63; }
.resident-open { font: 600 14px 'Onest', sans-serif; color: #075B3F; }

/* ── Author detail page ─────────────────────────────────────────── */
.author-header {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    padding: 36px 0 48px;
    border-bottom: 1px solid rgba(7, 91, 63, 0.13);
    margin-bottom: 48px;
}

.author-photo {
    width: 300px;
    height: 340px;
    flex: none;
    border-radius: 14px;
    overflow: hidden;
    background: repeating-linear-gradient(135deg, #E5E4DA, #E5E4DA 13px, #EEEDE4 13px, #EEEDE4 26px);
}

.author-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.author-info { flex: 1; min-width: 0; padding-top: 6px; }

.author-name {
    font: 600 52px/1.05 'Literata', serif;
    color: #1A2420;
    letter-spacing: -.02em;
    margin: 0 0 12px;
}

.author-role-tags,
.resident-role-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.author-role-pill {
    font: 600 14px 'Onest', sans-serif;
    color: #075B3F;
    background: #9EEF27;
    padding: 7px 15px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 0;
}

.author-role-pill.pill-guide {
    background: #075B3F;
    color: #F5F4EE;
}

.author-role-pill.pill-host {
    background: transparent;
    color: #075B3F;
    border: 1.5px solid #075B3F;
}

.author-bio {
    font: 400 18px/1.7 'Onest', sans-serif;
    color: #3C4842;
    margin: 0 0 18px;
    max-width: 580px;
    white-space: pre-line;
}

.author-stats { display: flex; gap: 28px; margin-top: 24px; align-items: stretch; }
.author-stats .stat { }
.author-stats .stat-sep { width: 1px; background: rgba(7, 91, 63, 0.15); flex: none; }
.stat-num { font: 600 30px 'Literata', serif; color: #075B3F; line-height: 1; }
.stat-label { font: 500 13px 'Onest', sans-serif; color: #5C6B63; margin-top: 4px; }

.author-section-title {
    font: 600 30px 'Literata', serif;
    color: #1A2420;
    letter-spacing: -.01em;
    margin: 0 0 8px;
}

/* ── Event row (used on author page) ───────────────────────────── */
.event-row {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid rgba(7, 91, 63, 0.13);
    align-items: center;
    cursor: pointer;
    transition: opacity .15s;
    text-decoration: none;
    color: inherit;
}

.event-row:hover { opacity: .7; }

.event-date-col {
    width: 64px;
    flex: none;
    text-align: center;
}

.event-day-abbr { font: 600 11px 'Onest', sans-serif; color: #5C6B63; letter-spacing: .06em; display: block; }
.event-day-num { font: 600 32px/1 'Literata', serif; color: #075B3F; display: block; margin: 1px 0; }
.event-month-abbr { font: 500 12px 'Onest', sans-serif; color: #5C6B63; display: block; }

.event-row-sep { width: 1px; align-self: stretch; background: rgba(7, 91, 63, 0.12); flex: none; }

.event-row-info { flex: 1; min-width: 0; }
.event-row-title {
    font: 600 22px/1.25 'Literata', serif;
    color: #1A2420;
    margin: 0 0 4px;
}
.event-row-time { font: 500 14px 'Onest', sans-serif; color: #5C6B63; }

.event-row-actions { flex: none; text-align: right; }
.event-row-price { font: 600 18px 'Literata', serif; color: #1A2420; margin-bottom: 8px; }

.past-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 40px 0 0;
}
.past-toggle-label { font: 600 18px 'Literata', serif; color: #075B3F; }
.past-toggle-count {
    font: 500 13px 'Onest', sans-serif;
    color: #F5F4EE;
    background: #075B3F;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.past-section { margin-top: 20px; padding-bottom: 80px; }
.past-row {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid rgba(7, 91, 63, 0.13);
    align-items: center;
    opacity: .72;
}
.past-date { width: 110px; flex: none; font: 500 13px 'Onest', sans-serif; color: #5C6B63; }
.past-sep { width: 1px; align-self: stretch; background: rgba(7, 91, 63, 0.1); flex: none; }
.past-title { flex: 1; min-width: 0; font: 600 17px/1.3 'Literata', serif; color: #1A2420; margin: 0; }
.past-cat { font: 500 13px 'Onest', sans-serif; color: #5C6B63; flex: none; }

/* ── Coworking page ─────────────────────────────────────────────── */
.room-list { padding-bottom: 80px; }
.room-row {
    display: flex;
    gap: 32px;
    align-items: stretch;
    padding: 32px 0;
    border-top: 1px solid rgba(7, 91, 63, 0.13);
}
.room-row:last-child { border-bottom: 1px solid rgba(7, 91, 63, 0.13); }

.room-photo {
    width: 340px;
    flex: none;
    border-radius: 12px;
    overflow: hidden;
    min-height: 220px;
    background: repeating-linear-gradient(135deg, #E5E4DA, #E5E4DA 12px, #EEEDE4 12px, #EEEDE4 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.room-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.room-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.room-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.room-name {
    font: 600 30px/1.15 'Literata', serif;
    color: #1A2420;
    letter-spacing: -.01em;
    margin: 0 0 12px;
}
.room-pricing { flex: none; text-align: right; padding-top: 4px; }
.room-price { font: 600 22px 'Literata', serif; color: #075B3F; line-height: 1; }
.room-price-unit { font: 500 13px 'Onest', sans-serif; color: #5C6B63; margin-top: 3px; }

.room-desc { font: 400 17px/1.6 'Onest', sans-serif; color: #3C4842; margin: 0 0 20px; max-width: 560px; }

.room-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.room-tag {
    font: 500 14px 'Onest', sans-serif;
    color: #5C6B63;
    background: #FFFFFF;
    border: 1px solid rgba(7, 91, 63, 0.14);
    padding: 9px 15px;
    border-radius: 999px;
}
.room-tag.capacity {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #1A2420;
}
.room-tag.capacity::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #FF9E00;
    flex: none;
}

.room-actions { margin-top: auto; display: flex; gap: 12px; align-items: center; }

/* ── Contacts / Staff page ──────────────────────────────────────── */
.contacts-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 48px 0 36px;
    flex-wrap: wrap;
    gap: 20px;
}
.contacts-tagline {
    font: 600 30px 'Literata', serif;
    color: #075B3F;
}
.contacts-tagline .dot { color: #9EEF27; }

.contacts-layout {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    padding-bottom: 80px;
}
.contacts-team { flex: 1; min-width: 0; }

.staff-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid rgba(7, 91, 63, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
}
.staff-avatar {
    width: 62px;
    height: 62px;
    flex: none;
    border-radius: 50%;
    background: #075B3F;
    color: #9EEF27;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 600 21px 'Literata', serif;
    flex-shrink: 0;
}
.staff-info { flex: 1; min-width: 0; }
.staff-name { font: 600 24px 'Literata', serif; color: #1A2420; margin: 0 0 6px; }
.staff-role { font: 400 15px/1.5 'Onest', sans-serif; color: #5C6B63; margin: 0 0 16px; max-width: 380px; }
.staff-email-btn {
    font: 600 13px 'Onest', sans-serif;
    color: #075B3F;
    background: rgba(7, 91, 63, 0.07);
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background .15s;
}
.staff-email-btn:hover { background: rgba(7, 91, 63, 0.14); }

.address-card { width: 320px; flex: none; }
.address-block {
    background: #FFFFFF;
    border: 1px solid rgba(7, 91, 63, 0.1);
    border-radius: 12px;
    padding: 28px;
    position: sticky;
    top: 90px;
}
.address-label {
    font: 600 11px 'Onest', sans-serif;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #8A978F;
    margin-bottom: 14px;
}
.address-name { font: 600 22px 'Literata', serif; color: #1A2420; margin-bottom: 10px; }
.address-line { font: 400 16px/1.6 'Onest', sans-serif; color: #5C6B63; margin-bottom: 20px; }
.address-map {
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    background: #E5E4DA;
    display: flex;
    align-items: center;
    justify-content: center;
}
.address-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Responsive for new pages ────────────────────────────────────── */
@media (max-width: 960px) {
    .residents-grid { grid-template-columns: repeat(2, 1fr); }
    .author-header { flex-direction: column; }
    .author-photo { width: 100%; height: 260px; }
    .author-name { font-size: 38px; }
    .room-row { flex-direction: column; }
    .room-photo { width: 100%; min-height: 200px; }
    .contacts-layout { flex-direction: column; }
    .address-card { width: 100%; }
    .page-title { font-size: 36px; }
}

@media (max-width: 600px) {
    .residents-grid { grid-template-columns: 1fr; }
    .author-name { font-size: 30px; }
}

/* ── Papers-text image placeholder ──────────────────────────────── */
/*
  SVG pattern: "Papers" repeated at -40° on dark-grey background.
  Using data URI so no extra file needed.
  patternUnits=userSpaceOnUse + patternTransform=rotate(-40) tiles text
  across the full 600×400 SVG viewport; background-size:cover scales it.
*/
body.desktop .card-photo-placeholder,
body.desktop .hero-card,
body.desktop .detail-photo,
body.desktop .resident-photo,
body.desktop .author-photo,
body.desktop .room-photo {
    background-color: #1E2220;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 400'%3E%3Cdefs%3E%3Cpattern id='ph' width='140' height='55' patternUnits='userSpaceOnUse' patternTransform='rotate(-40)'%3E%3Ctext x='8' y='38' font-family='Georgia%2Cserif' font-size='18' font-weight='600' fill='%23383838'%3EPapers%3C/text%3E%3C/pattern%3E%3C/defs%3E%3Crect width='600' height='400' fill='%231E2220'/%3E%3Crect width='600' height='400' fill='url(%23ph)'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero keeps the gradient overlay — it's layered on top of the placeholder bg */

/* ── Footer ─────────────────────────────────────────────────────── */
body.desktop .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 24px 40px 32px;
}
body.desktop .footer-social {
    display: flex;
    gap: 16px;
}
body.desktop .footer-social-link {
    color: #8A978F;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .7;
    transition: opacity .15s;
}
body.desktop .footer-social-link:hover { opacity: 1; }
body.desktop .footer-address {
    background: none;
    color: #8A978F;
    font: 400 13px 'Onest', sans-serif;
    text-align: center;
    margin: 0;
    cursor: pointer;
}
body.desktop .footer-made {
    color: #8A978F;
    font: 400 11px 'Onest', sans-serif;
    text-decoration: none;
    opacity: .5;
    transition: opacity .15s;
}
body.desktop .footer-made:hover { opacity: .9; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    body.desktop div#content { padding: 24px; }
    .site-nav { padding: 16px 24px; }
    .site-nav .nav-links { gap: 20px; }
}

@media (max-width: 600px) {
    .events-grid { grid-template-columns: 1fr; }
    .hero-card h2 { font-size: 26px; }
    body.desktop div#content { padding: 16px; }
    .site-nav { padding: 14px 16px; }
    .site-nav .nav-links { display: none; }
    .hero-card .hero-inner { left: 20px; right: 20px; bottom: 20px; }
}

/* ── Burger button ───────────────────────────────────────────────── */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.burger-btn span {
    display: block;
    height: 2px;
    background: #075B3F;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

/* ── Mobile menu overlay ─────────────────────────────────────────── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 1000;
    flex-direction: column;
    padding: 24px 24px 40px;
    overflow-y: auto;
}
.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 28px;
    color: #075B3F;
    cursor: pointer;
    line-height: 1;
    margin-bottom: 16px;
}
.mobile-menu-lang {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}
.mobile-menu-lang button {
    font: 600 14px 'Onest', sans-serif;
    color: #5C6B63;
    background: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 6px 14px;
    cursor: pointer;
}
.mobile-menu-lang button.active {
    color: #075B3F;
    border-color: #075B3F;
}
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-menu-links a {
    font: 500 22px/1.4 'Onest', sans-serif;
    color: #075B3F;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.mobile-menu-links a.nav-active {
    font-weight: 700;
}

@media (max-width: 600px) {
    .burger-btn { display: flex; }
    .lang-toggle { display: none; }
    body.mobile-menu-open .mobile-menu { display: flex; }
    body.mobile-menu-open { overflow: hidden; }
}

/* ── Bar page ────────────────────────────────────────────────── */
.bar-hero {
    display: flex;
    gap: 56px;
    align-items: center;
    padding: 40px 0 64px;
}

.bar-hero-text { flex: 1; min-width: 0; }

.bar-kicker {
    font: 600 12px ui-monospace, Menlo, monospace;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8A978F;
    margin-bottom: 18px;
}

.bar-hero h1 {
    font: 600 52px/1.06 'Literata', serif;
    color: #1A2420;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}

.bar-hero-subtitle {
    font: 400 20px/1.5 'Onest', sans-serif;
    color: #46544D;
    margin: 0 0 32px;
    max-width: 440px;
}

.bar-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bar-price-inline {
    font: 600 18px 'Literata', serif;
    color: #1A2420;
}

.bar-price-inline span {
    font: 500 14px 'Onest', sans-serif;
    color: #5C6B63;
}

.bar-hero-photo {
    width: 480px;
    flex: none;
    height: 380px;
    border-radius: 14px;
    object-fit: cover;
    background: repeating-linear-gradient(135deg, #E5E4DA, #E5E4DA 14px, #EEEDE4 14px, #EEEDE4 28px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bar-hero-photo-placeholder {
    width: 480px;
    flex: none;
    height: 380px;
    border-radius: 14px;
    background: repeating-linear-gradient(135deg, #E5E4DA, #E5E4DA 14px, #EEEDE4 14px, #EEEDE4 28px);
}

/* ── Sections ────────────────────────────────────────────────── */
.bar-section {
    padding: 52px 0;
    border-top: 1px solid rgba(7, 91, 63, 0.13);
}

.bar-section h2 {
    font: 600 32px 'Literata', serif;
    color: #1A2420;
    letter-spacing: -0.01em;
    margin: 0 0 32px;
}

/* ── Intro 2-col ─────────────────────────────────────────────── */
.bar-intro {
    display: flex;
    gap: 64px;
}

.bar-intro-heading {
    flex: none;
    width: 280px;
    font: 600 28px/1.2 'Literata', serif;
    color: #075B3F;
    letter-spacing: -0.01em;
    margin: 0;
}

.bar-intro-body { flex: 1; min-width: 0; }

.bar-intro-body p {
    font: 400 18px/1.7 'Onest', sans-serif;
    color: #3C4842;
    margin: 0 0 20px;
    max-width: 620px;
}

/* ── Amenities ───────────────────────────────────────────────── */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.amenity-card {
    background: #FFFFFF;
    border: 1px solid rgba(7, 91, 63, 0.1);
    border-radius: 12px;
    padding: 28px;
}

.amenity-dot {
    width: 16px;
    height: 16px;
    border-radius: 5px;
}

.amenity-card h3 {
    font: 600 20px 'Literata', serif;
    color: #1A2420;
    margin: 16px 0 8px;
}

.amenity-card p {
    font: 400 15px/1.5 'Onest', sans-serif;
    color: #5C6B63;
    margin: 0;
}

/* ── Rule + Drinks ───────────────────────────────────────────── */
.bar-rule-block {
    background: #075B3F;
    border-radius: 16px;
    padding: 44px;
    display: flex;
    gap: 48px;
    align-items: center;
}

.bar-rule-label {
    font: 600 12px ui-monospace, Menlo, monospace;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9EEF27;
    margin-bottom: 14px;
}

.bar-rule-text {
    font: 500 22px/1.45 'Literata', serif;
    color: #F5F4EE;
    margin: 0;
    flex: 1;
    min-width: 0;
}

.bar-drinks-side { flex: none; width: 280px; }

.bar-drinks-label {
    font: 600 12px 'Onest', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 244, 238, 0.6);
    margin-bottom: 14px;
}

.bar-drinks-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.drink-pill {
    font: 600 14px 'Onest', sans-serif;
    color: #075B3F;
    background: #9EEF27;
    padding: 9px 16px;
    border-radius: 999px;
}

/* ── Details + Booking ───────────────────────────────────────── */
.bar-details-booking {
    display: flex;
    gap: 56px;
    align-items: flex-start;
}

.bar-details-table { flex: 1; min-width: 0; }

.bar-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
    border-top: 1px solid rgba(7, 91, 63, 0.13);
}

.bar-detail-label {
    font: 600 13px 'Onest', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8A978F;
    flex: none;
    width: 150px;
    padding-top: 3px;
}

.bar-detail-value {
    font: 500 18px 'Onest', sans-serif;
    color: #1A2420;
    text-align: right;
}

.bar-booking-card {
    width: 340px;
    flex: none;
    background: #FFFFFF;
    border: 1px solid rgba(7, 91, 63, 0.12);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 6px 20px rgba(7, 91, 63, 0.07);
}

.bar-booking-card h3 {
    font: 600 22px 'Literata', serif;
    color: #1A2420;
    margin: 0 0 18px;
}

.bar-booking-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.bar-booking-big-price {
    font: 600 38px 'Literata', serif;
    color: #075B3F;
    line-height: 1;
}

.bar-booking-unit {
    font: 500 15px 'Onest', sans-serif;
    color: #5C6B63;
}

.bar-booking-deposit {
    font: 500 14px 'Onest', sans-serif;
    color: #FF9E00;
    margin-bottom: 22px;
}

.btn-bar-book {
    display: block;
    text-align: center;
    width: 100%;
    font: 600 16px 'Onest', sans-serif;
    color: #075B3F;
    background: #9EEF27;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
    box-sizing: border-box;
    margin-bottom: 14px;
}

.btn-bar-book:hover { background: #FF9E00; }

.bar-booking-note {
    font: 400 14px/1.55 'Onest', sans-serif;
    color: #5C6B63;
    margin: 0;
}

/* ── Gallery ─────────────────────────────────────────────────── */
.bar-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bar-gallery-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* ── Bar page — mobile ───────────────────────────────────────────── */
@media (max-width: 700px) {
    .bar-hero {
        flex-direction: column-reverse;
        gap: 24px;
        padding: 24px 0 40px;
    }
    .bar-hero-photo,
    .bar-hero-photo-placeholder {
        width: 100%;
        height: 240px;
        border-radius: 12px;
    }
    .bar-hero h1 { font-size: 34px; }
    .bar-hero-subtitle { font-size: 16px; margin-bottom: 24px; }

    .bar-intro { flex-direction: column; gap: 16px; }
    .bar-intro-heading { width: auto; font-size: 22px; }
    .bar-intro-body p { font-size: 16px; }

    .amenities-grid { grid-template-columns: 1fr; gap: 12px; }
    .amenity-card { padding: 20px; }

    .bar-rule-block {
        flex-direction: column;
        gap: 28px;
        padding: 28px 20px;
        align-items: flex-start;
    }
    .bar-drinks-side { width: 100%; }
    .bar-rule-text { font-size: 18px; }

    .bar-details-booking { flex-direction: column; gap: 32px; }
    .bar-booking-card { width: 100%; box-sizing: border-box; }
    .bar-booking-big-price { font-size: 30px; }

    .bar-gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

    .bar-section { padding: 32px 0; }
    .bar-section h2 { font-size: 24px; margin-bottom: 20px; }
}

/* ── Podcast Studio ─────────────────────────────────────────────── */
.booking-section-label {
    font: 600 12px 'Onest', sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8A978F;
    margin-bottom: 16px;
}

.podcast-price-row {
    padding: 14px 0;
    border-top: 1px solid rgba(7,91,63,.12);
}

.podcast-price-main {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 3px;
}

.equipment-section {
    margin-top: 48px;
    padding-top: 44px;
    border-top: 1px solid rgba(7,91,63,.13);
    padding-bottom: 80px;
}

.equipment-group {
    margin-bottom: 28px;
}

.equipment-group-label {
    font: 600 12px 'Onest', sans-serif;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #075B3F;
    margin-bottom: 10px;
}

.equipment-table {
    background: #fff;
    border: 1px solid rgba(7,91,63,.1);
    border-radius: 12px;
    overflow: hidden;
}

.equipment-header-row,
.equipment-row {
    display: grid;
    grid-template-columns: 1.4fr 1.2fr 1.6fr 64px;
    gap: 20px;
    padding: 13px 22px;
    align-items: center;
}

.equipment-header-row {
    background: rgba(7,91,63,.04);
    font: 600 11px 'Onest', sans-serif;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #8A978F;
}

.equipment-header-row span:last-child,
.equipment-row span:last-child {
    text-align: right;
}

.equipment-row {
    border-top: 1px solid rgba(7,91,63,.09);
}

.equipment-row span:nth-child(1) { font: 600 15px 'Onest', sans-serif; color: #1A2420; }
.equipment-row span:nth-child(2) { font: 500 15px 'Onest', sans-serif; color: #3C4842; }
.equipment-row span:nth-child(3) { font: 400 14px 'Onest', sans-serif; color: #5C6B63; }
.equipment-row span:nth-child(4) { font: 600 15px 'Onest', sans-serif; color: #075B3F; }

/* ── Plans page ──────────────────────────────────────────────── */
.plans-header {
    padding: 48px 0 36px;
    max-width: 640px;
}

.plans-kicker {
    font: 600 12px ui-monospace, Menlo, monospace;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8A978F;
    margin-bottom: 16px;
}

.plans-title {
    font: 600 48px/1.05 Literata, Georgia, serif;
    color: #1A2420;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.plans-subtitle {
    font: 400 19px/1.55 Onest, sans-serif;
    color: #46544D;
    margin: 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    padding-bottom: 80px;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid rgba(7,91,63,.12);
}

.plan-card--popular {
    background: #075B3F;
    border-color: #075B3F;
    box-shadow: 0 16px 40px rgba(7,91,63,.22);
}

.plan-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    font: 600 11px Onest, sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #075B3F;
    background: #9EEF27;
    padding: 5px 12px;
    border-radius: 999px;
}

.plan-name {
    font: 600 26px/1.2 Literata, Georgia, serif;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
    color: #1A2420;
}

.plan-card--popular .plan-name { color: #F5F4EE; }

.plan-desc {
    font: 400 15px/1.5 Onest, sans-serif;
    margin: 0;
    color: #5C6B63;
    min-height: 45px;
}

.plan-card--popular .plan-desc { color: rgba(245,244,238,.8); }

.plan-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 24px 0 4px;
}

.plan-price {
    font: 600 40px/1 Literata, Georgia, serif;
    color: #075B3F;
}

.plan-card--popular .plan-price { color: #9EEF27; }

.plan-unit {
    font: 500 15px Onest, sans-serif;
    color: #5C6B63;
}

.plan-card--popular .plan-unit { color: rgba(245,244,238,.7); }

.plan-divider {
    height: 1px;
    margin: 22px 0;
    background: rgba(7,91,63,.13);
}

.plan-card--popular .plan-divider { background: rgba(245,244,238,.18); }

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font: 400 15px Onest, sans-serif;
    color: #3C4842;
}

.plan-card--popular .plan-feature { color: #F5F4EE; }

.plan-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: none;
    background: #FF9E00;
}

.plan-card--popular .plan-dot { background: #9EEF27; }

.btn-plan {
    display: block;
    margin-top: 28px;
    width: 100%;
    box-sizing: border-box;
    font: 600 15px Onest, sans-serif;
    padding: 13px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    background: #075B3F;
    color: #F5F4EE;
    transition: opacity .15s;
}

.btn-plan:hover { opacity: .85; }

.plan-card--popular .btn-plan {
    background: #9EEF27;
    color: #075B3F;
}

.plans-footnote {
    font: 400 14px/1.5 Onest, sans-serif;
    color: #8A978F;
    margin: 0 0 80px;
    max-width: 560px;
}

.plans-empty {
    font: 400 16px/1.5 Onest, sans-serif;
    color: #8A978F;
    padding: 48px 0;
}

@media (max-width: 860px) {
    .plans-grid { grid-template-columns: 1fr; }
    .plans-title { font-size: 34px; }
}

/* ── Ticket page ─────────────────────────────────────────────────────────────── */
.ticket-page {
    background: #075B3F;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 24px;
    font-family: Onest, sans-serif;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

.ticket-topbar {
    width: 100%;
    max-width: 440px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.ticket-logo {
    font: 600 22px/1 Literata, Georgia, serif;
    color: #F5F4EE;
    letter-spacing: -0.01em;
}

.ticket-logo-dot { color: #9EEF27; }

.ticket-lang-switcher {
    display: flex;
    padding: 3px;
    background: rgba(245,244,238,.12);
    border-radius: 9px;
    gap: 2px;
}

.ticket-lang-btn {
    font: 600 12px Onest, sans-serif;
    padding: 5px 11px;
    border-radius: 7px;
    text-decoration: none;
    color: rgba(245,244,238,.7);
    transition: background .15s, color .15s;
}

.ticket-lang-btn.active,
.ticket-lang-btn:hover {
    background: #F5F4EE;
    color: #075B3F;
}

.ticket-card {
    width: 100%;
    max-width: 440px;
    background: #F5F4EE;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,.28);
}

.ticket-card-header {
    padding: 26px 30px;
    background: #9EEF27;
}

.ticket-kicker {
    font: 600 11px ui-monospace, Menlo, monospace;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #075B3F;
    opacity: .7;
    margin-bottom: 10px;
}

.ticket-status {
    font: 600 13px Onest, sans-serif;
    color: #075B3F;
    opacity: .85;
}

.ticket-qr {
    padding: 36px 30px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ticket-qr-img {
    padding: 16px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(7,91,63,.1);
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-scan-hint {
    font: 500 13px/1.4 Onest, sans-serif;
    color: #5C6B63;
    margin: 16px 0 0;
    text-align: center;
}

.ticket-code {
    font: 600 13px ui-monospace, Menlo, monospace;
    letter-spacing: 0.12em;
    color: #075B3F;
    margin-top: 8px;
}

.ticket-perf {
    position: relative;
    height: 30px;
    overflow: visible;
}

.ticket-perf::before,
.ticket-perf::after {
    content: '';
    position: absolute;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #075B3F;
}

.ticket-perf::before { left: -15px; }
.ticket-perf::after  { right: -15px; }

.ticket-perf-line {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 14px;
    border-top: 2px dashed rgba(7,91,63,.22);
}

.ticket-body {
    padding: 18px 30px 30px;
}

.ticket-tag {
    display: inline-block;
    font: 600 11px Onest, sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    margin-bottom: 12px;
    background: #FF9E00;
    color: #1A2420;
}

.ticket-title {
    font: 600 27px/1.2 Literata, Georgia, serif;
    color: #1A2420;
    letter-spacing: -0.01em;
    margin: 0 0 22px;
}

.ticket-meta-rows {
    display: flex;
    flex-direction: column;
}

.ticket-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-top: 1px solid rgba(7,91,63,.13);
}

.ticket-meta-label {
    font: 600 12px Onest, sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8A978F;
    padding-top: 2px;
    flex: none;
}

.ticket-meta-value {
    font: 500 15px/1.4 Onest, sans-serif;
    color: #1A2420;
    text-align: right;
    max-width: 260px;
}

.ticket-price-box {
    margin-top: 22px;
    background: #FFFFFF;
    border: 1px solid rgba(7,91,63,.1);
    border-radius: 14px;
    padding: 18px 20px;
}

.ticket-price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    font: 500 15px Onest, sans-serif;
    color: #3C4842;
}

.ticket-price-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 14px;
    border-top: 1px solid rgba(7,91,63,.13);
}

.ticket-price-total > span:first-child {
    font: 600 15px Onest, sans-serif;
    color: #1A2420;
}

.ticket-total-amount {
    font: 600 30px/1 Literata, Georgia, serif;
    color: #075B3F;
}

.ticket-back {
    font: 500 14px Onest, sans-serif;
    color: rgba(245,244,238,.7);
    text-decoration: none;
    margin-top: 28px;
    display: inline-block;
    transition: color .15s;
}

.ticket-back:hover { color: #9EEF27; }

/* ── Tours list ──────────────────────────────────────────────────── */
.tours-list {
    padding-bottom: 80px;
}

.tour-row {
    display: flex;
    gap: 32px;
    align-items: stretch;
    padding: 28px 0;
    border-top: 1px solid rgba(7,91,63,.13);
    text-decoration: none;
    transition: opacity .15s;
}

.tour-row:hover { opacity: .78; }

.tours-list-end {
    border-top: 1px solid rgba(7,91,63,.13);
}

.tour-row-photo {
    width: 360px;
    flex: none;
    border-radius: 12px;
    overflow: hidden;
    background: repeating-linear-gradient(135deg, #E5E4DA, #E5E4DA 12px, #EEEDE4 12px, #EEEDE4 24px);
    min-height: 240px;
    position: relative;
}

.tour-row-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tour-photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 240px;
}

.tour-status {
    position: absolute;
    top: 14px;
    left: 14px;
    font: 600 12px 'Onest', sans-serif;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
}

.tour-status.open  { background: #9EEF27; color: #075B3F; }
.tour-status.soon  { background: rgba(255,255,255,.88); color: #5C6B63; }
.tour-status.full  { background: rgba(0,0,0,.55); color: #F5F4EE; }

.tour-row-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.tour-name {
    font: 600 30px/1.18 'Literata', serif;
    color: #1A2420;
    letter-spacing: -.01em;
    margin: 0 0 12px;
    text-wrap: pretty;
}

.tour-desc {
    font: 400 17px/1.6 'Onest', sans-serif;
    color: #3C4842;
    margin: 0 0 20px;
    max-width: 560px;
    text-wrap: pretty;
}

.tour-facts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.tour-fact-chip {
    font: 500 14px 'Onest', sans-serif;
    color: #1A2420;
    background: #FFFFFF;
    border: 1px solid rgba(7,91,63,.14);
    padding: 8px 15px;
    border-radius: 999px;
}

.tour-dates-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.tour-dates-label {
    font: 600 11px 'Onest', sans-serif;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #8A978F;
}

.tour-date-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tour-date-chip {
    font: 500 14px 'Onest', sans-serif;
    color: #075B3F;
    background: rgba(7,91,63,.07);
    padding: 5px 12px;
    border-radius: 999px;
}

.tour-date-tba {
    font: 500 14px 'Onest', sans-serif;
    color: #5C6B63;
}

.tour-row-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.tour-price-from {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.tour-from-label {
    font: 500 13px 'Onest', sans-serif;
    color: #8A978F;
}

.tour-price-val {
    font: 600 26px 'Literata', serif;
    color: #075B3F;
    line-height: 1;
}

/* ── Tour detail ─────────────────────────────────────────────────── */
.tour-itinerary {
    margin-top: 8px;
}

.itinerary-stop {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 24px;
}

.stop-number-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: none;
}

.stop-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #075B3F;
    color: #9EEF27;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 600 14px 'Onest', sans-serif;
    flex-shrink: 0;
}

.stop-line {
    width: 2px;
    flex: 1;
    min-height: 20px;
    background: rgba(7,91,63,.18);
    margin-top: 6px;
}

.stop-body {
    padding-top: 4px;
    flex: 1;
}

.stop-title {
    font: 600 20px 'Literata', serif;
    color: #1A2420;
    margin: 0 0 5px;
}

.stop-desc {
    font: 400 15px/1.55 'Onest', sans-serif;
    color: #5C6B63;
    margin: 0;
    max-width: 480px;
    text-wrap: pretty;
}

.guide-card {
    display: flex;
    gap: 18px;
    align-items: center;
    text-decoration: none;
    background: #FFFFFF;
    border: 1px solid rgba(7,91,63,.12);
    border-radius: 12px;
    padding: 18px 22px;
    max-width: 480px;
    transition: box-shadow .15s;
    margin-top: 4px;
}

.guide-card:hover { box-shadow: 0 6px 18px rgba(7,91,63,.1); }

.guide-avatar {
    width: 56px;
    height: 56px;
    flex: none;
    border-radius: 50%;
    background: #075B3F;
    color: #9EEF27;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 600 19px 'Literata', serif;
}

.guide-info {
    flex: 1;
    min-width: 0;
}

.guide-name {
    font: 600 19px 'Literata', serif;
    color: #1A2420;
}

.guide-role {
    font: 500 14px 'Onest', sans-serif;
    color: #5C6B63;
    margin-top: 2px;
}

.guide-arrow {
    font: 600 22px 'Onest', sans-serif;
    color: #075B3F;
}

.tour-ride-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 0;
    border-top: 1px solid rgba(7,91,63,.12);
}

.tour-ride-date {
    font: 600 16px 'Onest', sans-serif;
    color: #1A2420;
}
