/* ============================================================
   TANISHQ TIWARI — Monochrome-luxury design system
   Bold black / warm paper / single brass accent.
   Magazine-cover editorial typography. Shared across all pages.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* ink */
  --ink:        #0a0a0b;
  --ink-2:      #101012;
  --ink-3:      #17171a;
  --ink-4:      #202024;

  /* paper (light sections) */
  --paper:      #f3f0e8;
  --paper-2:    #eae6db;
  --paper-3:    #e2ddcf;

  /* text on dark */
  --on-dark:    #edeae1;
  --on-dark-2:  #a5a196;
  --on-dark-3:  #6d6a61;

  /* text on light */
  --on-light:   #14130e;
  --on-light-2: #56534a;
  --on-light-3: #86837a;

  /* single accent — brass */
  --gold:       #c6a253;
  --gold-2:     #d8b874;
  --gold-deep:  #9a7c34;

  /* lines */
  --line-dark:  rgba(237,234,225,0.13);
  --line-dark-2:rgba(237,234,225,0.28);
  --line-light: rgba(20,19,14,0.14);
  --line-light-2:rgba(20,19,14,0.26);

  /* type */
  --serif:  'Fraunces', 'Times New Roman', Georgia, serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;
  --mono:   'Space Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --pad:    clamp(20px, 5vw, 80px);
  --max:    1460px;
  --gutter: clamp(28px, 6vw, 120px);

  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-2: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- RESET ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html { background: var(--ink); }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--on-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- SHARED PRIMITIVES ---------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.measure { max-width: 62ch; }

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.kicker--plain::before { display: none; }
.kicker--index { color: var(--on-dark-2); }
.kicker--index b { color: var(--gold); font-weight: 400; }

.display {
  font-family: var(--serif);
  font-weight: 340;
  letter-spacing: -0.015em;
  line-height: 0.98;
  font-optical-sizing: auto;
}
.display .it { font-style: italic; font-weight: 340; }
.quiet { color: var(--on-dark-2); }
.on-light .quiet { color: var(--on-light-3); }

.serif-lede {
  font-family: var(--serif);
  font-weight: 340;
  font-style: italic;
  line-height: 1.32;
  letter-spacing: -0.01em;
}

.rule { height: 1px; background: var(--line-dark); border: 0; width: 100%; }
.on-light .rule { background: var(--line-light); }

/* section rhythm */
section { position: relative; }
.pad-y { padding-block: clamp(72px, 11vw, 176px); }
.pad-y-sm { padding-block: clamp(52px, 7vw, 104px); }

.on-light { background: var(--paper); color: var(--on-light); }
.on-ink   { background: var(--ink); color: var(--on-dark); }
.on-ink-2 { background: var(--ink-2); color: var(--on-dark); }

/* grain overlay */
.grain::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   MASTHEAD / NAV
   ============================================================ */
.masthead {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(10,10,11,0.85), rgba(10,10,11,0));
}
.masthead.solid {
  background: rgba(10,10,11,0.9);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line-dark);
  padding-block: 13px;
}
.brand {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 18px);
  letter-spacing: 0.02em;
  color: var(--on-dark);
  white-space: nowrap;
  display: flex; align-items: baseline; gap: 10px;
}
.brand .brand-dot { color: var(--gold); font-style: italic; }
.nav-links {
  display: flex; align-items: center; gap: clamp(18px, 2.4vw, 40px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links a { color: var(--on-dark-2); transition: color 0.25s var(--ease); position: relative; padding-block: 4px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--on-dark); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--gold);
}
.nav-cta {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--line-dark-2);
  border-radius: 999px;
  color: var(--on-dark);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.nav-cta svg { width: 13px; height: 13px; }
.nav-cta:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* mobile nav toggle */
.nav-toggle { display: none; width: 38px; height: 38px; align-items: center; justify-content: center; border: 1px solid var(--line-dark-2); border-radius: 999px; }
.nav-toggle svg { width: 18px; height: 18px; stroke: var(--on-dark); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 199;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad);
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(30px, 9vw, 52px);
  font-weight: 340; letter-spacing: -0.02em; padding: 10px 0;
  color: var(--on-dark); border-bottom: 1px solid var(--line-dark);
  display: flex; align-items: baseline; gap: 16px;
}
.mobile-menu a .mm-num { font-family: var(--mono); font-size: 12px; color: var(--gold); letter-spacing: 0.1em; }

