/* ============================================
   CASA STUDIO — Claude's Creative Vision
   Dark premium × Video-first × Ultra-clean
   ============================================ */

/* --- Palette --- */
:root {
  --bg: #0A0A0A;
  --bg-elevated: #141414;
  --bg-card: #1A1A1A;
  --surface: #FFFFFF;
  --text: #F5F5F5;
  --text-muted: rgba(255,255,255,0.45);
  --text-dim: rgba(255,255,255,0.25);
  --accent: #4898EE;
  --accent-hover: #5AA4F5;
  --accent-glow: rgba(72,152,238,0.15);
  --gold: #C9996E;
  --gold-light: #D4AA80;
  --gold-glow: rgba(201,153,110,0.15);
  --gold-dim: rgba(201,153,110,0.08);
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: 80px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }

/* --- Base --- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(72,152,238,0.25);
}

.btn-ghost {
  background: transparent;
  color: #1C1C1E;
  border: 1px solid rgba(0,0,0,0.12);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.text-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}
.text-link:hover { color: var(--accent); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  z-index: 1000;
  transition: all 0.4s var(--ease);
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.nav.scrolled::before { opacity: 1; }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.nav-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; transition: opacity 0.2s; }
.nav-logo:hover img { opacity: 1; }

.nav-links {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-cta {
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  padding: 8px 18px;
  border: 1px solid var(--border-hover);
  border-radius: 980px;
  transition: all 0.2s var(--ease);
}
.nav-cta:hover { border-color: var(--accent); color: var(--accent); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; z-index: 1001; }
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--text); transition: all 0.3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98); backdrop-filter: blur(30px);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a { font-size: 28px; font-weight: 600; color: var(--text); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

/* Background gradient glow — gold + blue mix */
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(72,152,238,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--gold);
}

.hero-eyebrow { color: var(--gold); }

.hero h1 {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--text);
}

.hero h1 .accent { color: var(--accent); }

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* Video reel side */
.hero-reel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-vid {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.hero-vid:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 24px var(--gold-glow);
}

.hero-vid::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0E3E72, #1a5296);
  z-index: 0;
}

.hero-vid video, .hero-vid img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
}
.hero-vid:has(video)::before, .hero-vid:has(img)::before { display: none; }

.hero-vid.tall { aspect-ratio: 9/16; }
.hero-vid.wide { aspect-ratio: 16/9; grid-column: span 2; }
.hero-vid.square { aspect-ratio: 1; }

.vid-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.5) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 12px; opacity: 0; transition: opacity 0.3s var(--ease);
}
.hero-vid:hover .vid-overlay { opacity: 1; }

.vid-overlay .vid-name {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
}
.vid-overlay .vid-tag {
  font-size: 10px; color: rgba(255,255,255,0.45);
}

.vid-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  z-index: 3; opacity: 0; transition: all 0.3s var(--ease);
}
.hero-vid:hover .vid-play-btn { opacity: 1; background: var(--gold); border-color: var(--gold); }
.vid-play-btn svg { width: 14px; height: 14px; margin-left: 2px; }

