:root {
    /* Terracotta Palette */
    --terra-main: #C05A44;
    --terra-dark: #8C3E2D;
    --terra-light: #E8A89A;
    --terra-pale: #F5E2DE;
    --bg-color: #FAF6F5;
    --text-main: #2C2827;
    --text-muted: #5E5654;
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.7;
    font-size: 16px;
}

/* Typography Basics */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: var(--terra-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--terra-dark);
}

.inline-link {
    text-decoration: underline;
    text-decoration-color: var(--terra-light);
    text-underline-offset: 4px;
}

/* Images */
.aurelia-img-fluid {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.rounded-edge {
    border-radius: 4px;
}

/* Buttons */
.aurelia-btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: none;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: var(--terra-main);
    color: var(--white);
}

.primary-btn:hover {
    background-color: var(--terra-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Header & Nav */
.aurelia-top-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aurelia-brand-mark {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terra-dark);
}

.brand-icon {
    color: var(--terra-main);
}

.aurelia-links-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-nav-cta {
    border: 1px solid var(--terra-main);
    padding: 8px 16px;
    border-radius: 2px;
    color: var(--terra-main);
}

.btn-nav-cta:hover {
    background-color: var(--terra-main);
    color: var(--white);
}

/* Hero Banner */
.aurelia-hero-banner {
    height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.hero-content-core {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.hero-headline {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtext {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.95;
}

/* About / Story Block */
.aurelia-story-block {
    padding: 7rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-kicker {
    display: block;
    color: var(--terra-main);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--terra-dark);
}

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

.story-text-column p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.aurelia-stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    border-top: 1px solid var(--terra-pale);
    padding-top: 2rem;
}

.stat-module {
    display: flex;
    flex-direction: column;
}

.stat-figure {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--terra-main);
    line-height: 1;
}
.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--terra-main);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services Zone */
.aurelia-offerings-zone {
    background-color: var(--white);
    padding: 6rem 2rem;
}

.zone-header {
    margin-bottom: 4rem;
}

.offerings-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.offering-card {
    background: var(--bg-color);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

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

.card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Testimonials */
.aurelia-client-voices {
    padding: 7rem 2rem;
    background-color: var(--terra-pale);
}

.voices-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-flex {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.voice-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 2px;
    border-left: 4px solid var(--terra-main);
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.client-id {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-meta {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--terra-dark);
}

.client-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Benefits */
.aurelia-core-benefits {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.benefits-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.benefits-list {
    list-style: none;
    margin-top: 2.5rem;
    text-align: left;
}

.benefit-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--terra-pale);
    color: var(--text-muted);
}

.benefit-item strong {
    color: var(--terra-dark);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

/* Contact Section */
.aurelia-inquiry-zone {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.inquiry-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.form-intro {
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.custom-form-layout .input-group {
    margin-bottom: 1.5rem;
}

.custom-form-layout label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.custom-form-layout input,
.custom-form-layout textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--white);
}

.custom-form-layout input:focus,
.custom-form-layout textarea:focus {
    outline: none;
    border-color: var(--terra-main);
    box-shadow: 0 0 0 2px var(--terra-pale);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.inquiry-image-side img {
    height: 100%;
    min-height: 500px;
    border-radius: 4px;
}

/* Footer */
.aurelia-site-footer {
    background-color: var(--text-main);
    color: var(--white);
    padding: 5rem 2rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--terra-light);
    display: block;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-micro-text {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-heading {
    color: var(--terra-light);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-contact-col p {
    margin-bottom: 0.75rem;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-contact-col a,
.footer-legal-col a {
    color: var(--white);
    opacity: 0.9;
}

.footer-contact-col a:hover,
.footer-legal-col a:hover {
    color: var(--terra-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-bottom-bar {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

.tiny-disclaimer {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-style: italic;
}

/* Responsive Leakage & Adjustments */
@media (max-width: 992px) {
    .story-grid,
    .inquiry-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .aurelia-links-wrapper {
        display: none; /* Simplistic mobile handling for demo */
    }
    
    .aurelia-story-block,
    .aurelia-offerings-zone,
    .aurelia-client-voices,
    .aurelia-inquiry-zone {
        padding: 4.5rem 1.5rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .aurelia-stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}
