/* 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;
    }
}
































/* =========================================
   STAYCATION WIDGET STYLES
   ========================================= */

.staycation-section {
    padding: 60px 20px;
    background-color: #FCF7F7;
    font-family: 'Jost', 'Roboto', sans-serif;
    color: #21454B;
    line-height: 1.8;
}

.staycation-container {
    max-width: 1000px;
    margin: 0 auto;
}

.staycation-header {
    text-align: center;
    margin-bottom: 60px;
}

.staycation-header h2 {
    font-family: 'Alethia Pro', 'Marcellus', serif;
    font-size: 46px;
    font-weight: 400;
    color: #21454B;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.staycation-header h4 {
    font-family: 'Alethia Pro', 'Marcellus', serif;
    font-size: 24px;
    color: #B99D75;
    margin: 0 0 30px 0;
    font-style: italic;
    font-weight: 400;
}

.staycation-intro-text p {
    font-size: 17px;
    opacity: 0.85;
    margin: 0 auto 20px auto;
    max-width: 800px;
}

.staycation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.stay-card {
    background: #FFFFFF;
    border: 1px solid rgba(185, 157, 117, 0.15);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(33, 69, 75, 0.04);
    transition: all 0.3s ease;
}

.stay-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(33, 69, 75, 0.08);
    border-color: rgba(185, 157, 117, 0.4);
}

.stay-card h3 {
    font-family: 'Alethia Pro', 'Marcellus', serif;
    font-size: 28px;
    color: #21454B;
    margin: 0 0 20px 0;
    border-bottom: 1px solid rgba(185, 157, 117, 0.2);
    padding-bottom: 15px;
}

ul.stay-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

ul.stay-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 16px;
    opacity: 0.9;
}

