/* brianguyproductions.com — landing page in the brianguy.com family look.
   Palette: house-dark stage, curtain red, warm gold, cream.
   Fonts: Italiana (display) + Lato (body); Cormorant Garamond Light for the
   Eyes Opened wordmark, matching eyesopenedplay.com. */

:root {
    --bg: #171212;
    --bg-raised: #201818;
    --curtain: #8f1d2c;
    --gold: #d4a24e;
    --gold-soft: #e6c88a;
    --cream: #f3ece0;
    --muted: #b8aa9a;
    --line: rgba(212, 162, 78, 0.28);
    --display: "Italiana", serif;
    --body: "Lato", "Helvetica Neue", Arial, sans-serif;
    --play: "Cormorant Garamond", Cormorant, Garamond, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--cream);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-soft); text-decoration: none; }
a:hover { color: var(--gold); }

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(23, 18, 18, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.header-nav {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.header-nav a {
    color: var(--cream);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}
.header-nav a:hover {
    color: var(--gold-soft);
    border-bottom-color: var(--gold);
}

/* ---------- Hero ---------- */

.hero {
    max-width: 1060px;
    margin: 0 auto;
    padding: 96px 24px 48px;
    text-align: center;
}

.hero h1 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(2.4rem, 7.5vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.tagline {
    color: var(--gold-soft);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin: 0 0 26px;
}

.intro {
    color: var(--muted);
    max-width: 54ch;
    margin: 0 auto;
}

.kicker {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

/* ---------- Sections ---------- */

.section {
    max-width: 1060px;
    margin: 0 auto;
    padding: 56px 24px;
}

.section h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 2.4rem;
    letter-spacing: 0.08em;
    text-align: center;
    margin: 0 0 42px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.section h2::before,
.section h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.section h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 2.2rem;
    margin: 0 0 10px;
}
.section h3 a { color: var(--cream); }
.section h3 a:hover { color: var(--gold-soft); }

.btn {
    display: inline-block;
    margin-top: 22px;
    padding: 9px 22px;
    border: 1px solid var(--gold);
    border-radius: 3px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--gold); color: var(--bg); }

/* ---------- Productions ---------- */

.play {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.play h3 {
    font-family: var(--play);
    font-weight: 300;
    font-size: clamp(2rem, 6vw, 2.8rem);
    line-height: 1; /* Cormorant carries generous internal leading; keep the box tight so the gaps above and below the caps match */
    letter-spacing: 0.25em;
    text-indent: 0.25em; /* offsets the trailing letter-space so the words sit centred */
    text-transform: uppercase;
    margin: 4px 0 10px;
}
.play .byline {
    font-family: var(--play);
    font-weight: 300;
    font-size: clamp(1.2rem, 2.6vw, 1.6rem);
    letter-spacing: 0.12em;
    text-indent: 0.12em;
    text-transform: uppercase;
    margin: 0;
}
.play .byline a { color: inherit; } /* the name keeps the byline's colour, as on eyesopenedplay.com */
.play .byline a:hover { color: var(--gold-soft); }

/* ---------- About ---------- */

.about {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 44px;
    align-items: center;
}

.about-photo { margin: 0; }
.about-photo img {
    border-radius: 6px;
    border: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

.about-text > p { color: var(--muted); max-width: 56ch; }

/* ---------- Footer ---------- */

.site-footer {
    border-top: 1px solid var(--line);
    background: #120e0e;
}

.footer-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 24px 48px;
    text-align: center;
}

.copyright {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.7;
    margin: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 880px) {
    .hero { padding-top: 64px; }
    .about { grid-template-columns: 1fr; gap: 28px; }
    .about-photo { max-width: 340px; margin: 0 auto; }
    .about-text { text-align: center; }
    .about-text > p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 560px) {
    .header-nav { gap: 14px; justify-content: center; }
    .play .byline { font-weight: 400; } /* Cormorant Light is too thin at phone sizes, as on eyesopenedplay.com */
}
