/* ===========================
   VARIABLES & RESET
=========================== */
:root {
  --bg: #060606;
  --bg-2: #0e0e0e;
  --bg-3: #161616;
  --fg: #f0ece4;
  --fg-dim: #8a8580;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dark: #9a7a47;
  --white: #ffffff;
  --red: #c0392b;

  --font-display: 'Cormorant', Georgia, serif;
  --font-ui: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);

  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { background: none; border: none; cursor: none; font-family: inherit; }

/* ===========================
   CUSTOM CURSOR
=========================== */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-out), width 0.4s var(--ease-out), height 0.4s var(--ease-out), opacity 0.3s;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 16px; height: 16px; }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { width: 56px; height: 56px; opacity: 0.5; }

/* ===========================
   LOADER
=========================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden { opacity: 0; visibility: hidden; }

.loader-inner { text-align: center; }

.loader-name {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 20px;
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(201, 169, 110, 0.2);
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.05s linear;
}

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.nav-logo {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold);
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.7; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--fg); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--fg);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-hamburger.open span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

/* ===========================
   MOBILE MENU
=========================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-out);
}
.mobile-menu.open { transform: translateY(0); }

.mobile-link {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-style: italic;
  color: var(--fg);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--gold); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

/* Film grain overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
  mix-blend-mode: overlay;
}

/* ── LEFT: Content ── */
.hero-content {
  position: relative;
  z-index: 5;
  padding: 0 60px 0 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-name {
  font-family: var(--font-display);
  line-height: 0.88;
  margin-bottom: 36px;
}
.hero-name-first {
  display: block;
  font-size: clamp(4.5rem, 9vw, 9rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.hero-name-last {
  display: block;
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  padding-left: 0.06em;
}

.hero-bio {
  font-size: 0.95rem;
  color: var(--fg-dim);
  margin-bottom: 52px;
  line-height: 2;
  border-left: 1px solid rgba(201,169,110,0.3);
  padding-left: 20px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── RIGHT: Portrait ── */
.hero-portrait-wrap {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.hero-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Cinematic grade: desaturate slightly, boost contrast */
  filter: grayscale(15%) contrast(1.08) brightness(0.88);
  transform: scale(1.04);
  animation: portraitReveal 1.4s 0.6s var(--ease-out) forwards;
  transform-origin: center top;
}
@keyframes portraitReveal {
  to { transform: scale(1); }
}

/* Dark gradient bleeding from left into portrait */
.hero-portrait-shadow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    rgba(6,6,6,0.6) 25%,
    rgba(6,6,6,0.0) 60%
  );
  z-index: 2;
}

/* Gradient from bottom — grounds the image into the page */
.hero-portrait-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--bg) 0%,
    rgba(6,6,6,0.4) 20%,
    transparent 55%
  );
  z-index: 2;
}

/* Gold color wash — cinematic warm grade */
.hero-portrait-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(201,169,110,0.08) 0%,
    rgba(201,169,110,0.04) 40%,
    rgba(6,6,6,0.5) 100%
  );
  mix-blend-mode: overlay;
  z-index: 3;
}

/* Thin gold vertical line between columns */
.hero-deco-line {
  position: absolute;
  left: 50%;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201,169,110,0.4) 30%,
    rgba(201,169,110,0.4) 70%,
    transparent
  );
  z-index: 6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--bg);
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid rgba(240, 236, 228, 0.3);
  color: var(--fg);
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-ghost.small { padding: 12px 28px; font-size: 0.68rem; }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-dim);
  z-index: 10;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(201,169,110,0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ===========================
   SECTION SHARED
=========================== */
.section-header {
  padding: 120px 60px 60px;
}

.section-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--fg);
}

/* ===========================
   WORK GRID
=========================== */
.work-section { background: var(--bg); padding-bottom: 120px; }

.projects-grid {
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.project-card { position: relative; overflow: hidden; background: var(--bg-3); }

.card-wide {
  grid-column: span 2;
}

.project-card-link { display: block; }

.project-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.card-wide .project-card-img-wrap { aspect-ratio: 16/7; }

.project-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.5s;
  filter: brightness(0.85);
}

.project-card:hover .project-card-img {
  transform: scale(1.06);
  filter: brightness(1);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,6,6,0.5);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
}
.project-card:hover .project-card-overlay { opacity: 1; }

