@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;1,9..144,300;1,9..144,400&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; }
.lg { background: #f8f6f1; font-family: 'DM Sans', sans-serif; }

/* ================================================================
   HERO
   ================================================================ */
.lg-hero {
    background: #1a1714;
    padding: 140px 5rem 0;
    position: relative;
    overflow: hidden;
}

.lg-hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,160,32,.06), transparent 70%);
    pointer-events: none;
}

.lg-hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding-bottom: 5rem;
}

.lg-eyebrow {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 2.5rem;
    font-family: 'DM Sans', sans-serif;
}

.lg-eyebrow-line {
    display: inline-block;
    width: 22px; height: 1px;
    background: #e8a020;
    flex-shrink: 0;
}

.lg-hero-title {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(3rem, 5.5vw, 5rem);
    line-height: .92;
    letter-spacing: -.04em;
    color: #fff;
    margin: 0 0 1.75rem 0;
    animation: lgHeroUp 1s cubic-bezier(.7,0,.3,1) .1s both;
}

.lg-hero-title em { font-style: italic; color: #e8a020; }

@keyframes lgHeroUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lg-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,.45);
    line-height: 1.75;
    font-weight: 300;
    max-width: 580px;
    animation: lgHeroUp 1s cubic-bezier(.7,0,.3,1) .25s both;
}

.lg-hero-meta {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 2rem;
    margin-top: 3rem;
    position: relative; z-index: 1;
    animation: lgHeroUp 1s cubic-bezier(.7,0,.3,1) .4s both;
}

.lg-hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.lg-hero-meta-label {
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
}

.lg-hero-meta-value {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    font-weight: 300;
}

/* ================================================================
   CONTAINER & LAYOUT
   ================================================================ */
.lg-container { max-width: 1200px; margin: 0 auto; padding: 0 5rem; }

.lg-section { padding: 6rem 0; }

.lg-section + .lg-section {
    border-top: 1px solid rgba(0,0,0,.07);
}

/* ================================================================
   SHARED REVEAL
   ================================================================ */
.lm  { display: block; overflow: hidden; padding-bottom: .05em; }
.li  { display: inline-block; transform: translateY(110%); }

.reveal-line {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1.1s cubic-bezier(.7,0,.3,1);
}
.reveal-line.is-visible { transform: translateY(0); }

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .75s ease, transform .75s ease;
    transition-delay: calc(var(--idx, 0) * 60ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   SECTION HEADER
   ================================================================ */
.lg-section-header { margin-bottom: 4rem; }

.lg-label {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 10px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: #b0a898;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.lg-label::before {
    content: '';
    display: inline-block;
    width: 18px; height: 1px;
    background: #e8a020;
}

.lg-title {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: .97;
    letter-spacing: -.04em;
    color: #1a1714;
    margin: 0;
}

.lg-title em { font-style: italic; color: #e8a020; }

/* ================================================================
   ARTICLES
   ================================================================ */
.lg-articles { display: flex; flex-direction: column; gap: 2rem; }

.lg-article {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 2rem;
    padding: 2.5rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 16px;
    transition: border-color .3s, box-shadow .3s;
}

.lg-article:hover {
    border-color: rgba(232,160,32,.25);
    box-shadow: 0 8px 32px rgba(232,160,32,.07);
}

.lg-article-num {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 2.5rem;
    color: #e8a020;
    line-height: 1;
    letter-spacing: -.04em;
    opacity: .45;
    align-self: start;
    padding-top: .2rem;
}

.lg-article-body {}

.lg-article-title {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 1.35rem;
    color: #1a1714;
    margin: 0 0 .9rem 0;
    letter-spacing: -.02em;
}

.lg-article-text {
    font-size: 14px;
    line-height: 1.8;
    color: #6a6058;
    font-weight: 300;
    margin: 0;
}

.lg-article-text + .lg-article-text { margin-top: .75rem; }

.lg-article-text strong {
    color: #3a3028;
    font-weight: 500;
}

.lg-article-list {
    margin: .75rem 0 0 0;
    padding: 0 0 0 1.1rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.lg-article-list li {
    font-size: 14px;
    line-height: 1.7;
    color: #6a6058;
    font-weight: 300;
    position: relative;
    padding-left: .75rem;
}

.lg-article-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .65em;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #e8a020;
}

/* ================================================================
   INFO BOX
   ================================================================ */
.lg-infobox {
    background: #1a1714;
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.lg-infobox-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(232,160,32,.12);
    border: 1px solid rgba(232,160,32,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: #e8a020;
}

.lg-infobox-title {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #fff;
    margin: 0 0 .5rem 0;
}

.lg-infobox-text {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
}

.lg-infobox-text a {
    color: #e8a020;
    text-decoration: none;
}

.lg-infobox-text a:hover { text-decoration: underline; }

/* ================================================================
   RIGHTS GRID
   ================================================================ */
.lg-rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}

.lg-right-card {
    background: #f8f6f1;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color .3s;
}

.lg-right-card:hover { border-color: rgba(232,160,32,.3); }

.lg-right-icon {
    font-size: 1.4rem;
    margin-bottom: .75rem;
    display: block;
}

.lg-right-title {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-weight: 300;
    color: #1a1714;
    margin: 0 0 .4rem 0;
}

.lg-right-desc {
    font-size: 12px;
    color: #9a9289;
    line-height: 1.65;
    font-weight: 300;
    margin: 0;
}

/* ================================================================
   CTA
   ================================================================ */
.lg-cta {
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.06);
    padding: 6rem 0;
}

.lg-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lg-cta-links {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.lg-cta-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #f8f6f1;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 10px;
    text-decoration: none;
    color: #1a1714;
    font-size: 14px;
    font-weight: 400;
    transition: border-color .3s, background .3s;
}

.lg-cta-link:hover {
    border-color: rgba(232,160,32,.35);
    background: #fff;
}

.lg-cta-link span:last-child { color: #e8a020; }

.lg-pill {
    display: inline-flex;
    align-items: center;
    background: #1a1714;
    color: #f8f6f1;
    border-radius: 999px;
    padding: .75rem 1.6rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    width: fit-content;
    position: relative;
    overflow: hidden;
    transition: color .4s ease, transform .3s cubic-bezier(.7,0,.3,1);
    margin-top: 1.5rem;
}

.lg-pill-bg {
    position: absolute;
    inset: 0;
    background: #e8a020;
    transform: translateX(-101%);
    transition: transform .45s cubic-bezier(.7,0,.3,1);
    border-radius: 999px;
    z-index: 0;
}

.lg-pill:hover .lg-pill-bg { transform: translateX(0); }
.lg-pill:hover { color: #1a1714; }
.lg-pill-text { position: relative; z-index: 1; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
    .lg-hero      { padding: 120px 2.5rem 0; }
    .lg-container { padding: 0 2.5rem; }
    .lg-rights-grid { grid-template-columns: repeat(2, 1fr); }
    .lg-cta-inner   { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .lg-hero      { padding: 100px 1.5rem 0; }
    .lg-container { padding: 0 1.5rem; }
    .lg-section   { padding: 4rem 0; }
    .lg-cta       { padding: 4rem 0; }
    .lg-article   { grid-template-columns: 1fr; gap: 1rem; }
    .lg-article-num { font-size: 1.75rem; }
    .lg-hero-meta { flex-wrap: wrap; gap: 1.5rem; }
    .lg-infobox   { flex-direction: column; gap: 1rem; }
}

@media (max-width: 540px) {
    .lg-rights-grid { grid-template-columns: 1fr; }
}
