/* ============================================================
   ADÈLE LENGLART — Portfolio CSS
   Design: Clean Luxury · Serif + Sans · Black / Gold / Warm White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ──────────────────────────────────────────── */
:root {
  --black: #0e0e0e;
  --off-white: #f9f6f1;
  --warm-grey: #ede9e2;
  --gold: #b8955a;
  --gold-light: #d4af78;
  --text: #1a1a1a;
  --text-muted: #7a7067;
  --border: #e0d8cc;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --nav-h: 68px;
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1100px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ── Utility ────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 60px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 40px;
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── Navigation ─────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

#navbar.scrolled {
  background: rgba(249, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--black);
  transition: color 0.3s;
}

.nav-logo:hover {
  color: var(--gold);
}

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--black);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  transition: all 0.3s;
}

.lang-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lang-toggle .active-lang {
  color: var(--black);
  font-weight: 700;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--off-white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--black);
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

/* ── Hero ───────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.hero-bg-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: var(--border);
  transform: translateX(-50%);
}

.hero-content {
  padding: var(--section-pad) clamp(24px, 5vw, 80px);
  padding-top: calc(var(--nav-h) + var(--section-pad));
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.hero-greeting {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-greeting::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.0;
  color: var(--black);
  margin-bottom: 8px;
}

.hero-name em {
  font-style: italic;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.3;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
}

.btn-primary:hover::after {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s, border-color 0.3s;
}

.btn-secondary:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.btn-secondary svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.btn-secondary:hover svg {
  transform: translateY(2px);
}

.hero-image-wrap {
  position: relative;
  height: 100svh;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s ease;
}

.hero-image-wrap:hover img {
  transform: scale(1.04);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(249, 246, 241, 0.3) 0%, transparent 40%);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollDown 1.8s ease infinite;
}

@keyframes scrollDown {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

/* ── About ──────────────────────────────────────────────── */
#about {
  padding-block: var(--section-pad);
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  align-self: center;
}

.stat-item {
  background: var(--off-white);
  padding: 36px 32px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Brands ─────────────────────────────────────────────── */
#brands {
  padding-block: 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}

.brands-header {
  text-align: center;
  margin-bottom: 40px;
}

.brands-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.brands-track::-webkit-scrollbar {
  display: none;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 auto;
  height: 60px;
  padding-inline: clamp(12px, 2vw, 24px);
  opacity: 0.3;
  filter: grayscale(100%);
  transition: opacity 0.4s var(--ease), filter 0.4s var(--ease), transform 0.3s var(--ease);
}

.brand-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.06);
}

.brand-item img {
  height: 56px;
  max-height: 56px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
}

/* SVG logos */
.brand-item svg,
.brand-item object {
  max-height: 56px;
  max-width: 130px;
}

/* White logos: invert to black so grayscale renders them visible */
.brand-item.logo-on-light img {
  filter: invert(1);
}

/* ── Experience ─────────────────────────────────────────── */
#experience {
  padding-block: var(--section-pad);
  background: var(--black);
  color: var(--off-white);
}

#experience .section-heading {
  color: var(--off-white);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.job-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  padding: 48px 0 48px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  transition: background 0.3s;
}

.job-card:last-child {
  border-bottom: none;
}

.job-card::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 52px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  border: 1px solid var(--black);
}

.job-card.leave::before {
  background: rgba(255, 255, 255, 0.2);
}

.job-meta {
  padding-top: 4px;
}

.job-period {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.job-location {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.4;
}

.job-body {}

.job-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 4px;
}

.job-company {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.job-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid rgba(184, 149, 90, 0.35);
  color: var(--gold-light);
  border-radius: 2px;
}

.job-achievements {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-achievements li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.job-achievements li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.job-card.leave .job-title {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.job-card.leave .job-achievements li {
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
}

.job-card.leave .job-achievements li::before {
  color: rgba(255, 255, 255, 0.15);
}

/* ── Highlights ─────────────────────────────────────────── */
.highlights-wrapper {
  display: none;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 60px;
}

.highlights-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 32px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(184, 149, 90, 0.3);
  transform: translateY(-4px);
}

.hl-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.hl-period {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-light);
}

.hl-location {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.hl-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 4px;
}

.hl-company {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.hl-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

/* ── Skills ─────────────────────────────────────────────── */
#skills {
  padding-block: var(--section-pad);
  background: var(--warm-grey);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 60px;
}

.skill-category {
  background: var(--off-white);
  padding: 44px 40px;
  transition: background 0.3s;
}

.skill-category:hover {
  background: var(--warm-grey);
}

.skill-cat-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.skill-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.skill-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Moodboard ──────────────────────────────────────────── */
#moodboard {
  padding-block: var(--section-pad);
  background: var(--off-white);
  overflow: hidden;
}

.moodboard-intro {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 60px;
}

.moodboard-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

/* Asymmetric grid layout */
.mb-item {
  position: relative;
  overflow: hidden;
  background: var(--warm-grey);
  cursor: pointer;
}

.mb-item:nth-child(1) {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
  aspect-ratio: 4/5;
}

.mb-item:nth-child(2) {
  grid-column: 6 / 9;
  grid-row: 1 / 2;
  aspect-ratio: 1;
}

.mb-item:nth-child(3) {
  grid-column: 9 / 13;
  grid-row: 1 / 2;
  aspect-ratio: 1.1;
}

.mb-item:nth-child(4) {
  grid-column: 6 / 10;
  grid-row: 2 / 3;
  aspect-ratio: 1.2;
}

.mb-item:nth-child(5) {
  grid-column: 10 / 13;
  grid-row: 2 / 3;
  aspect-ratio: 1;
}

.mb-item:nth-child(6) {
  grid-column: 1 / 4;
  grid-row: 3 / 4;
  aspect-ratio: 1.1;
}

