/* Oakhaven Digital Foundry - Custom CSS */
:root {
    --odf-sage-deep: #4b6043;
    --odf-sage-light: #8ba888;
    --odf-sage-pale: #c0d6c1;
    --odf-off-white: #f4f7f4;
    --odf-charcoal: #2c352b;
    --odf-white: #ffffff;
    --odf-font-serif: 'Merriweather', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.odf-body-canvas {
    font-family: var(--odf-font-serif);
    color: var(--odf-charcoal);
    background-color: var(--odf-off-white);
    line-height: 1.6;
}

/* Utility Classes */
.odf-fluid-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.odf-text-center {
    text-align: center;
}
.odf-btn-primary {
    display: inline-block;
    background-color: var(--odf-sage-deep);
    color: var(--odf-white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}
.odf-btn-primary:hover {
    background-color: var(--odf-charcoal);
}
.odf-btn-full {
    width: 100%;
}
.odf-inline-link {
    color: var(--odf-sage-deep);
    text-decoration: underline;
    text-decoration-color: var(--odf-sage-light);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--odf-sage-deep);
}
.odf-headline-jumbo {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}
.odf-section-title {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

/* Header */
.odf-top-nav {
    position: sticky;
    top: 0;
    background-color: var(--odf-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 1rem 5%;
}
.odf-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.odf-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--odf-sage-deep);
    letter-spacing: -0.5px;
}
.odf-link-cluster {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.odf-nav-item {
    text-decoration: none;
    color: var(--odf-charcoal);
    font-size: 0.95rem;
}
.odf-nav-item:hover {
    color: var(--odf-sage-light);
}

/* Hero */
.odf-intro-split {
    display: flex;
    flex-wrap: wrap;
    min-height: 85vh;
    background-color: var(--odf-sage-pale);
}
.odf-intro-text-pane {
    flex: 1 1 500px;
    padding: 8% 5% 8% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.odf-subhead-lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 90%;
}
.odf-action-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.odf-trust-badge {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--odf-charcoal);
    border-left: 2px solid var(--odf-sage-deep);
    padding-left: 1rem;
}
.odf-intro-visual-pane {
    flex: 1 1 500px;
}
.odf-hero-img-style {
    height: 100%;
    min-height: 400px;
}

/* About / Story */
.odf-story-deep {
    padding: 6rem 5%;
    background-color: var(--odf-white);
}
.odf-story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}
.odf-story-prose {
    flex: 1 1 600px;
}
.odf-story-prose p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}
.odf-story-visual {
    flex: 1 1 400px;
}
.odf-rounded-img {
    border-radius: 4px;
    box-shadow: -15px 15px 0 var(--odf-sage-pale);
}
.odf-metrics-row {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--odf-sage-pale);
}
.odf-metric-card {
    display: flex;
    flex-direction: column;
}
.odf-metric-val {
    font-size: 3rem;
    font-weight: 700;
    color: var(--odf-sage-deep);
    line-height: 1;
}
.odf-metric-sym {
    font-size: 2rem;
    color: var(--odf-sage-deep);
}
.odf-metric-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Capabilities */
.odf-solutions-grid {
    padding: 5rem 8%;
    background-color: var(--odf-off-white);
}
.odf-section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}
.odf-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.odf-capability-card {
    background: var(--odf-white);
    padding: 2rem;
    border-top: 4px solid var(--odf-sage-light);
    transition: transform 0.3s ease;
}
.odf-capability-card:hover {
    transform: translateY(-5px);
}
.odf-card-img {
    height: 160px;
    margin-bottom: 1.5rem;
}
.odf-card-desc {
    font-size: 0.95rem;
    color: #555;
}
.odf-process-banner {
    max-width: 900px;
    margin: 4rem auto 0;
    background: var(--odf-sage-deep);
    color: var(--odf-white);
    padding: 3rem;
}
.odf-process-banner h3 {
    color: var(--odf-white);
    margin-bottom: 1.5rem;
}
.odf-process-list {
    margin-left: 1.5rem;
}
.odf-process-list li {
    margin-bottom: 1rem;
}

/* Feedback */
.odf-praise-wrapper {
    padding: 6rem 5%;
    background-color: var(--odf-white);
}
.odf-praise-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}
.odf-praise-item {
    position: relative;
}
.odf-praise-item::before {
    content: '"';
    font-size: 6rem;
    position: absolute;
    top: -2rem;
    left: -1rem;
    color: var(--odf-sage-pale);
    opacity: 0.5;
    line-height: 1;
    font-family: serif;
}
.odf-quote-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.odf-quoter-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.odf-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.odf-quoter-name {
    display: block;
    font-weight: 700;
    color: var(--odf-sage-deep);
}
.odf-quoter-title {
    font-size: 0.85rem;
    color: #666;
}

/* Contact */
.odf-connect-zone {
    padding: 6rem 5%;
    background-color: var(--odf-sage-pale);
}
.odf-connect-inner {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--odf-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.odf-connect-visual {
    flex: 1 1 400px;
}
.odf-contact-img {
    height: 100%;
    min-height: 300px;
}
.odf-form-container {
    flex: 1 1 400px;
    padding: 4rem;
}
.odf-form-intro {
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.odf-input-group {
    margin-bottom: 1.5rem;
}
.odf-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
}
.odf-input-group input,
.odf-input-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    font-family: inherit;
}
.odf-input-group input:focus,
.odf-input-group textarea:focus {
    outline: none;
    border-color: var(--odf-sage-deep);
}

/* Footer */
.odf-base-footer {
    background-color: var(--odf-charcoal);
    color: var(--odf-off-white);
    padding: 4rem 5% 2rem;
}
.odf-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
.odf-footer-brand h4, .odf-footer-contact h4, .odf-footer-legal h4 {
    color: var(--odf-sage-pale);
    margin-bottom: 1rem;
}
.odf-logo-text-footer {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--odf-sage-pale);
    display: block;
    margin-bottom: 1rem;
}
.odf-tiny-disclaimer {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 1rem;
}
.odf-footer-contact p, .odf-footer-legal a {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--odf-off-white);
    text-decoration: none;
}
.odf-footer-legal a:hover {
    text-decoration: underline;
}
.odf-footer-links {
    list-style: none;
}
.odf-footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .odf-link-cluster {
        display: none; /* Simplification for mobile */
    }
    .odf-intro-text-pane {
        padding: 10% 5%;
    }
    .odf-form-container {
        padding: 2rem;
    }
    .odf-metrics-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}