/* =========================================================================
   Army of Tees — umbrella flagship styles
   Dark, cinematic "campaign" aesthetic that ties the family together without
   tying itself to any one sub-brand's palette. Warm gold + ember accents echo
   the golden-hour hero art; each sub-brand still shows in its OWN accent on
   the family cards so the roster reads varied.
   ========================================================================= */
:root {
    --ink:    #0e1116;   /* page */
    --ink-2:  #151a21;   /* panels */
    --ink-3:  #1d242e;   /* raised surfaces */
    --line:   #2a323d;
    --text:   #eef2f6;
    --muted:  #9aa7b4;
    --gold:   #d8a64a;   /* primary accent / wordmark */
    --gold-2: #b9863a;
    --ember:  #e0683a;   /* secondary accent */
    --maxw:   1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0; background: var(--ink); color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--ember); }
h1, h2, h3 { font-family: 'Cinzel', Georgia, serif; font-weight: 700; letter-spacing: .02em; line-height: 1.15; }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.muted { color: var(--muted); }

/* ---- Header --------------------------------------------------------------- */
header.site {
    position: sticky; top: 0; z-index: 40;
    background: rgba(10,12,16,.82); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
header.site .wrap { display: flex; justify-content: space-between; align-items: center; padding: .85rem 0; }
header.site .logo { display: flex; align-items: center; gap: .65rem; color: var(--gold); }
header.site .logo .mark { display: inline-flex; color: var(--gold); }
header.site .logo .word { font-family: 'Cinzel', serif; font-weight: 700; font-size: 1.32rem; letter-spacing: .08em; color: var(--text); }
header.site nav a { margin-left: 1.6rem; color: var(--muted); font-weight: 500; font-size: .95rem; letter-spacing: .02em; }
header.site nav a:hover { color: var(--gold); }

/* ---- Hero ----------------------------------------------------------------- */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero__bg { position: absolute; inset: 0; }
.hero__layer {
    position: absolute; inset: 0; background-size: cover; background-position: center 38%;
    opacity: 0; transition: opacity 1.4s ease-in-out; transform: scale(1.04);
    animation: heroDrift 18s ease-in-out infinite alternate;
}
.hero__layer.is-active { opacity: 1; }
@keyframes heroDrift { from { transform: scale(1.02); } to { transform: scale(1.10); } }
.hero__scrim {
    position: absolute; inset: 0;
    background:
      linear-gradient(90deg, rgba(8,10,14,.94) 0%, rgba(8,10,14,.72) 38%, rgba(8,10,14,.20) 72%, rgba(8,10,14,.05) 100%),
      linear-gradient(0deg, rgba(8,10,14,.85) 0%, rgba(8,10,14,0) 45%);
}
.hero__inner { position: relative; z-index: 2; padding: 4rem 0; max-width: 640px; }
.hero__eyebrow {
    display: inline-block; font-size: .76rem; letter-spacing: .26em; text-transform: uppercase;
    color: var(--gold); border: 1px solid var(--gold-2); border-radius: 100px;
    padding: .32rem .85rem; margin-bottom: 1.4rem; background: rgba(216,166,74,.07);
}
.hero__title {
    font-size: clamp(2.6rem, 6vw, 4.6rem); margin: 0 0 1rem; color: #fff;
    text-shadow: 0 2px 30px rgba(0,0,0,.55); letter-spacing: .04em;
}
.hero__title .accent { color: var(--gold); }
.hero__lede { font-size: 1.22rem; color: #e7ecf1; margin: 0 0 1.1rem; max-width: 33em; text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.hero__cta { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.7rem; }
.hero__dots { position: absolute; bottom: 1.3rem; left: 0; right: 0; z-index: 3; display: flex; gap: .5rem; justify-content: center; }
.hero__dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(255,255,255,.32); cursor: pointer; padding: 0; transition: .25s; }
.hero__dots button.is-active { background: var(--gold); transform: scale(1.25); }

/* ---- Buttons -------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.5rem;
    border-radius: 6px; font-weight: 600; font-size: 1rem; cursor: pointer; border: 1px solid transparent;
    transition: transform .15s, box-shadow .15s, background .15s;
}
.btn--primary { background: linear-gradient(180deg, var(--gold), var(--gold-2)); color: #1a130a; box-shadow: 0 6px 20px rgba(216,166,74,.28); }
.btn--primary:hover { color: #1a130a; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(216,166,74,.4); }
.btn--ghost { background: rgba(255,255,255,.05); color: var(--text); border-color: var(--line); }
.btn--ghost:hover { color: #fff; border-color: var(--gold); background: rgba(216,166,74,.1); }

/* ---- Section scaffolding -------------------------------------------------- */
section.block { padding: 4.5rem 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.6rem; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 0 0 .6rem; color: #fff; }
.section-head h2::after { content: ""; display: block; width: 64px; height: 3px; margin: .9rem auto 0; background: linear-gradient(90deg, var(--gold), var(--ember)); border-radius: 2px; }
.section-head p { color: var(--muted); margin: 0; font-size: 1.05rem; }

/* ---- Family roster -------------------------------------------------------- */
.roster { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); }
.brand-card {
    position: relative; display: flex; flex-direction: column; background: var(--ink-2);
    border: 1px solid var(--line); border-radius: 10px; padding: 1.6rem 1.6rem 1.4rem;
    overflow: hidden; color: inherit; transition: transform .18s, border-color .18s, box-shadow .18s;
}
.brand-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--card-accent, var(--gold)); }
.brand-card:hover { transform: translateY(-4px); border-color: var(--card-accent, var(--gold)); box-shadow: 0 14px 34px rgba(0,0,0,.45); color: inherit; }
.brand-card__kicker { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--card-accent, var(--gold)); margin-bottom: .5rem; font-weight: 600; }
.brand-card__name { font-size: 1.45rem; margin: 0 0 .15rem; color: #fff; }
.brand-card__tag { font-style: italic; color: var(--card-accent, var(--gold)); margin: 0 0 .7rem; font-size: .98rem; }
.brand-card__blurb { color: var(--muted); font-size: .96rem; margin: 0 0 1.2rem; flex: 1; }
.brand-card__go { font-weight: 600; color: var(--card-accent, var(--gold)); font-size: .95rem; letter-spacing: .02em; }
.brand-card__soon { font-size: .8rem; color: var(--ember); font-weight: 600; }

/* ---- Featured cross-site quotes ------------------------------------------- */
.alt { background: linear-gradient(180deg, #0b0e13, var(--ink)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quotes { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.qcard {
    display: flex; flex-direction: column; background: var(--ink-2); border: 1px solid var(--line);
    border-radius: 10px; padding: 1.5rem; color: inherit; transition: transform .16s, border-color .16s;
}
.qcard:hover { transform: translateY(-3px); border-color: var(--qa, var(--gold)); color: inherit; }
.qcard__mark { font-family: 'Cinzel', serif; font-size: 2.4rem; line-height: .5; color: var(--qa, var(--gold)); opacity: .5; }
.qcard__quote { font-family: 'Cinzel', Georgia, serif; font-size: 1.06rem; line-height: 1.5; color: #f0f3f7; margin: .4rem 0 1rem; flex: 1; }
.qcard__author { color: var(--qa, var(--gold)); font-weight: 600; font-size: .95rem; }
.qcard__site { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-top: .3rem; }

/* ---- Recruitment posters -------------------------------------------------- */
.posters { display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: center; }
.poster {
    flex: 0 1 320px; max-width: 360px; border-radius: 10px; overflow: hidden;
    border: 1px solid var(--line); background: var(--ink-2);
    box-shadow: 0 10px 30px rgba(0,0,0,.4); transition: transform .18s, box-shadow .18s, border-color .18s;
}
.poster img { width: 100%; display: block; }
.poster:hover { transform: translateY(-5px) rotate(-.5deg); border-color: var(--gold); box-shadow: 0 18px 40px rgba(0,0,0,.55); }

/* ---- Strip / stats -------------------------------------------------------- */
.ribbon { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.6rem; padding: 1.6rem 0; border-top: 1px solid var(--line); }
.ribbon .stat { text-align: center; }
.ribbon .stat b { display: block; font-family: 'Cinzel', serif; font-size: 1.9rem; color: var(--gold); }
.ribbon .stat span { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ---- Forms / Contact ------------------------------------------------------ */
.form-wrap { display: grid; gap: 1.6rem; grid-template-columns: 1.5fr 1fr; align-items: start; max-width: 980px; margin: 0 auto; }
.card-pad { background: var(--ink-2); border: 1px solid var(--line); border-radius: 12px; padding: 2rem; }
.field { margin-bottom: 1.1rem; }
.field:last-of-type { margin-bottom: 0; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--text); letter-spacing: .02em; }
.field input, .field textarea {
    width: 100%; padding: .75rem .9rem; background: var(--ink); border: 1px solid var(--line);
    border-radius: 8px; color: var(--text); font: inherit; font-size: 1rem; transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder, .field textarea::placeholder { color: #5f6b78; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,166,74,.15); }
.field textarea { resize: vertical; min-height: 150px; }
.field .err { color: var(--ember); font-size: .82rem; margin-top: .35rem; }
.alert { background: rgba(224,104,58,.12); border: 1px solid var(--ember); color: #f0c9b8; padding: .9rem 1.1rem; border-radius: 8px; margin-bottom: 1.4rem; }
.contact-aside h3 { color: #fff; margin: 0 0 .5rem; font-size: 1.05rem; }
.contact-aside h3:not(:first-child) { margin-top: 1.6rem; }
.contact-aside p { color: var(--muted); margin: 0; font-size: .95rem; line-height: 1.6; }
.contact-aside .addr { color: var(--text); font-style: normal; line-height: 1.7; }
.contact-aside .addr .name { color: var(--gold); font-family: 'Cinzel', serif; }
.hp { position: absolute; left: -9999px; }
.thanks-card { max-width: 560px; margin: 0 auto; text-align: center; }
.thanks-card .mark { display: inline-flex; color: var(--gold); margin-bottom: 1rem; }

/* ---- Footer --------------------------------------------------------------- */
footer.site { border-top: 1px solid var(--line); background: #0a0d11; padding: 2.2rem 0; color: var(--muted); font-size: .92rem; }
footer.site .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
footer.site a { color: var(--muted); }
footer.site a:hover { color: var(--gold); }

@media (max-width: 640px) {
    /* header: stack nav under the logo and let it wrap, instead of overlapping it */
    header.site .wrap { flex-wrap: wrap; justify-content: center; gap: .3rem 1rem; }
    header.site nav { display: flex; flex-wrap: wrap; justify-content: center; }
    header.site nav a { margin: 0 .9rem; }
    .hero { min-height: 68vh; }
    .hero__inner { padding: 3rem 0; }
    /* contact: stack the form above the info sidebar so neither gets crushed */
    .form-wrap { grid-template-columns: 1fr; }
    section.block { padding: 3rem 0; }
}
@media (prefers-reduced-motion: reduce) {
    .hero__layer { animation: none; transition: opacity .3s; }
    html { scroll-behavior: auto; }
}
