/* ============================================================
   Portfolio — Dark / Cinematic
   Shared stylesheet for all pages
   ============================================================ */

/* ---------- Theme tokens ---------- */
:root {
  --bg: #0a0a0b;
  --bg-elev: #141417;
  --bg-elev-2: #1c1c20;
  --text: #f2f0ec;
  --text-dim: #a7a39b;
  --text-faint: #6b6862;
  --border: #2a2a2e;
  --accent: #c9a25a;        /* warm gold */
  --accent-soft: rgba(201, 162, 90, 0.18);
  --on-accent: #0a0a0b;     /* text/icons on accent backgrounds */
  --overlay: rgba(5, 5, 6, 0.62);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --maxw: 1180px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
  color-scheme: dark;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.005em;
}

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

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

::selection { background: var(--accent); color: var(--on-accent); }

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 120px 0; }
.section--tight { padding: 80px 0; }

.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

.lead {
  font-size: 21px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 60ch;
}

.muted { color: var(--text-dim); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

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

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand b { font-weight: 600; }
.brand .dot { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.nav a.active { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 14px; }

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--text);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 1.5px;
  background: currentColor;
  margin: 0 auto;
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { background: var(--accent); color: var(--on-accent); }
.btn:active { transform: translateY(1px); }
.btn--solid { background: var(--accent); color: var(--on-accent); }
.btn--solid:hover { background: transparent; color: var(--accent); }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Hero (landing)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../jas-min-hYaAxItJGoM-unsplash.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: grayscale(0.45) brightness(0.4) contrast(1.05);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg) 4%, transparent 55%),
    linear-gradient(to right, var(--overlay), rgba(5,5,6,0.25));
}
.hero__inner { position: relative; z-index: 2; padding-top: var(--header-h); }
.hero h1 {
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  letter-spacing: -0.02em;
  margin: 8px 0 18px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero p { max-width: 50ch; font-size: 20px; color: var(--text-dim); }
.hero__cta { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-hint::after {
  content: "";
  width: 1px; height: 46px;
  background: linear-gradient(var(--accent), transparent);
  animation: scroll-line 2.2s var(--ease) infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   Page hero (interior pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--header-h) + 90px) 0 30px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  margin: 10px 0 18px;
}
.page-hero .lead { font-size: 20px; }
.page-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 30px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.page-meta b { color: var(--text); font-weight: 600; }

/* ============================================================
   Section heading block
   ============================================================ */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}
.section-head h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.section-head .link {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  display: inline-flex;
  gap: 8px;
}
.section-head .link .arrow { transition: transform 0.3s var(--ease); }
.section-head .link:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Discipline cards (landing)
   ============================================================ */
.disciplines { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dcard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 320px;
  padding: 34px 32px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.dcard:hover { transform: translateY(-6px); border-color: var(--accent); background: var(--bg-elev-2); }
/* large faint watermark number */
.dcard__num::before {
  content: attr(data-index);
  position: absolute;
  top: 18px; right: 26px;
  font-family: "Cormorant Garamond", serif;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--text);
  opacity: 0.06;
  pointer-events: none;
}
.dcard__icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--accent);
  margin-bottom: 26px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.dcard__icon svg { width: 28px; height: 28px; }
.dcard:hover .dcard__icon { background: var(--accent); color: var(--on-accent); border-color: var(--accent); transform: scale(1.06); }
.dcard__num {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
}
.dcard h3 { font-size: 1.75rem; color: var(--text); margin-top: 8px; align-self: stretch; }
.dcard p { color: var(--text-dim); font-size: 15px; line-height: 1.55; margin-top: 10px; align-self: stretch; }
.dcard .go {
  margin-top: auto; padding-top: 24px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; gap: 8px; align-items: center;
}
.dcard .go .arrow { transition: transform 0.3s var(--ease); }
.dcard:hover .go .arrow { transform: translateX(5px); }

/* ============================================================
   Photography — masonry grid
   ============================================================ */