/* ============================================================
   HERO (page-level)
   ============================================================ */
.phero { padding-top: clamp(120px, 17vh, 190px); padding-bottom: clamp(40px, 6vw, 80px); position: relative; }
.phero-kick { margin-bottom: clamp(26px, 4vw, 48px); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.phero-title {
  font-family: var(--serif); font-weight: 330;
  font-size: clamp(42px, 10.5vw, 168px);
  line-height: 0.9; letter-spacing: -0.025em;
}
.phero-title .it { font-style: italic; }
.phero-title .quiet { display: block; }
.phero-sub { margin-top: clamp(26px, 4vw, 46px); max-width: 54ch; font-size: clamp(16px, 1.35vw, 20px); color: var(--on-dark-2); line-height: 1.55; }

/* ============================================================
   HOME HERO — cinematic split
   ============================================================ */
.hero { min-height: 100svh; display: grid; grid-template-columns: 1.05fr 0.95fr; position: relative; }
.hero-copy { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(110px,15vh,170px) var(--pad) clamp(40px,6vw,64px); }
.hero-name { display: flex; align-items: center; gap: 12px; margin-bottom: clamp(24px,4vw,44px); }
.hero-name .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(198,162,83,0.18); }
.hero-name .label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--on-dark-2); }
.hero-h1 { font-family: var(--serif); font-weight: 320; font-size: clamp(46px, 8.2vw, 118px); line-height: 0.9; letter-spacing: -0.028em; }
.hero-h1 .it { font-style: italic; }
.hero-h1 .quiet { color: var(--on-dark-2); }
.hero-lede { margin-top: clamp(26px,3.5vw,40px); max-width: 40ch; color: var(--on-dark-2); font-size: clamp(15px,1.2vw,18px); }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-top: 48px; }
.hero-facts { display: flex; flex-direction: column; gap: 10px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--on-dark-2); text-transform: uppercase; }
.hero-facts strong { color: var(--gold); font-weight: 400; margin-right: 8px; }
.hero-cta { display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark); padding-bottom: 6px; border-bottom: 1px solid var(--gold); }
.hero-cta svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.hero-cta:hover svg { transform: translateY(3px); }
.hero-visual { position: relative; overflow: hidden; background: var(--ink-3); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.02); transition: filter 0.8s var(--ease), transform 8s var(--ease); }
.hero:hover .hero-visual img { transform: scale(1.04); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(10,10,11,0.5), rgba(10,10,11,0) 40%); }
.hero-caption { position: absolute; bottom: clamp(20px,4vw,40px); right: var(--pad); z-index: 3; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-2); background: rgba(10,10,11,0.4); padding: 7px 12px; border: 1px solid var(--line-dark); }

/* ============================================================
   CREDENTIAL STRIP / MARQUEE
   ============================================================ */
.strip { border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-item { padding: 22px var(--pad); font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--on-dark-2); border-right: 1px solid var(--line-dark); }
.strip-item:last-child { border-right: 0; }
.strip-item strong { display: block; color: var(--gold); font-weight: 400; margin-bottom: 6px; font-size: 10px; letter-spacing: 0.16em; }

/* ============================================================
   STATEMENT LINE
   ============================================================ */
.statement { padding-block: clamp(80px, 13vw, 200px); }
.statement-line { font-family: var(--serif); font-weight: 330; font-size: clamp(30px, 5.6vw, 82px); line-height: 1.02; letter-spacing: -0.02em; max-width: 22ch; }
.statement-line .quiet { color: var(--on-dark-2); }
.statement-mark { display: block; width: 44px; height: 2px; background: var(--gold); margin-bottom: clamp(30px,4vw,52px); }

/* ============================================================
   SECTION HEAD (editorial)
   ============================================================ */
