/* ════════════════════════════════════════════════════════════
   ALEX FANK 2026 — style.css
   Design: Backstage Pass
   Fonts: DM Serif Display (display) · DM Sans (body)
   ════════════════════════════════════════════════════════════ */

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

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:          #0F0B08;
  --surface:     #160F0A;
  --surface-2:   #1D1309;

  --border:      rgba(232, 224, 208, 0.08);
  --border-soft: rgba(232, 224, 208, 0.03);

  --text:        #E8E0D0;
  --text-muted:  #8C7B6B;
  --text-dim:    rgba(232, 224, 208, 0.22);

  --accent:      #D4905A;
  --accent-warm: #E8A86C;
  --accent-dim:  rgba(212, 144, 90, 0.14);

  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h:  56px;
  --max-w:  1240px;
  --pad-x:  clamp(1.5rem, 5.5vw, 5rem);
  --sec-y:  clamp(4.5rem, 9vw, 8rem);

  --ease:        cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── BASE ───────────────────────────────────────────────── */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Film grain — very subtle, warm */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.018;
  pointer-events: none;
  z-index: 9999;
  animation: grain 9s steps(2) infinite;
}
@keyframes grain {
  0%  { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  20% { transform: translate(2%,  1%); }
  30% { transform: translate(-1%,  3%); }
  40% { transform: translate(3%, -1%); }
  50% { transform: translate(-3%,  2%); }
  60% { transform: translate(1%, -2%); }
  70% { transform: translate(-2%,  3%); }
  80% { transform: translate(3%,  1%); }
  90% { transform: translate(-1%, -3%); }
}

img    { display: block; max-width: 100%; height: auto; }
a      { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em     { font-style: italic; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section { padding: var(--sec-y) 0; }
.about   { background: var(--surface); }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-spring), transform 0.7s var(--ease-spring);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.26s var(--ease-spring), color 0.26s var(--ease-spring),
              border-color 0.26s var(--ease-spring), transform 0.18s var(--ease-spring);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn:active        { transform: scale(0.97); }

/* Filled accent — used in hero and services */
.btn-accent {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-warm); border-color: var(--accent-warm); }

/* Outlined — used in contact */
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--bg); }

.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.72rem; }

/* ─── NAV ────────────────────────────────────────────────── */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-header.scrolled {
  background: rgba(15, 11, 8, 0.92);
  border-bottom-color: var(--border);
}
.nav-header.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  pointer-events: none;
  z-index: -1;
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  flex-shrink: 0;
  transition: color 0.22s var(--ease);
}
.nav-logo:hover         { color: var(--accent); }
.nav-logo:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.22s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.28s var(--ease-spring);
}
.nav-links a:hover         { color: var(--text); }
.nav-links a:hover::after  { width: 100%; }
.nav-links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* Lighter link color when nav is transparent (at page top) */
.nav-links:not(.scrolled) a:not(.nav-cta) { color: #F2F2F2; }
.nav-header:not(.scrolled) .nav-logo { color: #F2F2F2; }

.nav-cta {
  color: var(--text) !important;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(212, 144, 90, 0.3);
  transition: border-color 0.22s var(--ease), color 0.22s var(--ease) !important;
}
.nav-cta::after  { display: none; }
.nav-cta:hover   { border-color: var(--accent) !important; color: var(--accent) !important; }

/* Language toggle */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.nav-lang span { user-select: none; }
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 5px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  transition: color 0.22s var(--ease);
  border-bottom: 1px solid transparent;
}
.lang-btn:hover         { color: var(--text); }
.lang-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.lang-btn.lang-active   { color: var(--accent); border-bottom-color: var(--accent); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px; height: 30px;
  background: none; border: none;
  cursor: pointer; padding: 2px;
  margin-left: auto;
}
.nav-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.nav-toggle-bar {
  display: block;
  width: 100%; height: 1px;
  background: var(--text);
  transition: transform 0.35s var(--ease-spring), opacity 0.25s var(--ease);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 740px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(15, 11, 8, 0.6);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
    z-index: 99;
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links a    { font-size: 0.85rem; letter-spacing: 0.18em; }
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 65% 85% at 72% 18%, rgba(212, 144, 90, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 90% 90% at 55% 50%, rgba(15, 11, 8, 0) 30%, rgba(15, 11, 8, 0.94) 100%),
    linear-gradient(to right, var(--bg) 0%, rgba(15,11,8,0.6) 40%, transparent 65%),
    url('assets/alex-fank.jpg') center 25% / cover no-repeat;
}

/* Vignettes */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(15, 11, 8, 0.96) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  padding-top: var(--nav-h);
  width: 100%;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  animation: heroUp 0.9s var(--ease-spring) both;
  animation-delay: 0.1s;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--accent);
  opacity: 0.65;
  flex-shrink: 0;
}

