/* ============================================================
   Robin Bernardi — Design tokens (from Figma)
   ============================================================ */
:root {
  --c-dark: #202020;
  --c-muted: #646464;
  --c-border: #cecece;
  --c-white: #ffffff;

  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-label: 'Abel', sans-serif;
  --font-display: 'Satoshi', sans-serif;

  --frame-width: 1440px;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
/* Anchor-link smoothing is handled by Lenis in script.js — CSS
   scroll-behavior:smooth is intentionally left off here since it
   fights with any programmatic scroll call made without an
   explicit behavior option. */
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--c-dark);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

.frame {
  width: var(--frame-width);
  margin: 0 auto;
  background: var(--c-white);
  overflow-x: clip;
}
/* Consistent breathing room between sections, so each one reads
   as its own beat instead of bleeding into the next. */
.frame > section + section,
.frame > section + footer {
  margin-top: 40px;
}

/* ============================================================
   Custom cursor (desktop, fine-pointer only)
   ============================================================ */
.cursor-dot,
.cursor-ring {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--c-dark);
  transition: opacity 0.3s ease;
}
.cursor-ring {
  width: 26px;
  height: 26px;
  border: 1px solid var(--c-dark);
  opacity: 0.45;
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}
.cursor-ring.is-active {
  width: 40px;
  height: 40px;
  opacity: 0.7;
  background: rgba(32, 32, 32, 0.06);
}
.has-custom-cursor .cursor-dot,
.has-custom-cursor .cursor-ring {
  display: block;
}
.has-custom-cursor,
.has-custom-cursor * {
  cursor: none;
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1.is-inview { transition-delay: 0.12s; }
.reveal-delay-2.is-inview { transition-delay: 0.24s; }

.about-img.reveal {
  transform: translate(-50%, calc(-50% + 28px));
}
.about-img.reveal.is-inview {
  transform: translate(-50%, -50%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 60px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}
.btn-outline {
  border: 1px solid var(--c-dark);
  color: var(--c-dark);
  background: transparent;
}
.btn-solid {
  border: none;
  background: var(--c-dark);
  color: var(--c-white);
  padding: 15px 26px;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  width: 100%;
  padding-top: 20px;
}
.nav-inner {
  position: relative;
  z-index: 10000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 40px;
  background: var(--c-white);
  backdrop-filter: blur(36px);
}
.nav-inner .logo,
.menu li,
.nav-right .btn-outline {
  opacity: 0;
  animation: revealUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.nav-inner .logo { animation-delay: 1.7s; }
.menu li:nth-child(1) { animation-delay: 1.76s; }
.menu li:nth-child(2) { animation-delay: 1.82s; }
.menu li:nth-child(3) { animation-delay: 1.88s; }
.menu li:nth-child(4) { animation-delay: 1.94s; }
.nav-right .btn-outline { animation-delay: 2.0s; }

@keyframes revealUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: var(--c-dark);
}
.logo img {
  display: block;
  height: 34px;
  width: auto;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}
.menu {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.menu-link {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--c-dark);
}
.menu-link.is-active {
  border-bottom: 1px solid var(--c-dark);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
html.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
html.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
html.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu-panel { display: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 56px;
  padding: 56px 40px 0;
  background: var(--c-white);
  position: relative;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 150px;
  padding-top: 50px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 52px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  max-width: 684px;
}
.hero-title {
  font-weight: 700;
  font-size: 60px;
  line-height: 68px;
  color: var(--c-dark);
  max-width: 684px;
  opacity: 0;
  animation: revealUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.1s;
}
.hero-desc {
  opacity: 0;
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 1.0s;
}
.hero-content .btn-solid {
  opacity: 0;
  animation: revealUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 1.75s;
}
.hero-left .social-proof {
  opacity: 0;
  animation: revealUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 1.9s;
}
.hero-desc {
  font-weight: 400;
  font-size: 21px;
  line-height: 30px;
  color: var(--c-muted);
  max-width: 626px;
}
.social-proof {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.avatars {
  display: flex;
  align-items: center;
}
.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: -12px;
}
.avatars img:last-child { margin-right: 0; }
.social-proof-caption {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: var(--c-muted);
}

.hero-gallery {
  display: flex;
  gap: 20px;
  position: relative;
  opacity: 0;
  transform: scale(0.92);
  animation: galleryReveal 1s cubic-bezier(0.22, 1.4, 0.36, 1) both;
  animation-delay: 2.3s;
}
@keyframes galleryReveal {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.hero-gallery-fade {
  position: absolute;
  left: 0;
  width: 100%;
  height: 110px;
  pointer-events: none;
  z-index: 2;
}
.hero-gallery-fade-top {
  top: 0;
  background: linear-gradient(to bottom, var(--c-white), rgba(255,255,255,0));
}
.hero-gallery-fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--c-white), rgba(255,255,255,0));
}
.hero-col {
  width: 300px;
  height: 700px;
  overflow: hidden;
  position: relative;
}
.hero-col-track {
  --track-distance: 880px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  will-change: transform;
}
.hero-col-up .hero-col-track {
  animation: heroScrollUp 40s linear infinite;
}
.hero-col-down .hero-col-track {
  animation: heroScrollDown 40s linear infinite;
}
.hero-gallery:hover .hero-col-track {
  animation-play-state: paused;
}
@keyframes heroScrollUp {
  from { transform: translateY(0); }
  to { transform: translateY(calc(-1 * var(--track-distance))); }
}
@keyframes heroScrollDown {
  from { transform: translateY(calc(-1 * var(--track-distance))); }
  to { transform: translateY(0); }
}
.hero-img {
  width: 300px;
  height: 420px;
  border-radius: 32px;
  overflow: hidden;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   About
   ============================================================ */
.about {
  width: 100%;
  height: 780px;
  position: relative;
  overflow: hidden;
  background: var(--c-white);
}
.about-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 70px 40px 0;
  text-align: center;
}
.about-copy h2 {
  font-weight: 700;
  font-size: 56px;
  line-height: 64px;
  color: var(--c-dark);
}
.about-copy p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--c-muted);
  max-width: 560px;
}
.about-img {
  position: absolute;
  border-radius: 32px;
  overflow: hidden;
  transform: translate(-50%, -50%);
  box-shadow: 0 24px 48px -20px rgba(32, 32, 32, 0.28);
}
.about-img img {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  max-width: none;
  height: 140%;
  object-fit: cover;
  transform: rotate(var(--tilt, 0deg));
  will-change: transform;
}
.about-img-1 {
  left: 300px;
  top: 480px;
  width: 320px;
  height: 400px;
}
.about-img-1 img { --tilt: -2deg; object-position: center 38%; }
.about-img-2 {
  left: 1180px;
  top: 275px;
  width: 300px;
  height: 370px;
}
.about-img-2 img { --tilt: 1.75deg; }
.about-img-3 {
  left: 750px;
  top: 570px;
  width: 280px;
  height: 340px;
}
.about-img-3 img { --tilt: -1.25deg; }

