:root {
    --green: #178a45;
    --green-dark: #0c3d22;
    --green-mid: #146c36;
    --gold: #e2ae2a;
    --gold-soft: #f4d56a;
    --ink: #122017;
    --muted: #5d6d62;
    --cream: #f3efe4;
    --paper: #f7f4ee;
    --line: #e2e6df;
    --white: #fff;
    --shadow: 0 18px 40px rgba(12, 61, 34, .1);
    --radius: 20px;
    --font: "Manrope", system-ui, sans-serif;
    --serif: "Fraunces", Georgia, serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--paper); line-height: 1.6; overflow-x: clip; }
::selection { background: #c8ebcf; }
img, svg, video, iframe { max-width: 100%; }
img { display: block; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid #8fd7a4; outline-offset: 2px; }
.container { width: min(1160px, calc(100% - 32px)); margin-inline: auto; }
.narrow { width: min(740px, calc(100% - 32px)); }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 16px; background: #fff; padding: 8px 12px; z-index: 99; }

.topbar { background: var(--gold); font-size: 12.5px; font-weight: 700; }
.topbar__inner { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; flex-wrap: wrap; }
.topbar a { text-decoration: none; }

.header { position: sticky; top: 0; z-index: 80; background: var(--paper); border-bottom: 1px solid var(--line); overflow: visible; }
.header__inner { display: flex; align-items: center; gap: 16px; min-height: 72px; min-width: 0; }
.logo { flex: 0 0 auto; }
.logo img { height: 50px; width: auto; }
.nav { display: flex; gap: 2px; align-items: center; margin-left: auto; font-weight: 700; font-size: 14px; min-width: 0; flex: 1 1 auto; justify-content: flex-end; }
.nav > a, .nav__drop > a { text-decoration: none; padding: 8px 10px; border-radius: 999px; white-space: nowrap; }
.nav > a.is-active, .nav > a:hover, .nav__drop > a.is-active, .nav__drop > a:hover { background: #e7f4ea; color: var(--green-dark); }
.nav__drop { position: relative; }
.nav__menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px; background: #fff; padding: 10px; border-radius: 16px; box-shadow: var(--shadow); border: 1px solid var(--line); z-index: 3; }
.nav__drop:hover .nav__menu, .nav__drop:focus-within .nav__menu, .nav__drop.is-open .nav__menu { display: grid; gap: 2px; }
.nav__menu a { padding: 10px 12px; border-radius: 12px; text-decoration: none; }
.nav__menu a:hover { background: var(--cream); }
a.btn.nav__join { display: none; }
.header__actions { display: flex; align-items: center; gap: 8px; margin-left: 8px; flex: 0 0 auto; position: relative; z-index: 80; }
.header__cta { white-space: nowrap; flex-shrink: 0; }
.icon-btn { width: 44px; height: 44px; border: 0; border-radius: 50%; background: #fff; cursor: pointer; display: grid; place-items: center; box-shadow: 0 0 0 1px var(--line); }
.burger { display: none; width: 44px; height: 44px; border: 0; background: #fff; border-radius: 12px; cursor: pointer; box-shadow: 0 0 0 1px var(--line); }
.burger span, .burger span::before, .burger span::after { display: block; width: 18px; height: 2px; background: var(--ink); margin: 0 auto; position: relative; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
body.nav-lock .burger span { background: transparent; }
body.nav-lock .burger span::before { top: 0; transform: rotate(45deg); }
body.nav-lock .burger span::after { top: 0; transform: rotate(-45deg); }
.nav-scrim { display: none; }
.nav-scrim.is-on { display: block; position: fixed; inset: 0; background: rgba(10,36,22,.5); z-index: 70; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--green); color: #fff; text-decoration: none; border: 0; border-radius: 999px; padding: 12px 20px; font-weight: 800; cursor: pointer; }
.btn:hover { filter: brightness(1.05); }
.btn--sm { padding: 9px 14px; font-size: 13px; }
.btn--light { background: #fff; color: var(--green-dark); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
body.nav-lock { overflow: hidden; }
.text-link { font-weight: 800; color: var(--green); text-decoration: none; white-space: nowrap; }
.text-link:hover { text-decoration: underline; }

.hero { position: relative; height: min(74vh, 760px); min-height: 520px; overflow: hidden; background: var(--green-dark); color: #fff; border-radius: 0 0 32px 32px; --mx: 72%; --my: 28%; }
.hero__slide { position: absolute; inset: 0; z-index: 0; pointer-events: none; display: grid; align-items: end; overflow: hidden; visibility: hidden; }
.hero__slide.is-active { z-index: 1; pointer-events: auto; visibility: visible; }
.hero__slide[hidden] { display: none !important; }
.hero__media {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 84% 8%, var(--gold-soft), transparent 30%), linear-gradient(160deg, #071910 8%, #0c3d22 48%, #178a45 100%);
    background-size: cover; background-position: center;
    transform: scale(1);
    opacity: 0;
}
.hero__slide.is-active .hero__media { opacity: 1; animation: heroKen 8s ease-out forwards; }
@keyframes heroKen {
    from { transform: scale(1.08) translate3d(0, 0, 0); }
    to { transform: scale(1) translate3d(0, -1.5%, 0); }
}
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,25,16,.35) 0%, rgba(7,25,16,.55) 38%, rgba(7,25,16,.88) 100%); }
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: radial-gradient(420px circle at var(--mx) var(--my), rgba(244, 213, 106, .22), transparent 58%);
}
.hero__copy { position: relative; z-index: 3; padding: 110px 0 88px; max-width: 740px; }
.hero h1 { font-family: var(--serif); font-size: clamp(2.3rem, 6vw, 4.6rem); line-height: 1.05; margin: 10px 0 16px; text-shadow: 0 10px 30px rgba(0,0,0,.45); max-width: 16ch; color: #fff; }
.hero__lead { font-size: 1.12rem; max-width: 540px; color: #e6f3ea; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 800; color: var(--gold); margin: 0; }
.hero__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff; font-size: 26px; cursor: pointer; }
.hero__nav:hover { background: rgba(255,255,255,.28); }
.hero__nav--prev { left: 16px; } .hero__nav--next { right: 16px; }
.hero__dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero__dots button { width: 9px; height: 9px; border-radius: 99px; border: 0; background: rgba(255,255,255,.35); cursor: pointer; padding: 0; }
.hero__dots button.is-on { width: 22px; background: #fff; }

.section { padding: 80px 0; }
.section--alt { background: var(--cream); }
.section__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 16px 32px; margin-bottom: 32px; }
.section__head > div { flex: 1 1 480px; max-width: 720px; }
.section__head h2, .page-hero h1, .prose h2 { font-family: var(--serif); }
.section__head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 8px; color: var(--green-dark); }
.section__head p { margin: 0; color: var(--muted); max-width: 620px; }
.section__head .text-link { margin-bottom: 4px; }
.section__head--light { display: grid; }
.section__head--light > div { max-width: none; }
.section__head--light h2, .section__head--light p { color: #fff; }

.cards { display: grid; gap: 20px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-decoration: none; display: flex; flex-direction: column; min-height: 100%; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-5px); border-color: #d7eadc; }
.card--link { padding: 22px; }
.card__kicker { color: var(--gold); font-weight: 800; font-size: 13px; }
.card__cover { height: 176px; background: var(--green-mid) center/cover no-repeat; }
.card__cover--person { height: 210px; }
.card__body { padding: 18px 20px 22px; display: grid; gap: 6px; flex: 1; }
.card h3 { margin: 0; font-size: 1.12rem; line-height: 1.35; }
.card p, .card time { color: var(--muted); margin: 0; font-size: 14px; }
.card__more { margin-top: auto; padding-top: 10px; font-size: 13px; font-weight: 800; color: var(--green); }

.program-list, .event-list { display: grid; gap: 12px; }
.program-row, .event-row { display: flex; justify-content: space-between; gap: 20px; align-items: center; background: #fff; padding: 24px 26px; border-radius: 18px; text-decoration: none; box-shadow: var(--shadow); transition: transform .2s ease; }
.program-row:hover, .event-row:hover { transform: translateX(4px); }
.program-row h3, .event-row h3 { margin: 0 0 4px; font-family: var(--serif); }
.program-row p, .event-row p { margin: 0; color: var(--muted); }
.program-row span, .event-row time { font-weight: 800; color: var(--green); white-space: nowrap; }

.stats { background: var(--green-dark); color: #fff; padding: 80px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stats__grid > div { background: rgba(255,255,255,.06); border-radius: 18px; padding: 22px; }
.stats__grid strong { display: block; font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--gold); }
.cta { padding: 0 0 80px; }
.cta__box { background: linear-gradient(135deg, var(--green-dark), var(--green)); color: #fff; border-radius: 28px; padding: 42px; display: flex; justify-content: space-between; gap: 22px; align-items: center; }
.cta h2 { font-family: var(--serif); margin: 0 0 8px; font-size: 2rem; }
.cta p { margin: 0; color: #d7eee0; }

.page-hero { padding: 64px 0 20px; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); margin: 8px 0 10px; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.filters input, .filters select, .form input, .form select, .form textarea {
    border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; background: #fff;
}
.filters input, .filters select { min-height: 46px; }
.form { display: grid; gap: 14px; }
.form label { display: grid; gap: 6px; font-weight: 700; font-size: 14px; }
.prose { font-size: 1.05rem; }
.prose img { border-radius: 18px; margin: 18px 0; }
.prose p, .prose li { color: #314038; }
.article__cover { width: 100%; border-radius: 22px; margin-bottom: 24px; }
.split { display: grid; grid-template-columns: 1.4fr .8fr; gap: 36px; align-items: start; }
.side { background: #fff; padding: 22px; border-radius: 18px; box-shadow: var(--shadow); display: grid; gap: 10px; }
.side a { text-decoration: none; font-weight: 700; }
.notice { padding: 12px 16px; border-radius: 12px; margin-bottom: 16px; }
.notice--ok { background: #e5f6ea; }
.notice--err { background: #fdecec; }
.empty { color: var(--muted); background: #fff; padding: 28px; border-radius: 16px; }
.pager { display: flex; gap: 8px; margin-top: 26px; }
.pager a { min-width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: #fff; text-decoration: none; font-weight: 800; }
.pager a.is-active { background: var(--green); color: #fff; }
.search-results { display: grid; gap: 12px; }
.search-results a { background: #fff; padding: 18px 20px; border-radius: 16px; text-decoration: none; box-shadow: var(--shadow); }
.search-results span { color: var(--green); font-size: 12px; font-weight: 800; text-transform: uppercase; }

.campus__hero { background: radial-gradient(circle at 80% -10%, #f4d56a 0, transparent 28%), linear-gradient(165deg, #06140e 0%, #0c3d22 48%, #146c36 100%); color: #fff; padding: 92px 0 72px; }
.campus__hero h1 { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 4.8rem); line-height: 1.02; max-width: 16ch; margin: 10px 0 18px; }
.campus__hero p { max-width: 640px; color: #d7eee0; }
.campus__stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 42px; }
.campus__stats div { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 18px; }
.campus__stats strong { display: block; font-family: var(--serif); font-size: 1.8rem; color: var(--gold); }
.campus__stats span { color: #cfe4d6; font-size: 13px; }
.tracks { display: grid; }
.track { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: 48px min(58px, 6vw); text-decoration: none; min-height: 240px; position: relative; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.08); transition: transform .35s ease, filter .35s ease; }
.track::before { content: ""; position: absolute; inset: auto -8% -40% auto; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(244,213,106,.18), transparent 68%); pointer-events: none; }
.track__index { font-family: var(--serif); font-size: clamp(4rem, 10vw, 8rem); line-height: .8; opacity: .18; transition: transform .35s ease, opacity .35s ease; }
.track__kicker { letter-spacing: .14em; text-transform: uppercase; font-size: 11px; font-weight: 800; margin: 0 0 8px; }
.track h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.4vw, 3rem); margin: 0 0 8px; line-height: 1.1; }
.track__copy p { margin: 0 0 14px; max-width: 52ch; }
.track__go { font-weight: 800; white-space: nowrap; transition: transform .25s ease; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.chips li { border: 1px solid currentColor; border-radius: 999px; padding: 5px 12px; font-size: 12px; font-weight: 700; }
.track--gold { background: #f4efe0; color: var(--green-dark); }
.track--forest { background: #0c3d22; color: #fff; }
.track--earth { background: #1d2a1c; color: #f3efe4; }
.track--ink { background: #08150f; color: #fff; }
.track--gold .track__kicker, .track--gold .track__go { color: #9a6c00; }
.track--forest .track__kicker, .track--earth .track__kicker, .track--ink .track__kicker, .track--forest .track__go, .track--earth .track__go, .track--ink .track__go { color: var(--gold); }
.track:hover { filter: brightness(1.06); }
.track:hover .track__go { transform: translateX(8px); }
.track:hover .track__index { transform: scale(1.06); opacity: .28; }
.pass-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.pass { position: relative; background: linear-gradient(165deg, #0c3d22, #06140e); color: #fff; border-radius: 22px; padding: 22px 20px 20px; text-decoration: none; min-height: 260px; display: flex; flex-direction: column; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; box-shadow: var(--shadow); }
.pass:nth-child(5n+2) { background: linear-gradient(165deg, #146c36, #0c3d22); }
.pass:nth-child(5n+3) { background: linear-gradient(165deg, #1d2a1c, #0a1811); }
.pass:nth-child(5n+4) { background: linear-gradient(165deg, #08150f, #12351f); }
.pass:nth-child(5n+5) { background: linear-gradient(165deg, #3d2d0a, #8a6a12); }
.pass::before { content: ""; position: absolute; left: 18px; right: 28px; top: 78px; border-top: 1px dashed rgba(255,255,255,.22); }
.pass::after { content: ""; position: absolute; right: -16px; top: 42%; width: 32px; height: 32px; background: var(--paper); border-radius: 50%; box-shadow: 0 -70px 0 var(--paper), 0 70px 0 var(--paper); }
.pass__index { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.pass__kicker { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; opacity: .8; margin: 8px 0 18px; }
.pass h3 { font-family: var(--serif); font-size: 1.15rem; margin: 0 0 8px; line-height: 1.2; }
.pass p { color: #cfe4d6; font-size: 13px; margin: 0 0 auto; }
.pass__go { margin-top: 16px; font-weight: 800; color: var(--gold); font-size: 13px; }
.pass:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(6,20,14,.18); }
.stage__hero { color: #fff; padding: 88px 0 48px; background: linear-gradient(160deg, #06140e, #0c3d22 55%, #178a45); }
.stage--gold .stage__hero { background: linear-gradient(160deg, #3d2d0a, #8a6a12 55%, #e2ae2a); color: #1a1406; }
.stage--earth .stage__hero { background: linear-gradient(160deg, #141c12, #2a3824); }
.stage--ink .stage__hero { background: linear-gradient(160deg, #040a08, #0a1c14); }
.stage__hero-grid { display: grid; grid-template-columns: 1.4fr .7fr; gap: 32px; align-items: end; }
.stage__index { font-family: var(--serif); font-size: clamp(4rem, 10vw, 7rem); line-height: .8; margin: 0; opacity: .35; }
.stage__hero h1 { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 4rem); margin: 8px 0 12px; line-height: 1.05; }
.stage__lead { font-size: 1.15rem; max-width: 52ch; opacity: .9; }
.stage__ghost { color: inherit; border-color: currentColor; }
.stage__facts { display: grid; gap: 14px; background: rgba(255,255,255,.08); border-radius: 22px; padding: 22px; }
.stage__facts span { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.stage__facts strong { font-size: 1.05rem; }
.stage__block { padding: 72px 0; }
.stage__block h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 28px; }
.stage__block--prose { background: var(--cream); }
.why-grid, .tracks-mini { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.why-grid article, .tracks-mini article { background: #fff; border-radius: 22px; padding: 24px; box-shadow: var(--shadow); }
.why-grid h3, .tracks-mini h3 { margin: 0 0 8px; font-family: var(--serif); }
.why-grid p { margin: 0; color: var(--muted); }
.tracks-mini ol { margin: 0; padding-left: 18px; color: var(--muted); }
.rail { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.rail li { display: grid; grid-template-columns: 72px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.rail span { font-family: var(--serif); font-size: 1.6rem; color: var(--green); }
.rail h3 { margin: 0 0 4px; }
.rail p { margin: 0; color: var(--muted); }
.stamps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; list-style: none; padding: 0; margin: 0; }
.stamps li { border: 2px dashed #c8b56a; border-radius: 18px; padding: 22px; font-weight: 800; background: #fffdf6; }
.stage__cta { background: var(--green-dark); color: #fff; padding: 72px 0; text-align: center; }
.stage__cta h2 { font-family: var(--serif); margin: 0 0 8px; }
.side a.is-active { color: var(--green); }

.footer { background: #0a2416; color: #d5e4da; padding: 56px 0 22px; }
.footer a { color: inherit; text-decoration: none; display: block; margin: 6px 0; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 28px; }
.footer__logo { height: 46px; background: #fff; padding: 8px 10px; border-radius: 12px; margin-bottom: 14px; width: auto; }
.footer h3 { color: #fff; margin: 0 0 10px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 36px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; align-items: end; }
.footer__bottom > span { display: flex; gap: 14px; }
.footer__legal { display: grid; gap: 6px; }
.footer__made { margin: 0; color: #cfe4d6; }
.footer__made strong { color: var(--gold); font-weight: 800; }

.cursor {
    display: none; position: fixed; top: 0; left: 0; width: 18px; height: 18px; margin: -9px 0 0 -9px;
    border: 1.5px solid var(--gold); border-radius: 50%; pointer-events: none; z-index: 130;
    mix-blend-mode: difference;
}
.cursor.is-hot { width: 44px; height: 44px; margin: -22px 0 0 -22px; background: rgba(226, 174, 42, .16); }
@media (hover: hover) and (pointer: fine) {
    .cursor { display: block; }
}

.foil { padding: 64px 0 8px; background: var(--paper); color: var(--ink); }
.foil__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.foil__copy h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); margin: 8px 0 12px; color: var(--green-dark); }
.foil__copy > p { color: var(--muted); max-width: 42ch; }
.foil__field { display: grid; gap: 8px; font-weight: 700; font-size: 14px; margin: 22px 0 18px; max-width: 420px; }
.foil__field input { border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 14px; padding: 14px 16px; }
.foil__stage { perspective: 1200px; }
.foil__card {
    --mx: 50%; --my: 40%; --rx: 8deg; --ry: -12deg;
    position: relative; overflow: hidden; isolation: isolate;
    width: min(440px, 100%); min-height: 260px; margin-inline: auto;
    padding: 26px 28px; border-radius: 28px;
    color: #fff;
    background:
        linear-gradient(160deg, rgba(255,255,255,.08), transparent 40%),
        linear-gradient(145deg, #146c36, #06140e 58%, #3d2d0a);
    box-shadow: 0 30px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(244,213,106,.28);
    transform: rotateX(var(--rx)) rotateY(var(--ry));
    transform-style: preserve-3d;
    display: flex; flex-direction: column;
}
.foil__shine {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.55), transparent 36%),
        linear-gradient(115deg, transparent 32%, rgba(244,213,106,.45) 46%, rgba(255,255,255,.4) 50%, rgba(23,138,69,.35) 56%, transparent 70%);
    background-size: 140% 140%, 260% 100%;
    mix-blend-mode: overlay;
    animation: foilSweep 5.5s ease-in-out infinite;
}
@keyframes foilSweep {
    0%, 100% { background-position: 18% 28%, 0% 50%; }
    50% { background-position: 82% 68%, 100% 50%; }
}
.foil__card header { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.foil__card header img { height: 34px; width: auto; background: #fff; padding: 4px 8px; border-radius: 8px; }
.foil__card header span { letter-spacing: .16em; text-transform: uppercase; font-size: 11px; font-weight: 800; color: var(--gold); }
.foil__chip { position: relative; z-index: 1; margin: 36px 0 8px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #f4d56a; }
.foil__card h3 { position: relative; z-index: 1; font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0; min-height: 2.4em; }
.foil__card footer { position: relative; z-index: 1; margin-top: auto; padding-top: 22px; display: flex; justify-content: space-between; gap: 12px; font-size: 12px; font-weight: 700; color: #d7eee0; }
.social { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.social a { background: rgba(255,255,255,.08); padding: 6px 10px; border-radius: 999px; margin: 0; }

.search-modal { position: fixed; inset: 0; background: rgba(10,36,22,.78); z-index: 90; display: grid; place-items: center; padding: 20px; }
.search-modal[hidden] { display: none; }
.search-modal form { width: min(640px, 100%); display: flex; gap: 10px; background: #fff; padding: 10px; border-radius: 18px; }
.search-modal input { flex: 1; padding: 14px; border-radius: 12px; border: 0; }
.search-modal__close { position: absolute; top: 20px; right: 20px; background: #fff; border: 0; border-radius: 999px; padding: 8px 14px; cursor: pointer; font-weight: 700; }

.cookies { position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%); width: min(880px, calc(100% - 24px)); background: #fff; padding: 16px 18px; border-radius: 18px; box-shadow: var(--shadow); z-index: 90; display: flex; gap: 16px; align-items: center; justify-content: space-between; border: 1px solid var(--line); }
.cookies[hidden] { display: none; }
.cookies p { margin: 0; font-size: 14px; }
.cookies__actions { display: flex; gap: 8px; flex-shrink: 0; }

@media (max-width: 1200px) {
    .pass-grid { grid-template-columns: repeat(2, 1fr); }
    .cards--4 { grid-template-columns: repeat(2, 1fr); }
    .nav { font-size: 13px; }
    .nav > a, .nav__drop > a { padding: 8px 8px; }
}
@media (max-width: 1120px) {
    .nav {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(340px, 86vw);
        height: 100dvh;
        margin: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: calc(88px + env(safe-area-inset-top, 0px)) 18px max(24px, env(safe-area-inset-bottom, 0px));
        z-index: 2;
        box-shadow: -18px 0 40px rgba(6, 20, 14, .18);
        overflow: auto;
        font-size: 16px;
        transform: translateX(104%);
        visibility: hidden;
        pointer-events: none;
        border-left: 1px solid var(--line);
    }
    .nav.is-open { transform: none; visibility: visible; pointer-events: auto; }
    .nav > a, .nav__drop > a {
        border-radius: 12px;
        padding: 12px 14px;
        min-height: 44px;
        display: flex;
        align-items: center;
        white-space: normal;
    }
    .nav__drop { display: grid; }
    .nav__menu { position: static; display: grid; gap: 2px; box-shadow: none; border: 0; padding: 0 0 8px 12px; min-width: 0; background: transparent; }
    .nav__menu a { min-height: 44px; display: flex; align-items: center; }
    a.btn.nav__join { display: inline-flex; margin-top: auto; width: 100%; }
    .burger { display: grid; place-items: center; }
    .header__cta { display: none; }
    .hero__nav { display: none; }
    .header__inner { min-height: 64px; gap: 10px; }
    .logo img { height: 42px; }
}
@media (max-width: 980px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .split, .stage__hero-grid { grid-template-columns: 1fr; }
    .campus__stats { grid-template-columns: repeat(2, 1fr); }
    .pass-grid, .why-grid, .tracks-mini, .stamps { grid-template-columns: repeat(2, 1fr); }
    .cards--3 { grid-template-columns: repeat(2, 1fr); }
    .track { grid-template-columns: auto 1fr; }
    .cta__box, .program-row, .event-row, .cookies { flex-direction: column; align-items: flex-start; }
    .hero { border-radius: 0 0 22px 22px; min-height: 440px; height: min(68vh, 620px); }
    .hero__copy { padding: 48px 0 72px; }
    .section { padding: 56px 0; }
    .film { min-height: 380px; }
    .film__copy { padding: 72px 0 36px; }
    .film--stage, .dossier--manifest .film { min-height: 420px; }
    .faculty, .faculty--team, .dossier--team .faculty { grid-template-columns: repeat(2, 1fr); }
    .search-modal form { flex-direction: column; }
    .cookies { left: 12px; right: 12px; width: auto; transform: none; bottom: max(12px, env(safe-area-inset-bottom)); }
    .cookies__actions { width: 100%; }
    .cookies__actions .btn { flex: 1; }
}
.film { position: relative; min-height: 520px; color: #fff; background: #06140e; overflow: hidden; display: grid; align-items: end; }
.film::before { content: ""; position: absolute; inset: 0; background-image: var(--film); background-size: cover; background-position: center; }
.faculty--team { grid-template-columns: repeat(3, 1fr); }
.header.is-scrolled { box-shadow: 0 10px 30px rgba(6,20,14,.08); }
.film__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,20,14,.15), rgba(6,20,14,.82) 62%, rgba(6,20,14,.94)); }
.film__copy { position: relative; z-index: 1; padding: 110px 0 56px; }
.film h1 { font-family: var(--serif); font-size: clamp(2.2rem, 5.6vw, 4.4rem); line-height: 1.04; margin: 8px 0 14px; max-width: 18ch; }
.film__lead, .film__copy > p { max-width: 62ch; color: #d7eee0; }
.film--stage { min-height: 620px; }
.stamp { display: inline-flex; letter-spacing: .16em; font-size: 11px; font-weight: 800; border: 1px solid rgba(226,174,42,.7); color: var(--gold); padding: 6px 10px; margin: 0 0 12px; }
.stamp--ink { color: var(--green-dark); border-color: #c8b56a; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; font-weight: 700; margin: 0 0 18px; }
.crumbs a { color: var(--gold); text-decoration: none; }
.film .crumbs span { color: #cfe4d6; }
.dossier .stage__block h2, .dossier__grid h2 { font-family: var(--serif); }
.dossier__grid { display: grid; grid-template-columns: 1.45fr .7fr; gap: 36px; align-items: start; }
.lede { color: var(--muted); margin-top: -12px; }
.embed { position: relative; margin: 0; border-radius: 22px; overflow: hidden; background: #06140e; box-shadow: var(--shadow); }
.embed::before { content: ""; display: block; padding-top: 56.25%; }
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.mosaic button { min-height: 160px; border: 0; border-radius: 16px; background: #0c3d22 center/cover no-repeat; cursor: zoom-in; }
.mosaic button:nth-child(1) { grid-column: span 2; grid-row: span 2; min-height: 330px; }
.faculty { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.faculty article { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.faculty__photo { height: 180px; background: #0c3d22 center/cover no-repeat; }
.faculty h3 { margin: 12px 16px 0; font-size: 1rem; }
.faculty p { margin: 4px 16px 16px; color: var(--muted); font-size: 13px; }
.faq details { background: #fff; border-radius: 16px; padding: 16px 18px; margin-bottom: 10px; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; font-weight: 800; }
.faq p { margin: 10px 0 0; color: var(--muted); }
.share { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 12px; }
.share span { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.share a, .share button { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 6px 10px; font-size: 12px; font-weight: 700; cursor: pointer; text-decoration: none; }
.register { width: 100%; border-collapse: collapse; background: #fff; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); overflow-x: auto; display: block; }
.register th, .register td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.register code { font-weight: 800; color: var(--green-dark); }
.agenda { display: grid; gap: 14px; }
.agenda__row { display: grid; grid-template-columns: 140px 110px 1fr; gap: 18px; align-items: center; background: #fff; border-radius: 20px; overflow: hidden; text-decoration: none; box-shadow: var(--shadow); }
.agenda__photo { height: 110px; background: #0c3d22 center/cover no-repeat; }
.agenda__row time { font-weight: 800; color: var(--green); }
.agenda__row h3 { margin: 0 0 4px; font-family: var(--serif); }
.agenda__row p { margin: 0; color: var(--muted); }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.video-card span { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.video-card h3 { margin: 6px 0 0; font-family: var(--serif); }
.map { height: 360px; }
.map iframe { width: 100%; height: 360px; border: 0; display: block; }
.track { grid-template-columns: auto 1fr auto; }
.track__photo { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .22; pointer-events: none; }
.track--gold .track__photo { opacity: .16; }
.track__copy, .track__index, .track__go { position: relative; z-index: 1; }
.pass__photo { position: absolute; inset: 0 28px 0 0; background-size: cover; background-position: center; opacity: .28; }
.pass__index, .pass__kicker, .pass h3, .pass p, .pass__go { position: relative; z-index: 1; }
.filters--film { margin-top: 22px; }
.filters--film input, .filters--film select { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.2); }
.footer__news { display: grid; gap: 8px; margin-top: 14px; }
.footer__news input { width: 100%; border-radius: 12px; border: 0; padding: 10px 12px; }
.lightbox { position: fixed; inset: 0; background: rgba(6,20,14,.92); z-index: 95; display: grid; place-items: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1100px, 100%); max-height: 86vh; border-radius: 16px; }
.lightbox button { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border: 0; border-radius: 50%; font-size: 28px; cursor: pointer; }
.dossier--split .dossier__grid { grid-template-columns: .9fr 1.1fr; }
.dossier--brief .film { min-height: 360px; }
.dossier--brief .film h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
.dossier--team .faculty { grid-template-columns: repeat(5, 1fr); }
.dossier--manifest .film { min-height: 580px; }
.manifest-band { background: #06140e; color: #fff; padding: 56px 0; }
.manifest-band h2 { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.8rem); max-width: 16ch; margin: 8px 0 12px; }
.manifest-band p { max-width: 54ch; color: #d7eee0; }
.hero .stamp { margin-bottom: 10px; }
.ql-video, .prose iframe { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: 16px; }

.atlas { padding-top: 48px; }
.atlas__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; }
.atlas__map, .atlas__list { background: #fff; border-radius: 28px; padding: 22px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.atlas__head h2, .atlas__list-head h2 { font-family: var(--serif); margin: 0 0 6px; color: var(--green-dark); font-size: 1.7rem; }
.atlas__head p, .atlas__list-head p { margin: 0; color: var(--muted); }
.atlas__list-head { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 16px; }
.atlas__stage {
    background:
        radial-gradient(circle at 88% 62%, rgba(23, 138, 69, .12), transparent 34%),
        linear-gradient(180deg, #eef6f0 0%, #e4eee6 100%);
    border-radius: 22px;
    padding: 12px 8px 4px;
    border: 1px solid #d5e6da;
}
.ro-map { width: 100%; height: auto; display: block; overflow: visible; }
.ro-map__region { cursor: pointer; }
.ro-map__region path {
    fill: var(--fill, #178a45);
    stroke: #f7f4ee;
    stroke-width: 2.6;
    stroke-linejoin: round;
    paint-order: stroke fill;
}
.ro-map__region[data-region="nord-vest"] { --fill: #0e4d2a; }
.ro-map__region[data-region="nord-est"] { --fill: #1f7a40; }
.ro-map__region[data-region="centru"] { --fill: #c9a227; }
.ro-map__region[data-region="vest"] { --fill: #146c36; }
.ro-map__region[data-region="sud-vest"] { --fill: #4d7c32; }
.ro-map__region[data-region="sud-muntenia"] { --fill: #e2ae2a; }
.ro-map__region[data-region="sud-est"] { --fill: #178a45; }
.ro-map__region[data-region="bucuresti-ilfov"] { --fill: #5c4310; }
.ro-map__region:hover path { filter: brightness(1.12); stroke: #fff; }
.ro-map__region.is-on path { fill: #0c3d22; stroke: var(--gold); stroke-width: 4.2; }
.ro-map__label {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 800;
    fill: #fff;
    text-anchor: middle;
    pointer-events: none;
    paint-order: stroke;
    stroke: rgba(6, 20, 14, .45);
    stroke-width: 3px;
}
.ro-map__label--sm { font-size: 11px; }
.ro-map__badge { pointer-events: none; }
.ro-map__badge circle { fill: #fff; stroke: var(--green-dark); stroke-width: 1.5; }
.ro-map__badge text { fill: var(--green-dark); font-size: 11px; font-weight: 800; text-anchor: middle; font-family: var(--font); }
.atlas__legend { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 14px 0 0; margin: 0; }
.atlas__chip {
    display: flex; align-items: center; gap: 8px;
    text-decoration: none; font-size: 13px; font-weight: 700;
    padding: 8px 10px; border-radius: 12px; background: var(--cream);
}
.atlas__chip b { margin-left: auto; color: var(--green-dark); }
.atlas__chip.is-on, .atlas__chip:hover { background: #e7f4ea; }
.atlas__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.atlas__dot--nord-vest { background: #0e4d2a; }
.atlas__dot--nord-est { background: #1f7a40; }
.atlas__dot--centru { background: #c9a227; }
.atlas__dot--vest { background: #146c36; }
.atlas__dot--sud-vest { background: #4d7c32; }
.atlas__dot--sud-muntenia { background: #e2ae2a; }
.atlas__dot--sud-est { background: #178a45; }
.atlas__dot--bucuresti-ilfov { background: #5c4310; }
.atlas .agenda__row { grid-template-columns: 108px 1fr; align-items: start; }
.atlas .agenda__photo { height: 108px; }
.agenda__row[hidden], .atlas [hidden] { display: none !important; }

@media (max-width: 980px) {
    .dossier__grid, .mosaic, .video-grid, .agenda__row, .atlas__grid { grid-template-columns: 1fr; }
    .faculty, .faculty--team, .dossier--team .faculty { grid-template-columns: repeat(2, 1fr); }
    .mosaic button:nth-child(1) { grid-column: auto; grid-row: auto; min-height: 200px; }
    .atlas__map, .atlas__list { padding: 16px; border-radius: 22px; }
    .ro-map__label { font-size: 18px; }
    .film { min-height: 380px; }
    .film__copy { padding: 72px 0 36px; }
    .film--stage, .dossier--manifest .film { min-height: 420px; }
}
@media (max-width: 720px) {
    .topbar__broker { display: none; }
    .topbar__inner { justify-content: center; }
    .stats { padding: 48px 0; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr; }
    .cta { padding: 0 0 48px; }
    .cta__box { padding: 24px; border-radius: 22px; }
    .atlas__legend { grid-template-columns: 1fr; }
    .pass-grid { grid-template-columns: 1fr; }
    .foil__grid { grid-template-columns: 1fr; }
    .foil__card { transform: none; }
}
@media (max-width: 560px) {
    .faculty, .faculty--team, .dossier--team .faculty, .cards--3, .cards--4 { grid-template-columns: 1fr; }
    .hero h1 { font-size: clamp(1.8rem, 11vw, 2.6rem); }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
    .hero__slide.is-active .hero__media { transform: none; }
    .foil__card { transform: none; }
}

.give { background: #fff; }
.give__sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.give-banner {
    width: 100%;
    aspect-ratio: 1900 / 713;
    max-height: 720px;
    min-height: 220px;
    background: #0c3d22 var(--give-banner) center / cover no-repeat;
}
.give-section { padding: 36px 0; }
.give-section + .give-section { border-top: 1px solid var(--line); }
.give-heading { font-family: var(--serif); text-align: center; font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0 0 28px; color: var(--green-dark); }
.give-top { display: grid; grid-template-columns: 3fr 1fr; gap: 36px; align-items: start; }
.give-row { display: grid; gap: 32px; align-items: center; }
.give-row--7-5 { grid-template-columns: 7fr 5fr; }
.give-row--6-6 { grid-template-columns: 1fr 1fr; }
.give-row--5-7 { grid-template-columns: 5fr 7fr; }
.give-copy h2 { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 0 0 14px; color: var(--green-dark); }
.give-copy h3 { font-size: 1.05rem; margin: 22px 0 10px; }
.give-copy a { color: var(--green); font-weight: 700; }
.give-checks { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 12px; }
.give-checks li { position: relative; padding-left: 28px; }
.give-checks li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.give-aside { display: grid; gap: 12px; align-content: start; position: sticky; top: 92px; }
.give-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    padding: 16px 18px;
    font-weight: 800;
    line-height: 1.3;
    border: 0;
}
.give-cta--green { background: var(--green); color: #fff; }
.give-cta--navy { background: var(--green-dark); color: #fff; }
.give-cta--form { background: #fff; color: var(--green); border: 1px solid #d5e4da; box-shadow: 0 10px 24px rgba(12, 61, 34, .08); justify-content: space-between; }
.give-cta--form span { font-size: 1.4rem; line-height: 1; color: var(--green); }
.give-cta--inline { width: auto; max-width: 100%; margin-top: 8px; border-radius: 999px; }
.give-media { margin: 0; }
.give-media img { width: 100%; height: auto; border-radius: 8px; }
.give-media--contain img { background: #fff; object-fit: contain; }
.give-wide { display: grid; gap: 12px; }
.give-section--cta { padding-bottom: 64px; }
.give-section--cta .share { margin-top: 18px; justify-content: center; }
@media (max-width: 980px) {
    .give-top, .give-row, .give-row--7-5, .give-row--6-6, .give-row--5-7 { grid-template-columns: 1fr; }
    .give-aside { position: static; }
}
@media (max-width: 720px) {
    .give-banner { aspect-ratio: 16 / 9; max-height: 320px; }
    .give-section { padding: 28px 0; }
    .give-cta--inline { width: 100%; }
}

.pb { display: block; width: 100%; background: var(--paper); }
.pb-section { position: relative; padding: 56px 0; background-repeat: no-repeat; background-size: cover; background-position: center; }
.pb-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: var(--pb-gap, 24px);
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}
.pb-section--full .pb-wrap { width: 100%; max-width: none; padding-inline: 20px; }
.pb-section:has(.pb-hero) { padding: 0; }
.pb-section:has(.pb-hero) .pb-wrap { width: 100%; max-width: none; padding-inline: 0; gap: 0; }
.pb-col { min-width: 0; display: flex; flex-direction: column; gap: 20px; position: relative; }
.pb-el { min-width: 0; width: 100%; }
.pb-inner { width: 100%; }
.pb-heading { font-family: var(--serif); margin: 0; color: var(--green-dark); line-height: 1.2; }
.pb-heading:is(h1) { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.pb-heading:is(h2) { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.pb-heading:is(h3) { font-size: 1.35rem; }
.pb-heading:is(h4), .pb-heading:is(p) { font-size: 1.1rem; }
.pb-heading--sm { font-size: 1.2rem !important; }
.pb-heading--md { font-size: 1.6rem !important; }
.pb-heading--lg { font-size: 2.2rem !important; }
.pb-heading--xl { font-size: clamp(2.2rem, 5vw, 3.6rem) !important; }
.pb-text { font-size: 1.05rem; color: #314038; }
.pb-text a { color: var(--green); font-weight: 700; }
.pb-text p { margin: 0 0 12px; }
.pb-text p:last-child { margin-bottom: 0; }
.pb-image { margin: 0; }
.pb-image img { width: 100%; height: auto; display: block; }
.pb-image figcaption { margin-top: 8px; color: var(--muted); font-size: 14px; }
.pb-image--wide { width: 80%; margin-inline: auto; }
.pb-image--medium { width: 60%; margin-inline: auto; }
.pb-image--empty { background: var(--cream); min-height: 160px; display: grid; place-items: center; color: var(--muted); border-radius: 16px; }
.pb-btn-wrap { display: flex; }
.pb-btn-wrap--center { justify-content: center; }
.pb-btn-wrap--right { justify-content: flex-end; }
.pb-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 22px; border-radius: 999px; font-weight: 800; text-decoration: none; border: 0; cursor: pointer;
}
.pb-btn--green { background: var(--green); color: #fff; }
.pb-btn--navy { background: var(--green-dark); color: #fff; }
.pb-btn--gold { background: var(--gold); color: #122017; }
.pb-btn--outline { background: transparent; color: var(--green-dark); border: 1px solid var(--line); }
.pb-divider { border: 0; border-top: 2px solid var(--line); margin: 8px auto; }
.pb-list { padding-left: 0; margin: 0; list-style: none; display: grid; gap: 8px; }
.pb-list--check li { padding-left: 26px; position: relative; }
.pb-list--check li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.pb-list--bullet { list-style: disc; padding-left: 20px; }
.pb-list--number { list-style: decimal; padding-left: 20px; }
.pb-hero {
    position: relative; min-height: 420px; color: #fff;
    background: #06140e center/cover no-repeat; display: grid; align-items: end;
}
.pb-hero__veil { position: absolute; inset: 0; background: #06140e; }
.pb-hero__copy { position: relative; z-index: 1; padding: 72px 0 56px; width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.pb-hero__copy h2 { font-family: var(--serif); margin: 8px 0 12px; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.08; }
.pb-hero__copy p { margin: 0; max-width: 640px; color: #e6f3ea; }
.pb-cta {
    display: flex; justify-content: space-between; gap: 20px; align-items: center;
    background: linear-gradient(135deg, var(--green-dark), var(--green)); color: #fff;
    border-radius: 22px; padding: 32px;
}
.pb-cta h3 { font-family: var(--serif); margin: 0 0 8px; }
.pb-cta p { margin: 0; color: #d7eee0; }
.pb-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }
.pb-stats strong { display: block; font-family: var(--serif); font-size: 2rem; color: var(--green); }
.pb-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.pb-cards article { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px; box-shadow: var(--shadow); }
.pb-cards h3 { margin: 0 0 8px; font-family: var(--serif); }
.pb-cards p { margin: 0; color: var(--muted); }
.pb-quote { margin: 0; padding: 24px; border-left: 4px solid var(--gold); background: #fff; border-radius: 0 16px 16px 0; }
.pb-quote cite { display: block; margin-top: 8px; color: var(--muted); font-style: normal; font-weight: 700; }
.pb-faq { display: grid; gap: 8px; }
.pb-faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px; }
.pb-faq summary { cursor: pointer; font-weight: 800; }
.pb-faq details p { margin: 10px 0 0; color: var(--muted); }
.pb-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.pb-gallery img { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; }
.pb-contact { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; }
.pb-ibox { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px; height: 100%; }
.pb-ibox__icon { font-size: 1.8rem; margin-bottom: 8px; }
.pb-ibox h3 { margin: 0 0 8px; font-family: var(--serif); }
.pb-ibox p { margin: 0; color: var(--muted); }
.pb-ibox-link { text-decoration: none; color: inherit; display: block; height: 100%; }
.pb-ibox--img img { width: 100%; border-radius: 12px; margin-bottom: 12px; }
.pb-counter { text-align: center; padding: 12px; }
.pb-counter strong { display: block; font-family: var(--serif); font-size: 2.4rem; color: var(--green); }
.pb-progress { display: grid; gap: 6px; }
.pb-progress__bar { height: 10px; background: var(--line); border-radius: 999px; overflow: hidden; }
.pb-progress__bar i { display: block; height: 100%; background: var(--green); }
.pb-said { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px; }
.pb-said img { width: 64px; height: 64px; object-fit: cover; border-radius: 50%; margin-bottom: 12px; }
.pb-said blockquote { margin: 0; }
.pb-said figcaption { margin-top: 8px; color: var(--muted); }
.pb-map { position: relative; padding-top: 56%; border-radius: 16px; overflow: hidden; }
.pb-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pb-social { display: flex; flex-wrap: wrap; gap: 10px; }
.pb-social a { font-weight: 800; color: var(--green); text-decoration: none; }
.pb-alert { padding: 14px 16px; border-radius: 12px; font-weight: 700; }
.pb-alert--info { background: #e7f4ea; color: var(--green-dark); }
.pb-alert--success { background: #d7eee0; color: var(--green-dark); }
.pb-alert--warning { background: #fff4d6; color: #6a4b00; }
.pb-alert--danger { background: #fde8ef; color: #93003c; }
@media (min-width: 1025px) { .pb-hide-d { display: none !important; } }
@media (max-width: 1024px) and (min-width: 768px) { .pb-hide-t { display: none !important; } }
@media (max-width: 767px) {
    .pb-hide-m { display: none !important; }
    .pb-col { flex: 1 1 100% !important; max-width: 100% !important; }
    .pb-cta { flex-direction: column; align-items: flex-start; }
    .pb-hero { min-height: 320px; }
    .pb-hero__copy { padding: 48px 20px 36px; }
}
.wp-adminbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100000; height: 32px; background: #1d2327; color: #c3c4c7; display: flex; align-items: center; gap: 14px; padding: 0 12px; font-size: 13px; font-weight: 700; }
.wp-adminbar a { color: #fff; text-decoration: none; }
.wp-adminbar a:hover { color: #72aee6; }
.wp-adminbar a[href*="/builder"] { color: #e2ae2a; }
.wp-adminbar__brand { color: #e2ae2a !important; }
.wp-adminbar__user { margin-left: auto; }
body.has-admin-bar { padding-top: 32px; }
body.has-admin-bar .header { top: 32px; }
body.is-pb-page { background: var(--paper); }