.hero-status-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.25;transform:scale(0.65)} }

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 2rem;
  animation: heroName 1.1s var(--ease-spring) both;
  animation-delay: 0.2s;
}
.hero-name em { font-style: italic; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  animation: heroUp 0.9s var(--ease-spring) both;
  animation-delay: 0.45s;
}

.hero-subtitle {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-hook {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-style: italic;
  color: var(--text);
  opacity: 0.72;
  line-height: 1.45;
}

.hero-cta { margin-left: auto; }

@keyframes heroUp   { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }
@keyframes heroName { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }

@media (max-width: 680px) {
  .hero-meta    { gap: 1.5rem; }
  .hero-hook    { display: none; }
  .hero-cta     { margin-left: 0; }
  .hero-bg      { background-position: center center; }
}

/* ─── TICKER ─────────────────────────────────────────────── */
.ticker {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 5rem;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left:  0; background: linear-gradient(to right, var(--surface), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left,  var(--surface), transparent); }

.ticker-track  { overflow: hidden; }
.ticker-inner  {
  display: flex;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}
.ticker:hover .ticker-inner { animation-play-state: paused; }

@keyframes ticker-scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.ticker-item {
  white-space: nowrap;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ─── SECTION LABELS ─────────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 20ch;
}
.section-heading em { font-style: italic; }

/* ─── WORK ───────────────────────────────────────────────── */

/* Featured tour */
.work-featured {
  border: 1px solid var(--border);
  margin-bottom: 1px;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.work-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
  z-index: 2;
}

/* Tour background image — left half of featured card, fades into highlights */
.work-featured-bg {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 52%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  transition: opacity 0.5s var(--ease);
  -webkit-mask-image: linear-gradient(to right, black 48%, rgba(0,0,0,0.3) 80%, transparent 100%);
  mask-image: linear-gradient(to right, black 48%, rgba(0,0,0,0.3) 80%, transparent 100%);
}

.work-featured-label,
.work-featured-body { position: relative; z-index: 1; }

.work-featured-label {
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}

.work-featured-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.work-featured-artist {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 10px rgba(15,11,8,0.8);
}

.work-featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 400;
  line-height: 1.08;
  text-shadow: 0 2px 18px rgba(15,11,8,0.75);
}
.work-featured-title em { font-style: italic; }

.work-featured-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}
.work-featured-role   { font-size: 0.78rem; font-weight: 500; color: var(--text); letter-spacing: 0.06em; }
.work-featured-detail { font-size: 0.75rem; color: var(--text-muted); }
.work-featured-desc   { font-size: 0.75rem; color: var(--text-muted); font-style: italic; margin-top: 0.15rem; }

.work-venues-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
}
.work-venues-list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-soft);
  transition: color 0.2s var(--ease), padding-left 0.25s var(--ease-spring);
}
.work-venues-list li:hover { color: var(--text); padding-left: 0.25rem; }
.work-venues-list li span  { font-size: 0.68rem; color: var(--text-dim); }
.work-venues-list a { color: inherit; text-decoration: none; display: contents; }
.venue-link-icon {
  margin-left: auto;
  font-size: 0.55rem;
  opacity: 0.3;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.work-venues-list li:has(a):hover .venue-link-icon { opacity: 0.85; }

/* Artist card grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-top: none;
}

.work-card {
  background: var(--bg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background 0.25s var(--ease);
  /* button reset */
  -webkit-appearance: none;
  appearance: none;
  border: none;
  font-family: var(--font-sans);
  font-size: inherit;
  color: var(--text);
  text-align: left;
  width: 100%;
  cursor: pointer;
}
.work-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 1px; width: 0;
  background: var(--accent);
  transition: width 0.4s var(--ease-spring);
  z-index: 2;
}
/* Hover hint arrow */
.work-card::after {
  content: '↑ view';
  position: absolute;
  bottom: 1.1rem;
  right: 1.25rem;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s var(--ease), transform 0.3s var(--ease-spring);
  z-index: 2;
}
.work-card:hover::after  { opacity: 1; transform: none; }
.work-card:hover { background: rgba(232,224,208,0.02); }
.work-card:hover::before { width: 100%; }
.work-card--active { background: rgba(212,144,90,0.06); }
.work-card--active::before { width: 100%; }
.work-card--active::after  { content: '↑ viewing'; opacity: 1; transform: none; color: var(--accent); }
.work-card:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

/* Card background image — B&W by default, color only on hover */
.work-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.22);
  transition: filter 0.55s var(--ease);
}
.work-card--active .work-card-bg {
  filter: grayscale(100%) brightness(0.3);
}
.work-card:hover .work-card-bg {
  filter: grayscale(0%) brightness(0.35);
}

