/**
 * Hotels Theme Bold — Single Hotel page.
 * Matches Bold theme language used on front page and listings.
 */

.bold-hotel-page {
    background: var(--theme-bg-white);
}

.bold-hotel-page .hotel-section {
    padding: 2.25rem 0;
    border-top: 1px solid var(--theme-border-light);
}

.bold-hotel-page .hotel-section:nth-of-type(even) {
    background: var(--theme-bg-light);
}

.bold-section-label {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--theme-accent);
    border: 1px solid rgba(59, 130, 246, 0.25);
    padding: 0.28rem 0.7rem;
}

.bold-hotel-page .hotel-section-title,
.bold-hotel-page .bold-section-title {
    margin: 0;
    padding-bottom: 0.9rem;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--theme-text-dark);
    border-bottom: 3px solid var(--theme-accent);
}

.bold-hotel-page .hotel-section-subtitle {
    margin: 1rem 0 2rem;
    font-size: 0.94rem;
    color: var(--theme-text-light);
}

.bold-section-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Hero */
.bold-hotel-hero {
    background: var(--theme-primary);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bold-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.bold-hero-media {
    position: relative;
}

.bold-hero-media .hero-gallery {
    display: grid;
    gap: 0.35rem;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px 140px;
}

.bold-hero-media .hero-main {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.bold-hero-media .hero-thumb {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.bold-hero-media .hero-main img,
.bold-hero-media .hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bold-hero-media .hero-main img:hover,
.bold-hero-media .hero-thumb img:hover {
    filter: brightness(0.9);
}

.bold-hero-media .hero-gallery-overlay {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
}

.bold-btn-photos,
.bold-hero-media .btn-all-photos {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1rem;
    border: 2px solid var(--theme-accent);
    background: var(--theme-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.bold-btn-photos:hover,
.bold-hero-media .btn-all-photos:hover {
    background: var(--theme-accent);
}

.bold-hero-panel {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bold-hero-label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--theme-accent-on-dark); /* #60a5fa — 5.93:1 vs dark panel bg ✓ */
}

.bold-hero-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: #fff;
}

.bold-hero-stars .hotel-stars svg {
    width: 16px;
    height: 16px;
    color: var(--theme-accent);
    fill: var(--theme-accent);
}

.bold-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.bold-hero-badge,
.bold-quick-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.32rem 0.68rem;
    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-weight: 700;
}

.bold-hero-badge.high,
.bold-quick-badge.high {
    background: var(--theme-green);
    color: #fff;
}

.bold-hero-badge.medium,
.bold-quick-badge.medium {
    background: var(--theme-yellow);
    color: #1e1e2e;
}

.bold-hero-badge small,
.bold-quick-badge small {
    font-size: 0.72rem;
    opacity: 0.9;
    font-weight: 500;
}

.bold-hero-location,
.bold-quick-location {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
}

.bold-hero-location svg,
.bold-quick-location svg {
    color: var(--theme-accent);
    flex-shrink: 0;
}

.bold-hero-actions,
.bold-quick-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

/* Outline button on dark hero panel — must use lighter accent for contrast */
.bold-hero-panel .btn-secondary,
.bold-hero-panel .bold-btn-outline {
    color: var(--theme-accent-on-dark);   /* #60a5fa — 5.88:1 vs dark panel bg ✓ */
    border-color: var(--theme-accent-on-dark);
}

.bold-hero-facts {
    margin-top: 0.4rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.bold-fact-chip {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem;
}

.bold-fact-value {
    display: block;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}

.bold-fact-label {
    display: block;
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Quick bar — static, no sticky */
.bold-quick-bar {
    position: static; /* override parent theme's position:sticky */
    z-index: 95;
    background: var(--theme-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 2px solid var(--theme-accent);
}

.quick-bar-inner.bold-quick-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
}

.bold-quick-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    color: #fff;
}

.bold-quick-title {
    margin: 0;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.quick-bar-stars .hotel-stars svg {
    width: 14px;
    height: 14px;
    color: var(--theme-accent);
    fill: var(--theme-accent);
}

/* Overview */
.bold-highlights-bar {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding: 0.2rem 0 0.6rem;
    margin: 1.25rem 0 2rem;
}

.bold-highlight-card {
    flex: 0 0 210px;
    border: 1px solid var(--theme-border);
    background: #fff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bold-highlight-card:hover {
    border-color: var(--theme-accent);
}

.bold-highlight-icon {
    color: var(--theme-accent);
}

.bold-highlight-card strong {
    color: var(--theme-text-dark);
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.bold-highlight-card span {
    color: var(--theme-text-light);
    font-size: 0.84rem;
}

.bold-overview-prose {
    max-width: 900px;
    color: var(--theme-text-body);
    font-size: 1.04rem;
    line-height: 1.85;
    letter-spacing: 0.002em;
    text-align: left;
}

.bold-overview-prose p {
    margin: 0 0 1rem;
}

.bold-overview-prose > *:first-child {
    margin-top: 0;
}

.bold-overview-prose > *:last-child {
    margin-bottom: 0;
}

.bold-overview-prose h2,
.bold-overview-prose h3,
.bold-overview-prose h4 {
    margin: 1.8rem 0 0.8rem;
    color: var(--theme-text-dark);
    font-family: var(--font-heading);
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.bold-overview-prose h2 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    text-transform: uppercase;
}

.bold-overview-prose h3 {
    font-size: clamp(1.06rem, 1.8vw, 1.3rem);
}

.bold-overview-prose h4 {
    font-size: 1.02rem;
}

.bold-overview-prose ul,
.bold-overview-prose ol {
    margin: 0.9rem 0 1.2rem;
    padding-left: 1.1rem;
}

.bold-overview-prose li {
    margin-bottom: 0.35rem;
    color: var(--theme-text-body);
}

.bold-overview-prose strong {
    color: var(--theme-text-dark);
    font-weight: 700;
}

.bold-overview-prose em {
    color: var(--theme-text);
}

.bold-overview-prose a {
    color: var(--theme-accent);
    text-decoration: underline;
    text-decoration-color: rgba(59, 130, 246, 0.35);
    text-underline-offset: 2px;
    transition: text-decoration-color var(--theme-transition-fast), color var(--theme-transition-fast);
}

.bold-overview-prose a:hover {
    color: var(--theme-accent-light);
    text-decoration-color: var(--theme-accent-light);
}

.bold-overview-prose blockquote {
    margin: 1.25rem 0;
    padding: 0.85rem 1rem;
    border-left: 3px solid var(--theme-accent);
    background: var(--theme-bg-light);
    color: var(--theme-text);
    font-style: italic;
}

.bold-overview-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
    font-size: 0.92rem;
}

.bold-overview-prose th,
.bold-overview-prose td {
    border: 1px solid var(--theme-border);
    padding: 0.55rem 0.65rem;
    text-align: left;
}

.bold-overview-prose th {
    background: var(--theme-bg-light);
    color: var(--theme-text-dark);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bold-overview-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
    gap: 1.25rem;
    align-items: start;
}

.bold-overview-main {
    min-width: 0;
}

.bold-overview-aside {
    min-width: 0;
}

.bold-house-rules {
    border: 1px solid var(--theme-border);
    background: #fff;
    padding: 1rem;
}

.bold-rules-heading {
    margin: 0 0 0.9rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--theme-text-dark);
}

.bold-rule-group {
    border: 1px solid var(--theme-border);
    margin-bottom: 0.5rem;
    background: #fff;
}

.bold-rule-group summary {
    cursor: pointer;
    list-style: none;
    padding: 0.8rem 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--theme-text-dark);
    background: var(--theme-bg-light);
}

.bold-rule-group summary::-webkit-details-marker {
    display: none;
}

.bold-rule-group ul {
    margin: 0;
    padding: 0.8rem 1rem 1rem;
    list-style: none;
}

.bold-rule-group li {
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--theme-border-light);
    color: var(--theme-text);
    font-size: 0.9rem;
}

.bold-rule-group li:last-child {
    border-bottom: none;
}

/* Rooms */
.bold-rooms-grid,
.rooms-grid.bold-rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.bold-room-card,
.bold-rooms .room-card {
    border: 1px solid var(--theme-border);
    background: #fff;
    padding: 1rem;
}

.bold-room-card:hover,
.bold-rooms .room-card:hover {
    border-color: var(--theme-accent);
}

.bold-rooms .room-name {
    margin: 0 0 0.8rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--theme-text-dark);
}

