/* =============================================
   MARIANA BRAVO — AWWWARDS LEVEL
   Premium Foodstyling & Enologia
   ============================================= */

/* ---------- Custom Properties ---------- */
:root {
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --dark: #242220;
  --warm-dark: #2c2824;
  --cream: #f5f0e8;
  --cream-soft: #faf7f2;
  --warm-white: #fefcf9;
  --sand: #e8e0d4;
  --terracotta: #c4553a;
  --terracotta-light: #d97a64;
  --gold: #b8966c;
  --gold-light: #d4bc94;
  --sage: #5a6b51;
  --text: #3a3632;
  --text-light: #7a7470;
  --text-muted: #a09a94;
  --border: #e0d8cc;
  --border-dark: rgba(255,255,255,0.08);

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'Inter', -apple-system, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);

  --header-h: 80px;
}

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

html {
  font-size: 16px;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--terracotta) transparent;
}

html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 3px; }

body {
  font-family: var(--ff-body);
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--terracotta); color: #fff; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

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

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--terracotta);
  z-index: 9997;
  transition: width 0.1s linear;
}

/* ---------- Cursor ---------- */
.cursor-dot, .cursor-ring, .cursor-text { display: none; }

@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    display: block;
    position: fixed;
    width: 6px; height: 6px;
    background: var(--terracotta);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99990;
    mix-blend-mode: difference;
    will-change: transform;
    transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s ease;
  }

  .cursor-ring {
    display: block;
    position: fixed;
    width: 48px; height: 48px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99989;
    opacity: 0.25;
    will-change: transform;
    transition: width 0.5s var(--ease), height 0.5s var(--ease),
                opacity 0.3s ease, border-color 0.3s ease,
                background 0.3s ease;
  }

  .cursor-text {
    display: flex;
    position: fixed;
    width: 80px; height: 80px;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    pointer-events: none;
    z-index: 99991;
    opacity: 0;
    will-change: transform;
    transition: opacity 0.4s ease;
  }

  body.cursor-hover-link .cursor-ring {
    width: 70px; height: 70px;
    opacity: 0.1;
    border-color: var(--terracotta);
  }

  body.cursor-hover-img .cursor-ring {
    width: 100px; height: 100px;
    opacity: 0.15;
    background: rgba(196,85,58,0.08);
    border-color: var(--terracotta);
  }

  body.cursor-hover-img .cursor-text { opacity: 1; }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  height: var(--header-h);
  mix-blend-mode: difference;
  transition: mix-blend-mode 0.3s;
}

.nav.menu-open { mix-blend-mode: normal; }

.nav-brand {
  position: relative;
  z-index: 101;
}

.nav-brand-inner {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 4px;
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border: 1.5px solid rgba(255,255,255,0.6);
  transition: border-color 0.3s ease;
}

.nav-brand:hover .nav-brand-inner { border-color: var(--terracotta); }

.nav-center {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.nav-menu-btn {
  position: relative;
  z-index: 101;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem;
}

.menu-icon {
  width: 24px;
  height: 14px;
  position: relative;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: all 0.5s var(--ease);
}

.menu-icon span:first-child { top: 0; }
.menu-icon span:last-child { bottom: 0; width: 60%; margin-left: auto; transition: all 0.5s var(--ease); }

.nav-menu-btn:hover .menu-icon span:last-child { width: 100%; }

.menu-label {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
}

/* Menu open state */
.nav-menu-btn.active .menu-icon span:first-child {
  top: 50%; transform: translateY(-50%) rotate(45deg);
}

.nav-menu-btn.active .menu-icon span:last-child {
  bottom: 50%; width: 100%; transform: translateY(50%) rotate(-45deg);
}

/* ---------- Fullscreen Menu ---------- */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  visibility: hidden;
}

.menu-overlay.open {
  pointer-events: all;
  visibility: visible;
}

.menu-bg {
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  clip-path: circle(0% at calc(100% - 4vw) 40px);
  transition: clip-path 0.8s var(--ease);
}

.menu-overlay.open .menu-bg {
  clip-path: circle(150% at calc(100% - 4vw) 40px);
}

.menu-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10vw;
  opacity: 0;
  transition: opacity 0.4s ease 0.2s;
}

.menu-overlay.open .menu-content { opacity: 1; }

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-link {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.8rem 0;
  position: relative;
  overflow: hidden;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s ease;
}

.menu-overlay.open .menu-link {
  transform: translateY(0);
  opacity: 1;
}