.gallery {
  columns: 3;
  column-gap: 18px;
}
.gallery figure {
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  background: var(--bg-elev);
}
.gallery img {
  width: 100%;
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
  filter: grayscale(0.2);
}
.gallery figure:hover img { transform: scale(1.05); filter: grayscale(0); }
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 38px 18px 16px;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(to top, rgba(5,5,6,0.9), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery figure:hover figcaption { opacity: 1; transform: none; }
.gallery figcaption span { display: block; color: var(--accent); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 2px; }

/* Filter chips */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.chip {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.chip:hover { color: var(--text); border-color: var(--text-dim); }
.chip.active { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  background: rgba(4,4,5,0.94);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__media {
  max-width: 100%;
  max-height: 90vh;
  position: relative;
  transform: scale(0.96);
  transition: transform 0.45s var(--ease);
}
.lightbox.open .lightbox__media { transform: scale(1); }
.lightbox__media img {
  max-height: 90vh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lightbox__media iframe {
  width: min(90vw, 1100px);
  aspect-ratio: 16/9;
  height: auto;
  border: 0;
  border-radius: var(--radius);
}
.lightbox__media iframe.is-portrait {
  width: auto;
  height: min(86vh, 880px);
  aspect-ratio: 9/16;
  background: #000;
}
.lightbox__cap {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-dim);
}
.lightbox__cap span { color: var(--accent); }
.lb-btn {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.3s var(--ease);
  z-index: 2;
}
.lb-btn:hover { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-btn svg { width: 20px; height: 20px; }

/* ============================================================
   Video grid
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 460px));
  justify-content: center;
  gap: 26px;
}
.vcard {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.vcard:hover { border-color: var(--accent); transform: translateY(-4px); }
.vcard__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.vcard__thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.25) brightness(0.78); transition: transform 0.9s var(--ease), filter 0.5s var(--ease); }
.vcard:hover .vcard__thumb img { transform: scale(1.06); filter: grayscale(0) brightness(0.85); }
.vcard__play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.vcard__play span {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(10,10,11,0.5);
  border: 1px solid rgba(255,255,255,0.4);
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.vcard:hover .vcard__play span { background: var(--accent); transform: scale(1.08); }
.vcard__play svg { width: 24px; height: 24px; fill: #fff; margin-left: 3px; }
.vcard:hover .vcard__play svg { fill: var(--on-accent); }
.vcard__dur {
  position: absolute; bottom: 12px; right: 12px;
  font-size: 12px; padding: 3px 9px;
  background: rgba(5,5,6,0.8); color: #fff; border-radius: 3px;
  letter-spacing: 0.05em;
}
/* Branded poster for embeds without a usable thumbnail (e.g. Instagram) */
.vcard__poster {
  position: absolute; inset: 0;
}
.vcard__poster--ig {
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
}
.vcard__poster--ig::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(5,5,6,0.28);
  transition: background 0.4s var(--ease);
}
.vcard:hover .vcard__poster--ig::after { background: rgba(5,5,6,0.12); }
.vcard__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(5,5,6,0.55); color: #fff;
  backdrop-filter: blur(2px);
}
.vcard__badge svg { width: 14px; height: 14px; }
.vcard__body { padding: 22px 24px 26px; }
.vcard__tag { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.vcard h3 { font-size: 1.5rem; margin: 8px 0 6px; }
.vcard p { font-size: 14px; color: var(--text-dim); }

/* ============================================================
   Audio list
   ============================================================ */
.audio-list { display: flex; flex-direction: column; gap: 22px; }
.acard {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev);
  transition: border-color 0.4s var(--ease);
}
.acard:hover { border-color: var(--accent); }
.acard__art {
  width: 96px; height: 96px;
  border-radius: var(--radius);
  background-size: cover; background-position: center;
  position: relative;
  filter: grayscale(0.2);
}
.acard__art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(140deg, transparent, rgba(143,45,86,0.18));
  border-radius: var(--radius);
}
.acard__main { min-width: 0; }
.acard__tag { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.acard h3 { font-size: 1.5rem; margin: 4px 0 4px; }
.acard p { font-size: 14px; color: var(--text-dim); margin-bottom: 14px; }
.acard audio { width: 100%; height: 38px; }
.acard iframe { width: 100%; display: block; border: 0; border-radius: 8px; }
.acard audio::-webkit-media-controls-panel { background: var(--bg-elev-2); }

@media (max-width: 560px) {
  .acard { grid-template-columns: 1fr; }
  .acard__art { width: 100%; height: 160px; }
}

/* ============================================================
   Text / writing list
   ============================================================ */
.writing-list { border-top: 1px solid var(--border); }
.warticle {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 32px;
  align-items: baseline;
  padding: 38px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.4s var(--ease), padding-left 0.4s var(--ease), padding-right 0.4s var(--ease);
}
.warticle:hover {
  background: var(--bg-elev);
  padding-left: 22px;
  padding-right: 22px;
}
.warticle__meta { font-size: 13px; color: var(--text-faint); letter-spacing: 0.04em; }
.warticle__meta b { display: block; color: var(--accent); font-weight: 600; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 4px; }
.warticle__main h3 { font-size: 1.7rem; margin-bottom: 8px; transition: color 0.3s var(--ease); }
.warticle:hover .warticle__main h3 { color: var(--accent); }
.warticle__main p { font-size: 15px; color: var(--text-dim); max-width: 64ch; }
.warticle__go {
  align-self: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--text-dim);
  transition: all 0.35s var(--ease);
  flex-shrink: 0;
}
.warticle:hover .warticle__go { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.warticle__go svg { width: 18px; height: 18px; }

/* ============================================================
   Article / reading view (single text piece)
   ============================================================ */
.article { max-width: 70ch; margin: 0 auto; }
.article > * + * { margin-top: 1.4em; }
.article p {
  font-size: 1.18rem;
  line-height: 1.8;
  color: var(--text-dim);
}
.article p:first-of-type::first-letter {
  float: left;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.6em;
  line-height: 0.82;
  padding: 6px 14px 0 0;
  color: var(--accent);
}
.article h2 { font-size: 2rem; color: var(--text); margin-top: 2em; }
.article blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--text);
}
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 40px;
  transition: color 0.3s var(--ease);
}
.back-link:hover { color: var(--accent); }
.back-link svg { width: 16px; height: 16px; }

