/* ============================================================
   SCRIXA — styles.css
   Creative Web Design Studio
   ============================================================

   TABLE OF CONTENTS
   1.  Variables & Reset
   2.  Base & Typography
   3.  Shared Utilities
   4.  Hero
   5.  About
   6.  Services
   7.  Work / Portfolio
   8.  Process
   9.  CTA Section
   10. Footer
   11. Animations & Scroll Reveals
   12. Responsive Overrides

   ============================================================ */


/* ============================================================
   1. VARIABLES & RESET
   ============================================================ */

:root {
  /* Palette */
  --cream:       #E1E0CC;
  --cream-70:    rgba(225, 224, 204, 0.70);
  --cream-40:    rgba(225, 224, 204, 0.40);
  --cream-15:    rgba(225, 224, 204, 0.15);
  --cream-08:    rgba(225, 224, 204, 0.08);
  --cream-04:    rgba(225, 224, 204, 0.04);

  --bg:          #0a0908;
  --bg-alt:      #0f0e0d;
  --amber:       #c87a3a;
  --amber-dim:   rgba(200, 122, 58, 0.18);
  --amber-glow:  rgba(200, 122, 58, 0.10);

  /* Fonts */
  --f-display: 'Syne', sans-serif;
  --f-body:    'Inter', sans-serif;

  /* Spacing */
  --sec-pad:   clamp(80px, 10vw, 140px);
  --container: 1240px;
  --gutter:    clamp(20px, 5vw, 64px);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  display: block;
  max-width: 100%;
}


/* ============================================================
   2. BASE & TYPOGRAPHY
   ============================================================ */

.eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--cream-40);
  margin-bottom: 18px;
}

.eyebrow--dim {
  color: rgba(225, 224, 204, 0.35);
}

.sec-title {
  font-family: var(--f-display);
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--cream);
}


/* ============================================================
   3. SHARED UTILITIES
   ============================================================ */

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--sec-pad);
}

.sec-header {
  margin-bottom: clamp(48px, 5.5vw, 72px);
}

/* Shared pill button */
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  color: #0a0908;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 5px 5px 22px;
  border-radius: 100px;
  transition: gap 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.pill-btn:hover {
  gap: 14px;
}

.pill-btn__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #0a0908;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pill-btn:hover .pill-btn__circle {
  transform: scale(1.08);
}

.pill-btn__circle--dark {
  background: #0a0908;
}

/* Separator line */
.section-line {
  position: relative;
}

.section-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--cream-15) 30%,
    var(--cream-15) 70%,
    transparent 100%
  );
}


/* ============================================================
   4. HERO
   ============================================================ */

.hero {
  width: 100%;
  height: 100svh;
  min-height: 600px;
  padding: 8px;
}

.hero-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

/* Video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Noise overlay */
.noise-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-size: 220px 220px;
  will-change: background-position;
}

/* Cinematic gradient overlay */
.gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.32) 0%,
    rgba(0, 0, 0, 0.04) 35%,
    rgba(0, 0, 0, 0.04) 55%,
    rgba(0, 0, 0, 0.68) 100%
  );
}

/* ---- Navbar pill ---- */
.hero-nav {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.hero-nav-pill {
  display: flex;
  align-items: center;
  gap: 28px;
  background: #000;
  padding: 11px 28px;
  border-radius: 0 0 20px 20px;
}

.nav-link {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(225, 224, 204, 0.72);
  white-space: nowrap;
  transition: color 0.25s ease,
              text-shadow 0.25s ease;
}

.nav-link:hover {
  color: #fff;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 1),
    0 0 16px rgba(225, 224, 204, 0.9),
    0 0 35px rgba(225, 224, 204, 0.65),
    0 0 70px rgba(225, 224, 204, 0.3);
}

/* ---- Hero content ---- */
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 20px 10px;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: flex-end;
  gap: 16px;
}

/* Wordmark text logo */
.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 8px;
}