.menu-link:nth-child(1) { transition-delay: 0.3s; }
.menu-link:nth-child(2) { transition-delay: 0.35s; }
.menu-link:nth-child(3) { transition-delay: 0.4s; }
.menu-link:nth-child(4) { transition-delay: 0.45s; }
.menu-link:nth-child(5) { transition-delay: 0.5s; }
.menu-link:nth-child(6) { transition-delay: 0.55s; }

.menu-link::before {
  content: attr(data-index);
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--terracotta);
  opacity: 0.5;
  min-width: 2rem;
}

.menu-link-text,
.menu-link-hover {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--cream);
  transition: transform 0.5s var(--ease);
  display: block;
}

.menu-link-hover {
  position: absolute;
  left: calc(2rem + 1.5rem);
  color: var(--terracotta);
  transform: translateY(110%);
}

.menu-link:hover .menu-link-text { transform: translateY(-110%); }
.menu-link:hover .menu-link-hover { transform: translateY(0); }

.menu-footer {
  position: absolute;
  bottom: 4rem;
  left: 10vw; right: 10vw;
  display: flex;
  gap: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  opacity: 0;
  transition: opacity 0.4s ease 0.6s;
}

.menu-overlay.open .menu-footer { opacity: 1; }

.menu-footer-label {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 0.5rem;
}

.menu-footer-col a {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}

.menu-footer-col a:hover { color: var(--terracotta); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  animation: heroBgIn 2s 0.8s var(--ease) forwards;
}

@keyframes heroBgIn {
  to { opacity: 0.12; transform: scale(1); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(245,240,232,0.3) 0%,
    rgba(245,240,232,0.7) 40%,
    rgba(245,240,232,0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

.hero-top {
  margin-bottom: 2rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s var(--ease) forwards;
}

.hero-eyebrow .split-text {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--terracotta);
}

.line-draw {
  width: 50px; height: 1px;
  background: var(--terracotta);
  opacity: 0.4;
  transform: scaleX(0);
  animation: lineIn 0.6s 1.4s var(--ease) forwards;
}

@keyframes lineIn { to { transform: scaleX(1); } }

.hero-heading {
  margin-bottom: 3rem;
}

.heading-line {
  overflow: hidden;
  line-height: 1;
}

.heading-word {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: clamp(4rem, 13vw, 12rem);
  font-weight: 400;
  color: var(--dark);
  transform: translateY(110%);
  animation: wordUp 1.2s var(--ease) forwards;
  animation-delay: 0.6s;
}

.heading-italic {
  font-style: italic;
  color: var(--terracotta);
  animation-delay: 0.75s;
}

@keyframes wordUp {
  to { transform: translateY(0); }
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-description {
  max-width: 360px;
}

.reveal-text {
  font-family: var(--ff-body);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  overflow: hidden;
}

.reveal-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease) forwards;
}

.reveal-text:nth-child(1) { animation-delay: 1.4s; }
.reveal-text:nth-child(2) { animation-delay: 1.5s; }
.reveal-text:nth-child(3) { animation-delay: 1.6s; }

.hero-scroll-cta {
  opacity: 0;
  animation: fadeUp 0.8s 2s var(--ease) forwards;
}

.scroll-circle {
  width: 80px; height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-circle svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.scroll-circle circle {
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 0.5;
  stroke-dasharray: 302;
  stroke-dashoffset: 302;
  animation: circleIn 1.5s 2.2s var(--ease) forwards;
}

@keyframes circleIn { to { stroke-dashoffset: 0; } }

.scroll-arrow {
  color: var(--terracotta);
  animation: arrowBounce 2s 3s infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.hero-image-peek {
  position: absolute;
  right: 6vw;
  top: 50%;
  transform: translateY(-50%);
  width: 22vw;
  max-width: 320px;
  height: 55vh;
  max-height: 500px;
  overflow: hidden;
  border-radius: 2px;
  opacity: 0;
  animation: peekIn 1.4s 1s var(--ease) forwards;
}

@keyframes peekIn {
  from { opacity: 0; clip-path: inset(100% 0 0 0); }
  to { opacity: 1; clip-path: inset(0); }
}

.peek-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.hero-image-peek:hover .peek-img { transform: scale(1.08); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Image Reel ---------- */
.reel {
  overflow: hidden;
  padding: 1.5rem 0;
  background: var(--dark);
}

.reel-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: reelScroll 50s linear infinite;
}

.reel-item {
  width: 280px;
  height: 200px;
  overflow: hidden;
  border-radius: 2px;
  flex-shrink: 0;
}

.reel-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.4s ease, transform 0.8s var(--ease);
}

.reel-item:hover img {
  opacity: 1;
  transform: scale(1.05);
}

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

/* ---------- Section Commons ---------- */
.section-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-tag.centered { justify-content: center; }

.tag-num {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--terracotta);
}

.tag-line {
  width: 40px; height: 1px;
  background: var(--gold-light);
}

.tag-text {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--terracotta);
}