.shead { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); align-items: end; margin-bottom: clamp(40px, 6vw, 80px); }
.shead-title { font-family: var(--serif); font-weight: 330; font-size: clamp(30px, 4.6vw, 64px); line-height: 1.0; letter-spacing: -0.02em; margin-top: 22px; }
.shead-title .quiet { color: var(--on-dark-2); }
.on-light .shead-title .quiet { color: var(--on-light-3); }
.shead-sub { color: var(--on-dark-2); font-size: clamp(15px,1.2vw,17px); max-width: 46ch; }
.on-light .shead-sub { color: var(--on-light-2); }

/* ============================================================
   PROFILE / EDITORIAL SPREAD
   ============================================================ */
.spread { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--gutter); align-items: start; }
.spread--rev { grid-template-columns: 1.1fr 0.9fr; }
.figure { position: relative; overflow: hidden; background: var(--ink-3); }
.figure img { width: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.figure:hover img { transform: scale(1.03); }
.figure-cap { position: absolute; bottom: 12px; left: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-2); background: rgba(10,10,11,0.55); padding: 6px 10px; }
.on-light .figure-cap { color: var(--on-dark-2); }
.prose p { font-size: clamp(15.5px, 1.2vw, 18px); line-height: 1.72; color: var(--on-dark); margin-bottom: 1.15em; }
.on-light .prose p { color: var(--on-light); }
.prose p .lead-cap:first-letter { }
.prose strong { font-weight: 500; }
.prose-lead { font-family: var(--serif); font-style: italic; font-weight: 340; font-size: clamp(20px,2vw,28px); line-height: 1.4; letter-spacing: -0.01em; margin-bottom: 1.1em !important; color: var(--on-dark) !important; }
.on-light .prose-lead { color: var(--on-light) !important; }

/* ============================================================
   PULL QUOTE
   ============================================================ */
.quote-band { padding-block: clamp(80px,12vw,180px); text-align: center; }
.quote-mark { font-family: var(--serif); font-size: clamp(90px,14vw,190px); line-height: 0.6; color: var(--gold); display: block; height: 0.42em; overflow: visible; }
.quote-body { font-family: var(--serif); font-weight: 330; font-style: italic; font-size: clamp(26px,4.4vw,60px); line-height: 1.16; letter-spacing: -0.02em; max-width: 20ch; margin: clamp(28px,4vw,52px) auto; }
.quote-attrib { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-dark-2); }

/* ============================================================
   VENTURES — editorial index list
   ============================================================ */
.vlist { border-top: 1px solid var(--line-dark); }
.on-light .vlist { border-top-color: var(--line-light); }
.venture { display: grid; grid-template-columns: 44px 1.15fr 1.35fr auto; gap: clamp(16px,3vw,44px); align-items: center; padding: clamp(26px,3.4vw,44px) 0; border-bottom: 1px solid var(--line-dark); transition: padding-left 0.4s var(--ease); position: relative; }
.on-light .venture { border-bottom-color: var(--line-light); }
.venture::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--gold); opacity: 0; transition: width 0.4s var(--ease), opacity 0.4s var(--ease); }
a.venture:hover { padding-left: 22px; }
a.venture:hover::before { width: 3px; opacity: 1; }
.v-num { font-family: var(--mono); font-size: 12px; color: var(--gold); letter-spacing: 0.08em; }
.v-name { font-family: var(--serif); font-weight: 340; font-size: clamp(23px,2.7vw,40px); line-height: 1.02; letter-spacing: -0.015em; }
.v-name .role { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 10px; font-weight: 400; }
.v-desc { color: var(--on-dark-2); font-size: clamp(14px,1.05vw,16px); line-height: 1.6; }
.on-light .v-desc { color: var(--on-light-2); }
.v-meta { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-3); text-align: right; white-space: nowrap; }
.v-arrow { display: flex; justify-content: flex-end; }
.v-arrow svg { width: 22px; height: 22px; stroke: var(--on-dark-2); transition: stroke 0.3s var(--ease), transform 0.3s var(--ease); }
a.venture:hover .v-arrow svg { stroke: var(--gold); transform: translate(3px,-3px); }

