.lodging-page {
    --primary-color: #c3c594;
    --primary-hover: #a8aa78;
    --border-color:  #c3c594;
    --text-color:    #2c2c2a;
    --white:         #ffffff;
    --bg-page:       #f5f5f0;

    padding: clamp(40px, 6vh, 80px) 20px 80px;
    background: var(--bg-page);
    min-height: 100vh;
}

.lodging-page__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.workshops {
    justify-items: center;
}

/* ---------- Section label ---------- */
.section-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-color);
    opacity: 0.4;
    padding-left: 2px;
    margin-bottom: -4px;
}

/* ---------- HERO ---------- */
.lodging-hero {
    background: var(--white);
    border-radius: 20px;
    border-left: 6px solid var(--primary-color);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 320px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.lodging-hero__content {
    padding: clamp(22px, 3vw, 32px) clamp(20px, 3vw, 28px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.lodging-hero__eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-hover);
}

.lodging-hero__title {
    margin: 0;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--text-color);
}

.lodging-hero__subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.8;
}

.lodging-hero__media {
    background: #dddfc4;
    overflow: hidden;
    min-height: 240px;
    aspect-ratio: 4 / 3;
}

.lodging-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- Badges ---------- */
.lodging-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lodging-badge {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(195, 197, 148, 0.3);
    border: 1px solid rgba(195, 197, 148, 0.6);
    font-size: 11px;
    font-weight: 800;
    color: var(--text-color);
}

/* ---------- Stats bar ---------- */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.stat-card {
    background: var(--white);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.stat-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    margin: 0 auto 8px;
}

.stat-card__value {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--text-color);
}

.stat-card__label {
    display: block;
    font-size: 11px;
    color: var(--text-color);
    opacity: 0.55;
    margin-top: 2px;
}

/* ---------- Grid layouts ---------- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.full-width {
    grid-column: 1 / -1;
}

/* ---------- Info cards ---------- */
.info-card {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.info-card__header {
    padding: 16px 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card__accent {
    width: 4px;
    height: 18px;
    border-radius: 2px;
    background: var(--primary-color);
    flex-shrink: 0;
}

.info-card__title {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text-color);
}

.info-card__body {
    padding: 12px 20px 18px;
}

.info-card__text {
    margin: 0;
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.85;
    line-height: 1.75;
}

/* ---------- Info list ---------- */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}

.info-list li {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.85;
    line-height: 1.55;
    padding-left: 14px;
    position: relative;
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.7;
}

/* ---------- Price rows ---------- */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.07);
}

.price-row:last-of-type {
    border-bottom: none;
}

.price-row__name {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.85;
}

.price-row__value {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-hover);
    white-space: nowrap;
    margin-left: 8px;
}

.price-note {
    margin-top: 10px;
    font-size: 11px;
    color: var(--text-color);
    opacity: 0.55;
    line-height: 1.6;
}

/* ---------- Activity rows ---------- */
.activity-row {
    display: flex;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    align-items: flex-start;
}

.activity-row:last-child {
    border-bottom: none;
}

.activity-row__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
    flex-shrink: 0;
    margin-top: 7px;
}

.activity-row__text {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.85;
    line-height: 1.5;
}

.activity-row__price {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-hover);
    white-space: nowrap;
    margin-left: auto;
    padding-left: 8px;
}

/* ---------- Workshop cards ---------- */
.workshop-grid {
    display: grid;
    gap: 8px;
}

.workshop-card {
    background: rgba(195, 197, 148, 0.1);
    border-radius: 10px;
    padding: 11px 13px;
    border: 1px solid rgba(195, 197, 148, 0.3);
}

.workshop-card__name {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 3px;
}

.workshop-card__details {
    font-size: 11px;
    color: var(--text-color);
    opacity: 0.6;
}

/* ---------- Info trio tiles ---------- */
.info-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.info-tile {
    background: rgba(195, 197, 148, 0.1);
    border-radius: 12px;
    padding: 14px;
    border: 1px solid rgba(195, 197, 148, 0.3);
    text-align: center;
}

.info-tile__line {
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: var(--primary-color);
    margin: 0 auto 10px;
}

.info-tile__title {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-color);
}

.info-tile__sub {
    font-size: 11px;
    color: var(--text-color);
    opacity: 0.6;
    margin-top: 3px;
}

/* ---------- Reviews ---------- */
.reviews {
    scroll-margin-top: 90px;
}

.reviews__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.reviews__score {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
}

.reviews__stars {
    font-size: 14px;
    color: var(--primary-color);
    letter-spacing: 3px;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.reviews__count {
    font-size: 11px;
    color: var(--text-color);
    opacity: 0.55;
    margin-top: 3px;
}

/* ---------- Review cards ---------- */
.review-card {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:last-of-type {
    border-bottom: none;
}

.review-card__meta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.review-card__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(195, 197, 148, 0.4);
    border: 1px solid rgba(195, 197, 148, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: var(--text-color);
    flex-shrink: 0;
    text-transform: uppercase;
}

.review-card__user {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-color);
}

.review-card__stars {
    font-size: 11px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.review-card__date {
    font-size: 11px;
    color: var(--text-color);
    opacity: 0.45;
    margin-left: auto;
}

.review-card__text {
    margin: 0;
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.65;
}

/* ---------- Notices ---------- */
.notice {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    margin: 12px 20px;
}

.notice--success {
    background: rgba(195, 197, 148, 0.3);
    color: var(--text-color);
    border: 1px solid rgba(195, 197, 148, 0.5);
}

.notice--error {
    background: rgba(208, 108, 49, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(208, 108, 49, 0.2);
}

/* ---------- Review form ---------- */
.review-form {
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: grid;
    gap: 10px;
}

.review-form__title {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 2px;
}

.form-field__label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 5px;
}

.form-field__select,
.form-field__textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 9px 12px;
    background: var(--white);
    color: var(--text-color);
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-field__textarea {
    resize: vertical;
    min-height: 90px;
}

.form-field__select:focus,
.form-field__textarea:focus {
    border-color: var(--border-color);
    box-shadow: 0 0 0 3px rgba(195, 197, 148, 0.3);
}

.review-form__login {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.8;
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ---------- Button ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 10px;
    background: #CC642C;
    color: var(--white);
    border: none;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background-color: #CC642C;
    transform: translateY(-1px);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .lodging-hero {
        grid-template-columns: 1fr;
    }

    .lodging-hero__media {
        min-height: 200px;
        aspect-ratio: 4 / 3;
        order: -1;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .info-trio {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }

    .reviews__header {
        gap: 12px;
    }

    .reviews__score {
        font-size: 28px;
    }
}