/* =============================================================
   Alexander Bennett — Personal Brand
   Design system: elegant, editorial, minimal.
   ============================================================= */

:root {
  --accent-light: #8a6a3b;
  --accent-dark: #c9a26b;
  --accent: var(--accent-light);
  --bg: #ffffff;
  --bg-soft: #f7f5f1;
  --surface: #ffffff;
  --surface-alt: #faf8f4;
  --text: #14141a;
  --text-soft: #4a4a55;
  --muted: #7a7a86;
  --border: rgba(20, 20, 26, 0.08);
  --border-strong: rgba(20, 20, 26, 0.14);
  --shadow-sm: 0 1px 2px rgba(20,20,26,.04), 0 1px 1px rgba(20,20,26,.03);
  --shadow-md: 0 20px 40px -24px rgba(20,20,26,.18), 0 2px 6px rgba(20,20,26,.04);
  --shadow-lg: 0 40px 80px -40px rgba(20,20,26,.28);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1240px;
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --serif: 'Fraunces', 'Times New Roman', Georgia, serif;
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: 320ms;
}

[data-theme="dark"] {
  --accent: var(--accent-dark);
  --bg: #0d0d0f;
  --bg-soft: #131317;
  --surface: #16161a;
  --surface-alt: #1b1b20;
  --text: #f2efe9;
  --text-soft: #b9b6ae;
  --muted: #8a8880;
  --border: rgba(242, 239, 233, 0.09);
  --border-strong: rgba(242, 239, 233, 0.16);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.35);
  --shadow-md: 0 20px 40px -24px rgba(0,0,0,.7);
  --shadow-lg: 0 40px 80px -40px rgba(0,0,0,.8);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: absolute; left: -9999px; top: 8px;
  background: var(--text); color: var(--bg);
  padding: 10px 14px; border-radius: 8px; z-index: 200;
}
.skip:focus { left: 12px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.015em; margin: 0; color: var(--text); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); font-weight: 500; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1em; color: var(--text-soft); }
.lead { font-size: 1.15rem; color: var(--text-soft); }

.eyebrow {
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent);
  display: inline-block;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px);box-sizing: border-box; }
