:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-a3ab5b8 *//* 
 * About Hero Section Setup 
 * Uses a deep dark background to make the golden text pop.
 */
.about-hero-section {
    background-color: #0d0d0d; /* Very dark grey/black matching the screenshot */
    padding: 120px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Container to constrain width for better readability */
.about-hero-container {
    max-width: 700px;
    margin: 0 auto;
}

/* 
 * Typography Styling 
 */
.about-hero-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif; /* Standard readable sans-serif */
    font-size: 11px;
    font-weight: 600;
    color: #c89c3c; /* Theme golden color */
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-hero-title {
    font-family: 'Playfair Display', serif; /* Luxury serif font */
    font-size: 48px;
    font-weight: 500;
    color: #ffffff; /* White text for "About" */
    margin: 0 0 20px 0;
    line-height: 1.2;
}

/* Golden highlight for the brand name */
.highlight-gold {
    color: #c89c3c;
}

.about-hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #9a9a9a; /* Subtle grey for the paragraph */
    margin: 0 auto;
    max-width: 580px; /* Forces the text to wrap exactly like the image */
}

/* 
 * Simple Hardware-Accelerated Entrance Animation 
 * Reuses the fade-in-up logic from previous sections.
 */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* 
 * Responsive Adjustments 
 */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 80px 20px;
    }
    .about-hero-title {
        font-size: 36px;
    }
    .about-hero-description {
        font-size: 14px;
        padding: 0 10px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1d26c76 *//* 
 * About Hero Section Setup 
 * Uses a deep dark background to make the golden text pop.
 */
.about-hero-section {
    background-color: #0d0d0d; /* Very dark grey/black matching the screenshot */
    padding: 120px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Container to constrain width for better readability */
.about-hero-container {
    max-width: 700px;
    margin: 0 auto;
}

/* 
 * Typography Styling 
 */
.about-hero-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif; /* Standard readable sans-serif */
    font-size: 11px;
    font-weight: 600;
    color: #c89c3c; /* Theme golden color */
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-hero-title {
    font-family: 'Playfair Display', serif; /* Luxury serif font */
    font-size: 48px;
    font-weight: 500;
    color: #ffffff; /* White text for "About" */
    margin: 0 0 20px 0;
    line-height: 1.2;
}

/* Golden highlight for the brand name */
.highlight-gold {
    color: #c89c3c;
}

.about-hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #9a9a9a; /* Subtle grey for the paragraph */
    margin: 0 auto;
    max-width: 580px; /* Forces the text to wrap exactly like the image */
}

/* 
 * Simple Hardware-Accelerated Entrance Animation 
 * Reuses the fade-in-up logic from previous sections.
 */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* 
 * Responsive Adjustments 
 */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 80px 20px;
    }
    .about-hero-title {
        font-size: 36px;
    }
    .about-hero-description {
        font-size: 14px;
        padding: 0 10px;
    }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-11e0440 *//* 
 * Heritage Section Setup 
 * Maintains the dark theme background consistently.
 */
.heritage-section {
    background-color: #0d0d0d;
    padding: 80px 20px;
    width: 100%;
}

.heritage-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* 
 * 2-Column Grid Layout
 * Using CSS Grid for high performance and clean structural alignment.
 */
.heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 60px; /* Space between image and text */
    align-items: center; /* Vertically centers text with the image */
}

/* 
 * Image Styling 
 * Ensures the image fits perfectly with smooth rounded corners.
 */
.heritage-image-wrapper {
    width: 100%;
}

.heritage-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px; /* Matches the rounded corners in the screenshot */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Subtle depth shadow */
}

/* 
 * Typography & Text Content 
 */
.heritage-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #c89c3c;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.heritage-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

/* Gold highlight reuse */
.highlight-gold {
    color: #c89c3c;
}

/* Paragraph styling */
.heritage-text-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #9a9a9a; /* Grey text color matching the design */
    margin: 0 0 20px 0;
}

/* Removes bottom margin from the last paragraph to keep spacing clean */
.heritage-text-content p:last-child {
    margin-bottom: 0;
}

/* 
 * Responsive Adjustments 
 * Stacks columns into a single column on tablets and mobile screens.
 */
@media (max-width: 992px) {
    .heritage-grid {
        grid-template-columns: 1fr; /* 1 column on smaller screens */
        gap: 40px;
    }
    
    .heritage-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .heritage-section {
        padding: 60px 15px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bf2db74 *//* 
 * Stats Section Setup 
 * Applied the off-black/dark charcoal background as observed.
 */
.stats-section {
    background-color: #141414; /* Dark gray, NOT full black */
    padding: 80px 20px;
    width: 100%;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* 
 * 4-Column Grid for high performance and clean structural alignment 
 */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 30px;
    text-align: center;
}

/* 
 * Number Styling (Golden & Serif) 
 */
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: #c89c3c; /* Matches the luxury golden theme */
    margin: 0 0 12px 0;
    line-height: 1;
}

/* 
 * Label Styling (Slightly bluish-gray & Sans-serif) 
 */
.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #8a95a5; /* Subtle bluish-gray tint matching the screenshot */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

/* 
 * Responsive Adjustments 
 * Drops to 2 columns on tablets, and 1 column on mobile screens.
 */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        row-gap: 45px;
    }
    .stat-number {
        font-size: 42px;
    }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-a2da4c6 *//* 
 * Heritage Section Setup 
 * Maintains the dark theme background consistently.
 */