.hero-wordmark {
  font-family: var(--f-display);
  font-size: clamp(14vw, 18vw, 18vw);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.88;
  color: var(--cream);
  position: relative;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-asterisk {
  font-size: 0.22em;
  vertical-align: super;
  line-height: 0;
  font-weight: 400;
  letter-spacing: 0;
  position: relative;
  top: 0.1em;
}

.hero-sub {
  font-family: var(--f-body);
  font-size: clamp(10px, 1.1vw, 16px);
  font-weight: 400;
  letter-spacing: 0.38em;
  color: var(--cream-70);
  padding-left: 0.55em;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

/* Right column */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 24px;
}

.hero-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--cream-70);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

/* ---- Slide Button ---- */
.slide-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 4px 56px 4px 24px;
  border-radius: 9999px;
  background: var(--cream);
  color: #0a0908;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-btn:hover {
  padding: 4px 24px 4px 56px;
}

.slide-btn__text {
  position: relative;
  z-index: 10;
  pointer-events: none;
}

.slide-btn__circle {
  position: absolute;
  right: 4px;
  width: 40px;
  height: 40px;
  background: #0a0908;
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-btn:hover .slide-btn__circle {
  right: calc(100% - 44px);
  transform: rotate(45deg);
}

/* Hero entry animation */
.hero-btn {
  align-self: flex-start;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}


/* ============================================================
   5. ABOUT
   ============================================================ */

.about {
  background: var(--bg);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, var(--cream-15) 30%, var(--cream-15) 70%, transparent
  );
}

.about-heading {
  font-family: var(--f-display);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.06;
  color: var(--cream);
  margin-bottom: clamp(48px, 6vw, 80px);
}

.about-heading em {
  font-style: italic;
  color: var(--cream-70);
}

.about-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.about-text p {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.72;
  color: var(--cream-70);
  margin-bottom: 22px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-stats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px 52px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-n {
  font-family: var(--f-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--cream);
}

.stat-l {
  font-size: 12px;
  font-weight: 400;
  color: var(--cream-40);
  letter-spacing: 0.05em;
}


/* ============================================================
   6. SERVICES
   ============================================================ */

.services {
  background: var(--bg-alt);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, var(--cream-08) 30%, var(--cream-08) 70%, transparent
  );
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.svc-card {
  flex: 0 0 100%;
  padding: 36px 32px 40px;
  border: 1px solid var(--cream-08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: border-color 0.5s ease;
}

.svc-card:hover {
  border-color: rgba(225, 224, 204, 0.35);
}

.svc-num {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(225, 224, 204, 0.07);
  margin-bottom: 18px;
  user-select: none;
  transition: color 0.4s ease;
}

.svc-title {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 14px;
  transition: color 0.25s ease;
}

.svc-card:hover .svc-num  { color: rgba(10, 9, 8, 0.08); }
.svc-card:hover .svc-title { color: #0a0908; }
.svc-card:hover .svc-desc  { color: rgba(10, 9, 8, 0.7); }

.svc-desc {
  font-size: 14px;
  line-height: 1.68;
  color: var(--cream-40);
  margin-top: auto;
  padding-top: 16px;
  transition: color 0.4s ease;
}

/* Clip-path circular reveal on hover */
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  clip-path: circle(0px at 36px 36px);
  transition: clip-path 0.75s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}

.svc-card:hover::before {
  clip-path: circle(160% at 36px 36px);
}

/* Keep all card content above the overlay */
.svc-card > * {
  position: relative;
  z-index: 1;
}


/* ============================================================
   7. WORK / PORTFOLIO
   ============================================================ */

.work {
  background: var(--bg);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* Work item shell */
.wi {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}

.wi-img {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.wi:hover .wi-img {
  transform: scale(1.04);
}

/* Gradient placeholder images */
.wi-img--amber {
  background: linear-gradient(145deg, #100908 0%, #2a1508 45%, #6b3015 80%, #8a4520 100%);
}
.wi-img--teal {
  background: linear-gradient(145deg, #060f10 0%, #0d2a2e 45%, #145460 80%, #1a6b72 100%);
}
.wi-img--rose {
  background: linear-gradient(145deg, #100810 0%, #281020 45%, #622040 80%, #7a2a50 100%);
}
.wi-img--indigo {
  background: linear-gradient(145deg, #080810 0%, #141430 45%, #222260 80%, #2e2e7a 100%);
}
.wi-img--claudia {
  background: url('claudia.jpg') center top / cover no-repeat;
}
.wi-img--claudia::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 0;
}

.wi-img--athletix {
  background: url('athletix.jpg') center top / cover no-repeat;
}
.wi-img--athletix::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 0;
}

.wi-img--olive {
  background: url('olivart.png') center top / cover no-repeat;
}
.wi-img--olive::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 0;
}

/* Subtle inner grain on work images */
.wi-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  mix-blend-mode: overlay;
  z-index: 1;
  pointer-events: none;
}

/* Overlay */
.wi-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px 24px 26px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.12) 55%,
    transparent 100%
  );
  opacity: 0.82;
  transition: opacity 0.4s ease;
}

.wi:hover .wi-overlay {
  opacity: 1;
}

.wi-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.wi-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(225, 224, 204, 0.55);
}

