/* ---------- Tokens ---------- */
:root {
  --black: #070707;      /* page background */
  --panel: #111111;      /* bands, cards */
  --raise: #1A1A1A;      /* hover and active surfaces */
  --line: #242424;       /* dividers */
  --text: #EDEDED;       /* main text */
  --mist: #8C8C8C;       /* secondary text */
  --accent: #2563EB;       /* electric blue: button fill */
  --accent-hover: #1D4ED8;
  --on-accent: #FFFFFF;    /* text on buttons */
  --accent-ink: #6EA0FF;   /* lighter blue for text and lines on black */
  --radius: 4px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --max: 1320px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--text); font-family: 'Archivo', system-ui, sans-serif; font-size: 1.0625rem; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 100; background: var(--accent); color: var(--on-accent); padding: .6rem 1rem; font-weight: 700; text-decoration: none; border-radius: var(--radius); }
.skip-link:focus { top: 1rem; }
.wrap { max-width: var(--max); margin-left: auto; margin-right: auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding-top: clamp(4rem, 10vw, 8rem); padding-bottom: clamp(4rem, 10vw, 8rem); }
.flush-top { padding-top: 0; }

.h2 { font-stretch: 125%; font-weight: 750; font-size: clamp(1.9rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -.01em; }
.lede { color: var(--mist); max-width: 48ch; margin-top: .85rem; }
.text-link { font-weight: 600; text-decoration: underline; text-decoration-color: var(--accent-ink); text-decoration-thickness: 2px; text-underline-offset: .3em; }
.text-link:hover { color: var(--accent-ink); }
.section-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1rem 2rem; margin-bottom: 2.5rem; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .9rem 1.5rem; border-radius: var(--radius); border: 1.5px solid transparent; font-weight: 650; font-size: 1rem; text-decoration: none; white-space: nowrap; cursor: pointer; transition: background-color .2s, border-color .2s; }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { background: transparent; border-color: rgba(237, 237, 237, .4); color: var(--text); }
.btn-ghost:hover { border-color: var(--text); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.5rem; margin-top: 2rem; }

/* ---------- Header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 40; border-bottom: 1px solid transparent; transition: background-color .3s, border-color .3s; }
.site-header.is-scrolled { background: rgba(7, 7, 7, .9); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; padding-top: 1rem; padding-bottom: 1rem; }
.logo { position: relative; z-index: 41; margin-right: auto; font-stretch: 125%; font-weight: 800; font-size: 1.15rem; text-decoration: none; }
.primary-nav ul { list-style: none; display: flex; gap: 2rem; }
.primary-nav a { text-decoration: none; font-size: .95rem; color: var(--mist); transition: color .2s; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--text); }
.nav-mobile-only { display: none; }
.header-cta { position: relative; z-index: 41; padding: .65rem 1.1rem; font-size: .95rem; }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; position: relative; z-index: 41; width: 44px; height: 44px; align-items: center; justify-content: center; background: transparent; border: 0; color: var(--text); cursor: pointer; }
  .nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after { display: block; width: 24px; height: 2px; background: currentColor; transition: transform .25s, background-color .25s; }
  .nav-toggle-bars { position: relative; }
  .nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
  .nav-toggle-bars::before { top: -7px; }
  .nav-toggle-bars::after { top: 7px; }
  .nav-open .nav-toggle-bars { background: transparent; }
  .nav-open .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle-bars::after { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 0; z-index: 40; display: none; align-items: center; justify-content: center; background: var(--black); }
  .nav-open .primary-nav { display: flex; }
  .primary-nav ul { flex-direction: column; align-items: center; gap: 1.5rem; }
  .primary-nav a { font-stretch: 125%; font-weight: 700; font-size: 1.75rem; color: var(--text); }
  .nav-mobile-only { display: list-item; }
  .header-inner { gap: .75rem; }
  .logo { font-size: 1rem; }
  .header-cta { padding: .55rem .85rem; font-size: .85rem; }
}
@media (max-width: 359px) { .header-cta { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: radial-gradient(90% 60% at 85% 10%, rgba(37, 99, 235, .10), transparent 60%), var(--black); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7, 7, 7, 1) 0%, rgba(7, 7, 7, .7) 38%, rgba(7, 7, 7, .25) 68%, rgba(7, 7, 7, .6) 100%); }
.hero-content { position: relative; z-index: 1; width: 100%; padding-top: 8rem; padding-bottom: clamp(3rem, 9vh, 6rem); }
.hero h1 { font-stretch: 125%; font-weight: 800; font-size: clamp(2rem, 4.6vw, 4.2rem); line-height: 1.02; letter-spacing: -.015em; max-width: 22ch; }
.hero-sub { margin-top: 1.5rem; max-width: 52ch; color: #C4C4C4; font-size: clamp(1.05rem, 1.4vw, 1.2rem); }
@media (prefers-reduced-motion: no-preference) {
  .hero-content > * { opacity: 0; transform: translateY(14px); animation: rise .8s cubic-bezier(.2, .7, .2, 1) forwards; }
  .hero-content > :nth-child(2) { animation-delay: .12s; }
  .hero-content > :nth-child(3) { animation-delay: .24s; }
}
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Recent work strip ---------- */
.proof { border-bottom: 1px solid var(--line); }
.proof-inner { display: flex; flex-wrap: wrap; align-items: baseline; gap: .75rem 2.5rem; padding-top: 1.75rem; padding-bottom: 1.75rem; }
.proof-label { color: var(--mist); font-size: .95rem; }
.proof ul { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem 2.25rem; }
.proof li { font-stretch: 112%; font-weight: 600; }

