/* ============================================
   PRIYANKA SHANMUGHAM — v2-newmixcoffee
   ============================================ */

:root {
  --black:      #000000;
  --white:      #ffffff;
  --white-70:   rgba(255,255,255,0.7);
  --white-50:   rgba(255,255,255,0.5);
  --white-20:   rgba(255,255,255,0.2);
  --white-10:   rgba(255,255,255,0.08);
  --light-bg:   #f5f5f5;
  --dark-text:  #1a1a1a;
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --ease-smooth:  cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ============================================
   HEADER
   ============================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s var(--ease-out);
}

#header.scrolled {
  background: var(--black);
  border-bottom: 1px solid var(--white-10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  height: 72px;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .header-inner {
    height: 80px;
    padding: 0 80px;
  }
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 36px;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  font-size: 14px;
  font-weight: 400;
  color: var(--white-70);
  transition: color 0.2s;
}

.nav-desktop a:hover { color: var(--white); }

.header-cta {
  display: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  border: 1px solid var(--white-20);
  padding: 8px 20px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.header-cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

@media (min-width: 1024px) {
  .header-cta { display: block; }
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
  transform-origin: center;
}

.hamburger.open span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.hamburger.open span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--black);
  display: flex;
  flex-direction: column;
  padding: 120px 24px 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-link {
  display: block;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
  height: 72px;
  line-height: 72px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s var(--ease-smooth), transform 0.35s var(--ease-smooth);
}

.mobile-menu.open .mobile-link:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.06s; }
.mobile-menu.open .mobile-link:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
.mobile-menu.open .mobile-link:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.18s; }

.mobile-menu-footer {
  margin-top: auto;
  font-size: 13px;
  color: var(--white-50);
  opacity: 0;
  transition: opacity 0.3s 0.22s;
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: var(--black);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

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

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

@media (min-width: 1024px) {
  .hero-content { padding: 0 80px 100px; }
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(52px, 9.5vw, 148px);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.9s var(--ease-smooth) 0.2s forwards;
}

.hero-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--white-70);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroIn 0.7s var(--ease-smooth) 0.5s forwards;
}

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: default;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: var(--white-50);
  transform-origin: top;
  animation: scrollDrop 2s var(--ease-smooth) infinite;
}

@keyframes scrollDrop {
  0%   { transform: scaleY(0); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0.4; }
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-50);
}

/* ============================================
   BRAND STORY
   ============================================ */
.brand-story {
  position: relative;
  height: 260vh;
  background: var(--black);
}

.brand-story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.brand-story-bg {
  position: absolute;
  inset: 0;
  background: var(--light-bg);
}

.brand-story-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 48px;
  gap: 0;
}

.brand-video-wrap {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 12;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .brand-video-wrap { max-width: 380px; }
}

.brand-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.brand-text-wrap {
  margin-top: 24px;
  width: 100%;
  max-width: 280px;
  text-align: left;
  padding-bottom: 24px;
}

@media (min-width: 1024px) {
  .brand-text-wrap { max-width: 380px; margin-top: 28px; }
}

.brand-statement {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(26,26,26,0.75);
}

.brand-line {
  width: 100%;
  height: 1px;
  background: rgba(26,26,26,0.18);
  margin: 16px 0 12px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease-smooth);
}

.brand-line.revealed { transform: scaleX(1); }

.brand-arrow {
  font-size: 16px;
  color: rgba(26,26,26,0.4);
}

/* ============================================
   FEATURES HERO
   ============================================ */
.features-hero {
  position: relative;
  height: 260vh;
  background: var(--black);
}

.features-sticky {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.features-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.features-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.2) 55%,
    rgba(0,0,0,0.5) 100%
  );
}

.features-text {
  position: absolute;
  bottom: 72px;
  left: 24px;
  right: 24px;
  z-index: 2;
}

@media (min-width: 1024px) {
  .features-text {
    bottom: 100px;
    left: 80px;
    right: auto;
    max-width: 640px;
  }
}

.features-text h2 {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 20px;
}

.features-text p {
  font-size: 12px;
  font-weight: 300;
  color: var(--white-70);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  position: relative;
  z-index: 2;
  background: var(--black);
  padding: 80px 0;
  margin-top: -55vh;
}

.gallery-header {
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .gallery-header { padding: 0 80px; }
}

.gallery-eyebrow {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-50);
}

.gallery-track {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

@media (min-width: 1024px) {
  .gallery-track {
    max-width: 1000px;
    gap: 18px;
  }
}

.gallery-row {
  display: flex;
  gap: 14px;
  width: 100%;
}

@media (min-width: 1024px) {
  .gallery-row { gap: 18px; }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  will-change: transform, clip-path;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1s var(--ease-smooth);
}

.gallery-item.revealed {
  clip-path: inset(0% 0 0 0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item--full  { width: 100%; aspect-ratio: 16/9; }
.gallery-item--half  { flex: 1; aspect-ratio: 1/1; }
.gallery-item--third { flex: 1; aspect-ratio: 3/4; }
.gallery-item--two-thirds { flex: 2; aspect-ratio: 4/3; }
.gallery-item--medium { width: 60%; aspect-ratio: 4/3; }

.gallery-item-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.item-num {
  font-size: 10px;
  font-weight: 300;
  color: var(--white-50);
  letter-spacing: 0.1em;
}

.item-title {
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
}

/* ============================================
   WORK LIST
   ============================================ */
.work-section {
  background: var(--black);
  padding: 80px 0;
}

@media (min-width: 1024px) {
  .work-section { padding: 120px 0; }
}

.work-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .work-inner { padding: 0 80px; }
}

.work-cats {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white-50);
  margin-bottom: 20px;
}

.work-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--white-10);
}