/* ============================================================
   CARD GRID (services / products)
   ============================================================ */
.cardgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.on-light .cardgrid { background: var(--line-light); border-color: var(--line-light); }
.cardgrid--2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--ink); padding: clamp(26px,3vw,40px); display: flex; flex-direction: column; gap: 14px; min-height: 220px; transition: background 0.35s var(--ease); }
.on-light .card { background: var(--paper); }
.card:hover { background: var(--ink-2); }
.on-light .card:hover { background: var(--paper-2); }
.card-num { font-family: var(--mono); font-size: 11px; color: var(--gold); letter-spacing: 0.1em; }
.card-title { font-family: var(--serif); font-weight: 380; font-size: clamp(19px,1.8vw,25px); line-height: 1.1; letter-spacing: -0.01em; }
.card-body { color: var(--on-dark-2); font-size: 14.5px; line-height: 1.62; }
.on-light .card-body { color: var(--on-light-2); }
.card-tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 7px; padding-top: 12px; }
.card-tags span { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-3); border: 1px solid var(--line-dark-2); border-radius: 999px; padding: 4px 9px; }
.on-light .card-tags span { color: var(--on-light-3); border-color: var(--line-light-2); }

/* ============================================================
   NUMBERS
   ============================================================ */
.numbers-line { font-family: var(--serif); font-weight: 330; font-size: clamp(26px,4vw,56px); line-height: 1.18; letter-spacing: -0.02em; max-width: 24ch; }
.numbers-line strong { font-weight: 340; color: var(--gold); }
.numbers-list { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: clamp(30px,4vw,50px); font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-2); }
.numbers-list span { position: relative; padding-left: 18px; }
.numbers-list span::before { content: ""; position: absolute; left: 0; top: 50%; width: 6px; height: 1px; background: var(--gold); }

/* stat row */
.statrow { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line-dark); border-block: 1px solid var(--line-dark); }
.on-light .statrow { background: var(--line-light); border-block-color: var(--line-light); }
.stat { background: var(--ink); padding: clamp(26px,3vw,44px) var(--pad); }
.on-light .stat { background: var(--paper); }
.stat-num { font-family: var(--serif); font-weight: 330; font-size: clamp(38px,5vw,72px); line-height: 1; letter-spacing: -0.03em; }
.stat-num .u { color: var(--gold); }
.stat-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-2); margin-top: 14px; }
.on-light .stat-label { color: var(--on-light-2); }

/* ============================================================
   ANSWERS (AEO / FAQ)
   ============================================================ */