.bold-rooms .room-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.bold-room-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid var(--theme-border);
    background: var(--theme-bg-light);
    color: var(--theme-text);
    font-size: 0.8rem;
    padding: 0.3rem 0.56rem;
}

.bold-room-tag svg {
    color: var(--theme-accent);
}

.bold-rooms .room-price {
    margin-top: 1rem;
}

.bold-rooms .room-price-label {
    display: block;
    color: var(--theme-text-light);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bold-rooms .room-price-value {
    display: block;
    color: var(--theme-accent);
    font-family: var(--font-heading);
    font-size: 1.22rem;
    font-weight: 700;
}

/* Amenities */
.bold-amenity-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.4rem;
}

.bold-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid var(--theme-border);
    background: #fff;
    color: var(--theme-text-dark);
    font-size: 0.82rem;
    padding: 0.32rem 0.55rem;
}

.bold-chip svg {
    color: var(--theme-accent);
}

.bold-chip:hover {
    border-color: var(--theme-accent);
}

.bold-amenity-group {
    border: 1px solid var(--theme-border);
    margin-bottom: 0.45rem;
    background: #fff;
}

.bold-amenity-group[open] {
    border-color: var(--theme-accent);
}

.bold-amenity-group .amenity-group-header {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem 1rem;
}

.bold-amenity-group .amenity-group-header::-webkit-details-marker {
    display: none;
}

