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

:root {
  --black: #0e0e0e;
  --color-black-800: #222;
  --off-white: #f4f1ec;
  --warm-gray: #4d4d4d;
  --color-gray-100: #999;
  --color-gray-200: #c4c4c4;
  --color-gray-300: #b8b8b8;
  --mid-gray: #c8c4bc;
  --light-bg: #f9f7f4;
  --accent: #008fc1;
  --accent-dark: #006a90;
  --card-border: rgba(0, 0, 0, 0.08);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--black);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 48px;
  background: rgba(244, 241, 236, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}

.nav-logo svg {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  color: var(--warm-gray);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--accent-dark);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
}

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

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.title-section {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.description-section {
  font-size: 14px;
  color: var(--warm-gray);
  max-width: 520px;
  line-height: 1.75;
}

.hero-left h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--black);
}

.hero-left p {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.75;
  max-width: 360px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}

.btn-primary:hover {
  background: #222;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--warm-gray);
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid var(--warm-gray);
  transition:
    0.2s,
    color 0.2s;
  cursor: pointer;
  font-family: var(--sans);
}

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

.hero-right {
  position: relative;
  overflow: hidden;
  background: #fefefe;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.92;
  transition: transform 8s ease;
}

.hero-right:hover img {
  transform: scale(1.03);
}

.hero-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(14, 14, 14, 0.78);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ── LOGOS BAR ── */
.logos-bar {
  background: var(--black);
  padding: 28px 56px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logos-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gray-300);
  white-space: nowrap;
  flex-shrink: 0;
}

.logos-divider {
  width: 1px;
  height: 24px;
  background: #222;
  flex-shrink: 0;
}

.logos-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.logos-list li img {
  border-radius: 12px;
}

/* ── STATS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--card-border);
}

.stat-item {
  padding: 40px 56px;
  border-right: 1px solid var(--card-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-n {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-l {
  font-size: 13px;
  color: var(--warm-gray);
}

/* ── PORTFOLIO ── */
.portfolio-section {
  padding: 80px 56px;
  background: var(--light-bg);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-header-left .eyebrow {
  margin-bottom: 12px;
}

.section-header-left h2 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 300px;
  text-align: right;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-main {
  grid-row: 1 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  height: 560px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-main:hover img {
  transform: scale(1.03);
}

.gallery-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.g-item {
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  height: 272px;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.g-item-insta {
  border-radius: 12px;
  background: var(--black);
  height: 272px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  transition: background 0.2s;
}

.g-item-insta:hover {
  background: #1a1a1a;
}

.g-item-insta i {
  font-size: 32px;
  color: var(--color-gray-300);
}

.g-item-insta span {
  font-size: 13px;
  color: var(--color-gray-300);
}

.g-item-insta small {
  font-size: 11px;
  color: var(--color-gray-100);
}

/* ── SERVICES / TIERS ── */
.services-section {
  padding: 80px 56px;
  background: var(--off-white);
}

.tiers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.tier-card {
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 36px 32px;
  background: #fff;
  transition: transform 0.2s;
}

.tier-card:hover {
  transform: translateY(-2px);
}

.tier-card.featured {
  border-color: var(--accent);
  border-width: 2px;
  background: #fff;
}

.tier-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.badge-accent {
  background: #e0f3fa;
  color: var(--accent-dark);
}

.badge-neutral {
  background: #f0ede8;
  color: var(--warm-gray);
}

.tier-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}

.tier-card p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.tier-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.tier-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-black-800);
}

.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon i {
  font-size: 8px;
  color: #fff;
}

/* ── ABOUT / CHEFS ── */
.about-section {
  padding: 80px 56px;
  background: var(--light-bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.about-left p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-right .about-title {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.chefs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 968px) {
  .chefs-list {
    grid-template-columns: 1fr;
  }
}

.chef-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.5s;
}

.chef-card:hover {
  transform: scale(1.2);
}

.chef-avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  color: #aaa;
  flex-shrink: 0;
}

.chef-avatar img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--black);
  border-radius: 50%;
}

.chef-card .chef-name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
}