.work-header-row h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--white);
}

.view-all {
  font-size: 13px;
  font-weight: 300;
  color: var(--white-70);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.view-all:hover { color: var(--white); }

.work-list {
  display: flex;
  flex-direction: column;
}

.work-item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--white-10);
  cursor: pointer;
  transition: padding-left 0.35s var(--ease-smooth), opacity 0.6s, transform 0.6s;
}

.work-item:hover { padding-left: 10px; }

@media (min-width: 768px) {
  .work-item {
    grid-template-columns: 52px 1fr auto auto;
    padding: 28px 0;
  }
}

.work-num {
  font-size: 11px;
  font-weight: 300;
  color: var(--white-50);
  letter-spacing: 0.1em;
}

.work-title {
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--white);
}

.work-cat {
  display: none;
  font-size: 12px;
  font-weight: 300;
  color: var(--white-50);
}

@media (min-width: 768px) {
  .work-cat { display: block; }
}

.work-year {
  font-size: 12px;
  font-weight: 300;
  color: var(--white-50);
  letter-spacing: 0.05em;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  background: var(--black);
  overflow: hidden;
}

.marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 260px;
}

@media (min-width: 1024px) {
  .marquee-wrap { height: 420px; }
}

.marquee-left-fade,
.marquee-right-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-left-fade  { left: 0;  background: linear-gradient(to right, var(--black), transparent); }
.marquee-right-fade { right: 0; background: linear-gradient(to left,  var(--black), transparent); }

.marquee-track {
  display: flex;
  align-items: flex-end;
  width: max-content;
  height: 100%;
  padding-bottom: 40px;
  gap: 12px;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  flex-shrink: 0;
  height: 180px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .marquee-item { height: 320px; }
}

.marquee-item img {
  height: 100%;
  width: auto;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

/* ============================================
   STATEMENT
   ============================================ */
.statement-section {
  background: var(--black);
  padding: 100px 0;
  border-top: 1px solid var(--white-10);
}

@media (min-width: 1024px) {
  .statement-section { padding: 140px 0; }
}

.statement-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .statement-inner { padding: 0 80px; }
}

.statement-text {
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 28px;
}

.statement-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--white-50);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section {
  background: var(--black);
  padding: 80px 0;
  border-top: 1px solid var(--white-10);
}

@media (min-width: 1024px) {
  .about-section { padding: 120px 0; }
}

.about-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .about-inner {
    padding: 0 80px;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.about-eyebrow {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-50);
  margin-bottom: 20px;
}

.about-left h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
}

.about-bio {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--white-70);
  margin-bottom: 32px;
  max-width: 480px;
}

.about-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  border-bottom: 1px solid var(--white-20);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}

.about-link:hover { border-color: var(--white); }

.about-meta {
  border: 1px solid var(--white-10);
  padding: 0 24px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--white-10);
}

.meta-row:last-child { border-bottom: none; }

.meta-row span:first-child {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-50);
}

.meta-row span:last-child {
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  background: var(--black);
  padding: 80px 0;
  border-top: 1px solid var(--white-10);
}

@media (min-width: 1024px) {
  .contact-section { padding: 120px 0; }
}

.contact-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .contact-inner { padding: 0 80px; }
}

.contact-eyebrow {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-50);
  margin-bottom: 20px;
}

.contact-inner h2 {
  font-size: clamp(44px, 8vw, 120px);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 0.93;
  color: var(--white);
  margin-bottom: 28px;
}

.contact-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--white-70);
  margin-bottom: 36px;
}

.contact-email {
  display: inline-block;
  font-size: clamp(16px, 2.2vw, 26px);
  font-weight: 400;
  color: var(--white);
  border-bottom: 1px solid var(--white-20);
  padding-bottom: 4px;
  transition: border-color 0.2s;
}

.contact-email:hover { border-color: var(--white); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--white-10);
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  border-bottom: 1px solid var(--white-10);
}

@media (min-width: 1024px) {
  .footer-inner {
    padding: 60px 80px;
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-logo {
  display: block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-col > p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-50);
}

.footer-copy {
  margin-top: 20px !important;
  font-size: 12px !important;
}

.footer-nav,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a,
.footer-social a {
  font-size: 13px;
  font-weight: 300;
  color: var(--white-50);
  transition: color 0.2s;
}

.footer-nav a:hover,
.footer-social a:hover { color: var(--white); }

.footer-email-strip {
  padding: 18px 24px;
  white-space: nowrap;
  overflow: hidden;
  border-top: 1px solid var(--white-10);
}

@media (min-width: 1024px) {
  .footer-email-strip { padding: 18px 80px; }
}

.footer-email-strip span {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  color: var(--white-50);
  letter-spacing: 0.18em;
  padding-right: 64px;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); }
