@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #101713;
  --ink-2: #1b2721;
  --green: #1f6b4c;
  --green-dark: #123f2d;
  --green-soft: #eaf3ee;
  --gold: #d5a84e;
  --gold-dark: #a87627;
  --cream: #f6f1e8;
  --paper: #fffdfa;
  --white: #ffffff;
  --muted: #66706b;
  --line: #ded8ce;
  --danger: #9a3737;
  --success: #236a4a;
  --shadow-sm: 0 12px 28px rgba(16, 23, 19, .08);
  --shadow-lg: 0 28px 70px rgba(16, 23, 19, .18);
  --radius: 18px;
  --radius-lg: 30px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold); color: var(--ink); }

.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 1000;
  background: var(--white); color: var(--ink); padding: 10px 14px; border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 12px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-cream { background: var(--cream); }
.section-green { background: var(--green-dark); color: var(--white); }
.eyebrow {
  margin: 0 0 12px; color: var(--green); font-size: .77rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
}
.section-dark .eyebrow, .section-green .eyebrow { color: #edc878; }
.display, h1, h2 { font-family: "Manrope", "Segoe UI", sans-serif; }
h1, h2, h3, h4, p { margin-top: 0; }
h1 { font-size: clamp(2.55rem, 6vw, 5.5rem); line-height: .98; letter-spacing: -.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.08; letter-spacing: -.025em; margin-bottom: 20px; }
h3 { font-size: 1.25rem; line-height: 1.25; }
.lead { font-size: clamp(1.06rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 760px; }
.section-dark .lead, .section-green .lead { color: rgba(255,255,255,.74); }
.muted { color: var(--muted); }
.kicker { font-size: .86rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 800; font-size: .9rem; letter-spacing: .02em; transition: .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #17140d; box-shadow: 0 10px 30px rgba(213,168,78,.25); }
.btn-primary:hover { background: #e1bb6c; }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--green-dark); }
.btn-outline { border-color: rgba(255,255,255,.6); color: var(--white); background: rgba(255,255,255,.04); }
.btn-outline-dark { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-link { padding: 0; min-height: auto; border-radius: 0; color: var(--green-dark); }
.btn-link::after { content: "→"; transition: transform .2s ease; }
.btn-link:hover::after { transform: translateX(4px); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
  color: var(--white);
}
.site-header.scrolled, .site-header.inner-header { background: rgba(255,253,250,.96); color: var(--ink); box-shadow: 0 8px 30px rgba(12,20,16,.08); backdrop-filter: blur(14px); }
.navbar { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 236px; }
.brand img { width: 42px; height: 42px; }
.brand-text strong { display: block; font-size: .92rem; line-height: 1.05; letter-spacing: .04em; text-transform: uppercase; }
.brand-text span { display: block; margin-top: 4px; font-size: .69rem; opacity: .72; letter-spacing: .15em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 22px; }
.desktop-nav a { font-size: .77rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; position: relative; }
.desktop-nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--gold); transition: right .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.desktop-nav .btn { min-height: 40px; padding-inline: 16px; }
.menu-toggle { display: none; background: transparent; color: currentColor; border: 0; width: 46px; height: 46px; border-radius: 50%; }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 5px auto; background: currentColor; transition: .2s ease; }
.mobile-panel { display: none; }

.hero { min-height: 760px; height: min(88vh, 920px); position: relative; background: var(--ink); overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .8s ease, visibility .8s ease; background-size: cover; background-position: center; }
.hero-slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,14,10,.88) 0%, rgba(5,14,10,.68) 45%, rgba(5,14,10,.18) 80%), linear-gradient(0deg, rgba(5,14,10,.48), transparent 55%); }
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; padding-top: 82px; color: var(--white); }
.hero-copy { max-width: 790px; }
.hero-copy .eyebrow { color: #edc878; }
.hero-copy h1 { max-width: 890px; margin-bottom: 24px; }
.hero-copy p { max-width: 700px; color: rgba(255,255,255,.84); font-size: clamp(1rem, 1.7vw, 1.18rem); }
.hero-controls { position: absolute; z-index: 4; left: 50%; transform: translateX(-50%); bottom: 32px; width: min(calc(100% - 40px), var(--container)); display: flex; align-items: center; justify-content: space-between; }
.hero-dots { display: flex; gap: 8px; }
.hero-dot { width: 38px; height: 4px; border: 0; background: rgba(255,255,255,.4); padding: 0; border-radius: 99px; overflow: hidden; }
.hero-dot.active { background: var(--gold); }
.hero-arrows { display: flex; gap: 8px; }
.hero-arrow { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.5); background: rgba(5,14,10,.3); color: var(--white); border-radius: 50%; font-size: 1.35rem; }
.hero-arrow:hover { background: var(--white); color: var(--ink); }

