:root {
  /* Public site — dark/luxury theme */
  --bg: #1c1c1f;
  --bg-alt: #26262a;
  --surface: #2c2c30;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.17);
  --text: #f2f0ec;
  --text-muted: #a9a6a0;
  --text-faint: #86837c;
  --accent: #e6dcc2;
  --accent-ink: #1c1c1f;

  /* Legacy tokens — kept for the admin dashboard, do not repurpose */
  --ink: #1a1a1a;
  --gray: #6b6b6b;
  --gray-light: #9a9a9a;
  --border: #e2e2e2;
  --white: #ffffff;
  --muted-bg: #f5f5f5;
  --cream: #e6dcc2;
  --cream-dark: #ddcf9f;
  --cream-text: #5c5648;
  --font-body: 'Work Sans', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); font-size: 16px; line-height: 1.6; }

/* Scroll-reveal (JS adds .reveal on load, .is-visible when scrolled into view) */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
h1, h2, h3 { margin: 0; font-weight: 700; color: var(--text); }
p { margin: 0 0 1rem; color: var(--text-muted); font-weight: 400; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1260px; margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: 760px; }

/* Utility bar */
.utility-bar { background: var(--bg-alt); font-size: 12px; color: var(--text-faint); border-bottom: 1px solid var(--line); }
.utility-inner { display: flex; justify-content: flex-end; gap: 28px; padding: 10px 40px; }
.utility-inner a { transition: color 0.25s ease; }
.utility-inner a:hover { color: var(--accent); }

/* Header */
.site-header { border-bottom: 1px solid var(--line); background: rgba(28, 28, 31, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); position: sticky; top: 0; z-index: 100; transition: box-shadow 0.3s ease, border-color 0.3s ease; }
.site-header.is-scrolled { box-shadow: 0 12px 30px rgba(0,0,0,0.35); border-color: var(--line-strong); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.site-logo { display: flex; align-items: center; gap: 12px; }
.logo-text { font-weight: 700; font-size: 19px; letter-spacing: 0.5px; color: var(--text); }
.logo-image { max-height: 40px; }
.site-nav ul { list-style: none; display: flex; gap: 38px; margin: 0; padding: 0; }
.site-nav a { font-size: 14px; font-weight: 600; color: var(--text-muted); position: relative; padding-bottom: 4px; transition: color 0.25s ease; }
.site-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.4px; background: var(--accent); transition: right 0.3s cubic-bezier(.2,.7,.3,1); }
.site-nav a.active, .site-nav a:hover { color: var(--text); }
.site-nav a.active::after, .site-nav a:hover::after { right: 0; }
.nav-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text); }

/* Buttons */
.btn { display: inline-block; padding: 13px 28px; font-size: 13.5px; font-weight: 600; letter-spacing: 0.3px; border: 1.4px solid var(--text); border-radius: 3px; cursor: pointer; transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.btn-outline { background: transparent; color: var(--text); }
.btn-outline:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(230, 220, 194, 0.22); }
.btn-solid { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(230, 220, 194, 0.3); }
.link-arrow { font-size: 13.5px; font-weight: 600; color: var(--accent); border-bottom: 1.2px solid rgba(230, 220, 194, 0.4); padding-bottom: 2px; white-space: nowrap; display: inline-block; transition: transform 0.25s ease, opacity 0.25s ease; }
.link-arrow:hover { transform: translateX(3px); opacity: 0.8; }