section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
section.alt { background: var(--bg-soft); }
.section-head { max-width: 720px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--muted); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 500; font-size: .95rem; letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  will-change: transform;
}
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--text); transform: translateY(-2px); }
.btn-ghost { padding: 8px 0; border-radius: 0; color: var(--text); position: relative; }
.btn-ghost::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform-origin: right; transform: scaleX(1);
  transition: transform var(--dur) var(--ease);
}
.btn-ghost:hover::after { transform-origin: left; transform: scaleX(0); }
.text-link { color: var(--accent); font-weight: 500; position: relative; padding-bottom: 2px; }
.text-link::after {
  content:""; position:absolute; left:0; bottom:0; height:1px; width:100%;
  background: currentColor; transform: scaleX(.4); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.text-link:hover::after { transform: scaleX(1); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--border); }
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px clamp(20px, 4vw, 40px);
}
.brand { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; letter-spacing: -.01em; }
.brand em { font-style: normal; color: var(--accent); }
.nav ul { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav ul a { font-size: .92rem; color: var(--text-soft); position: relative; padding: 6px 0; transition: color var(--dur) var(--ease); }
.nav ul a::after {
  content:""; position:absolute; left:0; bottom:0; height:1px; width:100%;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
.nav ul a:hover { color: var(--text); }
.nav ul a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav ul a.active {
  color: var(--accent);
}

.nav ul a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav .header-cta { padding: 20px 30px; font-size: .88rem; }
.menu-btn {
  display: none; background: transparent; border: 1px solid var(--border-strong);
  width: 40px; height: 40px; border-radius: 999px; align-items: center; justify-content: center; color: var(--text);
}
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
  content: ""; display: block; width: 16px; height: 1.5px; background: currentColor; position: relative;
  transition: transform var(--dur) var(--ease), top var(--dur) var(--ease);
}
.menu-btn span::before { position: absolute; top: -5px; }
.menu-btn span::after { position: absolute; top: 5px; }
.nav.open .menu-btn span { background: transparent; }
.nav.open .menu-btn span::before { top: 0; transform: rotate(45deg); }
.nav.open .menu-btn span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .menu-btn { display: inline-flex; }
  .nav ul {
    position: absolute; inset: 100% 0 auto 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    flex-direction: column; gap: 0; padding: 12px 24px 20px;
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  }
  .nav ul li { padding: 10px 0; border-bottom: 1px solid var(--border); }
  .nav ul li:last-child { border-bottom: none; }
  .nav.open ul { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav .header-cta { display: none; }
}

/* ---------- Theme toggle ---------- */
.theme-toggle {
  position: fixed; bottom: 22px; right: 22px; z-index: 80;
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border-strong);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.theme-toggle:hover { transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero { padding: clamp(60px, 8vw, 110px) 0 clamp(72px, 10vw, 140px); }
.hero .grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.hero .eyebrow { margin-bottom: 20px; }
.hero h1 { margin-bottom: 22px; }
.hero .mission { font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, 1.6vw, 1.35rem); color: var(--text); margin-bottom: 20px; }
.hero .intro { color: var(--text-soft); max-width: 52ch; margin-bottom: 34px; font-size: 1.05rem; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .meta {
  margin-top: 44px; display: flex; gap: 30px; flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid var(--border);
}
.hero .meta span { font-size: .82rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.hero .meta strong { display: block; font-weight: 500; color: var(--text); margin-top: 4px; font-size: .95rem; text-transform: none; letter-spacing: 0; }

.portrait-wrap {
  position: relative; aspect-ratio: 4 / 5; max-width: 480px; justify-self: end; width: 100%;
}
.portrait-wrap img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.portrait-wrap::before {
  content: ""; position: absolute; inset: 24px -24px -24px 24px;
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  z-index: -1;
}

@media (max-width: 820px) {
  .hero .grid { grid-template-columns: 1fr; }
  .portrait-wrap { justify-self: start; max-width: 380px; }
  .portrait-wrap::before { inset: 16px -16px -16px 16px; }
}

/* ---------- About ---------- */
.about .grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.about .pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 40px; }
.about .pillar { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.about .pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.about .pillar h4 { font-family: var(--font); font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; color: var(--accent); margin-bottom: 10px; }
.about .pillar p { margin: 0; font-size: .95rem; }
.about .signature { margin-top: 34px; font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--text); }
@media (max-width: 820px) { .about .grid { grid-template-columns: 1fr; } .about .pillars { grid-template-columns: 1fr; } }

/* ---------- Journey timeline ---------- */
.timeline { position: relative; max-width: 820px; margin: 0 auto; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 1px; background: var(--border-strong); }
.timeline .item { position: relative; padding: 0 0 42px 32px; }
.timeline .item:last-child { padding-bottom: 0; }
.timeline .item::before {
  content: ""; position: absolute; left: -24px; top: 8px;
  width: 12px; height: 12px; border-radius: 999px;
  background: var(--bg); border: 1.5px solid var(--accent);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.timeline .item.active::before { background: var(--accent); transform: scale(1.15); }
.timeline .year { font-family: var(--serif); font-size: 1.15rem; color: var(--accent); margin-bottom: 4px; }
.timeline .item h3 { margin-bottom: 6px; }
.timeline .item p { margin: 0; color: var(--text-soft); }

/* ---------- Expertise / cards grid ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card .num { font-family: var(--serif); font-size: .95rem; color: var(--accent); margin-bottom: 18px; }
.card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.card p { margin: 0; font-size: .96rem; color: var(--text-soft); }

/* ---------- Ventures ---------- */
.ventures-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.venture {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.venture:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.venture .logo {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--bg-soft); border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.4rem; color: var(--accent);
}
.venture .industry { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.venture h3 { margin: 0; }
.venture .role { font-size: .88rem; color: var(--accent); font-weight: 500; }
.venture p { margin: 0; font-size: .95rem; color: var(--text-soft); }
.venture a.text-link { margin-top: auto; align-self: flex-start; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px 30px; }
.stat { text-align: left; padding: 12px 0; }
.stat .value {
  font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 3.4rem); color: var(--text);
  line-height: 1; margin-bottom: 10px; letter-spacing: -.02em;
}
.stat .label { font-size: .88rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

/* ---------- Featured work ---------- */
.featured-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card .cover { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.feature-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.feature-card:hover .cover img { transform: scale(1.03); }
.feature-card .body { padding: 26px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card .impact { font-size: .78rem; color: var(--accent); text-transform: uppercase; letter-spacing: .16em; margin-bottom: 14px; display: inline-block; }

/* ---------- Media & press ---------- */
.media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.media-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.media-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.media-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.media-card .thumb img { width:100%; height:100%; object-fit: cover; transition: transform 600ms var(--ease); }
.media-card:hover .thumb img { transform: scale(1.03); }
.media-card .body { padding: 22px; }
.media-card .pub { font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: var(--accent); margin-bottom: 8px; }
.media-card h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; margin: 0 0 8px; color: var(--text); line-height: 1.3; }
.media-card .type { font-size: .82rem; color: var(--muted); }

/* ---------- Speaking ---------- */
.speaking .grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.speaking .topics { list-style: none; padding: 0; margin: 24px 0 0; }
.speaking .topics li { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 1rem; color: var(--text); display: flex; gap: 14px; }
.speaking .topics li::before { content: "—"; color: var(--accent); }
.speaking .events { display: grid; gap: 12px; }
.speaking .event { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 20px; display: flex; justify-content: space-between; gap: 20px; align-items: baseline; }
.speaking .event strong { font-family: var(--serif); font-weight: 500; font-size: 1.02rem; color: var(--text); }
.speaking .event span { font-size: .85rem; color: var(--muted); }
.speaking h4 { font-family: var(--font); font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; color: var(--accent); margin: 26px 0 14px; }
@media (max-width: 820px) { .speaking .grid { grid-template-columns: 1fr; } }

/* ---------- Books ---------- */
.books-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 26px; }
.book { display: flex; flex-direction: column; gap: 14px; }
.book .cover { aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius-sm); box-shadow: var(--shadow-md); background: var(--bg-soft); transition: transform var(--dur) var(--ease); }
.book:hover .cover { transform: translateY(-4px); }
.book .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.book:hover .cover img { transform: scale(1.03); }
.book .kind { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--accent); }
.book h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; margin: 0; }
.book p { margin: 0; font-size: .9rem; color: var(--text-soft); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; grid-auto-rows: 240px; }
.gallery-grid a { overflow: hidden; border-radius: var(--radius); position: relative; background: var(--bg-soft); }
.gallery-grid a:nth-child(3n+1) { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.gallery-grid a:hover img { transform: scale(1.03); }
@media (max-width: 640px) { .gallery-grid { grid-auto-rows: 180px; } .gallery-grid a:nth-child(3n+1) { grid-row: span 1; } }

/* ---------- Videos ---------- */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }
.video { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.video .frame { aspect-ratio: 16/9; background: #000; }
.video .frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video .body { padding: 20px 24px; }
.video h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; margin: 0 0 6px; color: var(--text); }
.video .meta { font-size: .82rem; color: var(--muted); }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; display: flex; flex-direction: column; gap: 22px; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial .mark { font-family: var(--serif); font-size: 3rem; color: var(--accent); line-height: .5; height: 24px; }
.testimonial blockquote { font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: var(--text); margin: 0; line-height: 1.5; flex: 1; }
.testimonial .who { display: flex; flex-direction: column; padding-top: 18px; border-top: 1px solid var(--border); }
.testimonial .name { font-weight: 500; color: var(--text); }
.testimonial .role { font-size: .85rem; color: var(--muted); }

/* ---------- Awards ---------- */
.awards-list { display: grid; gap: 8px; }
.award {
  display: grid; grid-template-columns: 100px 1fr auto; gap: 22px; align-items: baseline;
  padding: 26px 4px; border-top: 1px solid var(--border);
  transition: padding var(--dur) var(--ease);
}
.award:last-child { border-bottom: 1px solid var(--border); }
.award:hover { padding-left: 12px; padding-right: 12px; }
.award .year { font-family: var(--serif); font-size: 1.2rem; color: var(--accent); }
.award h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; margin: 0 0 4px; color: var(--text); }
.award .org { font-size: .88rem; color: var(--muted); }
.award p { margin: 8px 0 0; font-size: .92rem; color: var(--text-soft); max-width: 60ch; }
.award .body { min-width: 0; }
@media (max-width: 640px) { .award { grid-template-columns: 70px 1fr; } .award .year { font-size: 1rem; } }

/* ---------- Social impact ---------- */
.impact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.impact-item { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.impact-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.impact-item h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; margin: 0 0 10px; color: var(--text); }
.impact-item p { margin: 0; font-size: .93rem; color: var(--text-soft); }

/* ---------- Events ---------- */
.events .cols { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.events h4 { font-family: var(--font); font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; color: var(--accent); margin: 0 0 22px; }
.event-row { display: grid; grid-template-columns: 90px 1fr auto; gap: 20px; padding: 20px 0; border-top: 1px solid var(--border); align-items: baseline; }
.event-row:last-child { border-bottom: 1px solid var(--border); }
.event-row .date { font-family: var(--serif); color: var(--accent); font-size: 1rem; }
.event-row strong { font-family: var(--serif); font-weight: 500; font-size: 1.05rem; color: var(--text); }
.event-row span { font-size: .85rem; color: var(--muted); }
@media (max-width: 820px) { .events .cols { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Insights / Blog ---------- */
.insights .featured {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
  padding: 36px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  margin-bottom: 40px; overflow: hidden;
}
.insights .featured .cover { aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); order: 2; }
.insights .featured .cover img { width:100%; height:100%; object-fit: cover; transition: transform 600ms var(--ease); }
.insights .featured:hover .cover img { transform: scale(1.03); }
.insights .featured .cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--accent); margin-bottom: 12px; display: inline-block; }
.insights .featured h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 14px; }
.insights .featured p { margin-bottom: 20px; }
.insights .featured .date { font-size: .82rem; color: var(--muted); margin-bottom: 12px; display: block; }
@media (max-width: 820px) { .insights .featured { grid-template-columns: 1fr; padding: 24px; } .insights .featured .cover { order: 0; } }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.post { display: flex; flex-direction: column; gap: 16px; }
.post .cover { aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); }
.post .cover img { width:100%; height:100%; object-fit: cover; transition: transform 600ms var(--ease); }
.post:hover .cover img { transform: scale(1.03); }
.post .cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--accent); }
.post h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; margin: 0; color: var(--text); }
.post p { margin: 0; font-size: .93rem; color: var(--text-soft); }
.post .date { font-size: .78rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 4px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 40px 24px 0;
  font-family: var(--serif); font-size: 1.15rem; font-weight: 500; color: var(--text);
  position: relative;
  transition: color var(--dur) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--font); font-size: 1.4rem; color: var(--accent); font-weight: 300;
  transition: transform var(--dur) var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item .answer { padding: 0 40px 24px 0; color: var(--text-soft); animation: fadeUp var(--dur) var(--ease); }