.mb-item:nth-child(7) {
  grid-column: 4 / 8;
  grid-row: 3 / 4;
  aspect-ratio: 1.4;
}

.mb-item:nth-child(8) {
  grid-column: 8 / 10;
  grid-row: 3 / 4;
  aspect-ratio: 1;
}

.mb-item:nth-child(9) {
  grid-column: 10 / 13;
  grid-row: 3 / 4;
  aspect-ratio: 1;
}

.mb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.mb-item:hover img {
  transform: scale(1.06);
}

.mb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 14, 0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.mb-item:hover .mb-overlay {
  opacity: 1;
}

.mb-keyword {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.mb-caption {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
}

/* ── Contact ────────────────────────────────────────────── */
#contact {
  padding-block: var(--section-pad);
  background: var(--black);
  color: var(--off-white);
}

#contact .section-label {
  color: var(--gold-light);
}

#contact .section-label::before {
  background: var(--gold-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-intro {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 400px;
}

#contact .section-heading {
  color: var(--off-white);
}

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

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-link:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-link-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}

.contact-link:hover .contact-link-icon {
  border-color: var(--gold);
  background: rgba(184, 149, 90, 0.1);
}

.contact-link-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
}

.contact-link-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2px;
}

.contact-link-text span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
}

.contact-link:hover .contact-link-text span {
  color: white;
}

.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-ctas h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--off-white);
  margin-bottom: 8px;
}

.contact-ctas p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 32px;
  line-height: 1.7;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gold);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s;
}


.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Footer ─────────────────────────────────────────────── */
footer {
  padding: 28px 0;
  background: #070707;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.footer-copy {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.2);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding-top: calc(var(--nav-h) + 60px);
    padding-bottom: 60px;
  }

  .hero-image-wrap {
    height: 55vw;
    min-height: 300px;
  }

  .hero-bg-line {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

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

  .job-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .job-meta {
    display: flex;
    gap: 16px;
    align-items: baseline;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .moodboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mb-item {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 1 !important;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-ctas {
    padding: 32px 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* brands-track scrolls horizontally — no logo shrinking needed */
  .brand-item {
    padding-inline: 14px;
  }

  .moodboard-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ── Portfolio ──────────────────────────────────────────── */
#portfolio {
  padding-block: var(--section-pad);
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.portfolio-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  background: var(--warm-grey);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--black);
}

.portfolio-card-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portfolio-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.portfolio-card:hover .portfolio-card-img-wrap img {
  transform: scale(1.05);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 14, 0.92);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  color: var(--off-white);
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-card-brand {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.portfolio-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--off-white);
  margin-bottom: 16px;
}

.portfolio-card-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
}

.portfolio-card-subtitle {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 12px;
}

.portfolio-card-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.portfolio-card-highlights li {
  font-size: 0.8rem;
  color: rgba(249, 246, 241, 0.7);
  margin-bottom: 6px;
  position: relative;
  padding-left: 12px;
}

.portfolio-card-highlights li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.portfolio-card-cta {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.portfolio-card:hover .portfolio-card-cta {
  border-color: var(--gold);
}

/* ── Project Detail View ─────────────────────────────────── */
#project-detail {
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: var(--section-pad);
  background: var(--off-white);
  min-height: 100vh;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.3s;
}

.back-link:hover {
  color: var(--gold);
}

.back-link svg {
  transition: transform 0.3s;
}

.back-link:hover svg {
  transform: translateX(-4px);
}

.btn-outline-gold {
  border: 1px solid var(--gold);
  padding: 12px 24px;
  color: var(--gold);
  transition: all 0.3s;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--off-white);
}

.project-detail-header {
  margin-bottom: 64px;
}

.project-brand {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.project-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--black);
}

.project-detail-content-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
}

.project-section-block {
  margin-bottom: 40px;
}

.project-section-block:last-child {
  margin-bottom: 0;
}

.project-intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}

.project-note-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}

.project-concept-text,
.project-additional-text,
.project-subsection-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.project-subheading {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.project-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-list li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.checkmark-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.arrow-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.project-additional-section,
.project-additional-subsection {
  margin-bottom: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.project-additional-details,
.project-subsection-items {
  list-style: none;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.project-additional-details li,
.project-subsection-items li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  padding: 16px;
  background: var(--warm-grey);
  border-left: 3px solid var(--gold);
}

.project-results-section {
  margin-bottom: 64px;
  padding: 48px;
  background: var(--black);
  color: var(--off-white);
  border-radius: 4px;
}

.project-results-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 32px;
  text-align: center;
}

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

.project-stat-card {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-stat-value {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.project-stat-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(249, 246, 241, 0.65);
}

.project-gallery-section {
  margin-bottom: 64px;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--warm-grey);
}

.gallery-item.video-item {
  background: var(--black);
}

.gallery-img,
.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail-footer {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

/* Responsive Overrides */
@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .portfolio-card {
    aspect-ratio: auto;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
  }

  .portfolio-card-img-wrap {
    aspect-ratio: 16 / 9;
    border: 1px solid var(--border);
  }

  .portfolio-card-overlay {
    position: relative;
    inset: auto;
    background: transparent;
    padding: 16px 0 0 0;
    opacity: 1;
    color: var(--text);
  }

  .portfolio-card-title {
    color: var(--text);
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .portfolio-card-highlights {
    margin-bottom: 16px;
  }

  .portfolio-card-highlights li {
    color: var(--text-muted);
    font-size: 0.85rem;
  }

  .portfolio-card-cta {
    display: none;
  }

  .project-detail-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .project-results-section {
    padding: 24px;
  }

  .project-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .project-stats-grid {
    grid-template-columns: 1fr;
  }

  .project-title {
    font-size: 2.2rem;
  }
}