/* =====================================================
   JULIA VATER — PORTFOLIO
   Vanilla HTML/CSS/JS — no framework
===================================================== */

/* ── VARIABLES ──────────────────────────────────────── */
:root {
  --brown:       #6b5547;
  --brown-deep:  #4a3526;
  --espresso:    #2b211a;
  --cream:       #f3f1ec;
  --cream-light: #f8f5f0;
  --muted:       #8a7866;
  --taupe:       #7A6A5F;
  --taupe-light: #E8DDD2;
  --off-white:   #F5EFE8;
  --ugc-bg:      #F5F2EE;
  --nav-h:       80px;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body  { background: var(--cream); color: var(--espresso); font-family: 'Inter', sans-serif; font-weight: 300; line-height: 1.6; overflow-x: hidden; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
img   { display: block; max-width: 100%; }

/* ── UTILITIES ──────────────────────────────────────── */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
}
.eyebrow--light { color: rgba(245,239,230,0.45); }

/* ── FADE-IN ─────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in.is-visible { opacity: 1; transform: none; }

/* Stagger delays */
.process-step:nth-child(2) { transition-delay: 0.12s; }
.process-step:nth-child(3) { transition-delay: 0.24s; }
.why-item:nth-child(2)     { transition-delay: 0.08s; }
.why-item:nth-child(3)     { transition-delay: 0.16s; }
.why-item:nth-child(4)     { transition-delay: 0.24s; }
.skill-row:nth-child(2)    { transition-delay: 0.05s; }
.skill-row:nth-child(3)    { transition-delay: 0.10s; }
.skill-row:nth-child(4)    { transition-delay: 0.15s; }
.skill-row:nth-child(5)    { transition-delay: 0.20s; }
.skill-row:nth-child(6)    { transition-delay: 0.25s; }


/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  background: rgba(243,241,236,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107,85,71,0.1);
  transition: border-color 0.3s;
}
.navbar.scrolled { border-bottom-color: rgba(107,85,71,0.2); }

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--espresso);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  position: relative;
  transition: color 0.25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--espresso);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--espresso); }
.nav-link:hover::after { width: 100%; }

.nav-avail {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding: 6px 14px;
  border: 1px solid rgba(107,85,71,0.2);
  border-radius: 100px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--espresso);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7.5px) rotate(-45deg);
}


/* ═══════════════════════════════════════════════════
   HERO — Split Screen
═══════════════════════════════════════════════════ */
.hero {
  min-height: 90vh;
  background: var(--taupe);
  display: grid;
  grid-template-columns: 55fr 45fr;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px 80px;
  color: var(--off-white);
}

.hero-title { margin-bottom: 20px; }

.hero-script {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(64px, 8vw, 120px);
  color: var(--off-white);
  line-height: 1.05;
}
.hero-name {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(40px, 5.5vw, 82px);
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.1;
  margin-top: -6px;
}

.hero-subline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,239,232,0.6);
  margin-bottom: 36px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.h-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(245,239,232,0.1);
  border: 1px solid rgba(245,239,232,0.22);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 400;
  color: var(--off-white);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.25s, border-color 0.25s;
}
.h-tag:hover {
  background: rgba(245,239,232,0.18);
  border-color: rgba(245,239,232,0.4);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-btn {
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}
.hero-btn--fill {
  background: var(--off-white);
  color: var(--taupe);
  border: 1.5px solid var(--off-white);
}
.hero-btn--fill:hover {
  background: var(--taupe-light);
  border-color: var(--taupe-light);
}
.hero-btn--ghost {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(245,239,232,0.35);
}
.hero-btn--ghost:hover {
  background: rgba(245,239,232,0.1);
  border-color: rgba(245,239,232,0.6);
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--taupe);
}

/* Left-edge gradient blends photo seamlessly into the taupe hero */
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  right: auto;
  width: 160px;
  background: linear-gradient(to right, var(--taupe) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 2;
}


/* ═══════════════════════════════════════════════════
   STATEMENT
═══════════════════════════════════════════════════ */
.statement-section {
  background: var(--espresso);
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 56px;
}
.statement-inner { text-align: center; }
.statement-text {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 1200px;
  margin: 0 auto 28px;
}
.statement-anno {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.25);
}


