/* Base Layout */
.hg-tabs-wrap {
    max-width: 1100px;
    margin: 60px auto;
    color: #5a5a5a;
    background: #fff;
    font-family: 'Roboto', sans-serif;
    position: relative;
}

/* Typography */
.hg-tabs-wrap .hg-h2,
.hg-tabs-wrap .hg-h3,
.hg-tabs-wrap .hg-tab {
    font-family: 'Splash', cursive;
}

.hg-tabs-wrap .hg-h2 {
    font-size: 2em;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #3a3a3a;
}

.hg-tabs-wrap .hg-lead {
    font-weight: 300;
    font-size: 1.05em;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Header */
.hg-tabs-header {
    text-align: center;
    padding: 40px 30px;
}

.hg-header-image {
    margin-top: 26px;
    height: 340px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hg-subnote {
    margin: 18px auto 0;
    max-width: 860px;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.9;
}

/* Tab Navigation */
.hg-tabs-container {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background: #f8f8f8;
}

.hg-tabs {
    display: flex;
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.hg-tabs::-webkit-scrollbar { display: none; }

.hg-tab {
    padding: 18px 24px;
    border: 0;
    background: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.6;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.hg-tab.is-active {
    opacity: 1;
    border-bottom: 2px solid #5a5a5a;
    background: #fff;
}

.hg-nav-arrow {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    padding: 0 15px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.hg-nav-arrow:hover { opacity: 1; }

/* Panels */
.hg-panels {
    padding: 50px 40px;
    min-height: 300px;
}

.hg-panel {
    max-width: 800px;
    margin: auto;
    display: none;
    animation: fadeIn 0.4s ease;
}

.hg-panel.is-active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Content Elements */
.hg-h3 {
    font-size: 1.6em;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.hg-bullets ul, .hg-bullets {
    padding-left: 0;
    list-style: none;
    margin: 30px 0;
}

.hg-bullets li {
    margin: 10px 0;
    font-weight: 300;
    line-height: 1.6;
}

.hg-bullets strong {
    font-weight: 500;
    color: #3a3a3a;
}

/* Buttons */
.hg-cta-row {
    margin-top: 40px;
}

.hg-cta {
    display: inline-block;
    border: 1px solid #5a5a5a;
    padding: 14px 36px;
    text-transform: uppercase;
    text-decoration: none;
    color: #5a5a5a;
    font-weight: 500;
    transition: all 0.3s;
    background: transparent;
}

.hg-cta:hover {
    background: #5a5a5a;
    color: #fff;
}

.hg-pill {
    display: inline-block;
    font-size: 0.7em;
    padding: 6px 14px;
    border: 1px solid rgba(0,0,0,0.2);
    margin-left: 10px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    vertical-align: middle;
}

/* ROOMS SPECIFIC LAYOUT OVERRIDES */
.hg-rooms .hg-panel {
    max-width: 980px;
}

.hg-rooms .hg-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.hg-rooms .hg-room-media img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hg-rooms .hg-panel-grid {
        grid-template-columns: 1fr;
    }
    
    .hg-tabs-header {
        padding: 30px 15px;
    }
    
    .hg-panels {
        padding: 30px 20px;
    }
}