.bold-amenity-group .amenity-group-icon {
    color: var(--theme-accent);
    width: 18px;
    height: 18px;
}

.bold-amenity-group .amenity-group-icon svg {
    width: 18px;
    height: 18px;
}

.bold-amenity-group .amenity-group-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--theme-text-dark);
}

.bold-amenity-group .amenity-group-count {
    margin-left: auto;
    min-width: 24px;
    text-align: center;
    background: var(--theme-primary);
    color: var(--theme-accent-on-dark); /* #60a5fa — 5.88:1 vs #1e1e2e dark badge ✓ */
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.35rem;
}

.bold-amenity-group .amenity-chevron {
    color: var(--theme-text-light);
    width: 16px;
    height: 16px;
}

.bold-amenity-group .amenity-list {
    margin: 0;
    padding: 0 1rem 0.9rem;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 1.2rem;
}

.bold-amenity-group .amenity-list li {
    color: var(--theme-text);
    font-size: 0.86rem;
    padding-left: 0.9rem;
    position: relative;
}

.bold-amenity-group .amenity-list li::before {
    content: '';
    position: absolute;
    top: 0.48rem;
    left: 0;
    width: 0.42rem;
    height: 0.42rem;
    background: var(--theme-accent);
}

/* Reviews */
.bold-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.bold-score-card {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--theme-accent);
    color: #fff;
    padding: 0.5rem 0.8rem;
}

.bold-score-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.bold-score-card .reviews-score-text {
    font-size: 0.82rem;
    line-height: 1.4;
    color: #fff; /* parent sets var(--theme-text) = dark on blue bg — FAIL */
}

.bold-score-card .reviews-score-text strong {
    display: block;
    color: #fff; /* parent sets var(--theme-text-dark) = #1e1e2e on #2563EB = 3.17:1 — FAIL */
}

/* Parent theme sets dark colors on score number — override for blue bg */
.bold-score-card .reviews-score-number,
.bold-score-card .bold-score-number {
    color: #fff; /* was var(--theme-primary) = #1e1e2e on #2563EB = 3.17:1 — #fff = 5.1:1 ✓ */
}

.bold-review-bars {
    margin-bottom: 1.7rem;
}

.bold-hotel-page .review-bar-track {
    background: #e6ebf1;
}

.bold-hotel-page .review-bar-fill {
    background: var(--theme-accent);
}

.bold-reviews-timeline {
    position: relative;
    padding-left: 1.6rem;
}

.bold-reviews-timeline::before {
    content: '';
    position: absolute;
    left: 0.46rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--theme-border);
}

.bold-timeline-item {
    position: relative;
    margin-bottom: 1rem;
}

.bold-timeline-item.bold-review-hidden {
    display: none;
}

.bold-timeline-dot {
    position: absolute;
    left: -1.42rem;
    top: 1.1rem;
    width: 11px;
    height: 11px;
    background: var(--theme-accent);
    border: 2px solid #fff;
}

.bold-timeline-card {
    border: 1px solid var(--theme-border);
    background: #fff;
    padding: 1rem;
}

.bold-timeline-card:hover {
    border-color: var(--theme-accent);
}

.bold-timeline-card .review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
}

.bold-timeline-card .review-author {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.bold-timeline-card .review-avatar {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.bold-timeline-card .review-author-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--theme-text-dark);
}

.bold-timeline-card .review-author-location,
.bold-timeline-card .review-date {
    color: var(--theme-text-light);
    font-size: 0.8rem;
}

.bold-timeline-card .review-score {
    padding: 0.2rem 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
}

.bold-timeline-card .review-score.high {
    background: var(--theme-green);
    color: #fff;
}