/* ═══════════════════════════════════════════════════
   ÜBER MICH
═══════════════════════════════════════════════════ */
.about-section { background: var(--cream); }
.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 160px 56px;
}
.about-grid {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: 80px;
  align-items: start;
}
.about-left .eyebrow { margin-bottom: 24px; }
.about-headline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--espresso);
}
.about-right { padding-top: 6px; }
.about-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--espresso);
  opacity: 0.78;
}
.about-text p + p { margin-top: 24px; }

/* Drop cap */
.about-text p:first-child::first-letter {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 88px;
  line-height: 0.82;
  float: left;
  padding-right: 10px;
  padding-top: 6px;
  color: var(--brown);
}

/* Fact tiles */
.fact-tiles {
  display: flex;
  border-top: 1px solid rgba(107,85,71,0.14);
  margin-top: 96px;
}
.fact-tile {
  flex: 1;
  padding: 48px 32px;
  border-right: 1px solid rgba(107,85,71,0.14);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fact-tile:first-child { padding-left: 0; }
.fact-tile:last-child  { border-right: none; padding-right: 0; }
.fact-num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--brown);
}
.fact-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.fact-niche {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--brown);
  white-space: nowrap;
}


/* ═══════════════════════════════════════════════════
   SKILLS
═══════════════════════════════════════════════════ */
.skills-section { background: var(--brown); }
.skills-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 56px 160px;
}
.skills-header { text-align: center; margin-bottom: 0; }
.skills-headline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 20px;
}
.skills-sub-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.4);
  margin-bottom: 56px;
}
.skills-rule {
  width: 100%;
  height: 1px;
  background: rgba(245,239,230,0.12);
}
.skill-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(245,239,230,0.1);
  transition: background 0.3s ease, padding-left 0.3s ease;
}
.skill-row:hover {
  background: rgba(245,239,230,0.04);
  padding-left: 16px;
}
.skill-icon {
  width: 60px; height: 60px;
  border: 1px solid rgba(245,239,230,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(245,239,230,0.45);
  transition: border-color 0.3s;
}
.skill-row:hover .skill-icon { border-color: rgba(245,239,230,0.5); }
.skill-name {
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  flex: 0 0 300px;
  transition: transform 0.3s ease;
}
.skill-row:hover .skill-name { transform: translateX(6px); }
.skill-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,239,230,0.5);
  flex: 1;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════
   UGC PORTFOLIO — PHONE MOCKUPS
═══════════════════════════════════════════════════ */
.ugc-section {
  background: var(--ugc-bg);
  padding: 120px 56px 160px;
  overflow: hidden;
}
.ugc-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header */
.ugc-header { margin-bottom: 72px; }
.ugc-labels {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.ugc-label {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(45,33,24,0.4);
}
.ugc-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(56px, 10vw, 148px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--espresso);
  margin-bottom: 20px;
}
.ugc-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  max-width: 440px;
}

/* 4-column phone grid */
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}

/* Individual phone card */
.phone-card {
  --offset: 0px;
  transform: translateY(var(--offset));
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  cursor: pointer;
}
/* Staggered heights for organic look */
.phone-card:nth-child(2) { --offset: 44px; }
.phone-card:nth-child(4) { --offset: 22px; }
.phone-card:hover { transform: translateY(calc(var(--offset) - 10px)) scale(1.02); }

/* Realistic iPhone frame */
.phone-frame {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  aspect-ratio: 9 / 19.5;
  background: #18181b;
  border-radius: 3rem;
  border: 6px solid #27272a;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.07),
    0 0 0 1px rgba(0,0,0,0.35),
    0 30px 60px rgba(0,0,0,0.3),
    0 8px 20px rgba(0,0,0,0.15);
  transition: box-shadow 0.4s ease;
}
.phone-card:hover .phone-frame {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.07),
    0 0 0 1px rgba(0,0,0,0.4),
    0 48px 80px rgba(0,0,0,0.4),
    0 16px 32px rgba(0,0,0,0.2);
}

/* Dynamic island / notch */
.phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 26px;
  background: #18181b;
  border-radius: 20px;
  z-index: 20;
}

/* Screen area */
.phone-screen {
  position: absolute;
  inset: 0;
  background: #111;
  overflow: hidden;
  border-radius: inherit;
}

/* Thumbnail image — shows by default */
.phone-thumb {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #232323;
  transition: opacity 0.35s ease;
}

.phone-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  z-index: 1;
}