/* ---------- Featured video + lights down ---------- */
.player { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 1.25rem; align-items: start; }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: #000; border-radius: var(--radius); overflow: hidden; }
.video-frame video { width: 100%; height: 100%; object-fit: contain; }
.lights-down .video-frame { z-index: 46; box-shadow: 0 0 0 1px var(--line); }
.lights { position: fixed; inset: 0; z-index: 45; background: rgba(0, 0, 0, .9); opacity: 0; pointer-events: none; transition: opacity .6s ease; }
.lights-down .lights { opacity: 1; pointer-events: auto; cursor: pointer; }
.video-play { position: absolute; inset: 0; margin: auto; width: 84px; height: 84px; border: 0; border-radius: 50%; background: var(--accent); color: var(--on-accent); display: grid; place-items: center; cursor: pointer; transition: transform .2s, background-color .2s; }
.video-play:hover { transform: scale(1.06); background: var(--accent-hover); }
.video-play[hidden] { display: none; }
.player-bar { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; }
.player-caption { flex: 1; font-weight: 650; font-size: 1.15rem; }
.player-counter { color: var(--mist); font-variant-numeric: tabular-nums; }
.player-nav { display: flex; gap: .5rem; }
.player-nav button { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line); background: transparent; color: var(--text); font-size: 1.5rem; line-height: 1; cursor: pointer; transition: border-color .2s; }
.player-nav button:hover { border-color: var(--text); }
.player-hint { margin-top: .5rem; color: var(--mist); font-size: .9rem; }

.rail { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.rail-item { width: 100%; display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: .9rem; align-items: center; padding: .5rem; border: 1px solid transparent; border-radius: var(--radius); background: transparent; color: var(--text); text-align: left; cursor: pointer; transition: background-color .2s, border-color .2s; }
.rail-thumb { position: relative; width: 112px; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 2px; background: var(--panel); }
.rail-thumb img, .rail-preview { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rail-item:hover { background: var(--raise); }
.rail-item.is-active { background: var(--raise); border-color: var(--accent-ink); }
.rail-title { display: block; font-weight: 600; font-size: .95rem; line-height: 1.3; }
.rail-kind { display: block; margin-top: .15rem; color: var(--mist); font-size: .85rem; }
@media (max-width: 960px) {
  .player { grid-template-columns: minmax(0, 1fr); }
  .rail { flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .5rem; }
  .rail li { flex: 0 0 210px; scroll-snap-align: start; }
  .rail-item { grid-template-columns: minmax(0, 1fr); }
  .rail-thumb { width: 100%; }
}

/* ---------- Before and after slider ---------- */
.compare { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--radius); background: var(--panel); --pos: 50%; user-select: none; }
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.compare-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.compare-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; background: var(--text); pointer-events: none; }
.compare-handle span { position: absolute; top: 50%; left: 50%; width: 48px; height: 48px; transform: translate(-50%, -50%); border-radius: 50%; background: var(--text); color: var(--black); display: grid; place-items: center; font-weight: 700; font-size: 1.1rem; letter-spacing: .1em; }
.compare input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none; }
.compare:focus-within { outline: 2px solid var(--accent-ink); outline-offset: 3px; }
.compare-tag { position: absolute; top: 1rem; padding: .3rem .7rem; border-radius: var(--radius); background: rgba(7, 7, 7, .75); font-size: .85rem; font-weight: 600; pointer-events: none; }
.compare-tag-raw { left: 1rem; }
.compare-tag-final { right: 1rem; }

