:root {
  --bg: #faf7f2;
  --bg-soft: #fffdf9;
  --section-tint: #f5efe6;
  --tag-bg: #f3ece1;
  --dark: #211d18;
  --dark-soft: #2c271f;
  --accent: #b5552f;
  --accent-dark: #8f3f20;
  --text: #211d18;
  --text-muted: #6b6358;
  --text-soft: #544d43;
  --text-inverse: #f3ece1;
  --text-inverse-muted: #c3b8a6;
  --text-inverse-dim: #8a7c6a;
  --border: #ece4d6;
  --border-soft: #e9e2d7;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Space Mono", "SF Mono", monospace;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 100;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 12px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.012em;
}

p { line-height: 1.65; color: var(--text-soft); margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { opacity: 0.85; }

.btn-primary { background: var(--dark); color: var(--text-inverse); }
.btn-primary.on-dark { background: var(--accent); color: #fff; }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline.on-dark { border-color: rgba(243,236,225,0.3); color: var(--text-inverse); }
.btn-outline.on-peach { border-color: rgba(33,29,24,0.2); }

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(181,85,47,0.15);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}
.social-bar {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  padding: 9px 32px;
  max-width: var(--max);
  margin: 0 auto;
  font-size: 14px;
  background: var(--dark);
  color: var(--text-inverse-dim);
}
.social-bar a { transition: color 0.15s ease; }
.social-bar a:hover { color: var(--text-inverse); }
.social-bar svg { display: block; }

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--max);
  margin: 0 auto;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}
.logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.15s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  padding-left: 6px;
  border-left: 1px solid var(--border-soft);
  color: var(--text);
}
.lang-toggle button {
  background: none; border: none; font: inherit; color: inherit; cursor: pointer; padding: 0; opacity: 0.4;
}
.lang-toggle button.active { opacity: 1; }
.lang-toggle button:disabled { cursor: not-allowed; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
}
.menu-toggle svg { width: 24px; height: 24px; }
.menu-toggle line {
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle.is-active .line-top { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-active .line-mid { opacity: 0; }
.menu-toggle.is-active .line-bottom { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: var(--bg);
  padding: 88px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 { font-size: 48px; margin-bottom: 24px; }
.hero-desc { font-size: 16px; max-width: 46ch; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 28px; }
.availability {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 500; color: var(--text-inverse-dim);
}
.availability .dot { width: 8px; height: 8px; border-radius: 50%; background: #4a9d6b; box-shadow: 0 0 0 3px rgba(74,157,107,0.18); }

.hero-media {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid #e6ddcf;
  box-shadow: 0 20px 50px -28px rgba(33,29,24,0.4);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.06) sepia(0.04);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(125% 105% at 50% 38%, transparent 52%, rgba(33,29,24,0.22));
}

/* ---------- Info bar ---------- */
.info-bar { background: var(--section-tint); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.info-cell {
  padding: 28px 30px;
  border-right: 1px solid var(--border-soft);
}
.info-cell:last-child { border-right: none; }
.info-cell .eyebrow { color: var(--text-inverse-dim); margin-bottom: 12px; }
.info-cell p { color: #2e2922; font-weight: 500; font-size: 16px; white-space: nowrap; }

/* ---------- Section shell ---------- */
section { padding: 96px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
}
.section-head h2 { font-size: 34px; max-width: 20ch; }
.section-head p { max-width: 24em; font-size: 15px; }

/* ---------- Focus fields ---------- */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.focus-card {
  background: var(--bg-soft);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.focus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -20px rgba(33,29,24,0.25);
}
.focus-visual {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.focus-visual svg, .focus-visual img { width: 100%; height: 100%; object-fit: cover; }
.focus-body { padding: 26px; }
.focus-num-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.focus-num-row .rule { height: 1px; flex: 1; background: var(--border); }
.focus-num { font-family: var(--mono); font-size: 12px; color: var(--accent); font-weight: 700; }
.focus-body h3 { font-family: var(--sans); font-weight: 600; font-size: 21px; margin-bottom: 10px; letter-spacing: -0.01em; }
.focus-body p { font-size: 14.5px; margin-bottom: 18px; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--tag-bg);
  color: var(--text-muted);
}

/* ---------- Agentic (inset dark card) ---------- */
.agentic { padding: 0 0 96px; }
.agentic-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: clamp(36px,5vw,64px);
  background: linear-gradient(135deg,#241d16 0%,#3a2a1e 55%,#6a3a22 100%);
  color: var(--text-inverse);
}
.agentic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 120% at 100% 0%, rgba(214,140,60,0.22), transparent 55%);
  pointer-events: none;
}
.agentic-card > * { position: relative; z-index: 1; }
.agentic .eyebrow { color: #e6ac81; }
.agentic-inner { max-width: 720px; }
.agentic h2 { font-size: 36px; color: var(--text-inverse); margin-bottom: 24px; }
.agentic p.lede { color: var(--text-inverse-muted); font-size: 16px; max-width: 62ch; margin-bottom: 48px; }
.agentic-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 980px;
}
.agentic-col { border-top: 1px solid #6a4d38; padding-top: 20px; }
.agentic-col h3 { font-size: 17px; color: var(--text-inverse); margin-bottom: 8px; font-family: var(--sans); font-weight: 600; }
.agentic-col p { color: var(--text-inverse-muted); font-size: 14.5px; }

/* ---------- Quote ---------- */
.quote-section {
  background: var(--dark);
  color: var(--text-inverse);
  text-align: center;
  padding: 96px 0;
}
.quote-section .eyebrow { justify-content: center; text-align: center; color: #c99a6f; }
.quote-section blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 42px;
  max-width: 15ch;
  margin: 22px auto 26px;
  color: var(--text-inverse);
}
.quote-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-inverse-muted);
}
.quote-attribution::before, .quote-attribution::after {
  content: "";
  width: 28px;
  height: 1px;
  background: #5a5142;
}

/* ---------- Holdings ---------- */
.holdings-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.holding-card {
  flex: 1 1 calc(33.333% - 11px);
  max-width: calc(33.333% - 11px);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 30px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.holding-card:hover {
  box-shadow: 0 12px 30px -20px rgba(33,29,24,0.35);
  border-color: #d8c8b2;
}
.holding-logo { height: 32px; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.holding-logo img { max-height: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 1px 2px rgba(33,29,24,0.18)); }
.holding-logo--dark { height: auto; background: var(--dark); border-radius: 4px; padding: 8px 12px; align-self: flex-start; }
.holding-logo--dark img { height: 20px; max-height: 20px; }
.holding-card p { font-size: 14px; margin-bottom: auto; color: var(--text-soft); }
.holding-link { margin-top: 22px; font-size: 13px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.holding-link[aria-disabled] { color: var(--text-muted); cursor: not-allowed; opacity: 0.7; }
.holdings-cta { margin-top: 18px; font-size: 14.5px; color: var(--text-soft); text-align: center; }
.holdings-cta a { color: var(--accent-dark); font-weight: 600; }

/* ---------- Ventures wrap + inset invest card ---------- */
.ventures-callout {
  margin-top: clamp(20px,2.5vw,32px);
  padding: clamp(26px,3.5vw,38px);
  background: var(--section-tint);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: clamp(18px,3vw,44px);
  align-items: start;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.ventures-callout:hover { border-color: #d8c8b2; box-shadow: 0 12px 30px -20px rgba(33,29,24,0.25); }
.ventures-callout h2 { font-size: 28px; }
.ventures-callout .eyebrow { color: var(--accent-dark); }
.ventures-callout p { color: var(--text-soft); font-size: 15px; }

/* ---------- Newsletter (inset dark card) ---------- */
.newsletter { padding: 0 0 96px; }
.newsletter-card {
  background: var(--dark);
  border-radius: 8px;
  padding: clamp(36px,4vw,56px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.newsletter h2 { color: var(--text-inverse); font-size: 30px; margin-bottom: 14px; }
.newsletter p.lede { color: var(--text-inverse-muted); font-size: 15px; max-width: 46ch; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form .hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 160px;
  padding: 15px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--bg-soft);
  color: var(--text);
  font: inherit;
  font-size: 14.5px;
}
.newsletter-form input[type="email"]::placeholder { color: var(--text-muted); }
.newsletter-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.newsletter-form button:hover { background: var(--accent-dark); }
.newsletter-form button:disabled { opacity: 0.6; cursor: not-allowed; }
.newsletter-disclaimer { font-size: 12.5px; color: var(--text-inverse-dim); margin-top: 12px; }
.newsletter-disclaimer.is-success { color: #8fcf9f; }
.newsletter-disclaimer.is-error { color: #e29a85; }

.form-msg { font-size: 13.5px; margin-top: 14px; min-height: 1.4em; }
.form-msg.is-success { color: #2f7a45; }
.form-msg.is-error { color: #b5432f; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
}
.about-grid h2 { font-size: 30px; margin-bottom: 22px; max-width: 12em; }
.about-grid > div:first-child p { font-size: 16px; max-width: 32em; }
.about-list { display: flex; flex-direction: column; }
.about-item {
  border-top: 1px solid #e4dccd;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
}
.about-item:last-child { border-bottom: 1px solid #e4dccd; }
.about-item .num { font-family: var(--mono); color: var(--accent); font-weight: 700; font-size: 13px; padding-top: 3px; }
.about-item h3 { font-family: var(--sans); font-weight: 600; font-size: 18px; margin-bottom: 6px; letter-spacing: -0.01em; color: var(--text); }
.about-item p { font-size: 14.5px; }

/* ---------- Contact CTA ---------- */
.contact-cta { background: var(--section-tint); text-align: center; border-top: 1px solid var(--border-soft); }
.contact-cta .wrap { max-width: 640px; }
.contact-cta .eyebrow { justify-content: center; }
.contact-cta h2 { font-size: 40px; margin: 20px 0 20px; }
.contact-cta p { font-size: 16px; margin-bottom: 32px; }
.contact-cta .hero-actions { justify-content: center; }
.contact-cta-form { text-align: left; max-width: 520px; margin: 0 auto; }
.contact-cta-linkedin { margin-top: 20px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--text-inverse-muted); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 34px;
  border-bottom: 1px solid #3a342a;
}
.footer-grid h3 { font-family: var(--serif); color: var(--text-inverse); font-size: 20px; margin-bottom: 12px; }
.footer-grid p { font-size: 14px; max-width: 34ch; color: var(--text-inverse-dim); }
.footer-col .eyebrow { color: var(--text-inverse-dim); }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; font-weight: 500; transition: color 0.15s ease; }
.footer-links a:hover { color: var(--text-inverse); }
.footer-links .strong { color: var(--text-inverse); font-weight: 600; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-inverse-dim);
}
.footer-bottom .legal { display: flex; gap: 16px; }
.footer-bottom a:hover { color: var(--text-inverse); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .wrap { padding: 0 24px; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { order: -1; }
  .info-grid { grid-template-columns: 1fr; }
  .info-cell { border-right: none; border-bottom: 1px solid var(--border-soft); }
  .info-cell p { white-space: normal; }
  .focus-grid, .agentic-cols { grid-template-columns: 1fr; }
  .holding-card { flex-basis: 100%; max-width: 100%; }
  .ventures-callout { grid-template-columns: 1fr; }
  .newsletter-card { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .main-nav { display: none; }
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-soft);
    padding: 24px;
    border-bottom: 1px solid var(--border-soft);
  }
  .main-nav.is-open a { color: var(--text); }
  .menu-toggle { display: inline-flex; }
  .nav-row { position: relative; }
  .nav-right .btn-primary { display: none; }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-form button { width: 100%; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: 36px; }
  .quote-section blockquote { font-size: 30px; }
}

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .agentic, .newsletter { padding-bottom: 64px; }
  .social-bar { display: none; }
  .nav-row { padding: 14px 20px; }
  .logo { font-size: 17px; white-space: nowrap; }
  .nav-right { gap: 12px; }
  .lang-toggle { font-size: 12px; gap: 4px; }
  .hero { padding: 48px 0 40px; }
}

/* ---------- Sub-page hero ---------- */
.page-hero {
  background: var(--bg);
  padding: 72px 0 56px;
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: 40px; margin-bottom: 14px; }
.page-hero p { font-size: 16px; max-width: 56ch; margin: 0 auto; }

/* ---------- Forms ---------- */
.form-section { padding-top: 0; }
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.form-layout > * { min-width: 0; }
.form-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
  font-size: 14.5px;
  color: var(--text);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.field-check input { margin-top: 3px; }
.field-check a { color: var(--accent); font-weight: 600; }
.form-card .btn { width: 100%; justify-content: center; }

.side-card {
  background: var(--section-tint);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 20px;
}
.side-card h3 { font-family: var(--sans); font-weight: 600; font-size: 18px; margin-bottom: 12px; }
.side-card p { font-size: 14.5px; color: var(--text-soft); margin-bottom: 18px; }
.side-card ol { margin: 0 0 20px; padding-left: 20px; color: var(--text-soft); font-size: 14.5px; }
.side-card ol li { margin-bottom: 6px; }

.calendly-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--bg-soft);
  min-height: 630px;
}

/* ---------- Legal / prose pages ---------- */
.legal-content {
  max-width: 760px;
  color: var(--text);
}
.legal-content h2 {
  font-size: 22px;
  margin: 40px 0 14px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 16px;
  margin: 28px 0 10px;
}
.legal-content p, .legal-content li {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.legal-content strong { color: var(--text); }

/* ---------- Blog ---------- */
.blog-featured {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: clamp(24px,4vw,48px);
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.blog-featured-media { aspect-ratio: 16/10; overflow: hidden; }
.blog-featured-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.blog-featured-body { padding: clamp(24px,3vw,44px) clamp(24px,3vw,44px) clamp(24px,3vw,44px) 0; }
.blog-featured .eyebrow { margin-bottom: 14px; }
.blog-featured h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(24px,2.4vw,32px); line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.01em; }
.blog-featured p { font-size: 15.5px; line-height: 1.6; color: var(--text-soft); margin-bottom: 20px; }
.blog-featured .holding-link { font-size: 14px; margin-top: 0; }

/* ---------- Blog archive (compact list) ---------- */
.archive-intro { margin-bottom: 8px; }
.archive-intro .eyebrow { margin-bottom: 10px; }
.archive-intro h2 { font-size: 26px; margin-bottom: 8px; }
.archive-intro p { font-size: 14.5px; max-width: 60ch; }
.archive-list { display: flex; flex-direction: column; }
.archive-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.archive-list .archive-item:last-child { border-bottom: 1px solid var(--border); }
.archive-thumb {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--section-tint);
  flex-shrink: 0;
}
.archive-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.archive-item h3 { font-family: var(--sans); font-weight: 600; font-size: 15px; letter-spacing: -0.005em; margin-bottom: 3px; }
.archive-item .archive-meta { font-size: 13px; color: var(--text-muted); }
.archive-item .holding-link { margin-top: 0; white-space: nowrap; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  display: block;
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--section-tint);
  cursor: zoom-in;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.gallery-item:hover { box-shadow: 0 16px 32px -20px rgba(33,29,24,0.3); transform: translateY(-2px); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Dennis unterwegs ---------- */
.unterwegs-section { padding-top: 0; }
.gallery-grid--unterwegs { grid-template-columns: repeat(2, 1fr); }
.gallery-grid--unterwegs .gallery-item { aspect-ratio: 16/10; }
.unterwegs-note { margin-top: 18px; font-size: 13.5px; color: var(--text-muted); text-align: center; }

@media (max-width: 700px) {
  .gallery-grid--unterwegs { grid-template-columns: 1fr; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(33,29,24,0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 4px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--text-inverse);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
}

@media (max-width: 960px) {
  .form-layout { grid-template-columns: 1fr; gap: 32px; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-body { padding: clamp(24px,3vw,36px); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .page-hero { padding: 56px 0 40px; }
}

@media (max-width: 600px) {
  .archive-item { grid-template-columns: 56px 1fr; }
  .archive-item .holding-link { grid-column: 2; }
  .archive-thumb { width: 56px; height: 56px; }
  .form-card, .side-card { padding: 24px; }
}

/* ---------- Blog post article (centered, no sidebar) ---------- */
.post-article { max-width: 760px; margin: 0 auto; }
.post-hero-media { aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); margin-bottom: clamp(28px,4vw,44px); background: var(--section-tint); }
.post-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.post-body { font-size: 16.5px; line-height: 1.7; color: var(--text-soft); }
.post-body h2 { font-size: clamp(22px,2.6vw,28px); margin: 1.6em 0 0.6em; color: var(--text); }
.post-body h3 { font-family: var(--sans); font-weight: 600; font-size: 19px; margin: 1.4em 0 0.5em; color: var(--text); }
.post-body p { margin: 0 0 1.2em; }
.post-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.post-body img { max-width: 100%; height: auto; border-radius: 6px; margin: 1.2em 0; display: block; }
.post-body ul, .post-body ol { margin: 0 0 1.2em; padding-left: 1.4em; }
.post-body li { margin-bottom: 0.4em; }
.post-body blockquote { margin: 1.4em 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--accent); font-style: italic; color: var(--text); }
.post-body strong { color: var(--text); }
.post-back { margin-top: clamp(32px,4vw,48px); padding-top: 24px; border-top: 1px solid var(--border); }

@media (max-width: 700px) {
  .page-hero h1 { max-width: none; }
}

/* ---------- Keyword marquee ---------- */
@keyframes site-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-mask {
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--section-tint);
  padding: 22px 0;
  -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}
.marquee-track { display: flex; width: max-content; animation: site-marquee 34s linear infinite; }
.marquee-mask:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 26px; padding: 0 26px; }
.marquee-item span:first-child { font-family: var(--serif); font-size: clamp(20px,2.2vw,28px); line-height: 1; color: #3f3930; white-space: nowrap; }
.marquee-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }

/* ---------- References / testimonials ---------- */
.references-section { background: #241d16; color: var(--text-inverse); }
.references-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(28px,3.5vw,44px); flex-wrap: wrap; }
.references-section .eyebrow { color: #e6ac81; }
.references-section h2 { max-width: 14em; color: var(--text-inverse); }
.references-nav { display: flex; gap: 10px; flex: none; }
.ref-nav-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid #574a3a; background: #2d251b; color: var(--text-inverse);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 19px; transition: background 0.2s ease;
}
.ref-nav-btn:hover { background: #40352a; }
.references-track {
  display: flex; gap: 16px; overflow-x: auto; scroll-behavior: smooth;
  scroll-snap-type: x mandatory; padding-bottom: 8px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.references-track::-webkit-scrollbar { display: none; }
.reference-card {
  margin: 0; flex: 0 0 auto; width: min(360px,80vw); scroll-snap-align: start;
  padding: 32px; background: #2d251b; border: 1px solid rgba(64,53,38,0.25); border-radius: 6px;
  display: flex; flex-direction: column;
}
.reference-card .quote-mark { font-family: var(--serif); font-size: 26px; line-height: 1; color: #e6ac81; margin-bottom: 14px; }
.reference-card blockquote { margin: 0 0 24px; font-size: 16px; line-height: 1.6; color: #e4d8c8; }
.reference-card figcaption { margin-top: auto; display: flex; align-items: center; gap: 13px; }
.ref-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: #40352a; border: 1px solid #574a3a;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; color: #d9b892; flex: none;
}
.ref-name { font-weight: 600; font-size: 14px; color: var(--text-inverse); }
.ref-role { font-size: 13px; color: var(--text-inverse-muted); }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--dark); color: var(--text-inverse-dim);
  padding: 20px 32px; box-shadow: 0 -8px 24px -8px rgba(0,0,0,0.3);
}
.cookie-banner-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cookie-banner-text { font-size: 13.5px; line-height: 1.6; max-width: 640px; margin: 0; }
.cookie-banner-text a { color: var(--text-inverse); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 12px; flex: none; }
@media (max-width: 700px) {
  .cookie-banner { padding: 18px 20px; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 16px; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .btn { flex: 1; justify-content: center; }
}

/* ---------- Site popup ---------- */
.site-popup-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(33,29,24,0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: popup-fade-in 0.25s ease;
}
@keyframes popup-fade-in { from { opacity: 0; } to { opacity: 1; } }
.site-popup-card {
  position: relative; background: var(--bg-soft); border-radius: 10px;
  max-width: 440px; width: 100%; padding: 40px 36px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.4);
}
.site-popup-card .eyebrow { margin-bottom: 10px; }
.site-popup-card h2 { font-size: 26px; margin: 0 0 12px; }
.site-popup-card p { font-size: 15px; color: var(--text-soft); margin: 0 0 20px; }
.site-popup-close {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px;
  border: none; background: transparent; font-size: 22px; line-height: 1;
  color: var(--text-muted); cursor: pointer; border-radius: 50%;
}
.site-popup-close:hover { background: var(--section-tint); }
.site-popup-form { display: flex; flex-direction: column; gap: 10px; }
.site-popup-form input[type="email"] {
  padding: 12px 16px; border-radius: 6px; border: 1px solid var(--border);
  font: inherit; font-size: 14.5px;
}
.site-popup-form .btn { width: 100%; justify-content: center; }
@media (max-width: 480px) {
  .site-popup-card { padding: 32px 24px; }
}
