:root {
  --bg-primary: #0a0a0c;
  --bg-secondary: #131518;
  --bg-card: #1a1c20;
  --bg-card-hover: #222428;
  --accent: #DC1A3C;
  --accent-glow: rgba(220, 26, 60, 0.25);
  --text-primary: #f5f5f7;
  --text-secondary: rgba(245, 245, 247, 0.65);
  --text-muted: rgba(245, 245, 247, 0.4);
  --border: rgba(255, 255, 255, 0.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

.section__tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section__title span {
  color: var(--accent);
}

/* =================== NAV =================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav--scrolled {
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.nav__logo span {
  color: var(--accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.nav__links a:hover {
  color: var(--text-primary);
}

.nav__cta {
  background: var(--accent) !important;
  color: var(--text-primary) !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background 0.3s, transform 0.3s !important;
}

.nav__cta:hover {
  background: #e62248 !important;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

/* =================== HERO =================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero.loaded .hero__bg img {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 12, 0.5) 0%,
    rgba(10, 10, 12, 0.3) 40%,
    rgba(10, 10, 12, 0.7) 100%
  );
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 0 24px;
}

.hero__tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__title span {
  color: var(--accent);
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
}

.hero__btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.hero__btn:hover {
  background: #e62248;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* =================== ABOUT =================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about__desc strong {
  color: var(--text-primary);
}

.about__image img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* =================== SERVICES =================== */
.services {
  background: var(--bg-secondary);
}

.services__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.services__intro {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 26, 60, 0.3);
  background: var(--bg-card-hover);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =================== PLATFORMS =================== */
.platforms__inner {
  text-align: center;
  padding: 48px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.platforms__inner h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 32px;
}

.platforms__inner h3 span {
  color: var(--accent);
}

.platforms__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.platforms__tags span {
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.platforms__tags span:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(220, 26, 60, 0.08);
}

/* =================== SPLIT SECTIONS =================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.split-section__image {
  overflow: hidden;
}

.split-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.split-section__image:hover img {
  transform: scale(1.03);
}

.split-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
}

.split-section__content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.split-section--reverse .split-section__image {
  order: 2;
}

.split-section--reverse .split-section__content {
  order: 1;
}

/* =================== FOOD =================== */
.food {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.food__bg {
  position: absolute;
  inset: 0;
}

.food__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,12,0.95) 0%, rgba(10,10,12,0.6) 60%, rgba(10,10,12,0.3) 100%);
}

.food__content {
  position: relative;
  max-width: 560px;
}

.food__content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Food Details */
.food-details {
  background: var(--bg-secondary);
}

.food-details__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.food-detail {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}

.food-detail:hover {
  transform: translateY(-4px);
}

.food-detail img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.food-detail h3 {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 24px 24px 12px;
}

.food-detail p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 24px 28px;
}

/* =================== 3D SECTION =================== */
.section-3d__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-3d__header p:last-child {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.section-3d__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.feature-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.feature-card__content {
  padding: 28px;
}

.feature-card__content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card__content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =================== PACKAGING =================== */
.packaging__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.packaging__text p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.packaging__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.packaging__img {
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s;
}

.packaging__img:hover {
  transform: scale(1.02);
}

/* =================== PHOTOGRAPHY =================== */
.photo {
  background: var(--bg-secondary);
}

.photo__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.photo__header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.photo__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s;
}

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

.photo-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* =================== MOTION =================== */
.motion {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.motion__bg {
  position: absolute;
  inset: 0;
}

.motion__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.motion__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,12,0.95) 0%, rgba(10,10,12,0.7) 50%, rgba(10,10,12,0.4) 100%);
}

.motion__content {
  position: relative;
  max-width: 600px;
}

.motion__content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

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

.motion-type {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.motion-type__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* =================== BRAND CONTENT =================== */
.brand-content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.brand-content__text p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.brand-content__text strong {
  color: var(--text-primary);
}

.brand-content__image img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* =================== VP STUDIO =================== */
.vp-studio {
  background: var(--bg-secondary);
}

.vp-studio__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vp-studio__inner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* =================== GALLERY =================== */
.gallery__header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(220, 26, 60, 0);
  transition: background 0.3s;
}

.gallery__item:hover::after {
  background: rgba(220, 26, 60, 0.15);
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

/* =================== SUSTAINABILITY =================== */
.sustainability__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.sustainability__icon {
  width: 64px;
  height: 64px;
  color: #2ecc71;
  margin: 0 auto 24px;
}

.sustainability__inner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* =================== CONTACT =================== */
.contact {
  background: var(--bg-secondary);
}

.contact__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.contact__inner p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.contact__btn {
  display: inline-block;
  padding: 18px 48px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.contact__btn:hover {
  background: #e62248;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
}

/* =================== FOOTER =================== */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =================== LIGHTBOX =================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox--active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.lightbox__close:hover {
  transform: scale(1.2);
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  object-fit: contain;
}

/* =================== ANIMATIONS =================== */
.fade-up,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up,
.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.fade-up.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 0;
    transition: right 0.4s ease;
    border-left: 1px solid var(--border);
  }

  .nav__links--open {
    right: 0;
  }

  .nav__links li {
    width: 100%;
  }

  .nav__links a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav__cta {
    text-align: center;
    margin-top: 16px;
    border-bottom: none !important;
  }

  .about__grid,
  .brand-content__grid,
  .packaging__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .split-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-section__image {
    height: 300px;
  }

  .split-section--reverse .split-section__image {
    order: 0;
  }

  .split-section--reverse .split-section__content {
    order: 0;
  }

  .food-details__grid {
    grid-template-columns: 1fr;
  }

  .section-3d__features {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.2rem;
  }

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

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

  .platforms__tags span {
    font-size: 0.75rem;
    padding: 8px 16px;
  }
}