/* ---------- Who I work with ---------- */
.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 3rem; }
.split-intro { align-self: start; position: sticky; top: 7rem; }
.industries { list-style: none; border-top: 1px solid var(--line); }
.industries li { padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.ind-name { display: block; font-stretch: 125%; font-weight: 700; font-size: clamp(1.4rem, 2.8vw, 2.2rem); line-height: 1.1; }
.ind-desc { display: block; margin-top: .35rem; color: var(--mist); }
@media (max-width: 860px) {
  .split { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .split-intro { position: static; }
}

/* ---------- Photography ---------- */
.collections { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(2, clamp(220px, 24vw, 340px)); gap: 1rem; }
.collection-card { position: relative; display: block; overflow: hidden; border-radius: var(--radius); background: var(--panel); text-decoration: none; }
.collection-card:first-child { grid-row: span 2; }
.collection-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.collection-card:hover img { transform: scale(1.03); }
.collection-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7, 7, 7, .9), rgba(7, 7, 7, 0) 55%); }
.collection-meta { position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.1rem; z-index: 1; }
.collection-meta h3 { font-stretch: 115%; font-weight: 700; font-size: clamp(1.15rem, 2vw, 1.6rem); line-height: 1.15; }
.collection-meta span { color: #C4C4C4; font-size: .9rem; }
@media (max-width: 700px) {
  .collections { grid-template-columns: minmax(0, 1fr); grid-template-rows: none; }
  .collection-card, .collection-card:first-child { grid-row: auto; aspect-ratio: 4 / 3; }
}

/* ---------- Hey, I'm Sean ---------- */
.intro { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 3rem; align-items: center; }
.intro.no-photo { grid-template-columns: minmax(0, 1fr); }
.intro-photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; border-radius: var(--radius); background: var(--panel); }
.intro-copy { font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.55; max-width: 46ch; margin: 1rem 0 1.5rem; }
@media (max-width: 800px) {
  .intro { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .intro-photo { max-width: 360px; margin-left: auto; margin-right: auto; }
}

/* ---------- Monthly content ---------- */
.monthly { background: var(--panel); }
.monthly-inner { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 3rem; align-items: start; }
.monthly-copy { font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.55; max-width: 46ch; }
.monthly-note { color: var(--mist); }
@media (max-width: 860px) { .monthly-inner { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; } }

/* ---------- Project starter ---------- */
.starter { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 3rem; }
.starter .h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); max-width: 12ch; }
.starter fieldset { border: 0; margin-bottom: 1.75rem; }
.starter legend { font-weight: 650; margin-bottom: .75rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
.chip span { display: inline-block; padding: .6rem 1rem; border: 1.5px solid var(--line); border-radius: 999px; font-size: .95rem; transition: border-color .2s, background-color .2s, color .2s; }
.chip:hover span { border-color: #4A4A4A; }
.chip input:checked + span { background: var(--accent); border-color: var(--accent); color: var(--on-accent); font-weight: 600; }
.chip input:focus-visible + span { outline: 2px solid var(--accent-ink); outline-offset: 3px; }
.starter-summary { padding: 1.25rem 1.5rem; border-radius: var(--radius); background: var(--panel); border-left: 3px solid var(--accent-ink); font-size: 1.1rem; }
.starter-summary.is-empty { color: var(--mist); border-left-color: var(--line); }
@media (max-width: 860px) { .starter { grid-template-columns: minmax(0, 1fr); gap: 2rem; } }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); color: var(--mist); font-size: .95rem; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem 3rem; padding-top: 2.5rem; padding-bottom: 2.5rem; }
.footer-brand .logo { display: inline-block; color: var(--text); margin-bottom: .4rem; }
.footer-links { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; align-content: flex-start; }
.footer-links a { text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-legal { width: 100%; font-size: .85rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lights, .collection-card img { transition: none; }
}

/* ---------- Work page: intro ---------- */
.page-intro { padding-top: clamp(8rem, 16vh, 11rem); padding-bottom: clamp(2rem, 5vw, 3.5rem); }
.page-intro h1 { font-stretch: 125%; font-weight: 800; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.02; letter-spacing: -.015em; max-width: 18ch; }

/* ---------- Work page: category filter ---------- */
.filter { position: sticky; top: 0; z-index: 30; background: rgba(7, 7, 7, .92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.filter-inner { display: flex; gap: .5rem; overflow-x: auto; padding-top: 1rem; padding-bottom: 1rem; scrollbar-width: none; }
.filter-inner::-webkit-scrollbar { display: none; }
.filter-btn { flex: none; padding: .55rem 1.05rem; border: 1.5px solid var(--line); border-radius: 999px; background: transparent; color: var(--text); font-size: .95rem; cursor: pointer; transition: border-color .2s, background-color .2s, color .2s; }
.filter-btn:hover { border-color: #4A4A4A; }
.filter-btn.is-active { background: var(--accent); border-color: var(--accent); color: var(--on-accent); font-weight: 600; }
.filter-count { color: var(--mist); font-size: .9rem; margin-top: .25rem; }

/* ---------- Work page: category sections ---------- */
.work-category { padding-top: clamp(3rem, 7vw, 5rem); }
.work-category[hidden] { display: none; }
.work-category h2 { font-stretch: 125%; font-weight: 750; font-size: clamp(1.6rem, 3.2vw, 2.6rem); line-height: 1.1; margin-bottom: 1.5rem; }
.work-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.25rem; }
.work-figure { margin: 0; }
.work-media { position: relative; aspect-ratio: 16 / 9; background: #000; border-radius: var(--radius); overflow: hidden; }
.work-media video { width: 100%; height: 100%; object-fit: contain; background: #000; }
.work-media .video-play { width: 64px; height: 64px; }
.work-figure figcaption { margin-top: .7rem; font-weight: 600; }
@media (max-width: 420px) { .work-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Work page: photo collections ---------- */
.work-collection + .work-collection { margin-top: clamp(2.5rem, 6vw, 4rem); }
.work-collection h3 { font-stretch: 115%; font-weight: 700; font-size: clamp(1.2rem, 2.2vw, 1.7rem); margin-bottom: 1rem; }
.shots { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .75rem; }
.shot { position: relative; display: block; padding: 0; border: 0; border-radius: var(--radius); overflow: hidden; background: var(--panel); aspect-ratio: 3 / 2; cursor: zoom-in; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .3s; }
.shot:hover img { transform: scale(1.04); opacity: .85; }
@media (max-width: 480px) { .shots { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem; } }

/* ---------- Work page: lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 70; display: grid; place-items: center; background: rgba(0, 0, 0, .96); padding: clamp(1rem, 4vw, 3rem); }
.lightbox[hidden] { display: none; }
.lightbox-img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 2px; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid rgba(237, 237, 237, .3); background: rgba(7, 7, 7, .6); color: var(--text); font-size: 1.6rem; line-height: 1; cursor: pointer; transition: border-color .2s; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { border-color: var(--text); }
.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox-counter { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: var(--mist); font-variant-numeric: tabular-nums; }
@media (max-width: 600px) {
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
}

/* ---------- Work page: nothing here yet ---------- */
.empty-note { padding: 3rem 0; color: var(--mist); }
.empty-note[hidden] { display: none; }

/* ---------- Services page ---------- */
.service { border-top: 1px solid var(--line); padding-top: clamp(2rem, 5vw, 3rem); margin-top: clamp(2.5rem, 6vw, 4rem); }
.service-top { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 1rem 3rem; align-items: start; }
.service h2 { font-stretch: 125%; font-weight: 750; font-size: clamp(1.7rem, 3.4vw, 2.8rem); line-height: 1.05; }
.service-tag { display: inline-block; margin-bottom: .6rem; padding: .25rem .7rem; border-radius: 999px; background: var(--accent); color: var(--on-accent); font-size: .8rem; font-weight: 650; letter-spacing: .04em; text-transform: uppercase; }
.service-copy { font-size: clamp(1.1rem, 1.7vw, 1.3rem); line-height: 1.55; max-width: 46ch; }
.service-points { list-style: none; margin-top: 1.5rem; display: grid; gap: .6rem; max-width: 46ch; }
.service-points li { position: relative; padding-left: 1.6rem; color: var(--mist); }
.service-points li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 2px; background: var(--accent-ink); }
.service-foot { margin-top: 1.75rem; }
@media (max-width: 860px) { .service-top { grid-template-columns: minmax(0, 1fr); gap: 1rem; } }

/* ---------- Services page: what happens after you reach out ---------- */
.process { background: var(--panel); }
.process-list { list-style: none; counter-reset: step; margin-top: 2.5rem; display: grid; gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-list li { counter-increment: step; background: var(--panel); display: grid; grid-template-columns: 3.5rem minmax(0, 1fr); gap: 1rem; padding: 1.5rem 0; }
.process-list li::before { content: counter(step, decimal-leading-zero); font-stretch: 125%; font-weight: 800; font-size: 1.5rem; color: var(--accent-ink); line-height: 1.2; }
.process-list h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .25rem; }
.process-list p { color: var(--mist); max-width: 52ch; }

/* ---------- Services page: FAQ ---------- */
.faq { max-width: 760px; margin-top: 2.5rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.25rem 0; font-weight: 650; font-size: 1.1rem; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; font-size: 1.6rem; line-height: 1; color: var(--accent-ink); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--accent-ink); }
.faq-answer { padding-bottom: 1.25rem; color: var(--mist); max-width: 60ch; }

/* ---------- About page ---------- */
.about-top { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-top.no-photo { grid-template-columns: minmax(0, 1fr); max-width: 46ch; }
.about-photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; border-radius: var(--radius); background: var(--panel); }
.about-copy p { font-size: clamp(1.1rem, 1.7vw, 1.3rem); line-height: 1.6; max-width: 46ch; }
.about-copy p + p { margin-top: 1.25rem; }
@media (max-width: 860px) {
  .about-top { grid-template-columns: minmax(0, 1fr); }
  .about-photo { max-width: 340px; margin-left: auto; margin-right: auto; }
}

/* ---------- About page: what you get working with me ---------- */
.facts { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.facts li { border-top: 2px solid var(--accent-ink); padding-top: 1.1rem; }
.facts h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .35rem; }
.facts p { color: var(--mist); max-width: 34ch; }
@media (max-width: 800px) { .facts { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; } }

/* ---------- About page: gear ---------- */
.gear { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.gear li { padding: .5rem 1rem; border: 1.5px solid var(--line); border-radius: 999px; color: var(--mist); font-size: .95rem; }

/* ---------- Contact page ---------- */
.contact-layout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 860px) { .contact-layout { grid-template-columns: minmax(0, 1fr); } }

.form-field { margin-bottom: 1.5rem; }
.form-field label, .form-legend { display: block; margin-bottom: .5rem; font-weight: 650; }
.form-field input, .form-field textarea {
  width: 100%; padding: .85rem 1rem; background: var(--panel); color: var(--text);
  border: 1.5px solid var(--line); border-radius: var(--radius); font-size: 1rem; line-height: 1.5;
  transition: border-color .2s;
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #6B6B6B; }
.form-field input:hover, .form-field textarea:hover { border-color: #3A3A3A; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); }
.form-hint { margin-top: .4rem; color: var(--mist); font-size: .9rem; }
.form-required { color: var(--mist); font-weight: 400; }

.form-status { margin-top: 1rem; font-weight: 600; }
.form-status[hidden] { display: none; }
.form-status.is-error { color: #FF7A85; }
.form-status.is-working { color: var(--mist); font-weight: 400; }

.form-sent { padding: 2rem; border-radius: var(--radius); background: var(--panel); border-left: 3px solid var(--accent); }
.form-sent[hidden] { display: none; }
.form-sent h2 { font-stretch: 115%; font-weight: 700; font-size: 1.5rem; margin-bottom: .5rem; }
.form-sent p { color: var(--mist); max-width: 44ch; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Contact page: side panel ---------- */
.contact-side { border-top: 1px solid var(--line); padding-top: 1.5rem; }
.contact-side h2 { font-stretch: 115%; font-weight: 700; font-size: 1.25rem; margin-bottom: .5rem; }
.contact-side p { color: var(--mist); max-width: 40ch; }
.contact-direct { list-style: none; margin: 1.25rem 0 2rem; display: grid; gap: .6rem; }
.contact-direct a { font-weight: 600; text-decoration: underline; text-decoration-color: var(--accent-ink); text-decoration-thickness: 2px; text-underline-offset: .3em; }
.contact-direct a:hover { color: var(--accent-ink); }
.contact-meta { border-top: 1px solid var(--line); padding-top: 1.5rem; margin-top: 2rem; }