.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 2rem;
}

.section-heading.centered { text-align: center; }

.section-heading span { display: block; }
.section-heading em {
  font-style: italic;
  color: var(--terracotta);
}

/* Scroll animations */
.anim-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0s);
}

.anim-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-clip {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.2s var(--ease-smooth);
  transition-delay: var(--clip-delay, 0s);
}

.reveal-clip.visible {
  clip-path: inset(0);
}

/* ---------- About ---------- */
.about {
  padding: 6rem 8vw;
  background: var(--warm-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-images { position: relative; }

.about-img-1 {
  width: 85%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}

.about-img-1 img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.about-img-1:hover img { transform: scale(1.04); }

.about-img-2 {
  position: absolute;
  bottom: -3rem; right: -2rem;
  width: 50%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-img-2 img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.about-img-2:hover img { transform: scale(1.06); }

.about-body {
  margin-bottom: 3rem;
}

.about-body p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.about-numbers {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.number-item { text-align: center; }

.number-value {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}

.number-plus {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--terracotta);
}

.number-label {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.number-sep {
  width: 1px; height: 40px;
  background: var(--border);
}

/* ---------- Statement Marquee ---------- */
.statement {
  padding: 3rem 0;
  background: var(--charcoal);
  overflow: hidden;
}

.statement-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.statement-word {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  white-space: nowrap;
  opacity: 0.7;
}

.statement-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
  opacity: 0.5;
}

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

/* ---------- Horizontal Scroll Portfolio ---------- */
.work {
  position: relative;
  background: var(--cream-soft);
  padding-bottom: 3rem;
}

.work-header {
  padding: 5rem 8vw 2rem;
}

.work-scroll-container {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--terracotta) transparent;
  padding-bottom: 1rem;
}

.work-scroll-container::-webkit-scrollbar { height: 4px; }
.work-scroll-container::-webkit-scrollbar-track { background: transparent; }
.work-scroll-container::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 2px; }

.work-track {
  display: flex;
  gap: 2.5rem;
  padding: 0 8vw 1rem;
  width: max-content;
}

.work-card {
  flex-shrink: 0;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.work-card-img {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 3px;
  position: relative;
}

.work-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.work-card:hover .work-card-img img { transform: scale(1.06); }

.work-card-cat {
  font-family: var(--ff-sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terracotta);
}

.work-card-info h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin: 0.3rem 0;
}

.work-card-info p {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Philosophy ---------- */
.philosophy {
  padding: 6rem 0;
  background: var(--warm-white);
  overflow: hidden;
}

.philosophy-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8vw;
}

.philosophy-grid {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 3rem;
}

.phil-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}

.phil-block-reverse { direction: rtl; }
.phil-block-reverse > * { direction: ltr; }

.phil-block-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 3px;
}

.phil-block-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.phil-block-img:hover img { transform: scale(1.05); }

.phil-num {
  font-family: var(--ff-display);
  font-size: 6rem;
  font-weight: 600;
  color: var(--terracotta);
  opacity: 0.08;
  line-height: 1;
  margin-bottom: -1rem;
}

.phil-block-text h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1rem;
}

.phil-block-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.9;
  max-width: 450px;
}

/* ---------- Process ---------- */
.process {
  padding: 5rem 8vw;
  background: var(--cream);
}

.process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.process-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.process-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.process-step {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.step-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.step-number {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--terracotta);
  min-width: 2rem;
}

.step-line-h {
  width: 30px; height: 1px;
  background: var(--border);
}

.step-head h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
}

.process-step p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  padding-left: 3rem;
}

/* ---------- Brands ---------- */
.brands {
  padding: 5rem 0;
  background: var(--warm-white);
  overflow: hidden;
}

.brands-inner {
  padding: 0 8vw;
  margin-bottom: 3rem;
}

.brand-marquee {
  overflow: hidden;
  padding: 1.8rem 0;
  border-top: 1px solid var(--border);
}

.brand-marquee + .brand-marquee { border-top: none; }

.brand-marquee:last-of-type { border-bottom: 1px solid var(--border); }

.brand-marquee-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marquee 45s linear infinite;
}

.brand-marquee-reverse .brand-marquee-track {
  animation-direction: reverse;
  animation-duration: 50s;
}

.brand-marquee-track span {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-light);
  white-space: nowrap;
  opacity: 0.6;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.brand-marquee-track span:hover {
  opacity: 1;
  color: var(--terracotta);
}