.work-card-artist {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.work-card-tour {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.work-card-role {
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: auto;
  position: relative;
  z-index: 1;
}

/* Click hint below the grid */
.work-grid-hint {
  margin-top: 1rem;
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: right;
}


@media (max-width: 860px) {
  .work-grid           { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .work-grid           { grid-template-columns: 1fr; }
  .work-stats          { gap: 2rem; }
}
@media (max-width: 520px) {
  .work-featured-body  { grid-template-columns: 1fr; }
  .work-venues-list    { grid-template-columns: 1fr; }
  .work-featured-bg {
    width: 100%;
    opacity: 0.35;
    -webkit-mask-image: linear-gradient(to bottom, black 40%, rgba(0,0,0,0.4) 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 40%, rgba(0,0,0,0.4) 75%, transparent 100%);
  }
}

/* ─── BIO / ABOUT ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.about-subheading {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 400;
  line-height: 1.28;
  margin-bottom: 1.75rem;
}

.about-body p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.1rem;
}
.about-body p:last-child { margin-bottom: 0; }
.about-body em { font-style: italic; color: var(--text); }

.credentials { border-top: 1px solid var(--border); }

.credential-item {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}
.credential-current {
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  margin-left: -1rem;
}

.credential-item dt {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}
.credential-item dd {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
}
.credential-sub {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.credential-link {
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.credential-link:hover         { color: var(--accent); border-color: var(--accent); }
.credential-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: none;
  }
  .credential-item { border: 1px solid var(--border); padding: 1.1rem; border-right: none; }
  .credential-item:last-child { border-right: 1px solid var(--border); }
  .credential-current { margin-left: 0; }
}
@media (max-width: 540px) {
  .credentials { grid-template-columns: 1fr; }
  .credential-item { border-right: 1px solid var(--border); border-bottom: none; }
  .credential-item:last-child { border-bottom: 1px solid var(--border); }
}

/* ─── PRESS ──────────────────────────────────────────────── */
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.press-item {
  background: var(--bg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s var(--ease);
}
.press-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 1px; width: 0;
  background: var(--accent);
  transition: width 0.42s var(--ease-spring);
}
.press-item:hover            { background: rgba(232,224,208,0.015); }
.press-item:hover::before    { width: 100%; }
.press-item--wide            { grid-column: 1 / -1; }

.press-item-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.22);
  transition: filter 0.55s var(--ease);
}
.press-item:hover .press-item-bg {
  filter: grayscale(0%) brightness(0.35);
}

.press-logo {
  position: absolute;
  bottom: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  width: 90px;
  height: 36px;
  display: block;
  opacity: 0.35;
  transition: opacity 0.3s var(--ease);
  z-index: 3;
}
.press-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  display: block;
}
.press-item--wide .press-logo {
  width: 108px;
  height: 43px;
}
.press-item:hover .press-logo { opacity: 0.75; }

.press-outlet-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(232, 224, 208, 0.25);
  text-underline-offset: 2px;
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}
.press-outlet-link:hover { color: var(--accent); text-decoration-color: var(--accent); }

.press-outlet {
  font-size: 0.56px;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}
.press-headline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.22s var(--ease);
  position: relative;
  z-index: 1;
  align-self: flex-start;
}
.press-headline:hover         { color: var(--accent); }
.press-headline:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.press-meta {
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-top: auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 560px) {
  .press-grid { grid-template-columns: 1fr; }
  .press-item--wide { grid-column: auto; }
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services-list {
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: baseline;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  transition: color 0.22s var(--ease);
}
.service-item--primary .service-name { font-size: clamp(1.1rem, 2vw, 1.35rem); }
.service-item:hover .service-name    { color: var(--accent); }

.service-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}
.service-tags {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.75rem;
  line-height: 1.8;
}

.services-cta { margin-top: 3rem; }

@media (max-width: 580px) {
  .service-item { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact {
  background: var(--surface);
  padding: var(--sec-y) 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.contact .section-eyebrow { text-align: center; }

.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--text);
}
.contact-heading em { font-style: italic; color: var(--accent-warm); }

.contact-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  max-width: 38ch;
}

.contact-social {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-social-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.contact-social-link svg { width: 1em; height: 1em; flex-shrink: 0; }
.contact-social-link:hover         { color: var(--accent); border-color: var(--accent); }
.contact-social-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@media (max-width: 480px) {
  .contact-social { gap: 1.5rem; }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-left   { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-name   {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
}
.footer-location { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.06em; }

.footer-copy { font-size: 0.62rem; color: var(--text-dim); }

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

/* ─── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration:  0.01ms !important;
    animation-delay:     0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .hero-label, .hero-name, .hero-meta {
    opacity: 1; transform: none;
  }
}
