:root {
  --paper: #ffffff;
  --bg: #f7f7f7;
  --soft: #f0efe9;
  --ink: #15233f;        /* CAMEUZIK navy */
  --ink-2: #1d3052;
  --muted: #5b6472;
  --cream: #f3ead4;
  --gold: #e0a51e;
  --gold-2: #f6c33c;
  --line: #e4e4e8;
  --sh-sm: 0 6px 20px rgba(21, 35, 63, 0.08);
  --sh: 0 24px 60px rgba(21, 35, 63, 0.16);
  --max: 1140px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { margin: 0; }
img { max-width: 100%; display: block; }

.skip { position: absolute; left: 50%; top: -3rem; transform: translateX(-50%); z-index: 80; padding: 0.6rem 1rem; background: var(--ink); color: #fff; border-radius: 0 0 8px 8px; font-weight: 800; transition: top 0.2s; }
.skip:focus { top: 0; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; min-height: 46px; padding: 0 1.3rem; border: 1px solid transparent; border-radius: 999px; font-weight: 800; cursor: pointer; transition: transform 0.14s, background 0.14s, box-shadow 0.14s; }
.btn-navy { background: var(--ink); color: #fff; box-shadow: var(--sh-sm); }
.btn-navy:hover { transform: translateY(-1px); background: var(--ink-2); }
.btn-gold { background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #2a1d00; box-shadow: 0 10px 24px rgba(224, 165, 30, 0.3); }
.btn-gold:hover { transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { min-height: 54px; padding: 0 1.8rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 40; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 5vw; background: rgba(255, 255, 255, 0.88); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.brand img { height: 46px; width: auto; border-radius: 8px; }
.nav-links { display: flex; gap: clamp(0.8rem, 2.5vw, 2rem); color: var(--muted); font-weight: 600; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { white-space: nowrap; }

/* Hero */
.hero { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; max-width: var(--max); margin: 0 auto; padding: clamp(3rem, 7vw, 6rem) 5vw; }
.eyebrow { margin-bottom: 0.8rem; color: var(--gold); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.3rem); line-height: 1.02; letter-spacing: -0.02em; font-weight: 900; }
.hero-sub { max-width: 46ch; margin-top: 1.2rem; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
.hero-art img { width: 100%; border-radius: 20px; box-shadow: var(--sh); }

/* Featured subsite banner */
.feature-banner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; max-width: var(--max); margin: 0 auto clamp(2rem, 5vw, 4rem); padding: clamp(1.8rem, 4vw, 3rem); background: linear-gradient(120deg, var(--ink), var(--ink-2)); color: #fff; border-radius: 24px; box-shadow: var(--sh); }
.fb-kicker { color: var(--gold-2); font-weight: 900; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.6rem; }
.fb-text h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.05; margin-bottom: 0.7rem; }
.fb-text p { color: rgba(255, 255, 255, 0.82); margin-bottom: 1.4rem; }
.fb-media { position: relative; display: block; border-radius: 16px; overflow: hidden; box-shadow: var(--sh); }
.fb-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; transition: transform 0.3s; }
.fb-media:hover img { transform: scale(1.04); }
.fb-badge { position: absolute; left: 0.8rem; bottom: 0.8rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.7rem; background: rgba(0, 0, 0, 0.6); color: #fff; border-radius: 999px; font-size: 0.8rem; font-weight: 800; backdrop-filter: blur(6px); }
.fb-badge img { height: 22px; width: 22px; border-radius: 50%; }

/* Sections */
.section { max-width: var(--max); margin: 0 auto; padding: clamp(3.5rem, 8vw, 6rem) 5vw; }
.section.soft { max-width: none; background: var(--bg); }
.section.soft > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.head.center { margin-left: auto; margin-right: auto; text-align: center; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -0.015em; font-weight: 900; }
.lead { margin-top: 0.8rem; color: var(--muted); font-size: 1.12rem; }
.text-link { display: inline-block; margin-top: 1rem; color: var(--ink); font-weight: 800; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.text-link:hover { color: var(--gold); }

/* Split layout (About / Contact) */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); }
.split-head h2 { margin-top: 0.2rem; }
.split-body p { color: var(--muted); }
.split-body p + p { margin-top: 1rem; }
.split-body .lead { color: var(--ink); font-weight: 600; }

/* Cards */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.card { padding: 1.8rem 1.6rem; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--sh-sm); }
.card-ico { display: grid; place-items: center; width: 3rem; height: 3rem; margin-bottom: 1rem; border-radius: 14px; background: var(--cream); font-size: 1.5rem; }
.card h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.card p { color: var(--muted); }

/* Posts */
.post { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--sh-sm); }
.post-cover { height: 150px; background: linear-gradient(135deg, var(--c1), var(--c2)); }
.post-body { padding: 1.4rem 1.5rem 1.6rem; }
.post-tag { display: inline-block; margin-bottom: 0.6rem; padding: 0.25rem 0.6rem; background: var(--cream); color: var(--ink); border-radius: 999px; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.post h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.post p { color: var(--muted); }

/* Partners */
.partners { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; }
.partner { display: flex; align-items: center; gap: 0.8rem; padding: 1rem 1.4rem; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--sh-sm); font-weight: 800; }
.partner img { height: 46px; width: 46px; object-fit: contain; border-radius: 8px; }
.partner.cam img { width: auto; border-radius: 6px; }

.contact-email { margin-top: 1rem; font-weight: 800; }
.contact-email a { border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.contact-email a:hover { color: var(--gold); }

/* Contact form */
.contact-form { display: grid; gap: 0.9rem; }
.r2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.contact-form label { display: grid; gap: 0.35rem; font-size: 0.82rem; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.7rem 0.85rem; color: var(--ink); background: var(--bg); border: 1px solid var(--line); border-radius: 10px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: 3px solid rgba(224, 165, 30, 0.22); border-color: var(--gold); background: #fff; }
.form-note { min-height: 1.2rem; margin: 0; color: var(--gold); font-weight: 800; font-size: 0.9rem; }
.socials { display: flex; flex-wrap: wrap; gap: 1.2rem; margin: 1.4rem 0 0; padding: 0; list-style: none; }
.socials a { font-weight: 800; border-bottom: 2px solid var(--line); padding-bottom: 2px; }
.socials a:hover { border-color: var(--gold); color: var(--gold); }

/* Footer */
.footer { background: var(--ink); color: #fff; padding: clamp(2.5rem, 5vw, 3.5rem) 5vw 1.6rem; }
.footer-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem; max-width: var(--max); margin: 0 auto; padding-bottom: 1.6rem; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.footer-logo { height: 54px; width: auto; border-radius: 8px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; color: rgba(255, 255, 255, 0.82); font-weight: 700; }
.footer-links a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem; max-width: var(--max); margin: 1.2rem auto 0; color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }
.footer-legal a:hover { color: var(--gold-2); }

/* Responsive */
@media (max-width: 900px) {
  .hero, .feature-banner, .split { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .cards-3 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .r2 { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover, .fb-media:hover img { transform: none; }
}