/* Play button overlay */
.phone-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.3s ease;
}
.phone-play-btn {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.phone-play-btn:hover {
  transform: scale(1.1);
  background: rgba(255,255,255,0.28);
}
.phone-play-btn svg {
  width: 18px; height: 18px;
  margin-left: 3px; /* visual centering */
}

/* Reel UI overlay */
.phone-ui {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

/* Right-side action bar */
.phone-actions {
  position: absolute;
  right: 8px;
  bottom: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.phone-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.phone-action svg {
  width: 22px; height: 22px;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.6));
  opacity: 0.9;
}
.phone-action span {
  font-size: 9px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.7));
}

/* Bottom info bar */
.phone-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 10px 20px;
  background: rgba(0,0,0,0.38);
}
.phone-reel-title {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone-progress-bar {
  height: 2px;
  background: rgba(255,255,255,0.25);
  border-radius: 1px;
}
.phone-progress-fill {
  height: 100%;
  width: 30%;
  background: rgba(255,255,255,0.85);
  border-radius: 1px;
}

/* Caption below each phone */
.phone-caption {
  text-align: center;
  margin-top: 18px;
  padding: 0 8px;
}
.phone-caption strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}
.phone-caption span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}


/* ═══════════════════════════════════════════════════
   PROZESS / WORKFLOW
═══════════════════════════════════════════════════ */
.process-section { background: var(--cream-light); }
.process-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 160px 56px;
}
.process-header { margin-bottom: 96px; }
.process-header .eyebrow { margin-bottom: 20px; }
.process-headline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--espresso);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(107,85,71,0.14);
}
.process-step {
  padding: 64px 48px;
  border-right: 1px solid rgba(107,85,71,0.14);
}
.process-step:first-child { padding-left: 0; }
.process-step:last-child  { border-right: none; padding-right: 0; }
.process-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 100px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(107,85,71,0.18);
  margin-bottom: 12px;
}
.process-title {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 34px;
  color: var(--espresso);
  margin-bottom: 14px;
}
.process-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}


/* ═══════════════════════════════════════════════════
   TOOLS MARQUEE
═══════════════════════════════════════════════════ */
.marquee-section {
  background: var(--brown);
  padding: 56px 0;
  overflow: hidden;
  user-select: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee 32s linear infinite;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  white-space: nowrap;
}
.marquee-inner em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(52px, 6vw, 76px);
  color: var(--cream);
  line-height: 1;
}
.mdot {
  font-size: 14px;
  color: rgba(245,239,230,0.3);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════════
   WHY ME
═══════════════════════════════════════════════════ */
.why-section { background: var(--espresso); }
.why-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 160px 56px;
}
.why-header { margin-bottom: 80px; }
.why-header .eyebrow--light { margin-bottom: 20px; }
.why-headline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(245,239,230,0.1);
}
.why-item {
  padding: 48px 40px;
  border-right: 1px solid rgba(245,239,230,0.1);
}
.why-item:first-child { padding-left: 0; }
.why-item:last-child  { border-right: none; padding-right: 0; }
.why-title {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--cream);
  margin-bottom: 14px;
}
.why-item p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,239,230,0.5);
}