@media (max-width: 760px) {
  .warticle { grid-template-columns: 1fr; gap: 12px; }
  .warticle__go { display: none; }
}

/* ============================================================
   About page
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.about-portrait {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-portrait img { width: 100%; filter: grayscale(0.3); }
.about-portrait::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about-bio h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 24px; }
.about-bio p { color: var(--text-dim); margin-bottom: 20px; }
.about-bio p strong { color: var(--text); font-weight: 600; }

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fact b {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1;
}
.fact span { font-size: 13px; color: var(--text-dim); }

.skill-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.skill-tags span {
  font-size: 12px; letter-spacing: 0.08em;
  padding: 7px 15px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-dim);
}

/* Timeline */
.timeline { margin-top: 18px; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--border);
}
.titem { position: relative; padding: 0 0 34px 38px; }
.titem::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
}
.titem .year { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.titem h4 { font-family: "Inter", sans-serif; font-size: 17px; font-weight: 600; margin: 4px 0 2px; }
.titem p { font-size: 14px; color: var(--text-dim); }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait { max-width: 420px; }
}

/* ============================================================
   Contact band
   ============================================================ */
.contact-band {
  text-align: center;
  padding: 110px 0;
  border-top: 1px solid var(--border);
}
.contact-band h2 { font-size: clamp(2.4rem, 7vw, 5rem); margin-bottom: 24px; }
.contact-band .lead { margin: 0 auto 36px; text-align: center; }
.mail-link {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.mail-link:hover { border-bottom-color: var(--accent); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 70px 0 40px;
  background: var(--bg-elev);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.footer-brand .brand { font-size: 30px; margin-bottom: 12px; }
.footer-brand p { color: var(--text-dim); max-width: 34ch; font-size: 15px; }
.footer-contact { line-height: 1.9; }
.footer-contact a { color: var(--text); transition: color 0.3s var(--ease); }
.footer-contact a:hover { color: var(--accent); }
.footer-nav { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 {
  font-family: "Inter", sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 16px;
}
.footer-col a { display: block; color: var(--text-dim); font-size: 15px; margin-bottom: 10px; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--accent); }

.socials { display: flex; gap: 12px; }
.socials a {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text-dim);
  transition: all 0.35s var(--ease);
}
.socials a:hover { color: var(--on-accent); background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-faint);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .gallery { columns: 2; }
}

@media (max-width: 820px) {
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--border);
    padding: 10px 28px 24px;
    transform: translateY(-120%);
    transition: transform 0.45s var(--ease);
    z-index: 90;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 0; width: 100%; font-size: 15px; border-bottom: 1px solid var(--border); }
  .nav a::after { display: none; }
  .nav-toggle { display: block; }
  .disciplines { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .section { padding: 84px 0; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .gallery { columns: 1; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .facts { grid-template-columns: 1fr; text-align: center; }
}
