:root {
  --bg: #0d0d0f;
  --bg-soft: #151518;
  --maroon: #6e1f2a;
  --wine: #923447;
  --rose: #b85c70;
  --text: #f5f1ed;
  --text-soft: #b8b1aa;
  --border: #30282b;
  --heading: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", Arial, sans-serif;
  --container: min(1180px, calc(100% - 48px));
  --header-height: 76px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.container { width: var(--container); margin-inline: auto; }
.section-pad { padding: 140px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(48, 40, 43, .75);
  background: rgba(13, 13, 15, .88);
  backdrop-filter: blur(16px);
}

.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { font: 800 1.55rem/1 var(--heading); letter-spacing: .07em; }
.brand span { color: var(--rose); }
.primary-nav { display: flex; align-items: center; gap: clamp(20px, 2.3vw, 38px); }
.primary-nav a { position: relative; color: var(--text-soft); font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: color .2s ease; }
.primary-nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--rose); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.primary-nav a:hover, .primary-nav a.active { color: var(--text); }
.primary-nav a:hover::after, .primary-nav a.active::after { transform: scaleX(1); }
.header-cta { padding: 10px 0 7px; border-bottom: 1px solid var(--rose); font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 11px 8px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 26px; height: 1px; margin: 6px 0; background: var(--text); transition: transform .2s ease; }