ul.stay-list li::before {
    content: "•";
    color: #B99D75;
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
    top: 2px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.price-card {
    background: #FFFFFF;
    border: 1px solid rgba(185, 157, 117, 0.25);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(33, 69, 75, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.price-card h4 {
    font-family: 'Alethia Pro', 'Marcellus', serif;
    font-size: 22px;
    color: #21454B;
    margin: 0 0 15px 0;
}

.price-amount {
    font-size: 24px;
    font-weight: 600;
    color: #B99D75;
    margin-bottom: 20px;
}

.price-content p {
    margin: 0;
}

.staycation-cta {
    text-align: center;
    padding: 50px 20px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid rgba(185, 157, 117, 0.15);
}

.staycation-cta h3 {
    font-family: 'Alethia Pro', 'Marcellus', serif;
    font-size: 32px;
    color: #21454B;
    margin: 0 0 15px 0;
}

.btn-gold-luxury {
    display: inline-block;
    background: linear-gradient(135deg, #cfa33a 0%, #f6e27a 25%, #d4af37 50%, #f6e27a 75%, #b8962e 100%) !important;
    color: #111 !important;
    text-decoration: none;
    border: none !important;
    border-radius: 6px !important;
    padding: 16px 36px !important;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.btn-gold-luxury:hover {
    background: linear-gradient(135deg, #e6c65c 0%, #fff1a8 40%, #d4af37 70%, #c59b2a 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.35);
    color: #111 !important;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .staycation-section {
        padding: 40px 15px;
    }
    .staycation-header h2 {
        font-size: 36px;
    }
    .staycation-header h4 {
        font-size: 20px;
    }
    .staycation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .stay-card {
        padding: 30px 20px;
    }
}
















































/* ==========================================================================
   HG Booking Widget - Horizontal Layout & Green/Gold Palette
   ========================================================================== */

:root {
    /* Palette: Gold & Green */
    --hg-color-white: #FFFFFF;
    --hg-color-bg: #FAFCFB; /* Barely-there green splash for widget background */
    --hg-color-green-light: #E5EDE7; /* Soft elegant sage */
    --hg-color-green-dark: #2A3B2E; /* Deep forest green for text */
    --hg-color-gold: #CCA978;
    --hg-color-gold-dark: #B59363;
    --hg-color-text-muted: #5E6D62;
    
    /* Typography: Splash removed, using luxury serif */
    --hg-font-serif: 'Playfair Display', 'Lora', 'Merriweather', serif; 
    --hg-font-sans: 'Roboto', 'Montserrat', sans-serif;
    --hg-transition: all 0.3s ease;
}

/* Base Wrapper */
.hg-booking {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: var(--hg-font-sans);
    color: var(--hg-color-green-dark);
    background-color: var(--hg-color-bg);
    border: 1px solid rgba(204, 169, 120, 0.4); /* Thin gold framing */
    padding: 3rem;
    box-sizing: border-box;
    box-shadow: 0 10px 40px rgba(42, 59, 46, 0.05); /* Soft green shadow */
}

.hg-booking * {
    box-sizing: border-box;
}

/* Typography Globals */
.hg-booking__section-title,
.hg-booking__residence-title,
.hg-booking__room-title,
.hg-booking__hero-title {
    font-family: var(--hg-font-serif);
    font-weight: 400;
    color: var(--hg-color-green-dark);
}

.hg-booking__section-title,
.hg-booking__residence-title,
.hg-booking__room-title {
    margin: 0 0 1rem;
}

.hg-booking__hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin: 0 0 1rem;
}

.hg-booking__hero-subtitle,
.hg-booking__residence-subtitle {
    font-family: var(--hg-font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--hg-color-gold-dark);
    margin: 0 0 0.5rem;
}

.hg-booking__hero-tagline {
    font-family: var(--hg-font-serif);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--hg-color-text-muted);
    margin: 0 0 1.5rem;
}

/* Shared UI */
.hg-booking__divider {
    width: 60px;
    height: 2px;
    background-color: var(--hg-color-gold);
    margin: 2rem auto;
}
.hg-booking__divider--full {
    width: 100%;
    height: 1px;
    background-color: var(--hg-color-gold);
    opacity: 0.3;
}

/* Shared UI Buttons - Custom Gold Gradient */
.hg-booking__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.85rem;
    
    /* Your custom gold styles applied globally to all widget buttons */
    background: linear-gradient(135deg, #cfa33a 0%, #f6e27a 25%, #d4af37 50%, #f6e27a 75%, #b8962e 100%) !important;
    color: #111 !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 14px 28px !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.hg-booking__btn:hover {
    background: linear-gradient(135deg, #e6c65c 0%, #fff1a8 40%, #d4af37 70%, #c59b2a 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

.hg-booking__btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.hg-booking__btn--primary {
    background-color: var(--hg-color-gold);
    color: #fff !important;
    border: 1px solid var(--hg-color-gold);
}

.hg-booking__btn--primary:hover {
    background-color: var(--hg-color-gold-dark);
    border-color: var(--hg-color-gold-dark);
}

.hg-booking__btn--outline {
    background: transparent;
    color: var(--hg-color-green-dark) !important;
    border: 1px solid var(--hg-color-gold);
}

.hg-booking__btn--outline:hover {
    background: var(--hg-color-green-light);
}

/* 1. Hero Section */
.hg-booking__hero {
    margin-bottom: 4rem;
}

.hg-booking__hero--centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hg-booking__hero--centered .hg-booking__hero-desc {
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.hg-booking__hero--centered .hg-booking__hero-media {
    margin-top: 3rem;
    width: 100%;
}
.hg-booking__hero-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 600px;
}

.hg-booking__hero--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hg-booking__hero--split .hg-booking__hero-desc {
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hg-booking__hero--overlay {
    position: relative;
    padding: 6rem 3rem;
    background-size: cover;
    background-position: center;
    text-align: center;
}
.hg-booking__hero--overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250, 252, 251, 0.9); /* Light green tint overlay */
}
.hg-booking__hero--overlay .hg-booking__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* 2. Room Collection - HORIZONTAL LAYOUT */
.hg-booking__section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.hg-booking__section-title {
    font-size: 2.5rem;
}
.hg-booking__section-intro {
    font-family: var(--hg-font-sans);
    color: var(--hg-color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 2. Room Collection - TWO COLUMN HORIZONTAL CARDS */
.hg-booking__rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Forces 2 columns on desktop */
    gap: 2rem; 
}

.hg-booking__room-card {
    background: var(--hg-color-white);
    border: 1px solid rgba(204, 169, 120, 0.3);
    display: flex;
    flex-direction: row; /* Horizontal layout inside the 2 columns */
    align-items: stretch;
    transition: var(--hg-transition);
    border-radius: 6px; /* Matches the new buttons */
    overflow: hidden;
}
.hg-booking__room-card:hover {
    box-shadow: 0 15px 35px rgba(42, 59, 46, 0.08);
    transform: translateY(-3px);
}

.hg-booking__room-media {
    width: 45%; 
    min-height: 100%; /* Ensures it stretches the full height of the card */
    background-size: cover;
    background-position: center;
    border-right: 1px solid rgba(204, 169, 120, 0.3);
}

.hg-booking__room-body {
    width: 55%; 
    padding: 2rem; /* Scaled down slightly so it breathes beautifully in 50% width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.hg-booking__room-collection {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--hg-color-gold-dark);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.hg-booking__room-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hg-booking__room-desc {
    font-size: 1rem;
    color: var(--hg-color-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.hg-booking__room-pricing {
    border-top: 1px solid rgba(42, 59, 46, 0.1);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.hg-booking__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.hg-booking__price-label {
    color: var(--hg-color-text-muted);
}
.hg-booking__price-value {
    font-weight: 600;
    color: var(--hg-color-green-dark);
}

.hg-booking__room-body .hg-booking__btn {
    align-self: flex-start; /* Keeps button from stretching */
}

/* 3. Whole Residence */
.hg-booking__residence {
    margin-top: 4rem;
}

.hg-booking__residence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.hg-booking__residence-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hg-booking__residence-title {
    font-size: 2.2rem;
}

.hg-booking__residence-desc {
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--hg-color-text-muted);
}

.hg-booking__residence-features {
    margin-bottom: 2rem;
    background: var(--hg-color-green-light);
    padding: 1.5rem;
    border: 1px solid rgba(204, 169, 120, 0.3);
}
.hg-booking__feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.hg-booking__feature-list li::before {
    content: "•";
    color: var(--hg-color-gold);
    margin-right: 8px;
}

.hg-booking__residence-pricing {
    margin-bottom: 2rem;
}
.hg-booking__residence-pricing .hg-booking__price-label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.hg-booking__residence-pricing .hg-booking__price-value {
    font-size: 1.5rem;
    font-weight: 400;
    font-family: var(--hg-font-serif);
    color: var(--hg-color-gold-dark);
}

.hg-booking__residence-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* 4. Privileges */
.hg-booking__privileges {
    padding-top: 4rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(204, 169, 120, 0.3);
}

.hg-booking__privileges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.hg-booking__benefit-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--hg-color-white);
    border: 1px solid rgba(204, 169, 120, 0.2);
    transition: var(--hg-transition);
}
.hg-booking__benefit-item:hover {
    border-color: var(--hg-color-gold);
    background: var(--hg-color-bg);
}
.hg-booking__benefit-item i,
.hg-booking__benefit-item svg {
    font-size: 2rem;
    fill: var(--hg-color-gold);
    color: var(--hg-color-gold);
    margin-bottom: 1rem;
    display: block;
}

.hg-booking__privileges-action {
    text-align: center;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .hg-booking__hero--split, .hg-booking__residence-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hg-booking__privileges-grid { grid-template-columns: repeat(2, 1fr); }
    .hg-booking { padding: 2rem; }
    .hg-booking__hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    /* Stack Horizontal Cards into Vertical on Mobile */
    .hg-booking__room-card { 
        flex-direction: column; 
    }
    .hg-booking__room-media { 
        width: 100%; 
        border-right: none;
        border-bottom: 1px solid rgba(204, 169, 120, 0.3);
    }
    .hg-booking__room-body { 
        width: 100%; 
        padding: 2rem; 
        text-align: center;
    }
    .hg-booking__room-body .hg-booking__btn {
        align-self: center; /* Center button on mobile */
    }

    .hg-booking__privileges-grid { grid-template-columns: 1fr; }
    .hg-booking { padding: 1.5rem; margin: 20px auto; }
    .hg-booking__hero-title { font-size: 2.5rem; }
    .hg-booking__feature-list { grid-template-columns: 1fr; }
    .hg-booking__residence-actions { flex-direction: column; }
    .hg-booking__residence-actions .hg-booking__btn { width: 100%; }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    /* Slightly reduce padding on smaller laptops/tablets but keep 2 columns */
    .hg-booking__room-body { padding: 1.5rem; }
    .hg-booking__room-title { font-size: 1.6rem; }
}

@media (max-width: 992px) {
    .hg-booking__hero--split, .hg-booking__residence-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hg-booking__privileges-grid { grid-template-columns: repeat(2, 1fr); }
    .hg-booking { padding: 2rem; }
}

@media (max-width: 768px) {
    /* Collapse to single column only on true mobile devices */
    .hg-booking__rooms-grid { grid-template-columns: 1fr; }
    .hg-booking__room-card { flex-direction: column; }
    
    .hg-booking__room-media { 
        width: 100%; 
        min-height: 250px;
        border-right: none;
        border-bottom: 1px solid rgba(204, 169, 120, 0.3);
    }
    .hg-booking__room-body { 
        width: 100%; 
        text-align: center;
    }
    .hg-booking__room-body .hg-booking__btn {
        align-self: center; 
    }

    .hg-booking__privileges-grid { grid-template-columns: 1fr; }
    .hg-booking { padding: 1.5rem; }
    .hg-booking__feature-list { grid-template-columns: 1fr; }
    .hg-booking__residence-actions { flex-direction: column; }
    .hg-booking__residence-actions .hg-booking__btn { width: 100%; }
}


























































/* =========================================
   ABOUT US WIDGET STYLES (MOCKUP MATCH)
   ========================================= */

.hg-about-widget-container {
    background-color: #f8f5ee; /* Soft parchment beige */
    background-image: radial-gradient(circle at center, #fbf9f4 0%, #f4eee2 100%);
    padding: 60px 40px;
    border: 1px solid #e8e0d5;
    position: relative;
    overflow: hidden;
    color: #332f2a;
    font-family: 'Playfair Display', serif;
}

/* Optional faint leaf motifs in corners */
.hg-about-widget-container::before,
.hg-about-widget-container::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23d4c1a6" opacity="0.15"><path d="M10,90 C30,90 50,70 50,50 C50,30 30,10 10,10 C10,30 30,50 30,50 C30,70 10,90 10,90 Z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}
.hg-about-widget-container::before { top: -50px; left: -50px; transform: rotate(45deg); }
.hg-about-widget-container::after { bottom: -50px; right: -50px; transform: rotate(225deg); }

/* Header & Ornament */
.hg-about-ornament {
    text-align: center;
    margin-bottom: 10px;
}
.hg-about-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #4a3b2c;
    text-align: center;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

/* Elegant Gold Dividers */
.hg-gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 35px auto;
    max-width: 900px;
}
.hgd-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #cfa33a 50%, #c2a17b);
}
.hg-gold-divider .hgd-line:last-child {
    background: linear-gradient(90deg, #c2a17b, #cfa33a 50%, transparent);
}
.hgd-diamond {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #cfa33a 0%, #f6e27a 50%, #b8962e 100%);
    transform: rotate(45deg);
    margin: 0 20px;
    box-shadow: 0 2px 4px rgba(185, 157, 117, 0.4);
    border: 1px solid rgba(255,255,255,0.5);
}

/* Section 1: Images & Text */
.hg-about-section-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 950px;
    margin: 0 auto;
}
.hg-about-images {
    position: relative;
    width: 260px;
    height: 240px;
    flex-shrink: 0;
}
.hg-img-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid #d4b581; /* Gold border */
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    background-size: cover;
    background-position: center;
    background-color: #fff;
}
.hg-img-1 { width: 150px; height: 150px; top: 40px; left: 0; z-index: 2; }
.hg-img-2 { width: 110px; height: 110px; top: 0; right: 10px; z-index: 1; }
.hg-img-3 { width: 120px; height: 120px; bottom: 0; right: 20px; z-index: 3; }