.answers-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.answer { background: var(--ink); padding: clamp(26px,3vw,44px); }
.answer-q { font-family: var(--serif); font-weight: 400; font-size: clamp(18px,1.7vw,24px); line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 16px; }
.answer-q::before { content: "Q"; font-family: var(--mono); font-size: 11px; color: var(--gold); letter-spacing: 0.1em; display: block; margin-bottom: 10px; }
.answer-a { color: var(--on-dark-2); font-size: 15px; line-height: 1.68; }
.answer-a strong { color: var(--on-dark); font-weight: 500; }
.answer-a a { color: var(--gold); border-bottom: 1px solid var(--line-dark-2); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-title { font-family: var(--serif); font-weight: 320; font-size: clamp(48px,10vw,150px); line-height: 0.92; letter-spacing: -0.03em; }
.contact-title .quiet { color: var(--on-dark-2); }
.contact-lines { margin-top: clamp(40px,6vw,72px); border-top: 1px solid var(--line-dark); }
.contact-line { display: grid; grid-template-columns: 160px 1fr auto; gap: 24px; align-items: center; padding: clamp(20px,2.6vw,32px) 0; border-bottom: 1px solid var(--line-dark); transition: padding-left 0.4s var(--ease); }
.contact-line:hover { padding-left: 18px; }
.cl-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.cl-value { font-family: var(--serif); font-weight: 340; font-size: clamp(20px,2.4vw,34px); letter-spacing: -0.01em; }
.cl-arrow svg { width: 22px; height: 22px; stroke: var(--on-dark-2); transition: transform 0.3s var(--ease), stroke 0.3s var(--ease); }
.contact-line:hover .cl-arrow svg { stroke: var(--gold); transform: translateX(5px); }

/* ============================================================
   AT-WORK / GALLERY FRAMES
   ============================================================ */
.frame { position: relative; overflow: hidden; background: var(--ink-3); }
.frame img { width: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.frame:hover img { transform: scale(1.03); }
.frame-caption { position: absolute; bottom: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; gap: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-2); }
.frame-caption span { background: rgba(10,10,11,0.55); padding: 5px 9px; }
.gallery-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.frame--wide { margin-top: 4px; }
.frame--wide img { aspect-ratio: 21/9; }

/* ============================================================
   HUB FEED STYLES (blogs / news / podcasts / references)
   ============================================================ */
.hub-loading-msg, .hub-empty, .hub-error { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--on-dark-3); padding: 24px 0; }
.hub-list { list-style: none; }
.hub-list--blogs, .hub-list--news { border-top: 1px solid var(--line-dark); }
.hub-item--blog, .hub-item--news { border-bottom: 1px solid var(--line-dark); }
.hub-item--blog .hub-item__link, .hub-item--news .hub-item__link {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(16px,3vw,40px); align-items: baseline;
  padding: clamp(22px,2.8vw,36px) 0; transition: padding-left 0.4s var(--ease);
}
.hub-item--blog .hub-item__link:hover, .hub-item--news .hub-item__link:hover { padding-left: 18px; }
.hub-item__image, .hub-item__logo { display: none; }
.hub-item__title { font-family: var(--serif); font-weight: 350; font-size: clamp(19px,2vw,29px); line-height: 1.12; letter-spacing: -0.015em; }
.hub-item__excerpt { color: var(--on-dark-2); font-size: 14.5px; line-height: 1.6; margin-top: 10px; max-width: 52ch; }
.hub-item__meta, .hub-item__date, .hub-item__source, .hub-item__publication { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-3); }
.hub-item__meta { display: flex; flex-direction: column; gap: 6px; text-align: right; white-space: nowrap; }
.hub-item__publication { color: var(--gold); display: block; margin-bottom: 8px; }
.hub-list--podcasts { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.hub-item--podcast { background: var(--ink); padding: clamp(24px,2.6vw,36px); }
.hub-item--podcast .hub-item__title { margin-bottom: 12px; }
.hub-item__audio { width: 100%; margin-top: 14px; filter: grayscale(1); }
.hub-list--references { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.hub-item--reference { background: var(--ink); padding: clamp(26px,3vw,44px); }
.hub-item__quote { font-family: var(--serif); font-style: italic; font-weight: 340; font-size: clamp(18px,1.7vw,23px); line-height: 1.4; letter-spacing: -0.01em; }
.hub-item__quote::before { content: "\201C"; color: var(--gold); }
.hub-item__quote::after { content: "\201D"; color: var(--gold); }
.hub-item__cite { display: flex; flex-direction: column; gap: 4px; margin-top: 20px; font-style: normal; }
.hub-item__author { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark); }
.hub-item__author-meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; color: var(--on-dark-3); }
.hub-item__source-link { font-family: var(--mono); font-size: 10px; color: var(--gold); margin-top: 4px; }
.on-light .hub-item--podcast, .on-light .hub-item--reference { background: var(--paper); }
.on-light .hub-list--podcasts, .on-light .hub-list--references, .on-light .hub-list--blogs, .on-light .hub-list--news, .on-light .hub-item--blog, .on-light .hub-item--news { border-color: var(--line-light); }
.on-light .hub-item__excerpt, .on-light .hub-item__meta, .on-light .hub-item__date, .on-light .hub-item__source { color: var(--on-light-2); }