/* ═══════════════════════════════════════════════════
   KONTAKT
═══════════════════════════════════════════════════ */
.contact {
  background: var(--brown);
  padding: 160px 56px;
  text-align: center;
}
.contact-inner { max-width: 1000px; margin: 0 auto; }
.contact-eyebrow {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 22px;
  color: rgba(245,239,230,0.55);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.contact-headline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 48px;
}
.contact-btn {
  display: inline-block;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--brown);
  background: var(--cream);
  padding: 20px 56px;
  border-radius: 100px;
  border: 2px solid var(--cream);
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.contact-btn:hover {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
}
.contact-socials {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.contact-socials a {
  color: rgba(245,239,230,0.4);
  transition: color 0.25s;
}
.contact-socials a:hover { color: var(--cream); }
.contact-socials span { color: rgba(245,239,230,0.2); }


/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--cream);
  padding: 36px 56px;
  border-top: 1px solid rgba(107,85,71,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-right {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤1100px)
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  /* Hero */
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-left { padding: 60px 32px 60px 48px; }
  .hero-portrait { max-width: 420px; }
  .nav-avail { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr 1fr; gap: 56px; }

  /* Skills */
  .skill-name { flex: 0 0 220px; }

  /* UGC grid — 2×2 */
  .ugc-grid { grid-template-columns: repeat(2, 1fr); }
  .phone-card:nth-child(2),
  .phone-card:nth-child(4) { --offset: 0px; }
  .phone-card:nth-child(odd) { --offset: 32px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item:nth-child(2) { border-right: none; padding-right: 0; }
  .why-item:nth-child(3) { padding-left: 0; }
  .why-item:nth-child(odd) { border-right: 1px solid rgba(245,239,230,0.1); }
  .why-item:nth-child(3),
  .why-item:nth-child(4) { border-top: 1px solid rgba(245,239,230,0.1); }
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤768px)
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Nav */
  .navbar { padding: 0 24px; }
  .nav-toggle { display: flex; }
  .nav-right {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 280px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    background: var(--cream);
    padding: calc(var(--nav-h) + 40px) 40px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    border-left: 1px solid rgba(107,85,71,0.12);
    z-index: 199;
    overflow-y: auto;
  }
  .nav-right.is-open { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(107,85,71,0.08); }
  .nav-link { display: block; padding: 18px 0; font-size: 12px; }
  .nav-link::after { display: none; }
  .nav-avail { display: block; margin-top: 32px; font-size: 8px; }

  /* Hero — stack: photo above, text below */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }
  .hero-right {
    order: -1;
    height: 58vw;
    max-height: 360px;
    min-height: 240px;
  }
  .hero-portrait {
    height: 100%;
    max-width: 240px;
    object-position: bottom center;
  }
  .hero-blob { width: 68%; }
  .hero-left { padding: 40px 24px 64px; }
  .hero-ctas { flex-wrap: wrap; }

  /* Statement */
  .statement-section { padding: 120px 24px; min-height: auto; }

  /* About */
  .about-container { padding: 100px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .fact-tiles { flex-wrap: wrap; }
  .fact-tile { flex: 0 0 50%; border-right: none; padding: 32px 0; }
  .fact-tile:nth-child(odd)  { border-right: 1px solid rgba(107,85,71,0.14); padding-right: 24px; }
  .fact-tile:nth-child(even) { padding-left: 24px; }
  .fact-tile:nth-child(3), .fact-tile:nth-child(4) { border-top: 1px solid rgba(107,85,71,0.14); }

  /* Skills */
  .skills-container { padding: 100px 24px 120px; }
  .skill-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .skill-name { flex: none; }

  /* UGC — horizontal scroll-snap carousel */
  .ugc-section { padding: 80px 0 100px; }
  .ugc-header  { padding: 0 24px; margin-bottom: 48px; }
  .ugc-sub     { max-width: 100%; }
  .ugc-grid {
    grid-template-columns: repeat(4, calc(82vw - 32px));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 16px 24px 32px;
    gap: 20px;
    scrollbar-width: none;
  }
  .ugc-grid::-webkit-scrollbar { display: none; }
  .phone-card { scroll-snap-align: start; --offset: 0px !important; }

  /* Process */
  .process-container { padding: 100px 24px; }
  .process-steps { grid-template-columns: 1fr; border-top: none; }
  .process-step { border-right: none; border-top: 1px solid rgba(107,85,71,0.14); padding: 48px 0; }
  .process-step:first-child { border-top: none; }

  /* Why */
  .why-container { padding: 100px 24px; }
  .why-grid { grid-template-columns: 1fr; border-top: none; }
  .why-item { padding: 36px 0; border-right: none !important; border-top: 1px solid rgba(245,239,230,0.1); }
  .why-item:first-child { border-top: none; padding-left: 0; }
  .why-item:last-child  { padding-right: 0; }
  .why-item:nth-child(odd) { border-right: none; }

  /* Contact */
  .contact { padding: 100px 24px; }

  /* Footer */
  .footer { flex-direction: column; gap: 12px; text-align: center; padding: 32px 24px; }
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE — SMALL  (≤480px)
═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-right { height: 64vw; max-height: 300px; }
  .hero-portrait { max-width: 210px; }
  .h-tag { font-size: 11px; padding: 6px 12px; }
  .hero-btn { padding: 12px 24px; font-size: 11px; }

  .about-text p:first-child::first-letter { font-size: 64px; padding-right: 6px; }

  .skills-container { padding: 80px 20px 100px; }
  .process-container, .why-container { padding: 80px 20px; }
  .contact { padding: 80px 20px; }

  .ugc-grid { grid-template-columns: repeat(4, 86vw); }
}


/* ═══════════════════════════════════════════════════
   PORTFOLIO SECTION
═══════════════════════════════════════════════════ */
.portfolio-section {
  background: var(--ugc-bg);
  padding: 120px 56px 160px;
  overflow: hidden;
}
.portfolio-container { max-width: 1280px; margin: 0 auto; }