/* Rosace behind video grid */
.hero-rosace {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* Stagger the grid items — offset the 3rd video */
.hero-reel .hero-vid:nth-child(3) { margin-top: 32px; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }

/* ============================================
   LIGHT MODE (everything after hero)
   ============================================ */
.light {
  background: #FFFFFF;
  color: #1C1C1E;
}

.light .eyebrow { color: var(--accent); }
.light h2, .light h3 { color: #1C1C1E; }
.light p { color: #86868B; }
.light .text-link { color: #86868B; }
.light .text-link:hover { color: var(--accent); }

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  background: #FAFAFA;
}

.marquee-track {
  display: flex; width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  color: #B0B0B0; white-space: nowrap; padding: 0 20px;
  text-transform: uppercase;
}

.marquee-track span:nth-child(even) {
  color: var(--gold);
  font-size: 10px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   STATS
   ============================================ */
.stats {
  padding: 80px 0;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat { text-align: center; }
.stat-num {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  color: #86868B;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how { background: #F8F9FB; }

.how-header {
  text-align: center;
  margin-bottom: 72px;
}
.how-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-top: 16px;
  color: #1C1C1E;
}
.how-header p {
  font-size: 16px;
  color: #86868B;
  margin-top: 12px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}

.how-step {
  background: #FFFFFF;
  padding: 40px 32px;
  text-align: center;
  transition: background 0.3s var(--ease);
}
.how-step:hover { background: #F8F9FB; }

.how-step-num {
  font-size: 12px; font-weight: 600; color: var(--gold);
  letter-spacing: 0.1em; margin-bottom: 16px;
}
.how-step-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(72,152,238,0.08); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.how-step-icon svg { width: 22px; height: 22px; }
.how-step h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: #1C1C1E; }
.how-step p { font-size: 13px; color: #86868B; line-height: 1.7; }

/* ============================================
   PORTFOLIO PREVIEW
   ============================================ */
.portfolio { background: #FFFFFF; }

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.portfolio-header h2 { font-size: clamp(32px, 4vw, 48px); color: #1C1C1E; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s var(--ease);
  display: block;
}
.portfolio-card:hover {
  border-color: rgba(0,0,0,0.1);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.portfolio-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0E3E72, #1a5296);
  position: relative;
  overflow: hidden;
}
.portfolio-card-img video, .portfolio-card-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

/* 3 portrait videos side by side filling the card completely */
.portfolio-card-img.tri-vid {
  display: flex;
  gap: 0;
  background: #0A0A0A;
}
.portfolio-card-img.tri-vid video {
  position: relative;
  inset: auto;
  width: 33.34%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Portfolio tri-vid: 3 videos side by side on all screens */

.portfolio-card-body {
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
}

.portfolio-card-name {
  font-size: 16px; font-weight: 600; color: #1C1C1E;
}
.portfolio-card-meta {
  font-size: 12px; color: #86868B; margin-top: 2px;
}

.portfolio-card-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #86868B; transition: all 0.2s var(--ease);
  flex-shrink: 0;
}
.portfolio-card:hover .portfolio-card-arrow {
  background: var(--gold); border-color: var(--gold); color: #fff;
}

.portfolio-card:hover {
  border-color: rgba(201,153,110,0.2);
}
.portfolio-card-arrow svg { width: 14px; height: 14px; }

/* ============================================
   CTA
   ============================================ */
.cta-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  background: #F8F9FB;
  overflow: hidden;
}

/* Rosace in CTA section */
.cta-rosace {
  position: absolute;
  left: -80px;
  bottom: -60px;
  width: 280px;
  height: 280px;
  opacity: 0.04;
  pointer-events: none;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
  position: relative;
  color: #1C1C1E;
}
.cta-section p {
  font-size: 16px;
  color: #86868B;
  margin-bottom: 36px;
  position: relative;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 0 24px;
  background: #0E1117;
  border-top: none;
  position: relative;
  overflow: hidden;
}

/* Big full logo centered in footer */
.footer-top {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-full-logo {
  height: 80px;
  width: auto;
  margin: 0 auto;
  opacity: 0.85;
}

/* Rosace decoration in footer — faded background */
.footer-rosace {
  position: absolute;
  right: -60px;
  top: -40px;
  width: 240px;
  height: 240px;
  opacity: 0.03;
  pointer-events: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo img { height: 24px; filter: brightness(0) invert(1); opacity: 0.6; margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: var(--gold); margin-bottom: 16px; opacity: 0.7; }
.footer-contact a { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 4px; transition: color 0.2s; }
.footer-contact a:hover { color: var(--text); }

.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text-dim);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-dim); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--text-muted); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

/* Hero entrance */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-content { animation: fadeUp 0.8s var(--ease-out) 0.2s both; }
.hero-reel { animation: fadeUp 0.8s var(--ease-out) 0.5s both; }

/* Scroll progress */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold)); z-index: 9999; width: 0;
  transition: width 0.1s linear; pointer-events: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ── Seamless scroll feel ── */
* { scroll-behavior: smooth; }
section, .hero, .stats, .how, .portfolio, .cta-section, .footer {
  transition: opacity 0.3s var(--ease);
}

/* ── 1200px — large tablets / small laptops ── */
@media (max-width: 1200px) {
  .container { padding: 0 32px; }
  .hero h1 { font-size: clamp(36px, 5vw, 52px); }
}

/* ── 1024px — tablets ── */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .hero-reel { max-width: 100%; }
  .how-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ── 768px — mobile landscape / small tablets ── */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-sm { padding: 56px 0; }
  .container { padding: 0 20px; }

  /* Nav */
  .nav { height: 56px; }
  .nav-inner { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding: 100px 0 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero h1 { font-size: 32px; }
  /* Hero reel carousel on mobile */
  .hero-reel {
    display: block !important;
    position: relative;
    aspect-ratio: 9/16;
    max-height: 320px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto;
    width: 60%;
  }
  .hero-reel .hero-vid {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    opacity: 0;
    transition: opacity 0.8s ease;
    border-radius: 16px;
    margin-top: 0 !important;
    aspect-ratio: auto !important;
  }
  .hero-reel .hero-vid.active-hero {
    opacity: 1;
  }
  .hero-reel .hero-vid video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-reel .hero-vid .vid-overlay {
    display: none;
  }

  /* Stats */
  .stats { padding: 56px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-num { font-size: 32px; }

  /* How */
  .how-header h2 { font-size: 28px; }
  .how-header { margin-bottom: 48px; }

  /* Portfolio */
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .portfolio-header h2 { font-size: 28px; }

  /* CTA */
  .cta-section h2 { font-size: 28px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-full-logo { height: 56px; }
}


/* Hero carousel moved to main 768px block above */
/* ── 480px — small phones ── */
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }

  .hero { padding: 88px 0 48px; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 14px; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .hero-reel { max-width: 100%; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 10px; }

  .how-header h2 { font-size: 24px; }
  .how-step h3 { font-size: 16px; }
  .how-step p { font-size: 12px; }

  .portfolio-header h2 { font-size: 24px; }
  .portfolio-card-name { font-size: 14px; }

  .cta-section h2 { font-size: 24px; }

  .footer-full-logo { height: 48px; }

  .marquee-track span { font-size: 11px; padding: 0 12px; }

  /* Nav */
  .nav-logo img { height: 26px; }
}