.project-card-cta {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.project-card-info {
  padding: 20px 24px 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.project-card-num {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.project-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--fg);
  flex: 1;
}

.project-card-tags {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  flex-shrink: 0;
}

/* ===========================
   PROJECT SECTIONS
=========================== */
.project-section {
  padding: 80px 0 100px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.project-header {
  padding: 0 60px 60px;
}

.project-back {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 48px;
  transition: color 0.2s;
}
.project-back:hover { color: var(--gold); }

.project-title-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.project-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.project-logo-wide { height: 40px; }

.project-section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--fg);
}

.goat-title { font-style: italic; }

.project-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--fg-dim);
  max-width: 700px;
}

/* VIDEO ROW */
.video-row {
  display: flex;
  gap: 2px;
  padding: 0 0 2px;
  overflow-x: auto;
  scrollbar-width: none;
}
.video-row::-webkit-scrollbar { display: none; }

.video-item {
  flex: 0 0 280px;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
}

.hover-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.video-item::before {
  content: '▶';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  z-index: 2;
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.video-item.playing::before { opacity: 0; }
.video-item:hover .hover-video { transform: scale(1.04); }

/* PHOTO GRID */
.photo-grid {
  padding: 2px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.grid-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out), filter 0.4s;
  filter: brightness(0.9);
  cursor: zoom-in;
}
.grid-img:hover { transform: scale(1.03); filter: brightness(1.05); z-index: 2; position: relative; }

.photo-grid .grid-img:nth-child(5n+1) { aspect-ratio: 4/3; grid-column: span 2; }

.project-nav-bottom { padding: 48px 60px 0; }

/* ===========================
   CONTACT
=========================== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.contact-inner {
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--fg);
}
.contact-title em { color: var(--gold); font-style: italic; }

.contact-sub {
  font-size: 1rem;
  color: var(--fg-dim);
  margin-bottom: 52px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 28px;
  border: 1px solid rgba(240,236,228,0.15);
  max-width: 280px;
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.2s;
}
.contact-btn:hover { transform: translateX(6px); }

.contact-btn.whatsapp:hover { border-color: #25D366; color: #25D366; }
.contact-btn.instagram:hover { border-color: #E1306C; color: #E1306C; }
.contact-btn.snapchat:hover { border-color: #FFFC00; color: #FFFC00; }

.contact-icon { width: 18px; height: 18px; flex-shrink: 0; }

.contact-visual {
  overflow: hidden;
  position: relative;
}
.contact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.6);
  transform: scale(1.02);
  transition: transform 6s ease;
}
.contact-visual:hover .contact-img { transform: scale(1.06); }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding: 32px 60px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-name {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--gold);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-dim);
}

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ===========================
   LIGHTBOX
=========================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid rgba(201,169,110,0.2);
  transform: scale(0.95);
  transition: transform 0.4s var(--ease-out);
}
.lightbox.open .lightbox-img { transform: scale(1); }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--fg-dim);
  transition: color 0.2s, transform 0.2s;
  padding: 12px;
  cursor: none;
}
.lightbox-close { top: 24px; right: 24px; font-size: 1.2rem; }
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); font-size: 2.5rem; }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); font-size: 2.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold); }

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ===========================
   SCROLLBAR
=========================== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .card-wide { grid-column: span 2; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-visual { height: 400px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 0 24px; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    position: relative;
  }

  .hero-portrait-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .hero-portrait-shadow {
    background: linear-gradient(
      to right,
      rgba(6,6,6,0.92) 0%,
      rgba(6,6,6,0.75) 60%,
      rgba(6,6,6,0.5) 100%
    );
  }

  .hero-portrait-vignette {
    background: linear-gradient(
      to top,
      var(--bg) 0%,
      rgba(6,6,6,0.6) 30%,
      transparent 60%
    );
  }

  .hero-content {
    position: relative;
    z-index: 5;
    padding: 0 28px;
    padding-top: var(--nav-h);
  }

  .hero-deco-line { display: none; }
  .hero-scroll-hint { left: 28px; }

  .section-header { padding: 80px 28px 40px; }
  .projects-grid { grid-template-columns: 1fr; padding: 0 2px; }
  .card-wide { grid-column: span 1; }
  .card-wide .project-card-img-wrap { aspect-ratio: 4/3; }

  .project-header { padding: 0 24px 40px; }
  .project-nav-bottom { padding: 40px 24px 0; }

  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid .grid-img:nth-child(5n+1) { aspect-ratio: 1; grid-column: span 1; }

  .video-row { padding: 0; }
  .video-item { flex: 0 0 200px; }

  .contact-inner { padding: 60px 24px; }
  .footer { padding: 28px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }

  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero-name-first { font-size: 4rem; }
  .hero-name-last { font-size: 2rem; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-title { font-size: 2.8rem; }
}