.portfolio-header { margin-bottom: 88px; }
.portfolio-labels {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.portfolio-label {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(45,33,24,0.4);
}
.portfolio-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(56px, 10vw, 148px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--espresso);
  margin-bottom: 20px;
}
.portfolio-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  max-width: 440px;
}

.showcase-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 32px;
  display: block;
}

/* ── Phone Grid (3 autoplay mockups) ──────────────── */
.showcase-block { margin-bottom: 100px; }

.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
}

/* Reset stagger from old 4-col layout */
.phone-grid .phone-card { --offset: 0px; }
.phone-grid .phone-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Sound toggle button */
.phone-sound-btn {
  position: absolute;
  bottom: 76px;
  left: 10px;
  z-index: 15;
  width: 28px; height: 28px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s;
  color: white;
}
.phone-sound-btn:hover { background: rgba(0,0,0,0.7); }
.phone-sound-btn svg { width: 13px; height: 13px; flex-shrink: 0; }
/* icon visibility controlled by .is-muted on the card */
.phone-card .icon-muted       { display: none; }
.phone-card.is-muted .icon-sound  { display: none; }
.phone-card.is-muted .icon-muted  { display: block; }

/* ── Visual Work Grid ─────────────────────────────── */
.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Shared card base */
.visual-card,
.browser-mockup {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 8px 32px rgba(45,33,24,0.10), 0 2px 8px rgba(45,33,24,0.06);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.35s ease;
}
.visual-card:hover,
.browser-mockup:hover {
  transform: scale(1.025) translateY(-5px);
  box-shadow: 0 28px 64px rgba(45,33,24,0.16), 0 4px 12px rgba(45,33,24,0.08);
}
.visual-card img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Featured card */
.visual-card--featured {
  position: relative;
}
.visual-card--featured img { height: 100%; object-fit: cover; }
.visual-card--featured::after {
  content: 'Featured';
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 14px;
  background: var(--espresso);
  color: var(--cream);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 100px;
  pointer-events: none;
}

/* Browser mockup */
.browser-mockup { border-radius: 12px; }
.browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #efefef;
  border-bottom: 1px solid #e2e2e2;
  flex-shrink: 0;
}
.browser-dots { display: flex; gap: 5px; flex-shrink: 0; }
.browser-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1;
  background: #fff;
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-content img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Lightbox ─────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18,12,8,0.92);
  cursor: pointer;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  z-index: 901;
  width: 44px; height: 44px;
  background: rgba(245,239,230,0.1);
  border: 1px solid rgba(245,239,230,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--cream);
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(245,239,230,0.22); }

.lightbox-img {
  position: relative;
  z-index: 901;
  max-width: min(90vw, 900px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.55);
}

/* ═══════════════════════════════════════════════════
   READY TO CREATE — Portfolio Intro
═══════════════════════════════════════════════════ */
.rtc-section {
  background: var(--ugc-bg);
  padding: 120px 56px 0;
}
.rtc-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(45,33,26,0.08);
}
.rtc-labels {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.rtc-label {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(45,33,24,0.4);
}
.rtc-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(56px, 10vw, 148px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--espresso);
  margin-bottom: 20px;
}
.rtc-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
}

/* ── Responsive: Portfolio ───────────────────────── */
@media (max-width: 1100px) {
  .phone-grid { gap: 20px; }
  .visual-grid { grid-template-columns: 1fr 1fr; }
  .visual-card--featured { grid-row: span 1; }
}

@media (max-width: 768px) {
  .visual-section { padding: 80px 24px 100px; }
  .showcase-label  { padding: 0; }

  /* Phone grid: horizontal scroll snap */
  .phone-grid {
    grid-template-columns: repeat(3, min(78vw, 240px));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 24px 32px;
    gap: 16px;
    scrollbar-width: none;
  }
  .phone-grid::-webkit-scrollbar { display: none; }
  .phone-grid .phone-card { scroll-snap-align: start; }

  /* Visuals: single column */
  .visual-grid { grid-template-columns: 1fr; }
  .visual-card--featured { grid-row: span 1; }

  /* RTC section */
  .rtc-section { padding: 80px 24px 0; }
  .rtc-inner { padding-bottom: 60px; }
  .rtc-labels { flex-direction: column; gap: 4px; }
}

@media (max-width: 480px) {
  .phone-grid { grid-template-columns: repeat(3, 84vw); }
}
