/*
Theme Name: Studio Size
Theme URI: https://studio-size.com
Author: Studio Size
Author URI: https://studio-size.com
Description: A premium branding, packaging & motion studio WordPress theme featuring GSAP animations, Lenis smooth scrolling, horizontal drag sliders, video hover effects, and a dark minimalist aesthetic.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: studio-size
Tags: portfolio, dark, custom-logo, custom-menu, featured-images, theme-options

Studio Size WordPress Theme — Rebuilt v2
*/

/* ============================================
   CSS CUSTOM PROPERTIES
============================================ */
:root {
  --c-bg: #0a0a0a;
  --c-bg-alt: #111111;
  --c-bg-card: #161616;
  --c-white: #ffffff;
  --c-gray: #888888;
  --c-gray-dim: #555555;
  --c-gray-dark: #333333;
  --c-border: #1e1e1e;
  --c-accent: #ffffff;

  --f-display: 'Neue Haas Grotesk Display Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --f-body: 'Neue Haas Grotesk Text Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --pad: clamp(20px, 4vw, 48px);
  --header-h: 60px;
  --max-w: 1440px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-white);
  background: var(--c-bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; }
::selection { background: var(--c-white); color: var(--c-bg); }

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

/* ============================================
   UTILITY
============================================ */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ============================================
   CUSTOM CURSOR
============================================ */
.cursor {
  position: fixed; top:0; left:0; width:14px; height:14px;
  border-radius: 50%; background: var(--c-white);
  pointer-events: none; z-index: 10000;
  mix-blend-mode: difference;
  transition: width .3s var(--ease), height .3s var(--ease);
}
.cursor--lg { width: 64px; height: 64px; }
.cursor__label {
  position: fixed; top:0; left:0; pointer-events: none; z-index:10001;
  font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-bg); mix-blend-mode: difference;
  opacity: 0; transition: opacity .25s ease; white-space: nowrap;
}
.cursor__label.is-on { opacity:1; }
@media (pointer:coarse) { .cursor, .cursor__label { display:none!important; } }

/* ============================================
   PRELOADER
============================================ */
.preloader {
  position: fixed; inset:0; z-index:9999; background: var(--c-bg);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap:20px;
}
.preloader__num { font-family: var(--f-display); font-size: clamp(3rem,10vw,8rem); font-weight:500; letter-spacing: -.04em; line-height:1; }
.preloader__track { width:100px; height:2px; background: var(--c-border); border-radius:1px; overflow:hidden; }
.preloader__fill { width:0; height:100%; background: var(--c-white); border-radius:1px; }
body.is-loaded .preloader { pointer-events: none; }

/* ============================================
   HEADER
============================================ */
.site-header {
  position: fixed; top:0; left:0; right:0; z-index:100;
  height: var(--header-h); display:flex; align-items:center;
  padding: 0 var(--pad); mix-blend-mode: difference;
  transition: transform .5s var(--ease);
}
.site-header.is-hidden { transform: translateY(-100%); }
.header__inner { display:flex; align-items:center; justify-content:space-between; width:100%; }

.site-logo img, .site-logo svg { height:18px; width:auto; }
.site-logo a { display:block; }

.nav-main { display:flex; align-items:center; gap:32px; }
.nav-main__list { display:flex; gap:24px; }
.nav-main__link {
  font-size: .8125rem; letter-spacing:.01em; position:relative; padding:2px 0;
  transition: opacity .3s ease;
}
.nav-main__link:hover { opacity:.6; }
.nav-main__link::after {
  content:''; position:absolute; bottom:0; left:0; width:0; height:1px;
  background:currentColor; transition: width .4s var(--ease);
}
.nav-main__link:hover::after, .nav-main__link.current::after { width:100%; }

.nav-cta {
  font-size: .75rem; letter-spacing:.04em; text-transform:uppercase;
  padding: 8px 20px; border:1px solid rgba(255,255,255,.3); border-radius:100px;
  transition: all .3s var(--ease);
}
.nav-cta:hover { background: var(--c-white); color: var(--c-bg); }

