/* Core Structural Layout & Shared Global Components Framework Configuration Elements Matrix Map */

.container {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

/* Flexbox and Layout Alignments Blueprint Helper Utilities Matrix Map */
.display-flex { display: flex; }
.layout-column { flex-direction: column; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.flex-grow-1 { flex-grow: 1; }
.flex-shrink-zero { flex-shrink: 0; }
.relative { position: relative; }
.absolute { position: absolute; }
.absolute-inset { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.fixed-inset { position: fixed; top: 0; left: 0; right: 0; bottom: 0; }
.z-index-top { z-index: 100; }
.z-index-overlay { z-index: 500; }
.z-index-search { z-index: 600; }
.z-index-base { z-index: 10; }
.z-index-under { z-index: 1; }
.overflow-hidden { overflow: hidden; }
.block { display: block; }
.inline-block { display: inline-block; }
.visibility-hidden { opacity: 0; pointer-events: none; visibility: hidden; }

/* Structural Typographical Scale Implementation */
.font-heading { font-family: var(--font-headings); }
.font-body { font-family: var(--font-body); }
.size-mini { font-size: 0.75rem; }
.size-small { font-size: 0.875rem; }
.size-base { font-size: 1rem; }
.size-medium { font-size: 1.5rem; }
.size-large { font-size: 2.25rem; }
.size-xlarge { font-size: 3.5rem; }
.size-xxlarge { font-size: 5rem; }
.text-uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.2em; }
.tracking-wide { letter-spacing: 0.1em; }
.tracking-wider { letter-spacing: 0.15em; }
.font-weight-light { font-weight: 300; }
.font-weight-bold { font-weight: 600; }
.font-weight-black { font-weight: 900; }
.italic { font-style: italic; }
.text-center { text-align: center; }
.text-justify { text-align: justify; }
.line-height-none { line-height: 1; }
.line-height-tight { line-height: 1.15; }
.line-height-snug { line-height: 1.3; }
.line-height-relaxed { line-height: 1.6; }
.line-height-rich { line-height: 1.8; }

/* Grid Core Engines Configurations Mapping Elements System */
.grid { display: grid; }
.grid-2-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4-col { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gap-small { gap: 15px; }
.gap-medium { gap: 30px; }
.gap-large { gap: 45px; }
.gap-xlarge { gap: 60px; }

/* Color Variable Mappings Helpers Implementation */
.color-white { color: var(--white); }
.color-black { color: var(--luxury-black); }
.color-gold { color: var(--heritage-gold); }
.background-black { background-color: var(--luxury-black); }
.background-ivory { background-color: var(--warm-ivory); }
.background-white { background-color: var(--white); }
.color-muted { color: var(--muted-brown); opacity: 0.85; }
.text-muted { color: var(--muted-brown); }

/* Padding Spacing Structural Matrix Engine Configurations */
.padding-y-small { padding-top: 20px; padding-bottom: 20px; }
.padding-y-medium { padding-top: 40px; padding-bottom: 40px; }
.padding-y-large { padding-top: 80px; padding-bottom: 80px; }
.padding-y-xlarge { padding-top: 120px; padding-bottom: 120px; }
.padding-top-xlarge { padding-top: 100px; }
.padding-bottom-xlarge { padding-bottom: 100px; }
.padding-top-xxlarge { padding-top: 140px; }
.padding-bottom-xxlarge { padding-bottom: 140px; }
.padding-medium { padding: 30px; }
.padding-large { padding: 50px; }
.margin-bottom-mini { margin-bottom: 8px; }
.margin-bottom-small { margin-bottom: 16px; }
.margin-bottom-medium { margin-bottom: 32px; }
.margin-bottom-large { margin-bottom: 48px; }
.margin-bottom-xlarge { margin-bottom: 64px; }
.margin-top-auto { margin-top: auto; }
.margin-center { margin-left: auto; margin-right: auto; }

/* Elements Architecture Structural Modifiers */
.border-none { border: none; }
.border-bottom-only { border: none; border-bottom: 1px solid var(--muted-brown); }
.border-top { border-top: 1px solid var(--gray-medium); }
.border-top-muted { border-top: 1px solid rgba(110, 92, 74, 0.3); }
.border-luxury-gold { border: 1px solid var(--heritage-gold); }
.border-radius-luxury { border-radius: 4px; }
.border-radius-full { border-radius: 9999px; }
.aspect-ratio-portrait { aspect-ratio: 3 / 4; }
.aspect-ratio-square { aspect-ratio: 1 / 1; }
.object-fit-cover { object-fit: cover; }
.img-responsive { width: 100%; height: auto; display: block; }
.list-style-none { list-style: none; }
.padding-zero { padding: 0; }
.margin-zero { margin: 0; }
.no-underline { text-decoration: none; }
.color-inherit { color: inherit; }
.reset-btn { background: none; border: none; padding: 0; font: inherit; cursor: pointer; color: inherit; }

/* Interactive Structural States Animations Infrastructure */
.transition-all-smooth { transition: all 0.5s var(--transition-smooth); }
.transition-opacity-smooth { transition: opacity 0.4s var(--transition-smooth), visibility 0.4s var(--transition-smooth); }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-transform-slow { transition: transform 0.8s var(--transition-smooth); }
.hover-zoom:hover { transform: scale(1.05); }
.hover-scale-up:hover { transform: scale(1.03); }
.opacity-40 { opacity: 0.4; }
.opacity-zero { opacity: 0; }
.hover-opacity-one:hover { opacity: 1; }

/* Premium Custom Element Component Blueprints Buttons */
.btn-luxury-primary {
    background-color: var(--heritage-gold);
    color: #FFFFFF;
    padding: 18px 36px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--heritage-gold);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
}
.btn-luxury-primary:hover {
    background-color: transparent;
    color: var(--heritage-gold);
}
.btn-luxury-secondary {
    background-color: transparent;
    color: var(--luxury-black);
    padding: 18px 36px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--luxury-black);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
}
.btn-luxury-secondary:hover {
    background-color: var(--luxury-black);
    color: var(--white);
}
.btn-luxury-whatsapp {
    background-color: transparent;
    color: #FFFFFF;
    padding: 18px 36px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
}
.btn-luxury-whatsapp:hover {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
}

/* Luxury Interactive Underline Structural Link Text Elements */
.luxury-link-underline {
    position: relative;
    padding-bottom: 4px;
    color: inherit;
    text-decoration: none;
}
.luxury-link-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.4s var(--transition-smooth);
}
.luxury-link-underline:hover::after {
    transform: scaleX(1);
}

/* Complex Dynamic Interactivity Backdrops and Elements Layout Wrappers */
.dynamic-backdrop-blur {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(11, 11, 11, 0.85);
}
.focus-within-gold:focus-within {
    border-color: var(--heritage-gold);
}