.bold-timeline-card .review-score.medium {
    background: var(--theme-yellow);
    color: #1e1e2e;
}

.bold-timeline-card .review-text {
    color: var(--theme-text);
    font-size: 0.9rem;
    line-height: 1.7;
}

.bold-timeline-card .review-text p {
    margin: 0 0 0.5rem;
}

.bold-timeline-card .read-more {
    border: 0;
    background: transparent;
    color: var(--theme-accent);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
}

.bold-show-more-reviews {
    margin: 1.5rem auto 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.68rem 1.2rem;
    border: 2px solid var(--theme-accent);
    background: transparent;
    color: var(--theme-accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.bold-show-more-reviews:hover {
    background: var(--theme-accent);
    color: #fff;
}

.bold-hotel-page dialog.review-dialog {
    border: 1px solid var(--theme-border);
    max-width: 640px;
    padding: 1.2rem;
}

.bold-hotel-page dialog.review-dialog .title {
    margin: 0 0 0.8rem;
    font-family: var(--font-heading);
}

.bold-hotel-page button.close-dialog {
    margin-top: 1rem;
    border: 2px solid var(--theme-accent);
    background: var(--theme-accent);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.45rem 1rem;
    cursor: pointer;
}

/* Location */
.bold-location-addr {
    margin: 1rem 0 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--theme-text);
    font-size: 0.92rem;
}

.bold-location-addr svg {
    color: var(--theme-accent);
}

.bold-map-fullwidth .map-container {
    width: 100%;
    height: 380px;
    border: 1px solid var(--theme-border);
    margin-bottom: 1.4rem;
}

.bold-surroundings-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.bold-surr-card {
    border: 1px solid var(--theme-border);
    background: #fff;
    padding: 1rem;
}

.bold-surr-card:hover {
    border-color: var(--theme-accent);
}

.bold-surr-title {
    margin: 0 0 0.8rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--theme-accent);
    color: var(--theme-text-dark);
    font-family: var(--font-heading);
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bold-surr-card .surr-item {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--theme-border-light);
    font-size: 0.84rem;
}

.bold-surr-card .surr-item:last-child {
    border-bottom: none;
}

.bold-surr-card .surr-distance {
    color: var(--theme-text-light);
    white-space: nowrap;
}

/* Contact */
.bold-contact-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.25fr);
    gap: 1rem;
    align-items: start;
}

.bold-contact-panel {
    border: 1px solid var(--theme-border);
    background: #fff;
    padding: 1rem;
}

.bold-contact-actions {
    display: flex;
    gap: 0.55rem;
    margin-bottom: 0.9rem;
}

.bold-contact-action {
    flex: 1;
    text-align: center;
    border: 2px solid var(--theme-accent);
    color: var(--theme-accent);
    background: transparent;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.48rem 0.6rem;
}

.bold-contact-action:hover {
    background: var(--theme-accent);
    color: #fff;
}

.bold-contact-action--primary {
    background: var(--theme-accent);
    color: #fff;
}

.bold-contact-action--primary:hover {
    background: var(--theme-accent-light);
    border-color: var(--theme-accent-light);
}

.bold-contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
}

.bold-contact-card {
    border: 1px solid var(--theme-border);
    background: var(--theme-bg-light);
    padding: 0.9rem;
    text-align: left;
}

.bold-contact-card:hover {
    border-color: var(--theme-accent);
}

.bold-contact-icon {
    color: var(--theme-accent);
    margin-bottom: 0.45rem;
}

.bold-contact-card h3 {
    margin: 0 0 0.25rem;
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--theme-text-dark);
}

.bold-contact-card p {
    margin: 0;
    color: var(--theme-text);
    font-size: 0.88rem;
    line-height: 1.55;
}

.bold-contact-card a {
    color: var(--theme-accent);
    text-decoration: none;
}

.bold-contact-card a:hover {
    text-decoration: underline;
}

.bold-contact-form-wrap {
    border: 1px solid var(--theme-border);
    background: #fff;
    padding: 1rem;
}