/* static article list (baked, no PHP needed) */
.artlist { list-style: none; border-top: 1px solid var(--line-dark); }
.on-light .artlist { border-top-color: var(--line-light); }
.artlist li { border-bottom: 1px solid var(--line-dark); }
.on-light .artlist li { border-bottom-color: var(--line-light); }
.artlist a { display: grid; grid-template-columns: 130px 1fr auto; gap: clamp(16px,3vw,40px); align-items: baseline; padding: clamp(22px,2.8vw,34px) 0; transition: padding-left 0.4s var(--ease); }
.artlist a:hover { padding-left: 18px; }
.art-cat { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.art-title { font-family: var(--serif); font-weight: 350; font-size: clamp(19px,2vw,28px); line-height: 1.14; letter-spacing: -0.015em; }
.art-title .art-ex { display: block; font-family: var(--sans); font-size: 14px; color: var(--on-dark-2); margin-top: 10px; line-height: 1.55; max-width: 56ch; letter-spacing: 0; }
.on-light .art-title .art-ex { color: var(--on-light-2); }
.art-meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-3); text-align: right; white-space: nowrap; }

/* ============================================================
   CTA BAND
   ============================================================ */
.ctaband { text-align: center; }
.ctaband h2 { font-family: var(--serif); font-weight: 320; font-size: clamp(34px,6vw,88px); line-height: 0.98; letter-spacing: -0.025em; }
.ctaband h2 .quiet { color: var(--on-dark-2); }
.btn { display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; padding: 15px 28px; border-radius: 999px; transition: all 0.3s var(--ease); }
.btn svg { width: 15px; height: 15px; }
.btn--solid { background: var(--gold); color: var(--ink); }
.btn--solid:hover { background: var(--gold-2); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line-dark-2); color: var(--on-dark); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.on-light .btn--ghost { border-color: var(--line-light-2); color: var(--on-light); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: clamp(30px,4vw,48px); }

/* inline "read full" link */
.morelink { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark); border-bottom: 1px solid var(--gold); padding-bottom: 5px; margin-top: clamp(28px,3.5vw,44px); transition: gap 0.3s var(--ease); }
.morelink:hover { gap: 16px; }
.morelink svg { width: 14px; height: 14px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.crumbs { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-3); display: flex; gap: 10px; align-items: center; }
.crumbs a { color: var(--on-dark-2); }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { color: var(--on-dark-3); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line-dark); padding: clamp(48px,6vw,80px) 0 clamp(30px,4vw,48px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(30px,4vw,60px); }
.footer-brand .fb-name { font-family: var(--serif); font-weight: 330; font-size: clamp(28px,3.4vw,46px); line-height: 1; letter-spacing: -0.02em; }
.footer-brand p { color: var(--on-dark-2); font-size: 14px; line-height: 1.6; margin-top: 18px; max-width: 34ch; }
.footer-col h4 { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col a, .footer-col span { display: block; color: var(--on-dark-2); font-size: 14px; padding: 5px 0; transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--on-dark); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-top: clamp(40px,5vw,70px); padding-top: 26px; border-top: 1px solid var(--line-dark); font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-3); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-visual img, .figure img, .frame img { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 62vh; order: -1; }
  .venture { grid-template-columns: 34px 1fr auto; }
  .venture .v-desc { display: none; }
  .cardgrid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .shead { grid-template-columns: 1fr; gap: 20px; }
  .spread, .spread--rev { grid-template-columns: 1fr; gap: 34px; }
  .gallery-2 { grid-template-columns: 1fr; }
  .answers-grid { grid-template-columns: 1fr; }
  .hub-list--podcasts, .hub-list--references { grid-template-columns: 1fr; }
  .strip { grid-template-columns: 1fr 1fr; }
  .strip-item:nth-child(2n) { border-right: 0; }
  .statrow { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .cardgrid, .cardgrid--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-line { grid-template-columns: 1fr auto; }
  .cl-label { grid-column: 1 / -1; }
  .strip { grid-template-columns: 1fr; }
  .strip-item { border-right: 0; }
  .statrow { grid-template-columns: 1fr; }
  .hub-item--blog .hub-item__link, .hub-item--news .hub-item__link, .artlist a { grid-template-columns: 1fr; gap: 8px; }
  .hub-item__meta { text-align: left; flex-direction: row; gap: 14px; }
  .art-meta { text-align: left; }
}