.eyebrow { display: flex; align-items: center; gap: 14px; margin: 0 0 34px; color: var(--rose); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { width: 34px; height: 1px; background: var(--rose); content: ""; }

.hero { position: relative; min-height: calc(100vh - var(--header-height)); padding-top: 90px; padding-bottom: clamp(64px, 7vw, 90px); overflow: hidden; }
.hero-orb { position: absolute; top: 14%; right: -8vw; width: clamp(270px, 34vw, 540px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 35% 35%, var(--wine), var(--maroon) 45%, #321116 75%); opacity: .78; filter: saturate(.75); }
.hero-orb::after { position: absolute; inset: 12%; border: 1px solid rgba(245, 241, 237, .12); border-radius: inherit; content: ""; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(270px, .65fr); align-items: center; gap: clamp(42px, 6vw, 90px); }
.hero-copy h1 { position: relative; z-index: 2; margin: 0; font: 800 clamp(4.4rem, 9.2vw, 8.7rem)/.77 var(--heading); letter-spacing: -.035em; text-transform: uppercase; }
.hero-copy h1 span { display: block; }
.hero-copy .accent-text { color: var(--rose); }
.hero-intro { display: grid; grid-template-columns: minmax(260px, 450px) auto; align-items: end; gap: 42px; margin-top: 48px; }
.hero-intro p { margin: 0; color: var(--text-soft); font-size: 1rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 18px; padding: 12px 20px; border: 1px solid var(--border); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { border-color: var(--wine); background: var(--wine); color: var(--text); }
.button-primary:hover { border-color: var(--rose); background: var(--rose); }
.button-secondary { background: transparent; }
.button-secondary:hover { border-color: var(--rose); color: var(--rose); }
.hero-portrait-wrap { position: relative; align-self: end; padding-top: 48px; }
.portrait-frame { position: relative; aspect-ratio: 3 / 4; min-height: 510px; border: 1px solid rgba(146, 52, 71, .58); border-radius: clamp(58px, 7vw, 96px) 18px clamp(46px, 6vw, 78px) 28px; background: var(--bg-soft); box-shadow: 0 30px 70px rgba(0, 0, 0, .38), 0 0 42px rgba(110, 31, 42, .14); overflow: hidden; }
.portrait-frame::after { position: absolute; z-index: 1; inset: 0; background: linear-gradient(to bottom, rgba(110, 31, 42, .055) 0%, rgba(110, 31, 42, .035) 56%, rgba(13, 13, 15, .22) 74%, rgba(13, 13, 15, .9) 100%); content: ""; pointer-events: none; }
.portrait-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 57% 38%; filter: brightness(1.02) contrast(1.015) saturate(.98); }
.portrait-image.is-missing { display: none; }
.portrait-label { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 13px 16px; border-top: 1px solid var(--border); background: rgba(13, 13, 15, .72); font-size: .6rem; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.section-heading h2 { margin: 0; font: 800 clamp(3.4rem, 6.4vw, 6.5rem)/.86 var(--heading); letter-spacing: -.025em; text-transform: uppercase; }
.outline-text { color: transparent; -webkit-text-stroke: 1px var(--text-soft); }
.split-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(60px, 10vw, 150px); }
.about { border-top: 1px solid var(--border); background: var(--bg-soft); }
.about-copy { align-self: end; padding-bottom: 8px; }
.about-copy p { margin: 0 0 24px; color: var(--text-soft); }
.about-copy .lead { color: var(--text); font-size: clamp(1.25rem, 2.1vw, 1.65rem); line-height: 1.5; }
.text-link { display: inline-flex; gap: 20px; margin-top: 24px; padding-bottom: 8px; border-bottom: 1px solid var(--rose); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 70px; }
.section-heading-row > p { width: min(100%, 340px); margin: 0; color: var(--text-soft); }
.services { padding: 64px 0; background: var(--bg); }
.services .section-heading-row { margin-bottom: 34px; }
.services .section-heading h2 { font-size: clamp(2.7rem, 4.7vw, 4.5rem); }
.services .eyebrow { margin-bottom: 22px; }
.services .section-heading-row > p { max-width: 310px; font-size: .86rem; }
.service-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.service-item { display: grid; min-height: 160px; grid-template-columns: 34px minmax(0, 1fr); align-items: start; gap: 18px; margin: 0; padding: 26px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.service-number { color: var(--rose); font-size: .65rem; letter-spacing: .12em; }
.service-item h3 { margin: -5px 0 10px; font: 700 clamp(1.65rem, 2.2vw, 2.15rem)/1 var(--heading); text-transform: uppercase; }
.service-item p { max-width: 470px; margin: 0; color: var(--text-soft); font-size: .78rem; line-height: 1.6; }

.projects { padding: 160px 0; border-top: 1px solid var(--border); background: var(--bg-soft); }
.projects .section-heading-row { margin-bottom: 82px; }
.featured-project { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; min-height: 650px; border: 1px solid var(--border); background: var(--bg); transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.featured-project:hover { border-color: rgba(146, 52, 71, .72); box-shadow: 0 24px 70px rgba(0, 0, 0, .22); transform: translateY(-2px); }
.project-card-link { position: absolute; z-index: 1; inset: 0; }
.featured-project .button-row { position: relative; z-index: 2; }
.project-visual { position: relative; min-height: 560px; overflow: hidden; }
.project-visual img { width: 100%; height: 100%; object-fit: cover; }
.project-visual img.is-missing { display: none; }
.glow-haven-slider { background: #09090b; box-shadow: inset 0 0 0 1px rgba(146, 52, 71, .52); }
.glow-haven-slider .project-slide img { object-fit: contain; transform: scale(1); }
.glow-haven-slider .project-slide.is-active img { transform: scale(1.012); }
.project-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: radial-gradient(circle at 20% 30%, rgba(184, 92, 112, .22), transparent 34%), linear-gradient(135deg, #461921, #140f11 70%); text-align: center; }
.project-placeholder::before, .project-placeholder::after { position: absolute; width: 55%; aspect-ratio: 1; border: 1px solid rgba(245, 241, 237, .11); border-radius: 50%; content: ""; }
.project-placeholder::after { width: 38%; }
.project-placeholder span, .project-placeholder small { position: relative; z-index: 1; font-size: .62rem; letter-spacing: .22em; }
.project-placeholder strong { position: relative; z-index: 1; margin: 20px 0; font: 800 clamp(4rem, 8vw, 7rem)/.72 var(--heading); letter-spacing: -.02em; }
.project-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 5vw, 72px); border-left: 1px solid var(--border); }
.featured-project-badge { align-self: flex-start; margin-bottom: 14px; padding: 7px 10px; border: 1px solid rgba(184, 92, 112, .48); border-radius: 999px; background: rgba(146, 52, 71, .12); color: var(--rose); font-size: .58rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.project-type { margin: 0 0 22px; color: var(--rose); font-size: .66rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.project-content h3 { margin: 0 0 26px; font: 800 clamp(3.2rem, 5vw, 5rem)/.82 var(--heading); text-transform: uppercase; }
.project-content > p:not(.project-type) { margin: 0 0 28px; color: var(--text-soft); font-size: .9rem; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 20px; margin: 0 0 34px; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 14px; color: var(--text-soft); font-size: .72rem; }
.feature-list li::before { position: absolute; top: .75em; left: 0; width: 4px; height: 4px; border-radius: 50%; background: var(--rose); content: ""; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 28px; }
.project-card { position: relative; border: 1px solid var(--border); background: var(--bg); transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.project-card:hover { border-color: var(--wine); box-shadow: 0 18px 48px rgba(0, 0, 0, .2); transform: translateY(-4px); }
.card-art { position: relative; display: grid; min-height: 280px; place-items: center; overflow: hidden; color: rgba(245, 241, 237, .65); font: 700 clamp(2.5rem, 5vw, 4.5rem)/1 var(--heading); letter-spacing: -.02em; }
.card-art::after { position: absolute; z-index: 1; inset: 0; background: linear-gradient(to top, rgba(13, 13, 15, .68), rgba(13, 13, 15, .08) 60%, rgba(13, 13, 15, .18)); content: ""; pointer-events: none; }
.project-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.15s ease; }
.project-slide.is-active { opacity: 1; }
.project-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.01); transition: transform 4.5s ease; }
.project-slide.is-active img { transform: scale(1.045); }
.slider-dots { position: absolute; z-index: 2; bottom: 15px; left: 50%; display: flex; gap: 6px; transform: translateX(-50%); pointer-events: none; }
.slider-dots i { width: 5px; height: 5px; border-radius: 50%; background: rgba(245, 241, 237, .35); transition: width .35s ease, background .35s ease; }
.slider-dots i.is-active { width: 15px; border-radius: 4px; background: var(--rose); }
.card-art-video { background: repeating-linear-gradient(90deg, transparent 0 48px, rgba(245, 241, 237, .05) 49px 50px), linear-gradient(135deg, #251419, #121214); }
.card-art-design { background: radial-gradient(circle, transparent 30%, rgba(184, 92, 112, .22) 31% 46%, transparent 47%), #171316; }
.card-art-social { background: linear-gradient(45deg, rgba(146, 52, 71, .25) 25%, transparent 25% 75%, rgba(146, 52, 71, .25) 75%), #121214; background-size: 80px 80px; }
.card-info { min-height: 184px; padding: 28px; border-top: 1px solid var(--border); }
.card-info span { color: var(--rose); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; }
.card-info h3 { margin: 8px 0 4px; font: 700 1.8rem/1 var(--heading); text-transform: uppercase; }
.card-info p { margin: 0; color: var(--text-soft); font-size: .8rem; }
.project-card-button { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 20px; padding: 12px 0 8px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--rose); font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.project-card-button b { color: var(--rose); font-size: 1rem; font-weight: 400; transition: transform .2s ease; }
.project-card-button:hover b { transform: translate(3px, -3px); }

.skills { overflow: hidden; border-top: 1px solid var(--border); background: var(--bg); }
.skills .section-heading-row { margin-bottom: 48px; }
.skills-heading > p { max-width: 580px; }
.core-skills { margin-bottom: 44px; padding: 26px 0 28px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.core-skills-label { margin: 0 0 18px; color: var(--rose); font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.core-skills-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.core-skills-list li { padding: 11px 15px; border: 1px solid var(--border); border-radius: 999px; background: var(--bg-soft); color: var(--text-soft); font-size: .72rem; font-weight: 500; }
.tools-marquee { min-width: 0; overflow: hidden; padding: 10px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); }
.tool-marquee-row { overflow: hidden; }
.tool-marquee-row + .tool-marquee-row { margin-top: 12px; }
.tool-marquee-track { display: flex; width: max-content; will-change: transform; }
.tools-marquee.is-ready .tool-marquee-track { animation: tool-marquee-left 48s linear infinite; }
.tools-marquee.is-ready .tool-marquee-row-reverse .tool-marquee-track { animation-name: tool-marquee-right; animation-duration: 54s; }
.tools-marquee:hover .tool-marquee-track { animation-play-state: paused; }
.tool-marquee-group { display: flex; flex: none; gap: 12px; margin: 0; padding: 0 12px 0 0; list-style: none; }
.tool-marquee-group li { display: inline-flex; min-height: 58px; align-items: center; gap: 11px; padding: 0 18px; border: 1px solid var(--border); border-radius: 999px; background: var(--bg-soft); color: var(--text); font-size: .78rem; font-weight: 600; white-space: nowrap; transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease, transform .25s ease; }
.tool-marquee-group li:hover { border-color: rgba(184, 92, 112, .72); background: rgba(146, 52, 71, .12); box-shadow: 0 0 28px rgba(146, 52, 71, .2); color: var(--rose); transform: translateY(-1px); }
.tool-marquee-group img { width: 23px; height: 23px; flex: none; object-fit: contain; }
.tool-marquee-group img.tool-icon-on-light { padding: 3px; border-radius: 6px; background: #fff; }
@keyframes tool-marquee-left { to { transform: translate3d(-50%, 0, 0); } }
@keyframes tool-marquee-right { from { transform: translate3d(-50%, 0, 0); } to { transform: translate3d(0, 0, 0); } }

.contact { position: relative; border-top: 1px solid var(--border); background: var(--bg-soft); overflow: hidden; }
.contact-orb { position: absolute; right: -130px; bottom: -220px; width: 560px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(146, 52, 71, .7), rgba(110, 31, 42, .25) 55%, transparent 70%); }
.contact-inner { position: relative; }
.contact h2 { max-width: 970px; margin: 0 0 38px; font: 800 clamp(4rem, 9.2vw, 9rem)/.78 var(--heading); letter-spacing: -.03em; text-transform: uppercase; }
.contact h2 span { color: var(--rose); }
.contact-inner > p:not(.eyebrow) { max-width: 550px; margin: 0 0 58px; color: var(--text-soft); font-size: 1.1rem; }
.contact-links { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.contact-links a { display: grid; min-height: 150px; grid-template-columns: 1fr auto; align-content: space-between; gap: 4px; padding: 24px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.contact-links a:hover { border-color: rgba(184, 92, 112, .55); background: rgba(146, 52, 71, .14); }
.contact-links span { grid-column: 1 / -1; color: var(--text-soft); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-links strong { align-self: end; font: 600 1.1rem/1.2 var(--heading); text-transform: uppercase; }
.contact-links .contact-email-address { text-transform: none; }
.contact-links b { align-self: end; color: var(--rose); font-weight: 400; transition: transform .2s ease; }
.contact-links a:hover b { transform: translate(3px, -3px); }

.site-footer { padding: 50px 0; border-top: 1px solid var(--border); background: var(--bg); }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }
.footer-inner p { margin: 0; color: var(--text-soft); font-size: .65rem; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.back-to-top { font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.footer-inner small { grid-column: 1 / -1; padding-top: 28px; border-top: 1px solid var(--border); color: var(--text-soft); font-size: .62rem; text-align: center; }

:focus-visible { outline: 2px solid var(--rose); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; } }

@media (max-width: 1024px) {
  .section-pad { padding: 110px 0; }
  .projects { padding: 130px 0; }
  .services { padding: 64px 0; }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1.45fr) minmax(240px, .55fr); gap: 32px; }
  .hero-copy h1 { font-size: clamp(4rem, 9.6vw, 7rem); }
  .hero-intro { grid-template-columns: 1fr; gap: 28px; }
  .portrait-frame { min-height: 430px; }
  .split-layout { grid-template-columns: 1fr; gap: 60px; }
  .about-copy { max-width: 700px; }
  .featured-project { grid-template-columns: 1fr; }
  .project-visual { min-height: 560px; }
  .project-content { border-top: 1px solid var(--border); border-left: 0; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .project-card:last-child { grid-column: 1 / -1; }
  .contact-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 32px, 620px); --header-height: 68px; }
  .section-pad { padding: 86px 0; }
  .menu-toggle { display: block; z-index: 2; margin-left: auto; }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: var(--header-height) 0 auto; display: grid; padding: 18px 24px 28px; border-bottom: 1px solid var(--border); background: rgba(13, 13, 15, .98); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease; }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .primary-nav a { padding: 12px 0; font: 700 1.7rem/1 var(--heading); }
  .hero { padding-top: 66px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(3.85rem, 18vw, 6rem); }
  .hero-intro { margin-top: 34px; }
  .hero-portrait-wrap { width: min(88%, 380px); justify-self: end; padding-top: 20px; }
  .portrait-frame { min-height: 0; }
  .hero-orb { top: 44%; right: -35vw; width: 80vw; }
  .section-heading-row { display: block; margin-bottom: 48px; }
  .section-heading-row > p { margin-top: 24px; }
  .section-heading h2 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .projects { padding: 100px 0; }
  .projects .section-heading-row { margin-bottom: 58px; }
  .services { padding: 56px 0; }
  .services .section-heading-row { margin-bottom: 30px; }
  .service-list { grid-template-columns: 1fr; }
  .service-item { min-height: 0; grid-template-columns: 30px minmax(0, 1fr); gap: 14px; padding: 24px 18px; }
  .project-visual { min-height: 420px; }
  .project-content { padding: 34px 24px; }
  .feature-list { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card:last-child { grid-column: auto; }
  .card-art { min-height: 230px; }
  .tools-marquee { width: 100%; }
  .skills .section-heading-row { margin-bottom: 38px; }
  .core-skills { margin-bottom: 36px; }
  .core-skills-list { gap: 8px; }
  .core-skills-list li { padding: 10px 13px; font-size: .68rem; }
  .tool-marquee-group li { min-height: 52px; padding: 0 15px; font-size: .72rem; }
  .tool-marquee-group img { width: 21px; height: 21px; }
  .contact h2 { font-size: clamp(3.6rem, 16vw, 6rem); }
  .contact-links { grid-template-columns: 1fr; }
  .contact-links a { min-height: 120px; }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer-inner p { display: none; }
}

@media (max-width: 420px) {
  .button-row { display: grid; }
  .button { width: 100%; }
  .hero-portrait-wrap { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .project-slide { transition: none; }
  .project-slide img,
  .project-slide.is-active img { transform: none; transition: none; }
  .slider-dots { display: none; }
  .tools-marquee.is-ready .tool-marquee-track { animation: none; transform: none; }
  .tools-marquee { overflow: visible; -webkit-mask-image: none; mask-image: none; }
  .tool-marquee-row { overflow: visible; }
  .tool-marquee-track { width: 100%; }
  .tool-marquee-group { width: 100%; flex-wrap: wrap; justify-content: center; padding-right: 0; }
  .tool-marquee-group[aria-hidden="true"] { display: none; }
}
