/* FILE: client-django-sites/asholdings/static/css/styles.css
   DATE: 2026-05-14
   PURPOSE: Minimal responsive styling for the A.S Holdings placeholder site. */

:root {
    --green: #2f6b4f;
    --green-dark: #143f2d;
    --gold: #d6a94f;
    --ink: #18221d;
    --muted: #65736b;
    --paper: #f6f4ed;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
}

.site-header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 5vw, 64px);
    color: var(--white);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    font-size: 13px;
}

.site-nav {
    display: flex;
    gap: clamp(12px, 3vw, 32px);
    font-size: 14px;
    text-transform: uppercase;
}

.site-nav a {
    text-decoration: none;
}

.hero {
    min-height: 76vh;
    display: flex;
    align-items: center;
    padding: 120px clamp(18px, 7vw, 90px) 70px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(20, 63, 45, 0.92), rgba(20, 63, 45, 0.58)),
        linear-gradient(135deg, #1f5d42 0%, #709b4f 54%, #d6a94f 100%);
}

.hero-inner {
    width: min(760px, 100%);
}

.eyebrow,
.section-label {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

h1 {
    margin: 0;
    font-size: clamp(42px, 8vw, 86px);
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    margin: 30px 0 12px;
    font-size: clamp(24px, 4vw, 38px);
    letter-spacing: 0;
}

.lead {
    max-width: 690px;
    margin: 0 0 28px;
    font-size: clamp(17px, 2vw, 21px);
}

.contact-link,
.email-button {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 11px 18px;
    border: 1px solid currentColor;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
}

.info-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: min(1120px, calc(100% - 36px));
    margin: 36px auto;
}

.info-card {
    padding: clamp(22px, 4vw, 38px);
    background: var(--white);
    border: 1px solid rgba(20, 63, 45, 0.14);
    border-radius: 6px;
}

.details-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.details-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(20, 63, 45, 0.12);
}

.details-list span {
    color: var(--muted);
}

.contact-title {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
}

.email-button {
    margin-top: 14px;
    color: var(--green-dark);
}

.site-footer {
    padding: 22px 18px 34px;
    color: var(--muted);
    text-align: center;
    font-size: 14px;
}

@media (max-width: 720px) {
    .site-header {
        position: absolute;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .site-nav {
        width: 100%;
        justify-content: space-between;
    }

    .hero {
        min-height: 86vh;
        padding-top: 164px;
    }

    .info-section {
        grid-template-columns: 1fr;
    }

    .details-list li {
        flex-direction: column;
        gap: 2px;
    }
}