.wi-name {
  font-family: var(--f-display);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.wi-arrow {
  font-size: 22px;
  color: var(--cream);
  opacity: 0;
  transform: translateX(-10px);
  align-self: flex-end;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wi:hover .wi-arrow {
  opacity: 1;
  transform: translateX(0);
}


/* ============================================================
   8. PROCESS
   ============================================================ */

.process {
  background: var(--bg-alt);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, var(--cream-08) 30%, var(--cream-08) 70%, transparent
  );
}

.process-track {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ps {
  padding: 40px 0;
  position: relative;
}

.ps-num {
  font-family: var(--f-display);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(225, 224, 204, 0.06);
  margin-bottom: 14px;
  transition: color 0.4s ease;
  user-select: none;
}

.ps:hover .ps-num {
  color: rgba(225, 224, 204, 0.14);
}

.ps-title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 12px;
}

.ps-desc {
  font-size: 14px;
  line-height: 1.68;
  color: var(--cream-40);
  max-width: 340px;
}

.process-divider {
  height: 1px;
  background: linear-gradient(90deg,
    var(--cream-08) 0%, rgba(225,224,204,0.04) 100%
  );
}


/* ============================================================
   9. CTA SECTION
   ============================================================ */

.cta-sec {
  position: relative;
  overflow: hidden;
}

/* Warm amber glow radiating from bottom — horizon/sunset feel */
.cta-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% 115%,
      rgba(200, 122, 58, 0.18) 0%,
      rgba(160, 80, 20, 0.08) 45%,
      transparent 70%
    ),
    radial-gradient(ellipse 60% 40% at 50% 100%,
      rgba(120, 50, 10, 0.10) 0%,
      transparent 60%
    ),
    var(--bg);
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: var(--sec-pad);
}

.cta-heading {
  font-family: var(--f-display);
  font-size: clamp(38px, 6vw, 90px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.02;
  color: var(--cream);
  margin: 20px 0 28px;
}

.cta-heading em {
  font-style: italic;
  color: var(--cream-70);
}

.cta-sub {
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.68;
  color: var(--cream-40);
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: 48px;
}


/* ============================================================
   10. FOOTER
   ============================================================ */

.footer {
  padding: 64px 0 44px;
  background: var(--bg);
  border-top: 1px solid var(--cream-08);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 52px;
}

.footer-logo {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.055em;
  color: var(--cream);
  transition: opacity 0.2s ease;
}

.footer-asterisk {
  font-size: 0.55em;
  vertical-align: super;
  line-height: 1;
  opacity: 0.6;
  letter-spacing: 0;
}

.footer-logo:hover {
  opacity: 0.75;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--cream-40);
  transition: color 0.25s ease,
              text-shadow 0.25s ease;
}

