:root {
    --lg-paper: #f4f0e8;
    --lg-paper-light: #faf7f1;
    --lg-ink: #181818;
    --lg-charcoal: #1e1d1a;
    --lg-gold: #b58c4f;
    --lg-wine: #51131c;
    --lg-teal: #25494d;
    --lg-rule: rgba(24, 24, 24, 0.16);
}

html { scroll-behavior: smooth; }
body { background: var(--lg-paper); color: var(--lg-ink); }

/* Navigation */
.gh-navigation {
    background: color-mix(in srgb, var(--lg-paper) 96%, transparent);
    border-bottom: 1px solid var(--lg-rule);
    color: var(--lg-ink);
    transition: background-color .25s ease, color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.gh-navigation-logo img { max-height: 52px; width: auto; }
.home-template .gh-navigation {
    position: absolute;
    inset: 0 0 auto;
    z-index: 50;
    background: transparent;
    border-bottom-color: transparent;
    color: #fff;
}
.home-template .gh-navigation a,
.home-template .gh-navigation button { color: inherit; }
.home-template .gh-navigation .gh-button {
    background: #fff;
    color: var(--lg-ink);
}
.home-template .gh-navigation.lg-is-scrolled {
    position: fixed;
    background: rgba(244, 240, 232, .96);
    border-bottom-color: var(--lg-rule);
    color: var(--lg-ink);
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    backdrop-filter: blur(14px);
}
.home-template .gh-navigation.lg-is-scrolled .gh-button {
    background: var(--lg-ink);
    color: #fff;
}

/* Hero */
.lg-hero {
    position: relative;
    display: grid;
    min-height: clamp(650px, 88vh, 980px);
    place-items: center;
    overflow: hidden;
    background: var(--lg-charcoal) url('../images/las-gotica/hero-background.png') center center / cover no-repeat;
    color: #fff;
}
.lg-hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 44%, transparent 0 24%, rgba(0,0,0,.16) 65%, rgba(0,0,0,.48) 100%),
        linear-gradient(to bottom, rgba(0,0,0,.22), rgba(0,0,0,.1) 48%, rgba(0,0,0,.4));
}
.lg-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, 1200px);
    padding-top: 88px;
    text-align: center;
}
.lg-hero-masthead {
    width: min(920px, 84vw);
    height: auto;
    filter: drop-shadow(0 8px 22px rgba(0,0,0,.45));
}
.lg-hero-tagline {
    margin: 1.2rem 0 0;
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 2.5vw, 3.2rem);
    font-style: italic;
    letter-spacing: .01em;
    text-shadow: 0 3px 15px rgba(0,0,0,.65);
}
.lg-hero-explore {
    margin-top: 2.6rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(255,255,255,.65);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* Homepage editorial feed */
.home-template .gh-container { padding-top: clamp(6rem, 9vw, 11rem); }
.home-template .gh-container-title {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--lg-rule);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.home-template .gh-container.is-grid .gh-feed { gap: clamp(3.5rem, 5vw, 7rem) clamp(2rem, 3vw, 4rem); }
.home-template .gh-card-image { background: #d9d1c4; }
.home-template .gh-card-image img { transition: transform .45s ease, filter .45s ease; }
.home-template .gh-card:hover .gh-card-image img { transform: scale(1.025); filter: contrast(1.04); }
.gh-card-tag {
    color: var(--lg-wine);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.home-template .gh-card-title {
    margin-top: .7rem;
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 3.6vw, 5.2rem);
    line-height: .98;
    letter-spacing: -.025em;
}
.home-template .gh-card-excerpt { margin-top: 1.4rem; font-size: 1.65rem; line-height: 1.62; }
.gh-card-meta { margin-top: 1.5rem; color: rgba(24,24,24,.62); letter-spacing: .04em; }

/* Articles */
.post-template .gh-main, .page-template .gh-main { padding-top: clamp(5rem, 8vw, 10rem); }
.gh-article-header { text-align: center; }
.gh-article-tag {
    color: var(--lg-wine);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.gh-article-title {
    max-width: 1100px;
    margin: 1.2rem auto 0;
    font-family: var(--font-serif);
    font-size: clamp(5rem, 8vw, 10rem);
    line-height: .92;
    letter-spacing: -.045em;
}
.gh-article-excerpt { max-width: 780px; margin: 2rem auto 0; font-size: clamp(1.9rem, 2.2vw, 2.6rem); line-height: 1.45; }
.gh-article-meta { justify-content: center; margin-top: 2.5rem; }
.gh-article-image { margin-top: clamp(4rem, 6vw, 7rem); }
.gh-content { font-size: 1.9rem; line-height: 1.78; }
.gh-content a { color: var(--lg-wine); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.gh-content blockquote { border-left-color: var(--lg-gold); font-family: var(--font-serif); font-size: 1.25em; font-style: italic; }

/* Footer */
.lg-footer { margin-top: clamp(8rem, 12vw, 15rem); background: var(--lg-charcoal); color: var(--lg-paper); }
.lg-footer-signup { max-width: 900px; margin: 0 auto; padding: clamp(7rem, 10vw, 12rem) 0; text-align: center; }
.lg-footer-ornament { color: var(--lg-gold); font-size: 3rem; }
.lg-footer-kicker { margin-top: 1.8rem; color: var(--lg-gold); font-size: 1.1rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.lg-footer-title { margin-top: 1.4rem; font-family: var(--font-serif); font-size: clamp(4.5rem, 7vw, 8rem); line-height: .95; }
.lg-footer-subhead { max-width: 650px; margin: 1.6rem auto 3rem; color: rgba(244,240,232,.72); font-size: 1.7rem; }
.lg-footer-form { max-width: 680px; margin: 0 auto; }
.lg-footer-form .gh-form { border-bottom: 1px solid rgba(244,240,232,.45); }
.lg-footer-form input { color: #fff; }
.lg-footer-form .gh-button { background: var(--lg-gold); color: var(--lg-ink); }
.lg-footer-bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; padding: 2.4rem 0 3rem; border-top: 1px solid rgba(244,240,232,.14); }
.lg-footer-logo img { width: 90px; height: auto; filter: invert(1); }
.lg-footer-menu { justify-self: center; }
.lg-footer-copyright { justify-self: end; color: rgba(244,240,232,.6); font-size: 1.2rem; }

@media (max-width: 767px) {
    .gh-navigation-logo img { max-height: 40px; }
    .lg-hero { min-height: 720px; background-position: 52% center; }
    .lg-hero-content { padding: 100px 24px 40px; }
    .lg-hero-masthead { width: min(96vw, 720px); }
    .lg-hero-tagline { max-width: 310px; }
    .home-template .gh-card-title { font-size: 3.6rem; }
    .gh-article-title { font-size: clamp(4.4rem, 15vw, 7rem); }
    .lg-footer-bar { grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .lg-footer-copyright { justify-self: center; }
}