.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 7vw, 96px); align-items: center; }
.intro-visual { min-height: 520px; border-radius: var(--radius-lg); overflow: hidden; position: relative; background: linear-gradient(135deg, var(--ink), var(--green-dark)); box-shadow: var(--shadow-lg); }
.intro-visual img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; opacity: .82; }
.intro-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,20,14,.7), transparent 55%); }
.intro-badge { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 28px; padding: 22px; background: rgba(255,253,250,.94); border-radius: 18px; color: var(--ink); backdrop-filter: blur(12px); }
.intro-badge strong { display: block; font-family: "Manrope", "Segoe UI", sans-serif; font-size: 1.4rem; }
.intro-badge span { color: var(--muted); font-size: .92rem; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 36px; }
.category-card { padding: 24px; min-height: 148px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); transition: .22s ease; position: relative; overflow: hidden; }
.category-card::before { content: ""; position: absolute; width: 80px; height: 80px; border: 1px solid var(--gold); opacity: .15; transform: rotate(45deg); right: -35px; top: -35px; }
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: #d1c0a0; }
.category-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--green-soft); color: var(--green-dark); font-weight: 900; margin-bottom: 22px; }
.category-card h3 { margin: 0; font-size: 1rem; }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.14); margin-top: 42px; border: 1px solid rgba(255,255,255,.14); }
.value-card { padding: 36px 28px; background: var(--ink); }
.value-no { color: var(--gold); font-weight: 800; font-size: .78rem; letter-spacing: .12em; }
.value-card h3 { font-family: "Manrope", "Segoe UI", sans-serif; font-size: 1.45rem; margin: 20px 0 10px; }
.value-card p { margin: 0; color: rgba(255,255,255,.66); font-size: .94rem; }

.split-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cta-card { border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 58px); min-height: 360px; display: flex; flex-direction: column; justify-content: end; position: relative; overflow: hidden; }
.cta-card::before { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(0deg, rgba(7,16,12,.92), rgba(7,16,12,.18)); }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--white); max-width: 520px; }
.cta-card p { color: rgba(255,255,255,.78); max-width: 520px; }
.cta-nominate { background: url('https://images.pexels.com/photos/4427622/pexels-photo-4427622.jpeg?auto=compress&cs=tinysrgb&w=1400') center/cover; }
.cta-vote { background: url('https://images.pexels.com/photos/6532365/pexels-photo-6532365.jpeg?auto=compress&cs=tinysrgb&w=1400') center/cover; }

.magazine-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 90px); align-items: center; }
.magazine-cover { max-width: 430px; margin: 0 auto; transform: rotate(-2deg); filter: drop-shadow(0 28px 30px rgba(16,23,19,.2)); }
.magazine-copy .tagline { font-family: "Manrope", "Segoe UI", sans-serif; font-size: clamp(1.5rem, 2.4vw, 2.15rem); color: var(--green-dark); }