.chef-card .chef-info {
  font-size: 14px;
  color: var(--warm-gray);
}

/* ── PROCESS ── */
.process-section {
  padding: 80px 56px;
  background: var(--off-white);
}

.process-section h2 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

.process-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 40px;
}

.process-video video {
  margin: 0 auto;
  width: 100%;
  max-height: 550px;
  border: 2px solid var(--card-border);
  border-radius: 16px;
  object-fit: cover;
}

.process-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.proc-step {
  padding: 32px 28px;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  transition: background 0.2s;
}

.proc-step:last-child {
  border-right: none;
}

.proc-step:hover {
  background: #fff;
}

.proc-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1;
}

.proc-step h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}

.proc-step p {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.65;
}

/* ── TESTIMONIALS ── */
.depo-section {
  padding: 80px 56px;
  background: var(--light-bg);
}

.depo-section h2 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.depo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.depo-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px 28px;
}

.depo-quote {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 24px;
  font-style: italic;
}

.depo-mark {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 12px;
}

.depo-author {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
}

.depo-brand {
  font-size: 12px;
  color: var(--warm-gray);
}

/* ── INSTAGRAM ── */
.insta-section {
  padding: 80px 56px;
  background: var(--off-white);
}

.insta-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.insta-header h2 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.insta-handle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s;
}

.insta-handle:hover {
  color: var(--accent);
}

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

.insta-item {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  position: relative;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.4s ease,
    opacity 0.4s;
}

.insta-item:hover img {
  transform: scale(1.06);
  opacity: 0.7;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.insta-overlay svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

/* ── CTA BLOCK ── */
.cta-section {
  padding: 56px;
  background: var(--light-bg);
}

.cta-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--black);
  border-radius: 20px;
  overflow: hidden;
}

.cta-left {
  padding: 56px;
}

.cta-left h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--off-white);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.cta-left p {
  font-size: 14px;
  color: var(--color-gray-200);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 360px;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}

.btn-wa:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-gray-300);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid #222;
  transition:
    border-color 0.2s,
    color 0.2s;
  font-family: var(--sans);
  border-color: var(--color-gray-300);
}

.btn-email:hover {
  border-color: var(--color-gray-200);
  color: var(--color-gray-200);
}

.cta-right {
  padding: 56px 48px;
  border-left: 1px solid #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.cta-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cta-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-info-icon i {
  color: var(--color-gray-300);
}

.cta-info-text {
  font-size: 13px;
  color: var(--color-gray-300);
  line-height: 1.5;
}

.cta-info-text strong {
  display: block;
  color: #888;
  font-weight: 500;
  margin-bottom: 2px;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid #1a1a1a;
  padding: 24px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--color-gray-200);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  color: var(--color-gray-200);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.2s;
}

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

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.animate {
  opacity: 0;
}

.animate.visible {
  animation: fadeUp 0.7s ease forwards;
}

.animate:nth-child(2) {
  animation-delay: 0.1s;
}

.animate:nth-child(3) {
  animation-delay: 0.2s;
}

.animate:nth-child(4) {
  animation-delay: 0.3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

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

  .hero-right {
    min-height: 60vw;
  }

  .hero-left {
    padding: 48px 24px;
  }

  .logos-bar {
    padding: 20px 24px;
    flex-wrap: wrap;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--card-border);
    padding: 28px 24px;
  }

  .portfolio-section,
  .services-section,
  .about-section,
  .process-section,
  .depo-section,
  .insta-section,
  .cta-section {
    padding: 48px 24px;
  }

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

  .gallery-main {
    height: 60vw;
    grid-row: auto;
  }

  .gallery-sub {
    grid-template-columns: 1fr 1fr;
  }

  .tiers-grid,
  .about-section,
  .depo-grid,
  .cta-block {
    grid-template-columns: 1fr;
  }

  .cta-right {
    border-left: none;
    border-top: 1px solid #1a1a1a;
  }

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

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-video video {
    max-height: 650px;
  }

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

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  nav img {
    width: 120px;
  }
  .logos-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
