/* ===== Tokens ===== */
:root {
  --red: #ED1C24;
  --red-dark: #B30F14;
  --red-light: #F04C51;
  --ink-950: #111010;
  --ink-900: #141011;
  --ink-800: #1B1516;
  --ink-700: #221F20;
  --ink-600: #241A1B;
  --ink-500: #383435;
  --gray-400: #9CA3AF;
  --gray-200: #E5E7EB;
  --white: #FFFFFF;
  --font-head: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container: 1180px;
  --radius: 18px;
  --shadow-soft: 0 20px 45px -20px rgba(17, 16, 16, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
ul { list-style: none; margin: 0; padding: 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--red); color: #fff;
  padding: 12px 18px; z-index: 200; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 999px; font-weight: 700; font-family: var(--font-head);
  font-size: 0.95rem; transition: all .25s ease; border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 12px 24px -10px rgba(237,28,36,.55); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-lg { padding: 15px 30px; font-size: 1rem; }

/* ===== Header ===== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(20, 16, 17, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -15px rgba(0,0,0,.5);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-badge { width: 40px; height: 40px; border-radius: 10px; }
.brand-text { display: flex; flex-direction: column; color: #fff; line-height: 1.2; }
.brand-text strong { font-family: var(--font-head); font-size: 1.05rem; }
.brand-text small { color: var(--gray-400); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  color: #fff; font-weight: 600; font-size: .93rem; opacity: .85; position: relative; padding: 4px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px; background: var(--red);
  transition: right .25s ease;
}
.main-nav a:hover { opacity: 1; }
.main-nav a:hover::after { right: 0; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 0 auto; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: radial-gradient(120% 100% at 85% 0%, #241a1b 0%, var(--ink-900) 45%, var(--ink-950) 100%);
  overflow: hidden; padding: 140px 0 90px;
}
.hero-glow {
  position: absolute; inset: -20% -10% auto auto; width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(237,28,36,.35) 0%, rgba(237,28,36,0) 70%);
  filter: blur(10px); pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; color: #fff; background: rgba(237,28,36,.15);
  border: 1px solid rgba(237,28,36,.4); padding: 8px 16px 8px 8px; border-radius: 999px;
  font-size: .82rem; font-weight: 700; letter-spacing: .02em; margin-bottom: 24px;
}
.eyebrow-logo { width: 22px; height: 22px; border-radius: 6px; }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 5vw, 4.2rem); margin-bottom: .2em; }
.hero-role { color: var(--red-light); font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; margin-bottom: 18px; }
.hero-desc { color: var(--gray-200); font-size: 1.08rem; max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-motto { color: var(--gray-400); font-style: italic; font-size: .95rem; margin: 0; }

.hero-media { display: flex; justify-content: center; }
.hero-frame {
  position: relative; width: min(100%, 380px); aspect-ratio: 1/1.05; border-radius: 28px; overflow: hidden;
  border: 3px solid rgba(237,28,36,.5); box-shadow: 0 30px 60px -20px rgba(0,0,0,.6), 0 0 0 12px rgba(255,255,255,.03);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  width: 28px; height: 44px; border: 2px solid rgba(255,255,255,.4); border-radius: 20px; z-index: 2;
}
.scroll-cue span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--red); border-radius: 2px; animation: scrollcue 1.6s infinite;
}
@keyframes scrollcue { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 22px; } }

/* ===== Sections ===== */
.section { padding: 110px 0; }
.section-alt { background: #FAFAFA; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.kicker {
  display: inline-block; color: var(--red); font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  font-size: .8rem; margin-bottom: 14px;
}
.kicker-light { color: var(--red-light); }
.section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.section-sub { color: var(--ink-500); font-size: 1.05rem; }
.section-sub.light { color: var(--gray-400); }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.about-media { position: relative; }
.about-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.about-photo img { aspect-ratio: 4/5; object-fit: cover; }
.about-quote {
  position: absolute; left: -30px; bottom: -30px; background: var(--red); color: #fff; padding: 24px 26px;
  border-radius: 16px; max-width: 280px; box-shadow: 0 20px 40px -14px rgba(237,28,36,.5);
}
.about-quote p { margin: 0; font-family: var(--font-head); font-weight: 700; font-size: 1rem; }
.about-copy p { color: var(--ink-500); font-size: 1.05rem; }
.about-copy strong { color: var(--red-dark); }
.value-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.value-list li span {
  display: inline-block; padding: 9px 18px; border-radius: 999px; background: #F3EDED;
  color: var(--ink-700); font-weight: 700; font-size: .88rem;
}

/* ===== Roles ===== */
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.role-card {
  background: #fff; border: 1px solid #EFEAEA; border-radius: var(--radius); padding: 34px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.role-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(237,28,36,.3); }
.role-icon {
  width: 56px; height: 56px; border-radius: 14px; background: rgba(237,28,36,.1); display: flex;
  align-items: center; justify-content: center; color: var(--red); margin-bottom: 20px;
}
.role-icon svg { width: 26px; height: 26px; }
.role-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.role-card p { color: var(--ink-500); font-size: .92rem; margin: 0; }

/* ===== News ===== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.news-card { border-radius: var(--radius); overflow: hidden; border: 1px solid #EFEAEA; background: #fff; }
.news-thumb {
  height: 170px; background: linear-gradient(135deg, var(--ink-700), var(--ink-900));
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45);
}
.news-thumb svg { width: 44px; height: 44px; }
.news-body { padding: 24px; }
.news-date { color: var(--red); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.news-body h3 { font-size: 1.05rem; margin: 10px 0; }
.news-body p { color: var(--ink-500); font-size: .92rem; margin: 0; }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; gap: 18px; }
.gallery-item { border-radius: 14px; overflow: hidden; background: #EFEAEA; display: flex; align-items: center; justify-content: center; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.featured { grid-column: span 2; grid-row: span 2; }
.gallery-item.placeholder { color: var(--ink-500); opacity: .5; }
.gallery-item.placeholder svg { width: 30px; height: 30px; }

/* ===== Contact ===== */
.contact-section {
  background: radial-gradient(120% 100% at 15% 0%, #241a1b 0%, var(--ink-900) 45%, var(--ink-950) 100%);
  color: #fff;
}
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.contact-info h2 { color: #fff; }
.contact-list { margin: 30px 0; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; flex-direction: column; gap: 4px; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 14px; }
.contact-list strong { color: var(--red-light); font-family: var(--font-head); font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }
.contact-list span { color: var(--gray-200); font-size: 1.02rem; }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .8rem;
  transition: all .2s ease;
}
.social-row a:hover { background: var(--red); border-color: var(--red); }

.contact-form { background: #fff; border-radius: var(--radius); padding: 40px; color: var(--ink-800); box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-weight: 600; font-size: .88rem; margin-bottom: 18px; color: var(--ink-700); }
.contact-form input, .contact-form textarea {
  font-family: var(--font-body); border: 1px solid #E3DEDE; border-radius: 10px; padding: 12px 14px;
  font-size: .95rem; resize: vertical; transition: border-color .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--red); }
.form-note { font-size: .8rem; color: var(--ink-500); margin: 6px 0 0; }

/* ===== Footer ===== */
.site-footer { background: var(--ink-950); color: var(--gray-400); padding: 56px 0 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong { color: #fff; font-family: var(--font-head); display: block; }
.footer-brand p { margin: 2px 0 0; font-size: .85rem; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: .88rem; font-weight: 600; opacity: .8; }
.footer-nav a:hover { opacity: 1; color: var(--red-light); }
.footer-bottom { display: flex; justify-content: space-between; padding: 24px 0; font-size: .82rem; flex-wrap: wrap; gap: 10px; }
.footer-motto { font-style: italic; }

/* ===== Reveal animation (progressive enhancement: hidden only once JS confirms it can reveal) ===== */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .role-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.featured { grid-column: span 2; }
  .about-quote { position: static; margin-top: 20px; max-width: none; }
  .form-row { grid-template-columns: 1fr; }

  .site-header.mobile-open .main-nav {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink-900); padding: 20px 24px 30px; gap: 18px;
  }
}
@media (max-width: 600px) {
  .role-grid { grid-template-columns: 1fr; }
  .header-cta .btn-primary { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