/* ============================================================
   Works
   ============================================================ */
.works {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--c-white);
}
.works-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 80px 40px;
}
.works-heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.works-heading h2 {
  font-weight: 700;
  font-size: 56px;
  line-height: 64px;
  color: var(--c-dark);
  max-width: 650px;
}
.works-heading p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--c-muted);
  max-width: 575px;
}
.works-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 40px 100px;
}
.work-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}
.work-left {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  min-width: 0;
}
.work-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
.work-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 100px;
  background: var(--c-dark);
  color: var(--c-white);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.3px;
  text-align: center;
}
.work-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.work-copy h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: var(--c-dark);
}
.work-copy p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--c-muted);
}
.work-img {
  width: 660px;
  height: 480px;
  border-radius: 32px;
  overflow: hidden;
  flex-shrink: 0;
}
.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   Services
   ============================================================ */
.services {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--c-white);
}
.services-heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 100px 40px 60px;
}
.services-heading h2 {
  font-weight: 700;
  font-size: 56px;
  line-height: 64px;
  color: var(--c-dark);
  max-width: 650px;
}
.services-heading p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--c-muted);
  max-width: 575px;
}
.services-row {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 0 40px 100px;
}
.service-card {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  color: var(--c-muted);
}
.service-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: var(--c-dark);
  box-shadow: 0 20px 40px -18px rgba(32, 32, 32, 0.32);
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-media img {
  transform: scale(1.09);
}
.service-number {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: var(--c-dark);
  color: var(--c-white);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.3px;
}
.service-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.service-copy h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  color: var(--c-dark);
}
.service-copy p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}