.footer-nav a:hover {
  color: #fff;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 1),
    0 0 16px rgba(225, 224, 204, 0.9),
    0 0 35px rgba(225, 224, 204, 0.65),
    0 0 70px rgba(225, 224, 204, 0.3);
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-soc {
  font-size: 13px;
  color: var(--cream-40);
  transition: color 0.25s ease,
              text-shadow 0.25s ease;
}

.footer-soc:hover {
  color: #fff;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 1),
    0 0 16px rgba(225, 224, 204, 0.9),
    0 0 35px rgba(225, 224, 204, 0.65),
    0 0 70px rgba(225, 224, 204, 0.3);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 28px;
  border-top: 1px solid var(--cream-08);
  font-size: 12px;
  color: rgba(225, 224, 204, 0.28);
}

.footer-tag {
  font-style: italic;
}


/* ============================================================
   11. ANIMATIONS & SCROLL REVEALS
   ============================================================ */

/* Entry animations for hero elements */
@keyframes titleSlideUp {
  from {
    opacity: 0;
    transform: translateY(105%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal — initial state */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings automatically */
.reveal:nth-child(1) { transition-delay: 0.00s; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }
.reveal:nth-child(7) { transition-delay: 0.46s; }


/* ============================================================
   12. RESPONSIVE OVERRIDES
   ============================================================ */

/* ---- Small phones (≤ 480px) ---- */
@media (max-width: 480px) {
  .hero-nav-pill {
    gap: 14px;
    padding: 9px 16px;
  }
  .nav-link {
    font-size: 10px;
  }
  .hero-wordmark {
    font-size: 22vw;
  }
}

/* ---- Medium (≥ 640px) ---- */
@media (min-width: 640px) {
  .hero-inner {
    border-radius: 24px;
  }
  .hero-content {
    padding: 0 28px 12px;
  }
  .hero-desc {
    font-size: 14px;
  }
}

/* ---- Tablet (≥ 768px) ---- */
@media (min-width: 768px) {
  .hero-inner {
    border-radius: 28px;
  }
  .hero-nav-pill {
    gap: 36px;
    padding: 13px 32px;
    border-radius: 0 0 24px 24px;
  }
  .nav-link {
    font-size: 13px;
  }
  .hero-desc {
    font-size: 15px;
  }

  /* About */
  .about-body {
    grid-template-columns: 3fr 2fr;
    gap: 80px;
    align-items: start;
  }
  .about-stats {
    flex-direction: column;
    gap: 32px;
  }

  /* Work grid — 2 column */
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .wi-img {
    height: 360px;
  }

  /* Services — 2 column square */
  .svc-card {
    flex: 0 0 calc((100% - 20px) / 2);
    aspect-ratio: 1;
  }

  /* Process */
  .ps {
    padding: 44px 0;
  }

  /* Footer */
  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ---- Desktop (≥ 1024px) ---- */
@media (min-width: 1024px) {
  .hero-inner {
    border-radius: 32px;
  }
  .hero-content {
    padding: 0 44px 16px;
  }
  .hero-grid {
    grid-template-columns: 8fr 4fr;
    align-items: flex-end;
    gap: 20px;
  }
  .hero-right {
    padding-bottom: 44px;
  }

  /* Services — 3 top / 2 bottom centred, all squares */
  .svc-card {
    flex: 0 0 calc((100% - 40px) / 3);
    aspect-ratio: 1;
  }

  /* Work — asymmetric grid */
  .work-grid {
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 320px 320px 300px;
  }
  /* Item 1: tall, spans 2 rows */
  .wi--tall {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .wi--tall .wi-img {
    height: 100%;
  }
  /* Item 2 */
  .wi:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .wi:nth-child(2) .wi-img {
    height: 100%;
  }
  /* Item 3 */
  .wi:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .wi:nth-child(3) .wi-img {
    height: 100%;
  }
  /* Items 4 e 5: lado a lado na terceira linha */
  .wi:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }
  .wi:nth-child(4) .wi-img { height: 100%; }
  .wi:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }
  .wi:nth-child(5) .wi-img { height: 100%; }

  /* Process — horizontal */
  .process-track {
    flex-direction: row;
    align-items: flex-start;
  }
  .ps {
    flex: 1;
    padding: 0 44px 0 0;
  }
  .ps:last-child {
    padding-right: 0;
  }
  .process-divider {
    width: 1px;
    height: 0;
    min-height: 120px;
    background: linear-gradient(
      180deg,
      transparent 0%,
      var(--cream-08) 30%,
      var(--cream-08) 70%,
      transparent 100%
    );
    margin-top: 72px;
    flex-shrink: 0;
    align-self: flex-start;
  }
}

/* ---- Wide (≥ 1280px) ---- */
@media (min-width: 1280px) {
  .hero-nav-pill {
    gap: 48px;
  }
}
