/* =========================================================
   Jonathan Rosenberry — filmmaker portfolio
   Cool modern neutrals · electric-blue accent · Space Grotesk
   ========================================================= */

:root {
  --paper:    #f6f6f8;
  --paper-2:  #edecf1;
  --ink:      #14151a;
  --ink-soft: #43454f;
  --muted:    #63656f;   /* AA on light */
  --line:     rgba(20,21,26,0.12);
  --accent:   #2f56ff;   /* electric blue */
  --accent-ink:  #2a4de6; /* blue text on light (AA) */
  --accent-light:#6d89ff; /* blue text on dark panels (AA) */
  --accent-d:    #2544cc; /* hover */
  --film:     #111318;   /* cool near-black panel */
  --film-2:   #0a0b0f;
  --on-film:  #e8e9ee;

  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --sans:    "Inter", system-ui, -apple-system, sans-serif;

  --wrap: 1220px;
  --gutter: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.65; font-weight: 400;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
.reel :focus-visible, .capabilities :focus-visible, .contact :focus-visible, .site-footer :focus-visible { outline-color: var(--accent-light); }

/* ---------- labels / section heads ---------- */
.eyebrow, .section-meta, .film-role, .recognition-label, .stats span, .hero-credit, .footer-loc, .footer-top, .film-studio {
  font-family: var(--display); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
}
.section-head { display: flex; align-items: baseline; gap: clamp(14px, 2.5vw, 28px); margin-bottom: clamp(30px, 5vw, 54px); padding-bottom: 18px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.section-title { font-family: var(--display); font-weight: 600; font-size: clamp(30px, 5vw, 52px); line-height: 1.0; margin: 0; flex: 1 1 auto; letter-spacing: -0.02em; }
.section-meta { font-size: 12px; color: var(--muted); }
.section-head.on-dark { border-color: rgba(232,233,238,0.16); }
.section-head.on-dark .section-title { color: var(--on-film); }
.section-head.on-dark .section-meta { color: rgba(232,233,238,0.6); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; border-bottom: 1px solid transparent; transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.site-header.scrolled { background: rgba(246,246,248,0.85); -webkit-backdrop-filter: saturate(180%) blur(14px); backdrop-filter: saturate(180%) blur(14px); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; }
.nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px); }
.nav a { font-size: 15px; position: relative; padding: 4px 0; color: var(--ink-soft); transition: color .25s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--accent); transition: width .3s var(--ease); }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.nav .nav-cta { border: 1px solid var(--ink); border-radius: 100px; padding: 8px 20px; color: var(--ink); transition: background .25s, color .25s, border-color .25s; }
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { background: rgba(246,246,248,0.98); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 24px; display: flex; flex-direction: column; }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { font-family: var(--display); font-weight: 500; font-size: 22px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: 0; }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding: clamp(140px, 20vh, 210px) 0 clamp(64px, 9vw, 110px); }
.hero-inner { max-width: 980px; }
.eyebrow { color: var(--accent-ink); font-size: 12.5px; display: inline-block; margin: 0 0 clamp(20px, 3vw, 30px); }
.hero-title { font-family: var(--display); font-weight: 700; font-size: clamp(42px, 8vw, 100px); line-height: 1.0; letter-spacing: -0.035em; margin: 0 0 clamp(24px, 3.5vw, 38px); }
.hero-title span { color: var(--accent); font-weight: 700; }
.hero-lead { font-size: clamp(18px, 2.1vw, 22px); line-height: 1.5; color: var(--ink-soft); max-width: 640px; margin: 0 0 clamp(28px, 4vw, 42px); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: clamp(36px, 5vw, 58px); }
.btn { font-family: var(--sans); font-size: 15px; font-weight: 600; padding: 14px 30px; border-radius: 100px; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; border: 1px solid var(--accent); }
.btn-primary:hover { background: var(--accent-d); border-color: var(--accent-d); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.hero-credit { font-size: 11.5px; letter-spacing: 0.08em; color: var(--muted); margin: 0; }

/* =========================================================
   DARK CINEMATIC PANELS
   ========================================================= */
.reel, .capabilities, .contact { background: var(--film); color: var(--on-film); }
.reel { padding: clamp(60px, 9vw, 112px) 0; }
.capabilities { padding: clamp(66px, 10vw, 122px) 0; }
.contact { padding: clamp(80px, 12vw, 148px) 0; }

.video { position: relative; aspect-ratio: 16 / 9; background: var(--film-2); overflow: hidden; border-radius: 6px; }
@supports not (aspect-ratio: 1 / 1) { .video::before, .film-media::before { content: ""; display: block; padding-top: 56.25%; } }
.video img, .video iframe, .film-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }
.video-play { position: absolute; inset: 0; z-index: 3; display: grid; place-items: center; background: linear-gradient(180deg, rgba(10,11,15,0.12), rgba(10,11,15,0.45)); border: 0; cursor: pointer; transition: background .3s; }
.video-play:hover { background: linear-gradient(180deg, rgba(10,11,15,0.02), rgba(10,11,15,0.32)); }
.play-icon { width: 74px; height: 74px; border-radius: 50%; background: rgba(255,255,255,0.14); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1.5px solid rgba(255,255,255,0.9); display: grid; place-items: center; transition: transform .3s var(--ease), background .3s, border-color .3s; }
.video-play:hover .play-icon { transform: scale(1.08); background: var(--accent); border-color: var(--accent); }
.play-icon::after { content: ""; width: 0; height: 0; margin-left: 5px; border-style: solid; border-width: 10px 0 10px 17px; border-color: transparent transparent transparent #fff; }
.reel-video { box-shadow: 0 40px 90px -40px rgba(0,0,0,0.85); }
.reel-poster { position: absolute; inset: 0; z-index: 1; background: radial-gradient(130% 130% at 50% 0%, #1a1f2e 0%, #0a0b0f 72%); display: grid; place-items: center; }
.reel-poster::before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(232,233,238,0.14); border-radius: 3px; }
.reel-poster-label { font-family: var(--display); font-weight: 500; font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(232,233,238,0.62); position: absolute; bottom: 24px; left: 26px; }

/* =========================================================
   SOCIAL MEDIA SAMPLES (Instagram embeds)
   ========================================================= */
.social-samples { padding: clamp(60px, 9vw, 108px) 0 clamp(50px, 7vw, 84px); background: var(--paper-2); }
.ig-strip { display: flex; gap: clamp(14px, 2vw, 22px); overflow-x: auto; padding: 6px var(--gutter) 26px; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: thin; align-items: flex-start; }
.ig-strip::-webkit-scrollbar { height: 7px; }
.ig-strip::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.ig-strip::-webkit-scrollbar-thumb:hover { background: var(--accent); }
.ig { flex: 0 0 auto; width: 328px; scroll-snap-align: start; }
.ig .instagram-media { margin: 0 !important; min-width: 100% !important; width: 100% !important; max-width: 100% !important; border-radius: 6px !important; box-shadow: 0 18px 40px -28px rgba(20,21,26,0.45) !important; }
/* graceful fallback before/without embed.js */
.ig > blockquote:not(.instagram-media-rendered) > a { display: block; padding: 60px 22px; text-align: center; background: var(--film); color: var(--on-film); border-radius: 6px; font-family: var(--display); font-weight: 500; font-size: 14px; }

/* =========================================================
   SELECTED WORK — horizontal filmstrip
   ========================================================= */
.work { padding: clamp(66px, 10vw, 120px) 0; background: var(--paper); }
.work.cine { padding-top: clamp(48px, 7vw, 84px); border-top: 1px solid var(--line); }
.work-strip { display: flex; gap: clamp(16px, 2vw, 26px); overflow-x: auto; padding: 6px var(--gutter) 30px; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.work-strip::-webkit-scrollbar { height: 7px; }
.work-strip::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.work-strip::-webkit-scrollbar-thumb:hover { background: var(--accent); }
.film { flex: 0 0 auto; width: clamp(280px, 80vw, 372px); scroll-snap-align: start; }
.film-media { position: relative; aspect-ratio: 16 / 9; border-radius: 6px; overflow: hidden; background: var(--film-2); display: block; }
.film-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.film:hover .film-media img { transform: scale(1.05); }
.film[data-provider] { cursor: pointer; }
.film-media .video-play .play-icon { width: 56px; height: 56px; }
.film-media .video-play .play-icon::after { border-width: 8px 0 8px 13px; }
/* typographic "title card" for films with no thumbnail */
.film-media--type { display: grid; place-items: center; background: linear-gradient(150deg, #1b2030 0%, #0d0f16 78%); }
.film-media--type::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(109,137,255,0.22); border-radius: 4px; }
.film-type { font-family: var(--display); font-weight: 600; font-size: clamp(18px, 2.4vw, 24px); letter-spacing: -0.01em; color: rgba(232,233,238,0.42); text-align: center; padding: 0 16px; }
.film-media--link { position: relative; }
.film-ext { position: absolute; left: 14px; bottom: 12px; z-index: 3; font-family: var(--display); font-weight: 500; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: rgba(47,86,255,0.9); padding: 6px 12px; border-radius: 100px; }
.film-cap { padding: 16px 2px 0; }
.film-cap h3 { font-family: var(--display); font-weight: 600; font-size: clamp(18px, 2vw, 22px); line-height: 1.15; margin: 0 0 8px; letter-spacing: -0.015em; }
.film-role { font-size: 10.5px; color: var(--accent-ink); margin: 0 0 9px; line-height: 1.5; }
.film-note { font-size: 14px; color: var(--ink-soft); margin: 0 0 10px; }
.film-studio { font-size: 10.5px; color: var(--muted); margin: 0; }

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding: clamp(66px, 10vw, 122px) 0; background: var(--paper-2); }
.about-inner { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px, 6vw, 76px); align-items: start; }
.about-portrait { position: sticky; top: 100px; }
.about-portrait img { width: 100%; height: auto; border-radius: 6px; box-shadow: 0 30px 60px -35px rgba(20,21,26,0.5); }
.about-body p { margin: 0 0 20px; color: var(--ink-soft); max-width: 60ch; }
.about-body p.lead { font-family: var(--display); font-weight: 500; font-size: clamp(21px, 2.6vw, 30px); line-height: 1.28; color: var(--ink); margin-bottom: 24px; letter-spacing: -0.015em; }
.about-body em { font-style: italic; }
.about-body strong { font-weight: 600; color: var(--ink); }
.stats { list-style: none; display: flex; gap: clamp(22px, 5vw, 54px); padding: 28px 0; margin: 12px 0 6px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats li { display: flex; flex-direction: column; }
.stats strong { font-family: var(--display); font-size: clamp(34px, 5vw, 52px); font-weight: 600; line-height: 1; color: var(--ink); }
.stats span { font-size: 10.5px; letter-spacing: 0.1em; color: var(--muted); margin-top: 9px; }
.recognition { margin-top: 24px; }
.recognition-label { font-size: 11px; color: var(--accent-ink); display: block; margin-bottom: 8px; }
.recognition p { font-family: var(--display); font-weight: 500; font-size: 17px; color: var(--ink); margin: 0; }

/* =========================================================
   CAPABILITIES (dark)
   ========================================================= */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(232,233,238,0.14); border: 1px solid rgba(232,233,238,0.14); margin-bottom: clamp(38px, 6vw, 58px); border-radius: 6px; overflow: hidden; }
.cap-grid span { background: var(--film); padding: clamp(22px, 3vw, 34px) 22px; font-family: var(--display); font-weight: 500; font-size: clamp(16px, 1.7vw, 20px); color: var(--on-film); transition: background .3s, color .3s; }
.cap-grid span:hover { background: var(--accent); color: #fff; }
.disciplines { display: flex; flex-wrap: wrap; gap: 12px 14px; margin-bottom: clamp(34px, 5vw, 50px); }
.disciplines span { font-family: var(--display); font-weight: 500; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(232,233,238,0.72); border: 1px solid rgba(232,233,238,0.22); border-radius: 100px; padding: 8px 16px; }
.disciplines a { color: var(--accent-light); }
.disciplines a:hover { color: #fff; }
.clients { font-family: var(--display); font-weight: 500; font-size: clamp(11px, 1.4vw, 13px); letter-spacing: 0.05em; color: rgba(232,233,238,0.62); line-height: 2.1; margin: 0; }
.clients b { color: var(--on-film); font-weight: 500; }

/* =========================================================
   PHOTOGRAPHY (horizontal strip)
   ========================================================= */
.photography { padding: clamp(66px, 10vw, 120px) 0 clamp(40px, 6vw, 66px); background: var(--paper); }
.photo-strip { display: flex; gap: 14px; overflow-x: auto; padding: 8px var(--gutter) 22px; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.photo-strip figure { margin: 0; flex: 0 0 auto; scroll-snap-align: start; }
.photo-strip img { height: clamp(230px, 33vw, 400px); width: auto; aspect-ratio: 3 / 2; border-radius: 6px; object-fit: cover; transition: transform .5s var(--ease); }
.photo-strip figure:hover img { transform: scale(1.02); }
.photo-strip::-webkit-scrollbar { height: 7px; }
.photo-strip::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.photo-strip::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* =========================================================
   CONTACT (dark)
   ========================================================= */
.contact-inner { max-width: 900px; }
.contact-lead { font-family: var(--display); font-weight: 700; font-size: clamp(38px, 7vw, 82px); line-height: 1.0; letter-spacing: -0.03em; margin: 0 0 20px; color: var(--on-film); }
.contact-sub { font-size: clamp(17px, 2vw, 20px); color: rgba(232,233,238,0.62); max-width: 520px; margin: 0 0 clamp(32px, 5vw, 46px); }
.contact-email { font-family: var(--display); font-weight: 500; font-size: clamp(20px, 3.4vw, 40px); color: var(--on-film); display: inline-block; border-bottom: 1px solid rgba(232,233,238,0.3); padding-bottom: 6px; transition: color .3s, border-color .3s; letter-spacing: -0.01em; }
.contact-email i { font-style: normal; color: var(--accent-light); font-size: 0.7em; }
.contact-email:hover { color: var(--accent-light); border-color: var(--accent-light); }
.social { list-style: none; display: flex; gap: 26px; padding: 0; margin: clamp(38px, 6vw, 56px) 0 0; flex-wrap: wrap; }
.social a { font-family: var(--display); font-weight: 500; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(232,233,238,0.72); position: relative; padding-bottom: 4px; }
.social a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--accent-light); transition: width .3s var(--ease); }
.social a:hover { color: var(--on-film); }
.social a:hover::after { width: 100%; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--film-2); color: rgba(232,233,238,0.55); padding: clamp(40px, 5vw, 54px) 0 34px; }
.footer-inner { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-bottom: 22px; border-bottom: 1px solid rgba(232,233,238,0.12); }
.footer-brand { font-family: var(--display); font-weight: 600; font-size: 20px; color: var(--on-film); }
.footer-loc { font-size: 12px; }
.footer-top { font-size: 12px; transition: color .2s; }
.footer-top:hover { color: var(--accent-light); }
.footer-legal { padding-top: 20px; font-size: 11px; letter-spacing: 0.04em; color: rgba(232,233,238,0.5); font-family: var(--display); }

/* =========================================================
   PHOTO HERO (Teton background)
   ========================================================= */
.hero--photo { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 96px 0 clamp(60px, 9vw, 104px); color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: #0a0b0f url("/assets/img/hero-teton.jpg") center 42% / cover no-repeat; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,11,18,0.5) 0%, rgba(9,11,18,0.44) 45%, rgba(9,11,18,0.72) 100%); }
.hero--photo .hero-inner { position: relative; z-index: 1; }
.hero--photo .eyebrow { color: #b9c6ff; }
.hero--photo .hero-title { color: #fff; }
.hero--photo .hero-title span { color: var(--accent-light); }
.hero--photo .hero-lead { color: rgba(255,255,255,0.9); }
.hero--photo .hero-credit { color: rgba(255,255,255,0.72); }
.hero--photo .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.55); }
.hero--photo .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* Header: light over the photo hero, dark once scrolled onto a light section */
.site-header .brand { color: #fff; transition: color .4s var(--ease); }
.site-header .nav a { color: rgba(255,255,255,0.86); }
.site-header .nav .nav-cta { color: #fff; border-color: rgba(255,255,255,0.6); }
.site-header .nav-toggle span { background: #fff; }
.site-header.scrolled .brand { color: var(--ink); }
.site-header.scrolled .nav a { color: var(--ink-soft); }
.site-header.scrolled .nav .nav-cta { color: var(--ink); border-color: var(--ink); }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* =========================================================
   MORE CREDITS list (video-less projects)
   ========================================================= */
.credits { margin-top: clamp(30px, 5vw, 46px); padding-top: clamp(28px, 4vw, 40px); border-top: 1px solid var(--line); }
.credits-title { font-family: var(--display); font-weight: 600; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 20px; }
.credits-list { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: clamp(30px, 6vw, 80px); }
.credits-list li { break-inside: avoid; padding: 13px 0; border-bottom: 1px solid var(--line); }
.c-name { font-family: var(--display); font-weight: 600; font-size: 16px; display: block; letter-spacing: -0.01em; }
.c-name a { transition: color .2s; }
.c-name a:hover { color: var(--accent-ink); }
.c-role { font-size: 12.5px; color: var(--muted); display: block; margin-top: 3px; }
.c-studio { font-family: var(--display); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-ink); display: block; margin-top: 4px; }
@media (max-width: 620px) { .credits-list { columns: 1; } }

/* =========================================================
   REVEAL + RESPONSIVE
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-portrait { position: static; max-width: 460px; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav { display: none; }
  .nav-toggle { display: block; }
  .footer-inner { flex-direction: column; gap: 10px; }
}
@media (max-width: 420px) { .cap-grid { grid-template-columns: 1fr; } .hero-actions .btn { flex: 1 1 auto; justify-content: center; } }
@media (min-width: 761px) { .nav-toggle { display: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* credits: optional one-line description */
.c-note { font-size: 13px; color: var(--ink-soft); display: block; margin-top: 4px; max-width: 44ch; }

/* About — Jane Goodall feature photo */
.about-feature { margin: clamp(36px, 5vw, 60px) 0 0; }
.about-feature img { width: 100%; border-radius: 6px; box-shadow: 0 30px 60px -35px rgba(20,21,26,0.4); }
.about-feature figcaption { font-family: var(--display); font-size: 13px; color: var(--muted); margin-top: 14px; letter-spacing: 0.01em; }
.about-feature figcaption strong { color: var(--ink); font-weight: 600; }
.about-feature figcaption em { font-style: italic; }