/* ============================================================
   Project detail (Milano-Cortina / Hockey Club / Helau)
   ============================================================ */
.project {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--c-white);
}
.project-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 80px 40px 0;
}
.project-header h1 {
  font-weight: 700;
  font-size: 56px;
  line-height: 64px;
  color: var(--c-dark);
  max-width: 650px;
}
.project-header p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--c-muted);
  max-width: 575px;
}
.project-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 80px 40px 150px;
}
.project-gallery > * {
  width: 100%;
  max-width: 1100px;
}
.g-square,
.g-wide,
.g-half,
.g-tall {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 44px -22px rgba(32, 32, 32, 0.3);
}
.g-square img,
.g-wide img,
.g-half img,
.g-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.g-square:hover img,
.g-wide:hover img,
.g-half:hover img,
.g-tall:hover img {
  transform: scale(1.045);
}

.g-row-top {
  display: flex;
  gap: 24px;
  align-items: stretch;
}
.g-square {
  flex: 1.15 1 0;
  min-width: 0;
  aspect-ratio: 1 / 1;
}
.g-side {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.g-half {
  flex: 1 1 0;
  min-height: 0;
  aspect-ratio: 1 / 1;
}
.g-tall {
  flex: 1 1 0;
  aspect-ratio: 4 / 5;
}

.g-row-bottom {
  display: flex;
  gap: 24px;
}
.g-wide {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 4 / 3;
}
.g-wide-solo {
  aspect-ratio: 16 / 9;
}

/* ============================================================
   Contact Us
   ============================================================ */
.contact {
  width: 100%;
  background: var(--c-white);
  padding: 100px 40px;
}
.contact-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}
.contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 620px;
  flex: 1 1 0;
}
.contact-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.contact-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-dark);
}
.contact-copy h2 {
  color: var(--c-dark);
  font-family: var(--font-sans);
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
}
.contact-copy p {
  max-width: 540px;
  color: var(--c-muted);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}
