/* 
   Aurex Merger - THE ULTIMATE SIMPLICITY (v3 - Sophisticated Footer)
   Focus: Cleanliness, Legibility, Premium Minimalist Detail
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');

:root {
    --bg: #ffffff;
    --text: #111111;
    --muted: #888888;
    --accent: #000000;
    --border: #f2f2f2;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: var(--bg);
    font-family: 'Inter', sans-serif;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.simple-header {
    padding: 80px 20px 40px;
    text-align: center;
    width: 100%;
}

.logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-img {
    height: auto;
    max-height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.hearth-logo {
    max-height: 120px;
    max-width: 320px;
}

.arrow-icon {
    font-size: 18px;
    color: #cccccc;
    flex-shrink: 0;
}

/* Main Content Area */
.site-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Hero Content */
.simple-hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.content-inner {
    max-width: 700px;
    width: 100%;
}

.simple-title {
    font-size: clamp(2.25rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1;
}

.simple-subtitle {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    color: var(--muted);
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 300;
}

/* Button */
.simple-btn {
    display: inline-block;
    padding: 22px 55px;
    background-color: var(--accent);
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.simple-btn:hover {
    background-color: #333;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gold-btn {
    background: linear-gradient(135deg, #c5a059 0%, #dfc381 50%, #c5a059 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.gold-btn:hover {
    background: linear-gradient(135deg, #dfc381 0%, #e8d3a2 50%, #dfc381 100%);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.5);
    color: #ffffff;
}

/* Footer - THE SOPHISTICATED REDESIGN */
.simple-footer {
    padding: 100px 20px 60px;
    text-align: center;
    width: 100%;
    background-color: #fafafa;
}

.footer-logo-small {
    height: 30px;
    opacity: 0.4;
    margin-bottom: 30px;
    filter: grayscale(1);
}

.footer-text {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.legal-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: opacity 0.3s;
    opacity: 0.6;
}

.legal-links a:hover {
    opacity: 1;
}

/* Blanco Specific */
.hiring-banner {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eeeeee;
}

.hiring-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Mobile Optimizations (Global) */
@media (max-width: 600px) {
    .simple-header { padding: 60px 15px 30px; }
    .logo-wrap { flex-direction: column; gap: 20px; }
    .logo-img { max-height: 70px; max-width: 220px; }
    .hearth-logo { max-height: 90px; max-width: 250px; }
    .arrow-icon { transform: rotate(90deg); }
    .simple-hero { padding: 40px 20px 60px; }
    .simple-title { font-size: 2.5rem; }
    .simple-btn { width: 100%; }
    .legal-links { flex-direction: column; gap: 20px; }
    .simple-footer { padding: 80px 20px 40px; }
}

/* Content Expansion Styles */
.hearth-section {
    padding: 100px 20px;
    background-color: var(--bg);
}

.hearth-section.elevated-section {
    background-color: #fcfcfc;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.hearth-container {
    max-width: 900px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.hearth-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-align: center;
}

.hearth-paragraph {
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.community-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.hearth-card {
    background: #ffffff;
    padding: 40px 30px;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hearth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: #e0e0e0;
}

.card-icon-wrap {
    width: 64px;
    height: 64px;
    background-color: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    color: var(--text);
}

.hearth-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hearth-card p {
    color: var(--muted);
    line-height: 1.6;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid var(--text);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.contact-section {
    padding: 120px 20px;
}

@media (max-width: 900px) {
    .community-cards-grid, .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hearth-section { padding: 60px 20px; }
    .community-cards-grid, .services-cards-grid {
        grid-template-columns: 1fr;
    }
}