.heritage-section {
    background-color: #0d0d0d;
    padding: 80px 20px;
    width: 100%;
}

.heritage-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* 
 * 2-Column Grid Layout
 * Using CSS Grid for high performance and clean structural alignment.
 */
.heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 60px; /* Space between image and text */
    align-items: center; /* Vertically centers text with the image */
}

/* 
 * Image Styling 
 * Ensures the image fits perfectly with smooth rounded corners.
 */
.heritage-image-wrapper {
    width: 100%;
}

.heritage-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px; /* Matches the rounded corners in the screenshot */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Subtle depth shadow */
}

/* 
 * Typography & Text Content 
 */
.heritage-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #c89c3c;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.heritage-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

/* Gold highlight reuse */
.highlight-gold {
    color: #c89c3c;
}

/* Paragraph styling */
.heritage-text-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #9a9a9a; /* Grey text color matching the design */
    margin: 0 0 20px 0;
}

/* Removes bottom margin from the last paragraph to keep spacing clean */
.heritage-text-content p:last-child {
    margin-bottom: 0;
}

/* 
 * Responsive Adjustments 
 * Stacks columns into a single column on tablets and mobile screens.
 */
@media (max-width: 992px) {
    .heritage-grid {
        grid-template-columns: 1fr; /* 1 column on smaller screens */
        gap: 40px;
    }
    
    .heritage-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .heritage-section {
        padding: 60px 15px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4834914 *//* 
 * Values Section Setup 
 * Uses a dark background matching the screenshot.
 */
.values-section {
    background-color: #0d0d0d;
    padding: 100px 20px;
    width: 100%;
}

.values-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* 
 * Header Styling 
 */
.values-header {
    text-align: center;
    margin-bottom: 70px;
}

.values-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #c89c3c;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.values-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 500;
    color: #c89c3c; /* Full gold title based on the image */
    margin: 0;
    line-height: 1.2;
}

/* 
 * 3-Column Grid for the values 
 */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 
 * Icon Box Styling 
 * Creates the dark box with a subtle golden border.
 */
.value-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75px;
    height: 75px;
    background-color: transparent;
    border: 1px solid rgba(200, 156, 60, 0.4); /* Subtle golden outline */
    border-radius: 18px; /* Squircle appearance */
    margin-bottom: 25px;
    
    /* Hardware acceleration for hover effect */
    will-change: transform, border-color;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Hover effect on the icon box */
.value-card:hover .value-icon-box {
    transform: translateY(-5px);
    border-color: rgba(200, 156, 60, 1); /* Border becomes fully solid gold on hover */
}

/* Ensure the SVG icon retains the luxury gold color */
.value-svg-icon {
    color: #c89c3c;
}

/* 
 * Typography for Cards 
 */
.value-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff; /* White title matching the screenshot */
    margin: 0 0 15px 0;
}

.value-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: #8a95a5; /* Bluish-gray matching the image */
    margin: 0;
    max-width: 300px; /* Constrains text width for perfect wrapping */
}

/* 
 * Responsive Adjustments 
 */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        row-gap: 50px;
    }
    .values-title {
        font-size: 34px;
    }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-38ae8ee *//* 
 * Heritage Section Setup 
 * Maintains the dark theme background consistently.
 */
.heritage-section {
    background-color: #0d0d0d;
    padding: 80px 20px;
    width: 100%;
}

.heritage-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* 
 * 2-Column Grid Layout
 * Using CSS Grid for high performance and clean structural alignment.
 */
.heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 60px; /* Space between image and text */
    align-items: center; /* Vertically centers text with the image */
}

/* 
 * Image Styling 
 * Ensures the image fits perfectly with smooth rounded corners.
 */
.heritage-image-wrapper {
    width: 100%;
}

.heritage-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px; /* Matches the rounded corners in the screenshot */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Subtle depth shadow */
}

/* 
 * Typography & Text Content 
 */
.heritage-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #c89c3c;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.heritage-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

/* Gold highlight reuse */
.highlight-gold {
    color: #c89c3c;
}

/* Paragraph styling */
.heritage-text-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #9a9a9a; /* Grey text color matching the design */
    margin: 0 0 20px 0;
}

/* Removes bottom margin from the last paragraph to keep spacing clean */
.heritage-text-content p:last-child {
    margin-bottom: 0;
}

/* 
 * Responsive Adjustments 
 * Stacks columns into a single column on tablets and mobile screens.
 */
@media (max-width: 992px) {
    .heritage-grid {
        grid-template-columns: 1fr; /* 1 column on smaller screens */
        gap: 40px;
    }
    
    .heritage-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .heritage-section {
        padding: 60px 15px;
    }
}/* End custom CSS */