.bold-contact-form-title {
    margin: 0 0 0.35rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--theme-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bold-contact-form-subtitle {
    margin: 0 0 0.9rem;
    color: var(--theme-text-light);
    font-size: 0.88rem;
}

.bold-contact-form .wpcf7-form {
    margin: 0;
    padding: 0.1rem 0 0;
}

.bold-contact-form input,
.bold-contact-form textarea,
.bold-contact-form select {
    width: 100%;
    border: 1px solid var(--theme-border);
    background: #fff;
    padding: 0.62rem 0.7rem;
    font-size: 0.9rem;
    color: var(--theme-text-dark);
}

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

.bold-contact-form input:focus,
.bold-contact-form textarea:focus,
.bold-contact-form select:focus {
    border-color: var(--theme-accent);
    box-shadow: 0 0 0 1px var(--theme-accent);
}

.bold-contact-form .wpcf7-submit {
    border: 2px solid var(--theme-accent);
    background: var(--theme-accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.52rem 1rem;
    cursor: pointer;
}

.bold-contact-form .wpcf7-submit:hover {
    background: var(--theme-accent-light);
    border-color: var(--theme-accent-light);
}

/* Related */
.bold-related-grid,
.bold-related .related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.bold-related-card,
.bold-related .related-card {
    border: 1px solid var(--theme-border);
    background: #fff;
    display: block;
    text-decoration: none;
    color: inherit;
}

.bold-related-card:hover,
.bold-related .related-card:hover {
    border-color: var(--theme-accent);
}

.bold-related .related-card-img img,
.bold-related-card .related-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.bold-related .related-card-body,
.bold-related-card .related-card-body {
    padding: 1rem;
}

.bold-related .related-card-title,
.bold-related-card .related-card-title {
    margin: 0 0 0.4rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--theme-text-dark);
}

.bold-rel-rating {
    margin-top: 0.45rem;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.2rem 0.45rem;
    background: var(--theme-accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 700;
}

.bold-rel-rating small {
    font-size: 0.68rem;
    opacity: 0.9;
}

.bold-related .related-card-location,
.bold-related-card .related-card-location {
    margin-top: 0.45rem;
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    color: var(--theme-text-light);
    font-size: 0.82rem;
}

.bold-related .related-card-location svg,
.bold-related-card .related-card-location svg {
    color: var(--theme-accent);
}

/* Shared section images */
.bold-hotel-page .section-images {
    margin-top: 1.6rem;
    display: grid;
    gap: 0.8rem;
}

/* Bold quick bar already provides BOOK NOW / CALL on all viewports.
   Suppress the parent-theme fixed-bottom mobile CTA so it doesn't
   cover the footer (z-index: 99999 in parent @media ≤768px). */
.bold-hotel-page #lastcta {
    display: none !important;
}

/* Gallery */
.bold-hotel-page .gallery-nav {
    background: var(--theme-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.bold-hotel-page .gallery-nav:hover {
    background: var(--theme-accent);
    border-color: var(--theme-accent);
}

.bold-hotel-page .gallery-thumbs img.active,
.bold-hotel-page .gallery-thumbs img:hover {
    border-color: var(--theme-accent);
}


/* Responsive */
@media (max-width: 1100px) {
    .bold-hero-layout {
        grid-template-columns: 1fr;
    }

    .bold-hero-media .hero-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 280px 120px 120px;
    }

    .bold-hero-media .hero-main {
        grid-column: 1 / span 2;
        grid-row: 1;
    }

    .bold-rooms-grid,
    .rooms-grid.bold-rooms-grid,
    .bold-surroundings-grid,
    .bold-related-grid,
    .bold-related .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bold-overview-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .bold-hotel-page .hotel-section {
        padding: 1.6rem 0;
    }

    .quick-bar-inner.bold-quick-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .bold-quick-actions,
    .bold-hero-actions {
        width: 100%;
    }

    .bold-quick-actions a,
    .bold-hero-actions a {
        flex: 1;
        text-align: center;
        justify-content: center;
    }

    .bold-hero-facts {
        grid-template-columns: 1fr;
    }

    .bold-amenity-group .amenity-list {
        grid-template-columns: 1fr;
    }

    .bold-contact-actions {
        flex-direction: column;
    }

    .bold-contact-cards,
    .bold-rooms-grid,
    .rooms-grid.bold-rooms-grid,
    .bold-surroundings-grid,
    .bold-related-grid,
    .bold-related .related-grid {
        grid-template-columns: 1fr;
    }

    .bold-map-fullwidth .map-container {
        height: 300px;
    }

    .bold-reviews-timeline {
        padding-left: 1.3rem;
    }

    .bold-timeline-dot {
        left: -1.15rem;
    }
}

@media (max-width: 480px) {
    .bold-hotel-hero {
        padding: 2rem 0;
    }

    .bold-hero-media .hero-gallery {
        grid-template-rows: 220px 100px 100px;
    }

    .bold-score-card {
        width: 100%;
        justify-content: center;
    }
}