/* ---------- Contact ---------- */
.contact .grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-info { display: grid; gap: 22px; margin-top: 30px; }
.contact-info .row { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.contact-info .row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info .label { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); padding-top: 3px; }
.contact-info .value { color: var(--text); font-size: .98rem; }
.contact-info .value a:hover { color: var(--accent); }
.contact-info .socials { display: flex; gap: 14px; }
.contact-info .socials a { width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--border-strong); display: inline-flex; align-items: center; justify-content: center; transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease); color: var(--text); }
.contact-info .socials a:hover { background: var(--text); color: var(--bg); transform: translateY(-2px); }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; display: grid; gap: 18px; }
.contact-form label { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 16px; margin-top: 8px;
  background: var(--bg); border: 1px solid var(--border-strong); color: var(--text); border-radius: var(--radius-sm);
  font: inherit; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 22%, transparent);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button { justify-self: start; margin-top: 6px; }
.form-status { font-size: .9rem; color: var(--muted); min-height: 1.2em; }
.map { margin-top: 26px; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--bg-soft); }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(20%); }
@media (max-width: 820px) { .contact .grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 80px 0 32px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--border); }
.footer-grid h5 { font-family: var(--font); font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); margin: 0 0 18px; font-weight: 600; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-grid ul a { color: var(--text-soft); font-size: .95rem; transition: color var(--dur) var(--ease); }
.footer-grid ul a:hover { color: var(--accent); }
.footer-brand h4 { font-family: var(--serif); font-size: 1.4rem; margin: 0 0 10px; color: var(--text); }
.footer-brand p { margin: 0; font-size: .95rem; color: var(--text-soft); max-width: 34ch; }
.newsletter form { display: flex; gap: 8px; margin-top: 14px; }
.newsletter input { flex: 1; padding: 12px 14px; border-radius: 999px; border: 1px solid var(--border-strong); background: var(--bg); color: var(--text); font: inherit; }
.newsletter input:focus { outline: none; border-color: var(--accent); }
.newsletter button { padding: 12px 18px; border-radius: 999px; background: var(--text); color: var(--bg); border: none; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; gap: 20px; flex-wrap: wrap; font-size: .84rem; color: var(--muted); }
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-bottom .legal a:hover { color: var(--accent); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal on scroll ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(10px); transition: opacity 500ms var(--ease), transform 500ms var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