/* Hero */
.hero { padding: 150px 0 110px; position: relative; overflow: hidden; isolation: isolate; }
.hero-flex { display: flex; align-items: center; gap: 70px; }
.hero-logo { flex-shrink: 0; max-width: 300px; }
.hero-logo img { width: 100%; height: auto; }
.hero-inner { max-width: 640px; flex: 1; min-width: 0; position: relative; z-index: 1; }
.hero-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hero h1 { font-size: 46px; line-height: 1.22; margin-bottom: 30px; letter-spacing: -0.8px; }
.btn-arrow { display: inline-block; margin-left: 8px; transition: transform 0.25s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Stats bar */
.stats-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat-item { padding: 44px 0; text-align: center; border-right: 1px solid var(--line); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 32px; font-weight: 700; letter-spacing: -0.5px; font-variant-numeric: tabular-nums; color: var(--text); }
.stat-label { font-size: 12px; font-weight: 500; letter-spacing: 0.4px; color: var(--text-faint); margin-top: 8px; text-transform: uppercase; }

/* Section layout */
.section { padding: 90px 0; }
.section--news { background: var(--bg-alt); border-top: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 48px; flex-wrap: wrap; }
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 14px; text-transform: uppercase; }
.section h2 { font-size: 28px; }
.section-intro { font-size: 14.5px; max-width: 380px; text-align: right; line-height: 1.8; color: var(--text-muted); }

/* Brands grid */
.brand-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.brand-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 6px; padding: 36px 32px; background: var(--surface); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.brand-card:not(.brand-card--placeholder):hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,0.4); border-color: rgba(230, 220, 194, 0.3); }
.brand-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(230, 220, 194, 0.13), transparent 65%); opacity: 0; transition: opacity 0.35s ease; pointer-events: none; }
.brand-card:not(.brand-card--placeholder):hover::before { opacity: 1; }
.brand-card--placeholder { color: var(--text-faint); background: rgba(255,255,255,0.015); border-color: var(--line-strong); border-style: dashed; }
.brand-logo { position: relative; width: 56px; height: 56px; background: var(--accent); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 20px; overflow: hidden; border-radius: 5px; padding: 8px; transition: transform 0.3s ease; }
.brand-card:not(.brand-card--placeholder):hover .brand-logo { transform: scale(1.08); }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-logo--dashed { background: none; border: 1.4px dashed var(--line-strong); color: var(--text-faint); }
.brand-name { position: relative; font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.brand-category { position: relative; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-faint); margin-bottom: 10px; }
.brand-card p { position: relative; font-size: 13.5px; line-height: 1.8; margin-bottom: 16px; }
.brand-card .link-arrow { position: relative; }

/* News */
.news-list { border-top: 1px solid var(--line); }
.news-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 14px; margin: 0 -14px; border-bottom: 1px solid var(--line); transition: padding-left 0.3s ease, background 0.3s ease; }
.news-row:hover { padding-left: 24px; background: var(--surface); }
.news-row-title { font-size: 15px; font-weight: 600; color: var(--text); }
.news-row-date { font-size: 13px; color: var(--text-faint); white-space: nowrap; }
.news-list--full .news-row { align-items: flex-start; }
.news-row-thumb { width: 120px; height: 90px; object-fit: cover; flex-shrink: 0; background: var(--surface); border-radius: 4px; }
.news-row-body { flex: 1; }
.news-row-meta { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; color: var(--accent); margin-bottom: 8px; }
.news-row-excerpt { font-size: 13.5px; color: var(--text-muted); margin-top: 6px; }
.news-single-image { width: 100%; margin-bottom: 32px; border-radius: 6px; }

/* Leadership — one stacked list, all circular photos */
.intro-text { font-size: 15.5px; line-height: 1.8; color: var(--text-muted); max-width: 520px; margin: 0 auto; }
.people-list { padding: 20px 0 30px; }

.person-row { display: flex; align-items: center; gap: 30px; padding: 30px 20px; margin: 0 -20px; border-bottom: 1px solid var(--line); border-radius: 8px; transition: background 0.3s ease; }
.person-row:first-child { padding-top: 10px; }
.person-row:hover { background: var(--bg-alt); }

.person-avatar { position: relative; flex-shrink: 0; border-radius: 50%; overflow: hidden; background: var(--surface); transition: box-shadow 0.3s ease; }
.person-row:hover .person-avatar { box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px rgba(230, 220, 194, 0.4); }
.person-avatar img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; cursor: zoom-in; }
.person-row:hover .person-avatar img { transform: scale(1.06); }
.avatar-empty { width: 100%; height: 100%; display: flex; align-items: flex-end; justify-content: center; }
.avatar-empty svg { width: 55%; height: 76%; opacity: 0.45; }