.brands-logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 0 8vw;
}

.brands-logo-card {
  background: #f0ede8;
  border-radius: 4px;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.brands-logo-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.brands-logo-card img {
  width: 100%;
  object-fit: contain;
}

/* ---------- Contact ---------- */
.contact {
  padding: 6rem 8vw;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact .section-heading,
.contact .section-heading span,
.contact .section-heading em { color: var(--cream); }
.contact .section-heading em { color: var(--terracotta); }

.contact .tag-text,
.contact .tag-num { color: var(--terracotta-light); }
.contact .tag-line { background: rgba(255,255,255,0.1); }

.contact-heading {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.contact-heading span { display: block; }

.contact-sub {
  font-family: var(--ff-body);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-label {
  font-family: var(--ff-sans);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  display: block;
  margin-bottom: 0.5rem;
}

.contact-detail a,
.contact-detail span {
  display: block;
  font-family: var(--ff-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
  line-height: 1.6;
}

.contact-detail a:hover { color: var(--terracotta); }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--cream);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0 0.8rem;
  transition: border-color 0.4s ease;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--terracotta);
}

.form-group label {
  position: absolute;
  left: 0; top: 1rem;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  pointer-events: none;
  transition: all 0.4s var(--ease);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -0.6rem;
  font-size: 0.55rem;
  color: var(--terracotta);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  align-self: flex-start;
  padding: 1.2rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
  z-index: 0;
}

.form-submit:hover { border-color: var(--terracotta); }
.form-submit:hover::before { transform: scaleX(1); }

.submit-text,
.submit-arrow { position: relative; z-index: 1; }

.submit-arrow {
  transition: transform 0.3s var(--ease);
}

.form-submit:hover .submit-arrow { transform: translateX(5px); }

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: var(--cream);
  padding: 3rem 8vw 1.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.1;
  opacity: 0.15;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
}

.footer-links a {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.footer-links a:hover { opacity: 0.8; }

.footer-social a {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.footer-social a:hover { opacity: 0.8; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
}

.footer-bottom span {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 2px;
  opacity: 0.15;
}

/* ---------- CTA Bar WhatsApp ---------- */
.cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 0;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.cta-bar:hover {
  background: #a8432d;
}

.cta-bar-icon {
  width: 16px;
  height: 16px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-image-peek { width: 28vw; right: 4vw; }
  .work-card { width: 340px; }
  .work-card-img { height: 400px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .nav { padding: 0 6vw; }
  .nav-center { display: none; }

  .hero-content { padding: 0 6vw; }
  .hero-image-peek { display: none; }
  .hero-bottom { flex-direction: column; gap: 2rem; align-items: flex-start; }

  .about { padding: 6rem 6vw; }
  .about-inner { grid-template-columns: 1fr; gap: 4rem; }
  .about-images { max-width: 400px; }

  .work-header { padding: 6rem 6vw 2rem; }
  .work-track { padding: 0 6vw; gap: 1.5rem; }
  .work-card { width: 300px; }
  .work-card-img { height: 350px; }

  .philosophy { padding: 6rem 0; }
  .philosophy-inner { padding: 0 6vw; }
  .phil-block { grid-template-columns: 1fr; gap: 2rem; }
  .phil-block-reverse { direction: ltr; }

  .process { padding: 6rem 6vw; }
  .process-inner { grid-template-columns: 1fr; gap: 3rem; }

  .contact { padding: 4rem 6vw; }
  .contact-heading { font-size: clamp(2.5rem, 10vw, 4rem); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-details { gap: 1.5rem; }

  .menu-content { padding: 0 6vw; justify-content: space-between; padding-top: 6rem; padding-bottom: 2rem; }
  .menu-links { gap: 0.2rem; }
  .menu-link { padding: 0.5rem 0; }
  .menu-link-text, .menu-link-hover { font-size: clamp(1.8rem, 5vw, 2.5rem); }
  .menu-footer { position: static; left: auto; right: auto; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }

  .footer { padding: 2.5rem 6vw 1.5rem; }
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .footer-logo { font-size: 2rem; }
}

@media (max-width: 480px) {
  .heading-word { font-size: 3.5rem; }
  .menu-link-text, .menu-link-hover { font-size: 2.2rem; }
  .reel-item { width: 200px; height: 140px; }
  .work-card { width: 260px; }
  .work-card-img { height: 300px; }
  .about-numbers { flex-wrap: wrap; gap: 1.5rem; }
  .number-sep { display: none; }
  .brands-logo-grid { grid-template-columns: 1fr; }
}