.contact-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.contact-card {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  background: #f6f4f1;
  border-radius: 24px;
  padding: 8px 32px;
}
.contact-card-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 0;
}
.contact-card-row + .contact-card-row {
  border-top: 1px solid var(--c-border);
}
.contact-card-label {
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.contact-card-value {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: var(--c-dark);
}
.contact-card-link {
  transition: color 0.2s ease;
}
.contact-card-link:hover {
  color: var(--c-muted);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  width: 100%;
  background: var(--c-dark);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 80px;
}
.footer-title {
  font-weight: 700;
  font-size: 64px;
  line-height: 72px;
  color: var(--c-white);
  max-width: 760px;
}
.footer-cta {
  flex-shrink: 0;
  background: var(--c-white);
  color: var(--c-dark);
  padding: 16px 28px;
  transition: opacity 0.2s ease;
}
.footer-cta:hover {
  opacity: 0.85;
}
.footer-grid {
  display: flex;
  gap: 80px;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand {
  flex: 1 1 0;
  gap: 10px;
}
.footer-logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-white);
}
.footer-tagline {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 260px;
}
.footer-col-title {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a,
.footer-link {
  font-family: var(--font-sans);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}
.footer-nav a:hover,
.footer-link:hover {
  color: var(--c-white);
}
.footer-address {
  font-family: var(--font-sans);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}
.footer-col .footer-link {
  display: block;
}
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-bottom-bar p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-back-to-top {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
}
.footer-back-to-top:hover {
  color: var(--c-white);
}

/* ============================================================
   Mobile (phones & tablets, <= 900px) — the desktop collage in
   .about relies on wide absolute positioning that only works
   above ~1000px, so this breakpoint has to clear tablet widths
   too, not just phones.
   ============================================================ */
@media (max-width: 900px) {
  .frame {
    width: 100%;
    overflow-x: hidden;
  }
  .frame > section + section,
  .frame > section + footer {
    margin-top: 24px;
  }

  /* Nav */
  .nav { padding-top: 0; }
  .nav-inner { padding: 16px 20px; }
  .logo { font-size: 16px; }
  .logo img { height: 26px; }
  .nav-right { gap: 14px; }
  .nav-right .btn-outline { padding: 8px 14px; font-size: 13px; }
  .nav-toggle { display: flex; }
  .menu { display: none; }
  .mobile-menu-panel {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 9998;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 32px;
    background: var(--c-white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }
  html.nav-open .mobile-menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .mobile-menu-links a {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 30px;
    color: var(--c-dark);
  }

  /* Hero */
  .hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 20px 20px 0;
  }
  .hero-left {
    gap: 40px;
    padding-top: 0;
    width: 100%;
  }
  .hero-content { gap: 24px; }
  .hero-text { gap: 14px; max-width: 100%; }
  .hero-title { font-size: 34px; line-height: 40px; max-width: 100%; }
  .hero-desc { font-size: 16px; line-height: 24px; max-width: 100%; }
  .hero-gallery { width: 100%; justify-content: center; }
  .hero-col { width: 42vw; height: 380px; max-width: 168px; }
  .hero-col-track { --track-distance: 476px; gap: 12px; }
  .hero-img { width: 42vw; height: 228px; max-width: 168px; border-radius: 20px; }
  .hero-gallery-fade { height: 60px; }

  /* About */
  .about {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 48px 20px 40px;
  }
  .about-copy { position: static; padding: 0; }
  .about-copy h2 { font-size: 30px; line-height: 36px; }
  .about-copy p { font-size: 16px; line-height: 24px; }
  .about-img,
  .about-img.reveal,
  .about-img.reveal.is-inview {
    position: static;
    width: 100% !important;
    height: 240px !important;
    transform: none !important;
    box-shadow: 0 12px 28px -16px rgba(32, 32, 32, 0.3);
  }
  .about-img img {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
  }

  /* Works */
  .works-row { flex-direction: column; align-items: flex-start; gap: 16px; padding: 40px 20px 20px; }
  .works-heading h2 { font-size: 30px; line-height: 36px; }
  .works-heading p { font-size: 16px; line-height: 24px; }
  .works-list { gap: 32px; padding: 0 20px 48px; }
  .work-item { flex-direction: column; gap: 20px; }
  .work-left { gap: 24px; }
  .work-copy h3 { font-size: 24px; line-height: 30px; }
  .work-copy p { font-size: 16px; line-height: 24px; }
  .work-img { width: 100%; height: auto; aspect-ratio: 660 / 480; }

  /* Services */
  .services-heading { padding: 40px 20px 8px; }
  .services-heading h2 { font-size: 30px; line-height: 36px; }
  .services-heading p { font-size: 16px; line-height: 24px; }
  .services-row { flex-direction: column; gap: 32px; padding: 0 20px 48px; }
  .service-media { max-width: 360px; }
  .service-copy h3 { font-size: 24px; line-height: 30px; }

  /* Project detail */
  .project-header { padding: 40px 20px 0; }
  .project-header h1 { font-size: 30px; line-height: 36px; }
  .project-header p { font-size: 16px; line-height: 24px; }
  .project-gallery { gap: 16px; padding: 32px 20px 64px; }
  .g-row-top { flex-direction: column; gap: 16px; }
  .g-row-bottom { flex-direction: column; gap: 16px; }
  .g-square,
  .g-tall,
  .g-half,
  .g-wide,
  .g-side { flex: none; width: 100%; }
  .g-side { gap: 16px; }

  /* Contact */
  .contact { padding: 48px 20px; }
  .contact-inner { flex-direction: column; gap: 32px; }
  .contact-copy { max-width: 100%; }
  .contact-copy h2 { font-size: 30px; line-height: 36px; }
  .contact-copy p { font-size: 16px; line-height: 24px; max-width: 100%; }
  .contact-actions { flex-wrap: wrap; }
  .contact-card { flex: none; width: 100%; }

  /* Footer */
  .footer-inner { padding: 48px 20px 24px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; padding-bottom: 40px; }
  .footer-title { font-size: 30px; line-height: 36px; max-width: 100%; }
  .footer-grid { flex-direction: column; gap: 28px; padding: 32px 0; }
  .footer-bottom-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .nav-inner .logo,
  .menu li,
  .nav-right .btn-outline,
  .hero-col-track,
  .hero-title,
  .hero-desc,
  .hero-content .btn-solid,
  .hero-left .social-proof,
  .hero-gallery {
    animation: none !important;
  }
  .hero-title,
  .hero-desc,
  .hero-content .btn-solid,
  .hero-left .social-proof,
  .hero-gallery,
  .nav-inner .logo,
  .menu li,
  .nav-right .btn-outline {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