.person-row--lead .person-avatar { width: 116px; height: 116px; }
.person-row--exec .person-avatar { width: 84px; height: 84px; }
.person-row--wide .person-avatar { width: 64px; height: 64px; }

.person-info { flex: 1; min-width: 0; }
.person-role { font-size: 11.5px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.person-name { font-weight: 700; color: var(--text); }
.person-row--lead .person-name { font-size: 24px; margin-bottom: 10px; }
.person-row--exec .person-name { font-size: 17px; margin-bottom: 3px; }
.person-row--wide .person-name { font-size: 14.5px; margin-bottom: 2px; }
.person-title { color: var(--text-faint); font-size: 12.5px; letter-spacing: 0.3px; }
.person-quote { font-size: 15.5px; line-height: 1.8; color: var(--text-muted); font-weight: 300; max-width: 560px; margin: 4px 0 0; }

.contact-row { display: flex; gap: 10px; margin-top: 10px; }
.contact-pill { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--surface); color: var(--text-muted); border: 1px solid var(--line); transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease; }
.contact-pill:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); transform: translateY(-2px); }
.person-row--lead .contact-pill { width: 36px; height: 36px; }

/* Lightbox */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.88); display: flex; align-items: center; justify-content: center; z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; cursor: zoom-out; }
.lightbox-overlay.is-open { opacity: 1; pointer-events: auto; }
.lightbox-overlay img { max-width: 90vw; max-height: 85vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }

.list-divider { display: flex; align-items: center; gap: 16px; margin: 46px 0 6px; color: var(--text-faint); font-size: 11.5px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; }
.list-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }

@media (max-width: 640px) {
  .person-row { flex-direction: column; text-align: center; gap: 16px; }
}