/* ============================================================
   TIMELINE (about page)
   ============================================================ */
.timeline { border-top: 1px solid var(--line-dark); }
.on-light .timeline { border-top-color: var(--line-light); }
.tl-row { display: grid; grid-template-columns: 130px 1fr; gap: clamp(20px,4vw,60px); padding: clamp(24px,3vw,40px) 0; border-bottom: 1px solid var(--line-dark); align-items: baseline; }
.on-light .tl-row { border-bottom-color: var(--line-light); }
.tl-year { font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; color: var(--gold); }
.tl-title { font-family: var(--serif); font-weight: 360; font-size: clamp(20px,2.2vw,32px); line-height: 1.1; letter-spacing: -0.015em; margin-bottom: 12px; }
.tl-body { color: var(--on-dark-2); font-size: 15px; line-height: 1.65; max-width: 60ch; }
.on-light .tl-body { color: var(--on-light-2); }

/* full-bleed hero image band */
.imgband { position: relative; overflow: hidden; background: var(--ink-3); }
.imgband img { width: 100%; height: clamp(320px, 56vh, 640px); object-fit: cover; }
.imgband-cap { position: absolute; bottom: 16px; right: var(--pad); font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-2); background: rgba(10,10,11,0.5); padding: 6px 11px; }

/* service detail rows (adelsocial page) */
.srv { display: grid; grid-template-columns: 60px 1fr 1.1fr; gap: clamp(18px,3vw,50px); padding: clamp(30px,3.6vw,52px) 0; border-bottom: 1px solid var(--line-dark); align-items: start; }
.on-light .srv { border-bottom-color: var(--line-light); }
.srv:first-child { border-top: 1px solid var(--line-dark); }
.on-light .srv:first-child { border-top-color: var(--line-light); }
.srv-num { font-family: var(--mono); font-size: 12px; color: var(--gold); letter-spacing: 0.08em; padding-top: 8px; }
.srv-name { font-family: var(--serif); font-weight: 350; font-size: clamp(24px,3vw,44px); line-height: 1.02; letter-spacing: -0.02em; }
.srv-name .role { display:block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-2); margin-top: 12px; }
.on-light .srv-name .role { color: var(--on-light-2); }
.srv-desc { color: var(--on-dark-2); font-size: clamp(15px,1.15vw,17px); line-height: 1.68; }
.on-light .srv-desc { color: var(--on-light-2); }
.srv-list { list-style: none; margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.srv-list li { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-3); border: 1px solid var(--line-dark-2); border-radius: 999px; padding: 5px 11px; }
.on-light .srv-list li { color: var(--on-light-3); border-color: var(--line-light-2); }

/* pricing row */
.pricegrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.on-light .pricegrid { background: var(--line-light); border-color: var(--line-light); }
.price { background: var(--ink); padding: clamp(26px,3vw,40px); }
.on-light .price { background: var(--paper); }
.price-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.price-amt { font-family: var(--serif); font-weight: 340; font-size: clamp(28px,3.4vw,46px); line-height: 1; letter-spacing: -0.02em; margin: 16px 0 10px; }
.price-note { color: var(--on-dark-2); font-size: 13.5px; line-height: 1.55; }
.on-light .price-note { color: var(--on-light-2); }

/* process steps */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(20px,3vw,44px); }
.step-n { font-family: var(--mono); font-size: 11px; color: var(--gold); letter-spacing: 0.1em; }
.step h4 { font-family: var(--serif); font-weight: 380; font-size: clamp(18px,1.7vw,23px); margin: 14px 0 10px; letter-spacing: -0.01em; }
.step p { color: var(--on-dark-2); font-size: 14px; line-height: 1.6; }
.on-light .step p { color: var(--on-light-2); }
@media (max-width: 860px){ .steps { grid-template-columns: 1fr 1fr; } .pricegrid { grid-template-columns: 1fr; } .srv { grid-template-columns: 40px 1fr; } .srv-desc { grid-column: 2; } .tl-row { grid-template-columns: 70px 1fr; } }
