/* =============================================
   DESIGN TOKENS — Ryan Neufeld Portfolio
   Palette: Warm grey bg · Dark ink fg · Dusty rose accent
   Editorial fashion energy, quiet and precise
   ============================================= */
:root {
  --bg:         #eae6e1;
  --bg-card:    #e2ddd8;
  --bg-hover:   #dbd6d0;
  --fg:         #1e1c1a;
  --fg-muted:   #72706c;
  --fg-dim:     #b0ada8;
  --accent:     #9a6b62;   /* deep dusty rose — warm, editorial, fashion-forward */
  --accent-dim: rgba(154,107,98,0.12);
  --border:     rgba(30,28,26,0.1);

  --font-display: 'Cormorant Garamond', serif;   /* headings & display */
  --font-nav:     'Inter', sans-serif;            /* nav logo only */
  --font-body:    'Inter', sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:  cubic-bezier(0.76, 0, 0.24, 1);

  --nav-h:       72px;
  --section-pad: clamp(72px, 9vw, 128px);
  --gutter:      clamp(20px, 5vw, 64px);
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img, video, iframe { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #f5f0eb; }

/* =============================================
   CURSOR
   ============================================= */
.cursor {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease-out), height .3s var(--ease-out);
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(154,107,98,.4);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .35s var(--ease-out), height .35s var(--ease-out), border-color .3s;
}
body.cursor-hover .cursor          { width: 12px; height: 12px; }
body.cursor-hover .cursor-follower { width: 52px; height: 52px; border-color: var(--accent); }

/* =============================================
   LOADER
   ============================================= */
.loader {
  position: fixed; inset: 0;
  background: var(--bg); z-index: 9000;
  display: flex; align-items: flex-end;
  padding: var(--gutter);
  transition: opacity .7s var(--ease-out), visibility .7s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner  { width: 100%; }
.loader-count  {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 140px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 20px;
  font-style: italic;
  color: var(--fg);
}
.loader-bar  { width: 100%; height: 1px; background: var(--fg-dim); overflow: hidden; }
.loader-fill { height: 100%; width: 0%; background: var(--accent); transition: width .05s linear; }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  z-index: 100;
  transition: background .4s, border-bottom .4s;
}
.nav.scrolled {
  background: rgba(234,230,225,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-nav);
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
}
.logo-dot { color: var(--accent); }

/* Desktop nav links */
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-link {
  font-size: 13px; font-weight: 400;
  color: var(--fg-muted); letter-spacing: 0.04em;
  transition: color .2s; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width .3s var(--ease-out);
}
.nav-link:hover       { color: var(--fg); }
.nav-link:hover::after{ width: 100%; }
.nav-link.active      { color: var(--fg); }
.nav-link.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #e2ddd8;
  border: 1px solid var(--border);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0; visibility: hidden;
  transition: opacity .25s, transform .25s var(--ease-out), visibility .25s;
  transform-origin: top center;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 20px;
  font-size: 13px; color: var(--fg-muted);
  transition: color .2s, background .2s;
  letter-spacing: 0.02em;
}
.nav-dropdown-menu a:hover { color: var(--fg); background: var(--bg-hover); }

.nav-cta {
  font-size: 12px; font-weight: 400;
  padding: 9px 20px;
  border: 1px solid var(--border);
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background .2s, border-color .2s, color .2s;
}
.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: #f5f0eb; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1px; background: var(--fg);
  transition: transform .3s, opacity .3s;
}
.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: var(--bg); z-index: 90;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 300; font-style: italic;
  color: var(--fg-muted); letter-spacing: 0.02em;
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--fg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100svh;
  padding: calc(var(--nav-h) + 80px) var(--gutter) var(--section-pad);
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative;
}
.hero-eyebrow {
  position: absolute; top: calc(var(--nav-h) + 28px); left: var(--gutter);
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-muted);
}
.dot-live {
  width: 7px; height: 7px; background: var(--accent);
  border-radius: 50%; animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.75); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 148px);
  font-weight: 300; font-style: italic;
  line-height: .94; letter-spacing: -0.01em;
  margin-bottom: 48px;
}
.hero-headline .upright { font-style: normal; font-weight: 600; }

.line-wrap { display: block; overflow: hidden; }
.line      { display: block; }

.hero-meta {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.hero-sub {
  max-width: 360px; font-size: 14px; font-weight: 300;
  color: var(--fg-muted); line-height: 1.8;
}
.hero-actions { display: flex; gap: 12px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: var(--accent); color: #f5f0eb;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(154,107,98,.22);
}
.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 13px 28px;
  font-size: 13px; color: var(--fg-muted);
  border: 1px solid var(--border);
  letter-spacing: 0.04em;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--fg); border-color: rgba(30,28,26,.25); }