/* Mission strip */
.mission-strip { padding: 100px 0; text-align: center; background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mission-strip p { font-size: 22px; font-weight: 500; color: var(--text); line-height: 1.7; max-width: 760px; margin: 0 auto; }

/* Page header (inner pages) */
.page-header { padding: 90px 0 60px; border-bottom: 1px solid var(--line); }
.page-header h1 { font-size: 34px; margin-bottom: 14px; }
.lede { font-size: 16px; line-height: 1.9; color: var(--text-muted); }

/* Footer */
.site-footer { background: var(--bg-alt); color: var(--text); border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; padding: 64px 40px 36px; border-bottom: 1px solid var(--line); }
.footer-col h4 { font-size: 12px; letter-spacing: 1px; margin-bottom: 14px; text-transform: uppercase; color: var(--accent); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col p { color: var(--text-muted); font-size: 13.5px; }
.footer-col a:hover { color: var(--accent); }
.footer-col .logo-text { color: var(--text); }
.contact-line { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: var(--text-muted); font-size: 13.5px; }
.contact-line a:hover { color: var(--accent); }
.contact-icon { display: flex; }
.footer-socials { display: flex; gap: 14px; margin-top: 16px; }
.social-icon { width: 32px; height: 32px; border: 1px solid var(--line-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease; }
.social-icon:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); transform: translateY(-3px); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 22px 40px; font-size: 12px; color: var(--text-faint); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: var(--accent); }

/* Contact form */
.contact-form { margin-top: 20px; }
.form-row { display: flex; gap: 20px; }
.form-row .form-field { flex: 1; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-field input, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line-strong); background: var(--surface); color: var(--text); font-family: inherit; font-size: 14px; border-radius: 3px;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); }
.form-notice { background: rgba(60, 90, 50, 0.25); color: #b7d6a8; padding: 16px 20px; border: 1px solid rgba(60, 90, 50, 0.4); border-radius: 4px; }
.form-error { background: rgba(138, 59, 47, 0.2); color: #e3a99a; padding: 16px 20px; margin-bottom: 20px; border: 1px solid rgba(138, 59, 47, 0.4); border-radius: 4px; }

@media (max-width: 900px) {
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-top: 1px solid var(--line); }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav a { display: block; padding: 16px 40px; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .header-inner { position: relative; }
  .brand-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .section-intro { text-align: left; }
  .form-row { flex-direction: column; }
  .hero-flex { flex-direction: column; align-items: flex-start; gap: 36px; }
  .hero-logo { max-width: 180px; }
}

/* ---------- Admin ---------- */
.admin-body { background: #ebe9e4; font-family: var(--font-body); }
.admin-topbar { background: var(--ink); color: var(--white); padding: 18px 32px; display: flex; justify-content: space-between; align-items: center; border-bottom: 3px solid var(--cream); }
.admin-topbar a { color: rgba(255,255,255,0.8); text-decoration: none; margin-left: 20px; font-size: 0.9rem; transition: color 0.2s ease; }
.admin-topbar a:hover { color: var(--cream); }
.admin-layout { display: flex; max-width: 1200px; margin: 0 auto; }
.admin-sidebar { width: 200px; padding: 32px 16px; position: sticky; top: 0; align-self: flex-start; }
.admin-sidebar a { display: block; padding: 10px 12px; color: var(--ink); text-decoration: none; border-radius: 6px; font-size: 0.92rem; font-weight: 500; margin-bottom: 4px; transition: background 0.2s ease; }
.admin-sidebar a:hover { background: var(--cream); }
.admin-content { flex: 1; padding: 32px; }
.admin-card { background: #fff; border: 1px solid #ddd9d0; border-radius: 10px; padding: 28px; margin-bottom: 32px; box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 10px 30px rgba(0,0,0,0.05); }
.admin-card h2 { margin-top: 0; font-size: 1.3rem; color: var(--ink); padding-bottom: 14px; border-bottom: 2px solid var(--cream); }
.admin-card h3 { color: var(--ink); font-size: 1.05rem; margin: 28px 0 14px; }
.admin-card p { color: #55524b; }
.admin-field { margin-bottom: 18px; }
.admin-field label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; color: #3a3730; }
.admin-field input[type=text], .admin-field input[type=password], .admin-field input[type=email], .admin-field textarea, .admin-field input[type=file], .admin-field select {
  width: 100%; padding: 10px 12px; border: 1.4px solid #ddd9d0; border-radius: 6px; font-size: 0.95rem; font-family: inherit; background: #fdfcfa; transition: border-color 0.2s ease;
}
.admin-field input[type=text]:focus, .admin-field input[type=password]:focus, .admin-field input[type=email]:focus, .admin-field textarea:focus, .admin-field select:focus {
  outline: none; border-color: var(--cream-dark);
}
.admin-row { display: flex; gap: 16px; }
.admin-row .admin-field { flex: 1; }
.admin-btn { display: inline-block; background: var(--cream); color: var(--ink); border: none; padding: 11px 24px; border-radius: 6px; font-size: 0.9rem; font-weight: 700; cursor: pointer; text-decoration: none; transition: background 0.2s ease, transform 0.2s ease; }
.admin-btn:hover { background: var(--cream-dark); color: var(--ink); transform: translateY(-1px); }
.admin-btn-danger { background: #c0392b; color: #fff; }
.admin-btn-danger:hover { background: #a5281c; color: #fff; }
.admin-btn-secondary { background: #efece5; color: var(--ink); }
.admin-btn-secondary:hover { background: #e2ddd1; }
.admin-notice { background: #e6f2df; color: #3c5a32; padding: 14px 18px; border-radius: 6px; margin-bottom: 24px; border: 1px solid #cfe4c3; }
.admin-error { background: #fbe9e4; color: #8a3b2f; padding: 14px 18px; border-radius: 6px; margin-bottom: 24px; border: 1px solid #f1c9bd; }
.item-row { display: flex; align-items: center; gap: 16px; padding: 12px 0; border-bottom: 1px solid #ece9e2; }
.item-row img { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; background: #ece9e2; }
.item-row .info { flex: 1; }
.item-row .info strong { display: block; }
.item-row .info span { color: var(--gray); font-size: 0.85rem; }
.admin-login-wrap { max-width: 380px; margin: 80px auto; }