/* Hamburger */
.hamburger { display:none; width:28px; height:18px; flex-direction:column; justify-content:space-between; z-index:110; position:relative; }
.hamburger span { display:block; width:100%; height:1.5px; background:var(--c-white); transition: all .4s var(--ease); transform-origin:center; }
.hamburger.is-active span:nth-child(1) { transform: translateY(8.25px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity:0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-8.25px) rotate(-45deg); }

/* Fullscreen nav */
.nav-fs {
  position:fixed; inset:0; z-index:105; background:var(--c-bg);
  display:flex; flex-direction:column; justify-content:center;
  padding: 100px var(--pad) 48px;
  clip-path: inset(0 0 100% 0); transition: clip-path .7s var(--ease);
}
.nav-fs.is-open { clip-path: inset(0 0 0 0); }
.nav-fs__list { display:flex; flex-direction:column; gap:4px; }
.nav-fs__link {
  font-family: var(--f-display); font-size: clamp(2rem,8vw,4.5rem);
  font-weight:500; letter-spacing:-.02em; line-height:1.15;
  opacity:0; transform:translateY(40px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.nav-fs.is-open .nav-fs__link { opacity:1; transform:translateY(0); }
.nav-fs.is-open .nav-fs__item:nth-child(1) .nav-fs__link { transition-delay:.1s; }
.nav-fs.is-open .nav-fs__item:nth-child(2) .nav-fs__link { transition-delay:.15s; }
.nav-fs.is-open .nav-fs__item:nth-child(3) .nav-fs__link { transition-delay:.2s; }
.nav-fs.is-open .nav-fs__item:nth-child(4) .nav-fs__link { transition-delay:.25s; }
.nav-fs.is-open .nav-fs__item:nth-child(5) .nav-fs__link { transition-delay:.3s; }
.nav-fs__social { margin-top:auto; display:flex; flex-wrap:wrap; gap:12px 20px; padding-top:32px; border-top:1px solid var(--c-border); }
.nav-fs__social a { font-size:.8125rem; color:var(--c-gray); }

/* ============================================
   PLAY REEL (fixed)
============================================ */
.play-reel-btn {
  position:fixed; bottom:32px; left:32px; z-index:50;
  display:flex; align-items:center; gap:8px;
  font-size:.7rem; letter-spacing:.08em; text-transform:uppercase; color:var(--c-gray);
  cursor:pointer; transition: color .3s ease;
}
.play-reel-btn:hover { color:var(--c-white); }
.play-reel-btn__dot { width:7px; height:7px; border-radius:50%; background:#e33; animation:blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ============================================
   HERO
============================================ */
.hero {
  padding: calc(var(--header-h) + 24px) var(--pad) 0;
}
.hero__title {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.04em;
  max-width: 900px;
}
.hero__title .line { display:block; overflow:hidden; }
.hero__title .line-inner { display:inline-block; transform:translateY(110%); }
.hero__rotating {
  display:inline-block; position:relative; vertical-align:bottom;
  overflow:hidden; height:1.08em;
}
.hero__rotating-word {
  display:block; position:absolute; left:0; top:0;
  transform:translateY(110%); white-space:nowrap; color:var(--c-gray);
}
.hero__rotating-word.is-active { position:relative; transform:translateY(0); }

/* Showreel banner — full width below title */
.hero__reel {
  margin-top: 32px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.hero__reel-media {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  background: var(--c-bg-alt);
}
.hero__reel-media img,
.hero__reel-media video,
.hero__reel-media .hero__reel-gif {
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
}
.hero__reel-meta {
  display:flex; justify-content:space-between; align-items:center;
  padding: 12px 0; font-size:.8rem; color:var(--c-gray);
}

/* ============================================
   FEATURED WORK
============================================ */
.featured {
  padding: 100px 0 80px;
}
.featured__header {
  display:flex; justify-content:space-between; align-items:center;
  padding: 0 var(--pad); margin-bottom:40px;
}
.featured__title {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight:500; letter-spacing:-.02em;
}
.featured__controls {
  display:flex; align-items:center; gap:16px;
}
.featured__view-all {
  font-size:.75rem; letter-spacing:.04em; text-transform:uppercase;
  color:var(--c-gray); transition: color .3s ease;
}
.featured__view-all:hover { color:var(--c-white); }
.featured__arrows { display:flex; gap:8px; }
.featured__arrow {
  width:36px; height:36px; border-radius:50%; border:1px solid var(--c-gray-dark);
  display:flex; align-items:center; justify-content:center;
  font-size:.875rem; color:var(--c-gray); transition: all .3s var(--ease);
  cursor:pointer;
}
.featured__arrow:hover { border-color:var(--c-white); color:var(--c-white); }
.featured__arrow svg { width:14px; height:14px; fill:none; stroke:currentColor; stroke-width:2; }

/* Slider */
.featured__slider {
  display:flex; gap:20px; padding:0 var(--pad);
  overflow:hidden; cursor:grab; user-select:none; -webkit-user-select:none;
}
.featured__slider.is-dragging { cursor:grabbing; }

.featured__card {
  flex: 0 0 auto;
  width: clamp(240px, 30vw, 340px);
}
.featured__card-media {
  position:relative; border-radius:8px; overflow:hidden;
  padding-top:125%; background:var(--c-bg-card);
}
.featured__card-media img {
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition: transform .7s var(--ease);
}
.featured__card-media video {
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:0; transition: opacity .4s ease;
}
.featured__card:hover .featured__card-media img { transform:scale(1.05); }
.featured__card:hover .featured__card-media video { opacity:1; }
.featured__card-info { padding-top:12px; }
.featured__card-name { font-family:var(--f-display); font-size:1rem; font-weight:500; }
.featured__card-desc { font-size:.8125rem; color:var(--c-gray); margin-top:2px; }

/* ============================================
   STATEMENT SECTION
============================================ */
.statement {
  padding: 120px 0 100px;
}
.statement__inner {
  padding: 0 var(--pad);
}
.statement__quote {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -.015em;
  max-width: 900px;
}
.statement__quote .sw {
  display:inline-block; opacity:.12;
  transition: opacity .1s ease;
}
.statement__quote em { font-style:italic; }

/* Video + floating logos area */
.statement__media {
  margin-top: 80px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.statement__video-wrap {
  flex: 0 0 auto;
  width: clamp(280px, 45%, 520px);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.statement__video-wrap video {
  width:100%; display:block;
}
.statement__logos {
  flex:1;
  display:flex; flex-wrap:wrap; gap:16px;
  align-items:center; justify-content:center;
  padding: 20px 0;
}
.statement__logo {
  width: clamp(60px, 8vw, 90px);
  height: clamp(60px, 8vw, 90px);
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-bg-card);
  display:flex; align-items:center; justify-content:center;
}
.statement__logo img {
  width: 70%; height: auto; object-fit: contain;
}

.statement__body {
  margin-top: 48px;
  display:flex; align-items:flex-start; gap:40px; flex-wrap:wrap;
}
.statement__text {
  flex:1; min-width:260px;
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  line-height:1.7; color:var(--c-gray);
}
.statement__cta { flex-shrink:0; }

.btn-circle {
  display:inline-flex; align-items:center; gap:10px;
  font-size:.8125rem; letter-spacing:.02em; color:var(--c-white);
  transition: opacity .3s ease;
}
.btn-circle:hover { opacity:.7; }
.btn-circle__icon {
  width:36px; height:36px; border-radius:50%; border:1px solid var(--c-gray-dark);
  display:flex; align-items:center; justify-content:center;
  transition: all .3s var(--ease);
}
.btn-circle:hover .btn-circle__icon { border-color:var(--c-white); }
.btn-circle__icon svg { width:12px; height:12px; fill:none; stroke:currentColor; stroke-width:2; }

/* ============================================
   SERVICES — Large text list with hover previews
============================================ */
.services {
  padding: 100px 0;
}
.services__inner {
  padding: 0 var(--pad);
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.services__label {
  font-size: .7rem; letter-spacing:.1em; text-transform:uppercase;
  color: var(--c-gray-dim);
  flex-shrink:0; padding-top:12px;
}
.services__list {
  flex:1;
}
.services__item {
  position: relative;
}
.services__link {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.3;
  color: var(--c-gray-dim);
  display: block;
  padding: 4px 0;
  transition: color .4s var(--ease);
  cursor: default;
}
.services__link:hover {
  color: var(--c-white);
}
/* Hover video preview */
.services__preview {
  position: fixed;
  width: 220px; height: 280px;
  border-radius: 10px; overflow: hidden;
  pointer-events: none; z-index: 60;
  opacity: 0; transform: scale(.85);
  transition: opacity .3s ease, transform .3s var(--ease);
}
.services__preview.is-on { opacity:1; transform:scale(1); }
.services__preview img,
.services__preview video { width:100%; height:100%; object-fit:cover; }

/* ============================================
   GALLERY MASONRY
============================================ */
.gallery {
  padding: 80px 0;
  overflow: hidden;
}
.gallery__track {
  display:flex; gap:10px; padding: 0 var(--pad);
}
.gallery__col {
  display:flex; flex-direction:column; gap:10px; flex:1;
}
.gallery__item {
  border-radius:8px; overflow:hidden; position:relative;
  background:var(--c-bg-card);
}
.gallery__item img,
.gallery__item video {
  width:100%; display:block;
  transition: transform .6s var(--ease);
}
.gallery__item:hover img,
.gallery__item:hover video { transform:scale(1.03); }

/* ============================================
   ABOUT TEXT
============================================ */
.about-text {
  padding: 100px 0;
}
.about-text__inner {
  max-width: 900px; margin:0 auto; padding:0 var(--pad);
}
.about-text__content {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  font-weight: 400; line-height:1.5; letter-spacing:-.01em;
  color: var(--c-gray);
}
.about-text__content strong { color:var(--c-white); font-weight:500; }
.about-text__cta { margin-top:36px; }
.btn-outline {
  display:inline-flex; align-items:center; gap:8px;
  font-size:.75rem; letter-spacing:.05em; text-transform:uppercase;
  padding:12px 28px; border:1px solid var(--c-gray-dark); border-radius:100px;
  transition: all .3s var(--ease);
}
.btn-outline:hover { background:var(--c-white); color:var(--c-bg); }

/* ============================================
   ASSETS BANNER
============================================ */
.assets-banner {
  padding: 60px var(--pad);
}
.assets-banner__inner {
  position:relative; border-radius:14px; overflow:hidden; cursor:pointer;
  display:block;
}
.assets-banner__media {
  position:relative; padding-top:50%; background:var(--c-bg-card);
}
.assets-banner__media img {
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition: transform .8s var(--ease);
}
.assets-banner__media video {
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:0; transition: opacity .5s ease;
}
.assets-banner__inner:hover .assets-banner__media img { transform:scale(1.03); }
.assets-banner__inner:hover .assets-banner__media video { opacity:1; }
.assets-banner__overlay {
  position:absolute; bottom:32px; left:32px; z-index:2;
}
.assets-banner__heading {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight:500; margin-bottom:12px;
}
.assets-banner__link {
  font-size:.75rem; letter-spacing:.05em; text-transform:uppercase;
  border-bottom:1px solid currentColor; padding-bottom:2px;
}

/* ============================================
   SOCIAL LINKS — horizontal list with hover video
============================================ */
.socials {
  padding: 60px 0; border-top:1px solid var(--c-border);
}
.socials__list {
  display:flex; flex-wrap:wrap; padding:0 var(--pad);
}
.socials__item { position:relative; }
.socials__link {
  display:block; padding:14px 28px;
  font-family: var(--f-display);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight:500; letter-spacing:-.01em;
  transition: opacity .3s ease;
}
.socials__link:hover { opacity:.6; }
.socials__hover {
  position:fixed; width:180px; height:240px; border-radius:8px; overflow:hidden;
  pointer-events:none; z-index:55;
  opacity:0; transform:translate(-50%,-50%) scale(.8);
  transition: opacity .3s ease, transform .3s var(--ease);
}
.socials__hover.is-on { opacity:1; transform:translate(-50%,-50%) scale(1); }
.socials__hover img,
.socials__hover video { width:100%; height:100%; object-fit:cover; }

/* ============================================
   FOOTER
============================================ */
.site-footer {
  padding: 60px var(--pad) 32px;
  border-top:1px solid var(--c-border);
}
.footer__logo { margin-bottom:32px; }
.footer__logo img, .footer__logo svg { width:100%; max-width:560px; height:auto; opacity:.08; }
.footer__tagline {
  font-family:var(--f-display); font-size:clamp(1.1rem,1.8vw,1.35rem);
  font-weight:400; color:var(--c-gray); margin-bottom:48px;
}
.footer__bottom {
  display:flex; justify-content:space-between; align-items:flex-end;
  flex-wrap:wrap; gap:16px; padding-top:20px; border-top:1px solid var(--c-border);
}
.footer__nav { display:flex; gap:20px; }
.footer__nav a { font-size:.8rem; color:var(--c-gray); transition: color .3s ease; }
.footer__nav a:hover { color:var(--c-white); }
.footer__copy { font-size:.8rem; color:var(--c-gray-dim); }

/* ============================================
   VIDEO MODAL
============================================ */
.v-modal {
  position:fixed; inset:0; z-index:9998; background:rgba(0,0,0,.95);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition: all .4s var(--ease);
  cursor:pointer;
}
.v-modal.is-open { opacity:1; visibility:visible; }
.v-modal__close {
  position:absolute; top:20px; right:20px; width:44px; height:44px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; z-index:2;
}
.v-modal__player { width:90vw; max-width:1100px; }
.v-modal__player video { width:100%; border-radius:8px; }

/* ============================================
   PORTFOLIO GRID PAGE (/work/)
============================================ */
.port-grid { padding: 140px 0 60px; }
.port-grid__head { padding:0 var(--pad); margin-bottom:48px; }
.port-grid__title {
  font-size: clamp(2.5rem, 6vw, 5rem); font-weight:500; letter-spacing:-.03em;
}
.port-grid__filters {
  display:flex; gap:20px; padding:0 var(--pad); margin-bottom:32px; flex-wrap:wrap;
}
.port-grid__flt {
  font-size:.8125rem; color:var(--c-gray); cursor:pointer; padding:4px 0;
  position:relative; transition: color .3s ease;
}
.port-grid__flt::after {
  content:''; position:absolute; bottom:0; left:0; width:0; height:1px;
  background:currentColor; transition: width .3s var(--ease);
}
.port-grid__flt:hover, .port-grid__flt.is-active { color:var(--c-white); }
.port-grid__flt.is-active::after { width:100%; }

.port-grid__items {
  display:grid; grid-template-columns:repeat(2,1fr); gap:20px; padding:0 var(--pad);
}
.port-card { position:relative; overflow:hidden; border-radius:8px; }
.port-card__media {
  position:relative; padding-top:75%; overflow:hidden; background:var(--c-bg-card);
}
.port-card__media img {
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition: transform .7s var(--ease);
}
.port-card:hover .port-card__media img { transform:scale(1.05); }
.port-card__info { padding:14px 0; }
.port-card__name { font-family:var(--f-display); font-size:1rem; font-weight:500; }
.port-card__desc { font-size:.8125rem; color:var(--c-gray); margin-top:2px; }

/* ============================================
   SINGLE PROJECT
============================================ */
.proj-hero {
  min-height:75vh; display:flex; flex-direction:column; justify-content:flex-end;
  padding: 0 var(--pad) 60px; position:relative;
}
.proj-hero__bg { position:absolute; inset:0; z-index:-1; }
.proj-hero__bg img, .proj-hero__bg video { width:100%; height:100%; object-fit:cover; }
.proj-hero__bg::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to top, var(--c-bg), transparent 60%);
}
.proj-hero__title { font-size:clamp(3rem,8vw,7rem); }
.proj-hero__sub { font-size:clamp(1rem,1.8vw,1.35rem); color:var(--c-gray); margin-top:10px; }

.proj-meta {
  display:flex; gap:40px; padding:32px var(--pad); border-bottom:1px solid var(--c-border); flex-wrap:wrap;
}
.proj-meta__label { font-size:.65rem; letter-spacing:.1em; text-transform:uppercase; color:var(--c-gray-dim); margin-bottom:6px; }
.proj-meta__val { font-size:.875rem; }

.proj-content { padding:60px 0; }
.proj-content > * { margin-bottom:60px; }
.proj-content img, .proj-content video { border-radius:8px; width:100%; }

.proj-nav { display:flex; border-top:1px solid var(--c-border); }
.proj-nav__item { flex:1; padding:48px var(--pad); transition: background .3s ease; }
.proj-nav__item:hover { background:var(--c-bg-alt); }
.proj-nav__item + .proj-nav__item { border-left:1px solid var(--c-border); text-align:right; }
.proj-nav__lbl { font-size:.65rem; letter-spacing:.1em; text-transform:uppercase; color:var(--c-gray-dim); margin-bottom:8px; }
.proj-nav__name { font-family:var(--f-display); font-size:clamp(1.1rem,2.5vw,1.75rem); font-weight:500; }

/* ============================================
   PAGES (about, contact, generic)
============================================ */
.page-hero { padding: 160px var(--pad) 80px; }
.page-hero__title { font-size:clamp(2.5rem,6vw,5rem); font-weight:500; letter-spacing:-.03em; max-width:800px; }
.page-hero__desc { max-width:560px; margin-top:24px; color:var(--c-gray); font-size:clamp(.95rem,1.2vw,1.05rem); line-height:1.7; }

.page-body { padding:0 var(--pad) 80px; }
.page-body--narrow { max-width:720px; }

/* Contact form */
.form-field { margin-bottom:32px; }
.form-field label {
  display:block; font-size:.65rem; letter-spacing:.1em; text-transform:uppercase;
  color:var(--c-gray-dim); margin-bottom:10px;
}
.form-field input,
.form-field textarea {
  width:100%; background:none; border:none; border-bottom:1px solid var(--c-border);
  padding:10px 0; font-family:var(--f-body); font-size:1.05rem;
  color:var(--c-white); outline:none; transition: border-color .3s ease;
}
.form-field input:focus,
.form-field textarea:focus { border-color:var(--c-white); }
.form-field textarea { resize:vertical; min-height:100px; }

/* ============================================
   SCROLL REVEAL (base states, GSAP handles the rest)
============================================ */
[data-r] { opacity:0; transform:translateY(40px); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width:1024px) {
  .nav-main { display:none; }
  .hamburger { display:flex; }
  .services__inner { flex-direction:column; gap:24px; }
  .port-grid__items { grid-template-columns:1fr; }
  .proj-nav { flex-direction:column; }
  .proj-nav__item + .proj-nav__item { border-left:none; border-top:1px solid var(--c-border); text-align:left; }
}
@media (max-width:768px) {
  .featured__card { width:240px; }
  .statement__media { flex-direction:column; }
  .statement__video-wrap { width:100%; }
  .gallery__track { flex-direction:column; }
  .footer__bottom { flex-direction:column; align-items:flex-start; }
  .socials__link { padding:10px 14px; }
}
@media (max-width:480px) {
  .featured__card { width:200px; }
}
