:root {
    --ah-terracotta: #C85A47;
    --ah-terracotta-dark: #A34534;
    --ah-sand: #F7F5F0;
    --ah-charcoal: #2D2A26;
    --ah-white: #FFFFFF;
    --ah-muted: #8E8A84;
    --font-main: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--ah-charcoal);
    background-color: var(--ah-sand);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Mandatory Image Rules */
img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--ah-terracotta);
}

/* Typography Utilities */
.ah-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ah-charcoal);
    margin-bottom: 1.5rem;
}

.ah-center-text {
    text-align: center;
}

/* Buttons */
.ah-action-btn {
    display: inline-block;
    background-color: var(--ah-terracotta);
    color: var(--ah-white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.ah-action-btn:hover {
    background-color: var(--ah-terracotta-dark);
    color: var(--ah-white);
    transform: translateY(-2px);
}

/* Header & Nav */
.ah-top-nav {
    position: sticky;
    top: 0;
    background-color: rgba(247, 245, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(45, 42, 38, 0.1);
}

.ah-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ah-brand-mark {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.ah-initials {
    background-color: var(--ah-terracotta);
    color: var(--ah-white);
    font-weight: 600;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
}

.ah-brand-name {
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.ah-nav-links {
    display: flex;
    gap: 2rem;
    font-size: 0.95rem;
    font-weight: 400;
}

.ah-secondary-link {
    color: var(--ah-muted);
}

/* Hero Stage */
.ah-hero-stage {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ah-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.ah-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(45, 42, 38, 0.8) 0%, rgba(45, 42, 38, 0.3) 100%);
    z-index: -1;
}

.ah-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--ah-white);
    width: 100%;
}

.ah-hero-badge {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--ah-terracotta);
    padding-bottom: 0.3rem;
}

.ah-hero-headline {
    font-size: clamp(3rem, 6vw, 4.5rem);
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.ah-hero-subhead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 600px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Story Block (About) - Deep Content */
.ah-story-block {
    max-width: 1200px;
    margin: 6.3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.ah-story-visual {
    position: relative;
}

.ah-story-visual img {
    border-radius: 4px;
    box-shadow: 15px 15px 0px var(--ah-terracotta);
}

.ah-story-stat-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--ah-white);
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.ah-stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--ah-terracotta);
    line-height: 1;
}

.ah-stat-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ah-muted);
}

.ah-story-prose p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.ah-micro-detail {
    font-size: 0.9rem;
    color: var(--ah-muted);
    border-left: 3px solid var(--ah-terracotta);
    padding-left: 1rem;
    margin-top: 2rem;
}

/* Offerings Grid (Services) - JS Tabs */
.ah-offerings-grid {
    background-color: var(--ah-white);
    padding: 7.1rem 2rem;
}

.ah-offerings-header {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.ah-tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ah-tab-triggers {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.ah-tab-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-family: var(--font-main);
    cursor: pointer;
    color: var(--ah-muted);
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.ah-tab-btn:hover {
    color: var(--ah-charcoal);
}

.ah-tab-btn.active {
    color: var(--ah-terracotta);
    border-bottom-color: var(--ah-terracotta);
    font-weight: 600;
}

.ah-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.ah-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ah-tab-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ah-tab-text h3 {
    font-size: 2rem;
    color: var(--ah-terracotta);
    margin-bottom: 1rem;
}

.ah-process-list {
    margin-top: 1.5rem;
    list-style: none;
}

.ah-process-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    padding-left: 1.5rem;
}

.ah-process-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ah-terracotta);
}

.ah-tab-img img {
    aspect-ratio: 4/3;
    border-radius: 4px;
}

/* Voices (Testimonials) */
.ah-voices {
    max-width: 1200px;
    margin: 8.2rem auto;
    padding: 0 2rem;
}

.ah-voices-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ah-voice-card {
    background-color: var(--ah-white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ah-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.ah-quote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(200, 90, 71, 0.1);
    position: absolute;
    top: -20px;
    left: -15px;
    z-index: 0;
}

.ah-client-id {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1;
}

.ah-client-id img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.ah-client-id span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Value Props (Benefits) - Asymmetric */
.ah-value-props {
    background-color: var(--ah-terracotta);
    color: var(--ah-white);
    padding: 5.7rem 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.ah-prop-item {
    flex: 1 1 300px;
    max-width: 400px;
}

.ah-prop-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* Inquiry Zone (Contact) */
.ah-inquiry-zone {
    max-width: 800px;
    margin: 7.5rem auto;
    padding: 0 2rem;
}

.ah-form-wrap {
    background-color: var(--ah-white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.ah-form-intro {
    margin-bottom: 2rem;
    color: var(--ah-muted);
}

.ah-input-group {
    margin-bottom: 1.5rem;
}

.ah-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.ah-input-group input,
.ah-input-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E0DCD3;
    border-radius: 4px;
    background-color: var(--ah-sand);
    font-family: var(--font-main);
}

.ah-input-group input:focus,
.ah-input-group textarea:focus {
    outline: none;
    border-color: var(--ah-terracotta);
}

.ah-submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.ah-tiny-disclaimer {
    font-size: 0.75rem;
    color: var(--ah-muted);
    margin-top: 1rem;
    text-align: center;
}

/* Footer */
.ah-base-footer {
    background-color: var(--ah-charcoal);
    color: var(--ah-white);
    padding: 4rem 2rem 2rem 2rem;
}

.ah-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 3rem;
}

.ah-footer-col address {
    font-style: normal;
    margin-top: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.ah-footer-col strong {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.ah-footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.8rem;
}

.ah-footer-col a:hover {
    color: var(--ah-terracotta);
}

.ah-footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
    gap: 1rem;
}

/* Simple Page Styles (Privacy/Terms) */
.ah-simple-page {
    max-width: 800px;
    margin: 8rem auto 4rem auto;
    padding: 0 2rem;
    min-height: 60vh;
}

.ah-simple-page h1 {
    color: var(--ah-terracotta);
    margin-bottom: 2rem;
}

.ah-simple-page p {
    margin-bottom: 1rem;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .ah-story-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .ah-story-stat-card {
        right: 10px;
        bottom: -20px;
    }
    .ah-tab-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .ah-tab-img {
        grid-row: 1;
    }
    .ah-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .ah-nav-links {
        display: none; /* Simplification for mobile */
    }
    .ah-hero-headline {
        font-size: 2.5rem;
    }
    .ah-form-wrap {
        padding: 1.5rem;
    }
    .ah-voices-layout {
        grid-template-columns: 1fr;
    }
}