.hero-scroll {
  position: absolute; right: var(--gutter); bottom: var(--section-pad);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-dim); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-drop 2.2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-section {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-inner {
  display: flex; gap: 52px;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 400; font-style: italic;
  letter-spacing: 0.04em; color: var(--fg-muted);
}
.marquee-inner .sep { color: var(--accent); font-style: normal; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter); margin-bottom: 40px;
}
.section-label {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-muted); font-weight: 400;
}
.section-link { font-size: 13px; color: var(--fg-muted); transition: color .2s; }
.section-link:hover { color: var(--fg); }

/* =============================================
   WORK GRID
   ============================================= */
.work { padding: var(--section-pad) 0; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px; padding: 0 var(--gutter);
}
.project-card        { grid-column: span 6; position: relative; overflow: hidden; }
.project-large       { grid-column: span 8; }
.project-large-right { grid-column: 5 / span 8; }

.project-link { display: block; }

.project-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  background: var(--bg-card);
}
.project-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05); transition: transform .75s var(--ease-out);
}
/* Placeholder gradient until real images are added */
.project-img-wrap .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-dim); font-weight: 400;
}
.placeholder-1 { background: #d8d3cd; }
.placeholder-2 { background: #cec9c3; }
.placeholder-3 { background: #d4cfc9; }
.placeholder-4 { background: #c8c3bd; }
.placeholder-5 { background: #d0cbc5; }

.project-link:hover .project-img-wrap img { transform: scale(1); }

.project-overlay {
  position: absolute; inset: 0;
  background: rgba(30,28,26,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .35s;
}
.project-link:hover .project-overlay { opacity: 1; }
.project-cta {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #f5f0eb; border: 1px solid rgba(245,240,235,.4);
  padding: 11px 24px; font-weight: 400;
}
.project-info {
  padding: 20px 0 28px;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; border-bottom: 1px solid var(--border);
}
.project-meta { display: flex; align-items: center; gap: 14px; }
.project-num  { font-size: 10px; color: var(--fg-dim); font-weight: 500; letter-spacing: 0.1em; }
.project-tags { font-size: 11px; color: var(--fg-muted); letter-spacing: 0.04em; }
.project-title {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 400; font-style: italic; line-height: 1.3;
  flex: 1; transition: color .2s;
}
.project-link:hover .project-title { color: var(--accent); }
.project-year { font-size: 11px; color: var(--fg-dim); flex-shrink: 0; }

/* =============================================
   ABOUT STRIP
   ============================================= */
.about-strip {
  padding: var(--section-pad) var(--gutter);
  border-top: 1px solid var(--border);
}
.about-content {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 72px; align-items: start;
}
.about-left  { display: flex; flex-direction: column; gap: 20px; }
.about-portrait {
  aspect-ratio: 3/4; background: var(--bg-card);
  border: 1px solid var(--border); overflow: hidden;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-portrait .placeholder { width: 100%; height: 100%; background: #d0cbc4; }

.about-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 300; font-style: italic;
  line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.about-headline em { font-style: normal; font-weight: 600; color: var(--accent); }
.about-body {
  font-size: 15px; color: var(--fg-muted);
  line-height: 1.85; margin-bottom: 40px; max-width: 520px;
}
.about-stats  { display: flex; gap: 48px; margin-bottom: 40px; flex-wrap: wrap; }
.stat-num     {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300; font-style: italic;
  color: var(--accent); line-height: 1;
}
.stat-label {
  display: block; font-size: 11px; color: var(--fg-muted);
  margin-top: 6px; text-transform: uppercase; letter-spacing: 0.1em;
}

/* =============================================
   SERVICES (categories)
   ============================================= */
.services {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}
.services-list {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}
.service-item {
  padding: 40px var(--gutter);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.service-item:hover { background: var(--bg-card); }
.service-num  {
  display: block; font-size: 10px; color: var(--accent);
  font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 18px;
}
.service-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400; font-style: italic;
  margin-bottom: 14px; line-height: 1.2;
}
.service-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.7; }

/* =============================================
   CTA
   ============================================= */
.cta-section {
  padding: var(--section-pad) var(--gutter);
  border-top: 1px solid var(--border);
}
.cta-inner {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 40px;
}
.cta-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-muted); }
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 108px);
  font-weight: 300; font-style: italic;
  line-height: .96; letter-spacing: -0.01em;
}
.cta-headline em { font-style: normal; font-weight: 600; color: var(--accent); }
.btn-cta {
  display: inline-flex; align-items: center;
  padding: 16px 40px;
  background: var(--fg); color: #f5f0eb;
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background .2s, transform .25s var(--ease-out), box-shadow .25s;
}
.btn-cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(154,107,98,.25);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 40px var(--gutter) 32px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 40px; flex-wrap: wrap; gap: 24px;
}
.footer-logo { font-family: var(--font-nav); font-size: 13px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; }
.footer-links, .footer-socials { display: flex; gap: 28px; font-size: 13px; color: var(--fg-muted); }
.footer-links a, .footer-socials a { transition: color .2s; }
.footer-links a:hover, .footer-socials a:hover { color: var(--fg); }
.footer-bottom {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--fg-dim);
  padding-top: 24px; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 8px;
}

/* =============================================
   PAGE INNER (non-homepage content)
   ============================================= */
.page-hero {
  padding: calc(var(--nav-h) + 80px) var(--gutter) 60px;
  border-bottom: 1px solid var(--border);
}
.page-eyebrow {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-muted); margin-bottom: 20px; display: block;
}
.page-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 120px);
  font-weight: 300; font-style: italic;
  line-height: .95; letter-spacing: -0.01em;
}
.page-sub {
  max-width: 500px; font-size: 15px; color: var(--fg-muted);
  line-height: 1.8; margin-top: 28px;
}