.hg-about-content {
    flex: 1;
}
.hg-section-heading {
    font-family: 'Jost', 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #332f2a;
    margin: 0 0 15px 0;
}
.hg-section-paragraph {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.6;
    color: #111;
    margin: 0;
}

/* Section 2: Script Text */
.hg-about-section-2 {
    max-width: 900px;
    margin: 0 auto;
}
.hg-script-heading-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #a87b51;
}
.hg-script-heading {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 32px;
    color: #a87b51;
    margin: 0;
    font-weight: 400;
}
.hg-center-text {
    text-align: center;
}

/* Section 3 & Button */
.hg-about-section-3 {
    max-width: 900px;
    margin: 0 auto;
}
.hg-about-button-wrap {
    text-align: center;
    margin-top: 30px;
}
.hg-about-btn {
    display: inline-block;
    background: linear-gradient(180deg, #5c4533 0%, #3e2e21 100%);
    border: 1px solid #7a5c18;
    border-radius: 25px; /* Pill shape */
    color: #fbf9f4;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 35px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 10px rgba(0,0,0,0.2);
}
.hg-about-btn:hover {
    background: linear-gradient(180deg, #6b513d 0%, #4a3728 100%);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 6px 15px rgba(0,0,0,0.25);
    color: #fbf9f4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hg-about-section-1 {
        flex-direction: column;
        text-align: center;
    }
    .hg-section-heading {
        text-align: center;
    }
    .hg-about-main-title {
        font-size: 32px;
    }
    .hg-script-heading {
        font-size: 26px;
    }
    .hg-about-images {
        margin: 0 auto;
    }
}