.partner-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 34px; }
.partner-slot { min-height: 108px; border: 1px solid var(--line); border-radius: 16px; display: grid; place-items: center; background: var(--white); padding: 18px; text-align: center; }
.partner-slot strong { display: block; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.partner-slot span { display: block; font-size: .78rem; color: var(--muted); margin-top: 4px; }

.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.experience-card { padding: 26px; border-left: 2px solid var(--gold); background: rgba(255,255,255,.05); }
.experience-card h3 { margin-bottom: 8px; }
.experience-card p { color: rgba(255,255,255,.65); margin-bottom: 0; }

.event-card { display: grid; grid-template-columns: 1.15fr .85fr; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: var(--white); }
.event-photo { min-height: 450px; background: linear-gradient(rgba(10,20,15,.1), rgba(10,20,15,.2)), url('https://images.pexels.com/photos/32660518/pexels-photo-32660518.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover; }
.event-info { padding: clamp(36px, 6vw, 70px); display: flex; flex-direction: column; justify-content: center; }
.event-meta { display: grid; gap: 14px; margin: 24px 0 6px; }
.event-meta-item { display: flex; gap: 12px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.event-meta-item strong { min-width: 84px; color: var(--green-dark); }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.news-card { border-radius: 20px; overflow: hidden; background: var(--white); border: 1px solid var(--line); }
.news-card img { width: 100%; height: 235px; object-fit: cover; }
.news-body { padding: 24px; }
.news-meta { font-size: .76rem; color: var(--green); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.news-card h3 { margin: 12px 0 10px; font-family: "Manrope", "Segoe UI", sans-serif; font-size: 1.35rem; }
.news-card p { color: var(--muted); font-size: .93rem; }

.pattern-band { position: relative; overflow: hidden; }
.pattern-band::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .08; background-image: linear-gradient(45deg, transparent 42%, var(--gold) 42% 46%, transparent 46% 54%, var(--gold) 54% 58%, transparent 58%); background-size: 52px 52px; }
.pattern-band > .container { position: relative; z-index: 1; }

.page-hero { padding: 180px 0 84px; background: radial-gradient(circle at 82% 20%, rgba(213,168,78,.18), transparent 26%), linear-gradient(135deg, #0b1711, #173d2e); color: var(--white); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -130px; bottom: -190px; width: 520px; height: 520px; border: 1px solid rgba(213,168,78,.28); transform: rotate(45deg); }
.page-hero h1 { font-size: clamp(2.8rem, 5vw, 4.9rem); max-width: 880px; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 720px; font-size: 1.12rem; }
.breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; color: rgba(255,255,255,.65); font-size: .8rem; margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--gold); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 90px); align-items: start; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stat-card { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.stat-card strong { display: block; font-family: "Manrope", "Segoe UI", sans-serif; font-size: 2.5rem; color: var(--green-dark); }
.stat-card span { color: var(--muted); font-size: .9rem; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 36px; }
.process-card { padding: 28px; border-radius: 18px; background: var(--white); border: 1px solid var(--line); }
.process-card .step { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--gold); display: grid; place-items: center; font-weight: 900; margin-bottom: 22px; }
.process-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.filter-bar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 18px; background: var(--cream); border: 1px solid var(--line); border-radius: 18px; margin: 30px 0; }
.search-box { flex: 1 1 280px; position: relative; }
.search-box input, .filter-bar select { width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); padding: 0 14px; color: var(--ink); }
.filter-bar select { width: auto; min-width: 190px; }
.full-category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.category-detail { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.category-detail h3 { margin: 12px 0 10px; }
.category-detail p { color: var(--muted); font-size: .92rem; margin-bottom: 0; }
.category-detail .category-tag { font-size: .72rem; font-weight: 800; letter-spacing: .1em; color: var(--green); text-transform: uppercase; }

.form-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 40px; align-items: start; }
.form-aside { position: sticky; top: 120px; padding: 30px; border-radius: 22px; background: var(--ink); color: var(--white); }
.form-aside h3 { font-family: "Manrope", "Segoe UI", sans-serif; font-size: 1.8rem; }
.form-aside p { color: rgba(255,255,255,.68); }
.checklist { list-style: none; padding: 0; margin: 24px 0 0; }
.checklist li { position: relative; padding-left: 30px; margin: 12px 0; color: rgba(255,255,255,.8); font-size: .91rem; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.rba-form { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.form-section { padding-bottom: 30px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.form-section:last-of-type { border-bottom: 0; margin-bottom: 0; }
.form-section h3 { font-family: "Manrope", "Segoe UI", sans-serif; font-size: 1.55rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 800; }
.field label .required { color: var(--danger); }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cfc8bd; background: #fff; border-radius: 12px; padding: 13px 14px; color: var(--ink); outline: none; transition: .18s ease; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,107,76,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.field small { color: var(--muted); }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; }
.checkbox-row input { margin-top: 5px; }
.form-status { display: none; margin-top: 18px; padding: 14px 16px; border-radius: 12px; font-size: .92rem; }
.form-status.show { display: block; }
.form-status.success { background: #e8f3ec; color: #195b3e; border: 1px solid #b9d8c7; }
.form-status.error { background: #faecec; color: #7b2c2c; border: 1px solid #e4bbbb; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 26px; }
.form-note { color: var(--muted); font-size: .8rem; margin: 0; }

.status-panel { padding: 42px; background: var(--cream); border-radius: 24px; border: 1px solid var(--line); text-align: center; }
.status-badge { display: inline-flex; padding: 7px 12px; border-radius: 999px; background: #efe2c6; color: #79541d; font-size: .74rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.partner-levels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.partner-level { padding: 30px; border-radius: 20px; border: 1px solid var(--line); background: var(--white); }
.partner-level.featured { background: var(--ink); color: var(--white); transform: translateY(-10px); }
.partner-level .label { color: var(--gold-dark); font-weight: 900; text-transform: uppercase; font-size: .74rem; letter-spacing: .12em; }
.partner-level.featured .label { color: var(--gold); }
.partner-level ul { padding-left: 18px; color: var(--muted); }
.partner-level.featured ul { color: rgba(255,255,255,.7); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; }
.contact-card { padding: 32px; border-radius: 22px; background: var(--ink); color: var(--white); }
.contact-item { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-item:last-child { border-bottom: 0; }
.contact-item small { display: block; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.contact-item strong { display: block; margin-top: 5px; }

.article-list { display: grid; gap: 22px; }
.article { padding: 34px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.article .article-meta { color: var(--green); font-weight: 800; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.article h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.article p { color: #4f5a54; }

.legal { max-width: 850px; }
.legal h2 { font-size: 1.8rem; margin-top: 42px; }
.legal h3 { margin-top: 28px; }
.legal p, .legal li { color: #4f5a54; }

.site-footer { background: #0a120f; color: var(--white); padding: 70px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.11); }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,.62); max-width: 390px; }
.footer-heading { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); font-weight: 900; margin-bottom: 18px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a, .footer-contact p { color: rgba(255,255,255,.68); font-size: .9rem; }
.footer-links a:hover { color: var(--gold); }
.socials { display: flex; gap: 8px; margin-top: 18px; }
.socials a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; display: grid; place-items: center; font-size: .75rem; font-weight: 800; }
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 26px; color: rgba(255,255,255,.45); font-size: .8rem; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }

.toast { position: fixed; right: 20px; bottom: 20px; z-index: 200; max-width: 380px; padding: 16px 18px; border-radius: 14px; background: var(--ink); color: var(--white); box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(20px); pointer-events: none; transition: .25s ease; }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-panel { position: fixed; inset: 0; padding: 116px 26px 34px; background: #0a120f; color: var(--white); z-index: 90; display: grid; align-content: start; gap: 8px; transform: translateX(100%); transition: transform .25s ease; }
  body.nav-open .mobile-panel { transform: translateX(0); }
  .mobile-panel a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1.1rem; font-weight: 700; }
  .site-header { z-index: 101; }
  .brand { min-width: auto; }
  .intro-grid, .magazine-grid, .event-card, .two-col, .form-shell, .contact-grid { grid-template-columns: 1fr; }
  .category-grid, .value-grid, .partner-levels { grid-template-columns: repeat(2, 1fr); }
  .experience-grid, .news-grid, .full-category-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .partner-strip { grid-template-columns: repeat(2, 1fr); }
  .form-aside { position: static; }
  .event-photo { min-height: 380px; }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .navbar { min-height: 74px; }
  .brand-text strong { font-size: .78rem; }
  .brand-text span { font-size: .59rem; }
  .brand img { width: 36px; height: 36px; }
  .hero { min-height: 710px; height: 90svh; }
  .hero-content { padding-top: 72px; align-items: flex-end; padding-bottom: 116px; }
  .hero-slide::before { background: linear-gradient(0deg, rgba(5,14,10,.93), rgba(5,14,10,.28) 72%), linear-gradient(90deg, rgba(5,14,10,.36), transparent); }
  .hero-copy h1 { font-size: clamp(2.6rem, 13vw, 4.2rem); }
  .hero-arrows { display: none; }
  .category-grid, .value-grid, .split-cta, .experience-grid, .news-grid, .full-category-grid, .process-grid, .partner-strip, .partner-levels, .stats-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 145px 0 70px; }
  .filter-bar select { width: 100%; }
  .cta-card { min-height: 400px; }
}

@media (max-width: 460px) {
  .footer-top { grid-template-columns: 1fr; }
  .button-row .btn { width: 100%; }
  .form-actions .btn { width: 100%; }
  .intro-visual { min-height: 430px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
[hidden] { display: none !important; }


/* =========================================================
   2026 visual refresh — modern type, restrained motion,
   premium interaction. Kept framework-free by design.
   ========================================================= */
:root {
  --ease-premium: cubic-bezier(.22, 1, .36, 1);
  --ease-ui: cubic-bezier(.2, .75, .25, 1);
  --header-h: 88px;
}

html { scroll-padding-top: calc(var(--header-h) + 18px); }
body { font-weight: 500; letter-spacing: -.006em; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, .display { font-family: "Manrope", "Segoe UI", sans-serif; text-wrap: balance; }
h1 { font-weight: 800; letter-spacing: -.055em; }
h2 { font-weight: 750; letter-spacing: -.045em; }
h3, h4 { font-weight: 750; letter-spacing: -.025em; }
p { text-wrap: pretty; }
.eyebrow { font-weight: 800; letter-spacing: .18em; }
.lead { letter-spacing: -.012em; }

.btn {
  border-radius: 10px;
  min-height: 50px;
  padding-inline: 22px;
  font-weight: 750;
  transition: transform .28s var(--ease-ui), background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.99); }
.btn-primary { box-shadow: 0 12px 32px rgba(213,168,78,.18); }

.site-header { transition: background .32s ease, box-shadow .32s ease, color .32s ease, transform .35s var(--ease-premium); }
.site-header.scrolled, .site-header.inner-header { background: rgba(255,253,250,.92); border-bottom: 1px solid rgba(16,23,19,.07); }
.navbar { transition: min-height .3s var(--ease-ui); }
.site-header.scrolled .navbar { min-height: 76px; }
.desktop-nav a { letter-spacing: .075em; }
.desktop-nav a:not(.btn)::after { bottom: -9px; height: 1.5px; transition: right .28s var(--ease-premium); }

/* Real sliding hero: directional movement + restrained image drift */
.hero { isolation: isolate; background: #07110d; }
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to top, rgba(6,14,10,.34), transparent);
}
.hero-slide {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(8%,0,0) scale(1.015);
  will-change: transform, opacity;
  transition: transform 1.05s var(--ease-premium), opacity .82s ease, visibility 0s linear 1.05s;
  background-position: center center;
  z-index: 0;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0,0,0) scale(1);
  transition: transform 1.05s var(--ease-premium), opacity .82s ease, visibility 0s;
  z-index: 2;
}
.hero-slide.pre-enter-right { opacity: .28; visibility: visible; transform: translate3d(9%,0,0) scale(1.015); transition: none; z-index: 3; }
.hero-slide.pre-enter-left  { opacity: .28; visibility: visible; transform: translate3d(-9%,0,0) scale(1.015); transition: none; z-index: 3; }
.hero-slide.exit-left { opacity: 0; visibility: visible; transform: translate3d(-7%,0,0) scale(1.01); z-index: 1; }
.hero-slide.exit-right { opacity: 0; visibility: visible; transform: translate3d(7%,0,0) scale(1.01); z-index: 1; }
.hero-slide.active { animation: heroBackgroundDrift 7s ease-out both; }
@keyframes heroBackgroundDrift {
  from { background-position: 52% center; }
  to { background-position: 48% center; }
}
.hero-copy { max-width: 820px; }
.hero-copy h1 { max-width: 920px; }
.hero-slide.active .hero-copy > * { animation: heroTextIn .76s var(--ease-premium) both; }
.hero-slide.active .hero-copy > :nth-child(2) { animation-delay: .08s; }
.hero-slide.active .hero-copy > :nth-child(3) { animation-delay: .14s; }
.hero-slide.active .hero-copy > :nth-child(4) { animation-delay: .2s; }
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-controls { bottom: 34px; }
.hero-dot {
  position: relative;
  width: 46px;
  height: 3px;
  background: rgba(255,255,255,.32);
}
.hero-dot.active { background: rgba(255,255,255,.32); }
.hero-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}
.hero-dot.active::after { animation: heroProgress 6.2s linear forwards; }
.hero.is-paused .hero-dot.active::after { animation-play-state: paused; }
@keyframes heroProgress { to { transform: scaleX(1); } }
.hero-arrow {
  backdrop-filter: blur(12px);
  transition: transform .25s var(--ease-ui), background .25s ease, color .25s ease, border-color .25s ease;
}
.hero-arrow:hover { transform: translateY(-2px); }
.hero-scroll-cue {
  position: absolute;
  z-index: 5;
  right: max(20px, calc((100vw - var(--container))/2));
  bottom: 98px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.72);
  font-size: .69rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-scroll-cue::before {
  content: "";
  width: 38px;
  height: 1px;
  background: rgba(255,255,255,.48);
  animation: cuePulse 2.1s ease-in-out infinite;
}
@keyframes cuePulse { 50% { width: 58px; opacity: .55; } }

/* Section entrances are intentionally small and one-shot. */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease-premium), transform .75s var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
}
.js-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js-ready .reveal.reveal-left { transform: translateX(-24px); }
.js-ready .reveal.reveal-left.is-visible { transform: translateX(0); }
.js-ready .reveal.reveal-right { transform: translateX(24px); }
.js-ready .reveal.reveal-right.is-visible { transform: translateX(0); }

/* More deliberate card interaction — light, not game-like. */
.category-card, .experience-card, .news-card, .process-card, .stat-card, .partner-level, .category-detail {
  transition: transform .32s var(--ease-premium), box-shadow .32s ease, border-color .32s ease, background .32s ease;
}
.category-card:hover, .experience-card:hover, .news-card:hover, .process-card:hover, .stat-card:hover, .category-detail:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(16,23,19,.09);
}
.category-card::after, .experience-card::after, .news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(260px circle at var(--mx,50%) var(--my,50%), rgba(213,168,78,.10), transparent 62%);
  transition: opacity .3s ease;
}
.category-card:hover::after, .experience-card:hover::after, .news-card:hover::after { opacity: 1; }
.experience-card, .news-card { position: relative; overflow: hidden; }

.intro-badge strong, .value-card h3, .magazine-copy .tagline, .news-card h3,
.stat-card strong, .form-aside h3, .form-section h3 { font-family: "Manrope", "Segoe UI", sans-serif; }
.intro-badge strong, .value-card h3, .news-card h3, .form-aside h3, .form-section h3 { font-weight: 750; letter-spacing: -.025em; }
.stat-card strong { font-weight: 800; letter-spacing: -.055em; }
.magazine-copy .tagline { font-weight: 650; letter-spacing: -.03em; }

/* A slimmer progress line quietly shows scroll depth. */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 1000;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
  will-change: transform;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(10,18,15,.93);
  color: #fff;
  box-shadow: 0 14px 35px rgba(5,12,9,.18);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s var(--ease-ui), background .25s ease;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--green-dark); transform: translateY(-2px); }

.filter-count { margin-left: auto; color: var(--muted); font-size: .79rem; font-weight: 700; white-space: nowrap; }

@media (max-width: 1020px) {
  :root { --header-h: 76px; }
  .site-header.scrolled .navbar { min-height: 74px; }
  .mobile-panel { transition: transform .42s var(--ease-premium); }
  .mobile-panel a { transition: color .2s ease, transform .25s var(--ease-ui); }
  .mobile-panel a:hover { color: var(--gold); transform: translateX(5px); }
  .hero-scroll-cue { display: none; }
}

@media (max-width: 720px) {
  .hero-slide { transform: translate3d(11%,0,0) scale(1.01); }
  .hero-slide.pre-enter-right { transform: translate3d(13%,0,0) scale(1.01); }
  .hero-slide.pre-enter-left { transform: translate3d(-13%,0,0) scale(1.01); }
  .hero-slide.exit-left { transform: translate3d(-11%,0,0) scale(1.01); }
  .hero-slide.exit-right { transform: translate3d(11%,0,0) scale(1.01); }
  .hero-copy h1 { letter-spacing: -.05em; }
  .hero-controls { bottom: 26px; }
  .hero-dot { width: 34px; }
  .back-to-top { right: 14px; bottom: 14px; }
  .filter-count { width: 100%; margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-slide.active, .hero-slide.pre-enter-right, .hero-slide.pre-enter-left,
  .hero-slide.exit-left, .hero-slide.exit-right { transform: none !important; animation: none !important; }
  .hero-slide.active .hero-copy > *, .hero-dot.active::after, .hero-scroll-cue::before { animation: none !important; }
  .hero-dot.active::after { transform: scaleX(1); }
  .js-ready .reveal, .js-ready .reveal.reveal-left, .js-ready .reveal.reveal-right { opacity: 1; transform: none; }
}

/* =========================================================
   V3 refinement — content-first inner pages, reliable hero
   autoplay support, quieter type scale and partner band.
   ========================================================= */

:root {
  --section-space: 80px;
  --section-space-sm: 58px;
}

.section { padding: var(--section-space) 0; }
.section-sm { padding: var(--section-space-sm) 0; }

/* A more editorial type scale: confident without taking over the page. */
h1 { font-size: clamp(2.35rem, 5vw, 4.5rem); line-height: 1.01; }
h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1.1; }
.lead { font-size: clamp(1rem, 1.35vw, 1.14rem); line-height: 1.72; }

/* Homepage remains expressive, but does not overwhelm smaller laptops. */
.hero { min-height: 640px; height: min(82vh, 820px); }
.hero-copy { max-width: 760px; }
.hero-copy h1 { font-size: clamp(2.8rem, 5.8vw, 5rem); max-width: 840px; margin-bottom: 20px; }
.hero-copy p { max-width: 660px; font-size: clamp(.98rem, 1.35vw, 1.12rem); }
.hero-content { padding-top: 76px; }
.hero-controls { bottom: 28px; }
.hero-dot.active::after { animation-duration: 5.6s; }

/* Inner pages are intentionally compact: the page content should appear quickly. */
.page-hero {
  padding: 136px 0 52px;
  min-height: 0;
  background:
    radial-gradient(circle at 86% 20%, rgba(213,168,78,.13), transparent 24%),
    linear-gradient(135deg, #0b1711 0%, #123426 62%, #173d2e 100%);
}
.page-hero::after {
  right: -160px;
  bottom: -250px;
  width: 430px;
  height: 430px;
  opacity: .7;
}
.page-hero .container { max-width: 1140px; }
.page-hero .breadcrumb { margin-bottom: 15px; font-size: .75rem; }
.page-hero .eyebrow { margin-bottom: 8px; }
.page-hero h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(.95rem, 1.25vw, 1.04rem);
  line-height: 1.65;
}
.page-hero + main > .section:first-child { padding-top: 58px; }

/* Keep content cards informative and proportional. */
.stat-card strong { font-size: clamp(1.9rem, 3vw, 2.3rem); }
.form-aside h3 { font-size: 1.55rem; }
.form-section h3 { font-size: 1.35rem; }
.news-card h3 { font-size: 1.22rem; }
.article h2 { font-size: clamp(1.65rem, 2.6vw, 2.35rem); }
.contact-title { font-size: clamp(1.65rem, 2.8vw, 2.05rem); }

/* Slightly softer content movement throughout the site. */
.js-ready .reveal {
  transform: translateY(16px);
  transition-duration: .68s;
}
.category-card:hover,
.experience-card:hover,
.news-card:hover,
.process-card:hover,
.stat-card:hover,
.category-detail:hover { transform: translateY(-4px); }

/* Partner area used consistently immediately before the footer. */
.partner-band {
  position: relative;
  padding: 66px 0 62px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #f5f0e7;
}
.partner-band::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -190px;
  top: -210px;
  border: 1px solid rgba(168,118,39,.18);
  transform: rotate(45deg);
  pointer-events: none;
}
.partner-band-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}
.partner-band-copy { max-width: 720px; }
.partner-band h2 {
  max-width: 680px;
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}
.partner-band-copy > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
}
.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.partner-logo-card {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid #dcd3c4;
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  transition: transform .28s var(--ease-premium), border-color .28s ease, background .28s ease;
}
.partner-logo-card:hover {
  transform: translateY(-3px);
  border-color: #c9b68f;
  background: #fff;
}
.partner-logo-card span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.partner-logo-card strong {
  color: #887f71;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
}

/* Footer follows the partner band without an oversized visual break. */
.site-footer { padding-top: 58px; }

@media (max-width: 1020px) {
  .hero { min-height: 620px; height: min(80vh, 760px); }
  .page-hero { padding: 118px 0 46px; }
  .partner-band-head { grid-template-columns: 1fr; align-items: start; }
  .partner-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  :root { --section-space: 58px; --section-space-sm: 46px; }
  h1 { font-size: clamp(2.05rem, 10vw, 3.1rem); }
  h2 { font-size: clamp(1.7rem, 8vw, 2.35rem); }

  .hero { min-height: 610px; height: 84svh; max-height: 760px; }
  .hero-content { padding-top: 68px; padding-bottom: 104px; }
  .hero-copy h1 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .hero-copy p { font-size: .98rem; }
  .hero-controls { bottom: 22px; }

  .page-hero { padding: 104px 0 36px; }
  .page-hero::after { width: 300px; height: 300px; right: -180px; bottom: -210px; }
  .page-hero .breadcrumb { margin-bottom: 11px; }
  .page-hero h1 { font-size: clamp(1.95rem, 9vw, 2.75rem); margin-bottom: 10px; max-width: 100%; }
  .page-hero p:not(.eyebrow) { font-size: .94rem; line-height: 1.58; }
  .page-hero + main > .section:first-child { padding-top: 42px; }

  .status-panel { padding: 30px 22px; }
  .partner-band { padding: 52px 0 48px; }
  .partner-band-head { gap: 22px; margin-bottom: 22px; }
  .partner-band-head .btn { width: fit-content; }
  .partner-logo-grid { grid-template-columns: 1fr 1fr; }
  .partner-logo-card { min-height: 94px; padding: 15px; }
}

@media (max-width: 460px) {
  .partner-logo-grid { grid-template-columns: 1fr; }
  .partner-band-head .btn { width: 100%; }
}

/* Keep inner-page decoration secondary to the information itself. */
.page-hero.pattern-band::after {
  inset: 0;
  width: auto;
  height: auto;
  right: 0;
  bottom: 0;
  border: 0;
  transform: none;
  opacity: .045;
  background-image:
    linear-gradient(115deg, transparent 0 72%, rgba(213,168,78,.5) 72% 72.4%, transparent 72.4% 100%),
    linear-gradient(115deg, transparent 0 82%, rgba(255,255,255,.45) 82% 82.25%, transparent 82.25% 100%);
  background-size: auto;
}