/* =============================================
   PROJECT PAGE
   ============================================= */
.project-page { padding: var(--section-pad) var(--gutter); }
.project-section { margin-bottom: clamp(64px, 8vw, 112px); }
.project-section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 300; font-style: italic;
  line-height: 1.15; margin-bottom: 20px;
}
.project-section-body {
  font-size: 15px; color: var(--fg-muted);
  line-height: 1.85; max-width: 620px; margin-bottom: 40px;
}

/* Image grids */
.img-grid-2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px;
  margin: 32px 0;
}
.img-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  margin: 32px 0;
}
.img-full { margin: 32px 0; }
.img-full img, .img-grid-2 img, .img-grid-3 img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.img-grid-2 { grid-auto-rows: 360px; }
.img-grid-3 { grid-auto-rows: 320px; }
.img-caption {
  font-size: 12px; color: var(--fg-dim);
  letter-spacing: 0.06em; margin-top: 10px;
}

/* Video embed */
.video-wrap {
  position: relative; padding-bottom: 56.25%;
  height: 0; overflow: hidden; margin: 32px 0;
  background: var(--bg-card);
}
.video-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: 0;
}

/* =============================================
   SELECTED PROJECTS (masonry-feel grid)
   ============================================= */
.projects-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px; padding: 0 var(--gutter);
}
.masonry-item {
  position: relative; overflow: hidden; cursor: pointer;
}
.masonry-item img { width: 100%; display: block; transition: transform .65s var(--ease-out); }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-caption {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.masonry-caption strong {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 400; font-style: italic;
}
.masonry-caption p { font-size: 12px; color: var(--fg-muted); margin-top: 4px; }

/* =============================================
   RESUME PAGE
   ============================================= */
.resume-page { padding: var(--section-pad) var(--gutter); }
.resume-embed {
  width: 100%; aspect-ratio: 8.5/11;
  border: 1px solid var(--border); background: #fff; margin-bottom: 32px;
}
.resume-embed iframe { width: 100%; height: 100%; border: 0; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-body {
  display: grid; grid-template-columns: 1fr 1.8fr;
  gap: 80px; padding: 80px var(--gutter); align-items: start;
}
.contact-info   { margin-bottom: 56px; }
.contact-item   { padding: 18px 0; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 6px; }
.contact-item-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-dim); }
.contact-item-val {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 400; font-style: italic; transition: color .2s;
}
a.contact-item-val:hover { color: var(--accent); }
.contact-item-val.available { color: var(--accent); display: flex; align-items: center; gap: 10px; font-style: normal; font-weight: 500; font-family: var(--font-body); font-size: 14px; }
.contact-socials { display: flex; flex-direction: column; gap: 2px; }
.social-link {
  font-size: 14px; color: var(--fg-muted); padding: 8px 0;
  border-bottom: 1px solid transparent; transition: color .2s, border-color .2s;
}
.social-link:hover { color: var(--fg); border-bottom-color: var(--border); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 28px; }
.form-group   { display: flex; flex-direction: column; gap: 10px; }
.form-label   { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-muted); }
.form-input   {
  background: transparent; border: none;
  border-bottom: 1px solid var(--border);
  color: var(--fg); font-family: var(--font-body);
  font-size: 15px; font-weight: 300;
  padding: 12px 0; outline: none; width: 100%;
  transition: border-color .25s;
  appearance: none;
}
.form-input::placeholder { color: var(--fg-dim); }
.form-input:focus { border-bottom-color: var(--accent); }
.form-textarea  { resize: vertical; min-height: 110px; line-height: 1.65; }
.form-submit {
  align-self: flex-start;
  padding: 15px 36px;
  background: var(--accent); color: #f5f0eb;
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(154,107,98,.25);
}

/* =============================================
   UTILITIES
   ============================================= */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .project-large, .project-large-right { grid-column: span 12; }
  .project-card { grid-column: span 6; }
  .services-list { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .projects-masonry { grid-template-columns: repeat(2, 1fr); }
  .img-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-headline { font-size: clamp(42px, 13vw, 72px); }
  .hero-meta { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card, .project-large, .project-large-right { grid-column: span 1; }
  .services-list { grid-template-columns: 1fr; }
  .about-stats { gap: 28px; }
  .contact-body { grid-template-columns: 1fr; gap: 48px; padding: 48px var(--gutter); }
  .projects-masonry { grid-template-columns: 1fr; }
  .img-grid-2, .img-grid-3 { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
  .scroll-line { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
