/* Baeku Website Styles - Matching Design Mockup */

/* ===== Design Tokens ===== */
:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #141414;
  --bg-tertiary: #1c1c2e;
  --bg-card: #1a1a1a;

  --color-red: #b5271b;
  --color-red-dark: #8a1e14;
  --color-yellow: #f5c518;
  --color-orange: #e67e22;
  --color-green: #2d7a3a;
  --color-green-dark: #1a5c28;
  --color-blue: #1e4a6e;
  --color-maroon: #5a1a2a;
  --color-cream: #d4a853;

  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #666666;

  --font-display: 'Fredoka One', cursive;
  --font-main: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --max-width: 1200px;
  --nav-height: 120px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-main);
  background-color: 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;
}

ul {
  list-style: none;
}

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

/* ===== Utility ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  color: var(--text-primary);
}

/* ===== Scroll Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== Baeku Logo Circle ===== */
.logo-circle {
  width: 100px;
  height: 100px;
  background: var(--color-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(245, 197, 24, 0.3);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #1a1a1a;
  font-weight: 400;
}

.logo-circle--footer {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
}

.logo-circle--footer .logo-text {
  font-size: 0.9rem;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: transparent;
  z-index: 1000;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.navbar__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-normal);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Side nav panel */
.navbar__menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: rgba(13, 13, 13, 0.98);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  z-index: 999;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
}

.navbar__menu.active {
  transform: translateX(0);
}

.navbar__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 0 30px;
  width: 100%;
}

.navbar__links a {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.navbar__links a:hover {
  color: var(--color-yellow);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}

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

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__bg.active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 1) 0%, rgba(13, 13, 13, 0.5) 30%, transparent 60%);
  z-index: 1;
}

.hero__content {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}

.hero__title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--text-primary);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.hero__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero__dot {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), width var(--transition-fast);
}

.hero__dot.active {
  background: var(--color-yellow);
  width: 40px;
}

/* ===== Badges Strip ===== */
.badges-strip {
  padding: 40px 0;
  background: var(--bg-primary);
  text-align: center;
}

.badges-strip__list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.badges-strip__circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #3a9cbf;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #f5f5f0;
  transition: transform var(--transition-normal);
}

.badges-strip__circle:hover {
  transform: scale(1.05);
}

.badges-strip__circle--blue .badges-strip__text {
  color: #2e8aab;
}

.badges-strip__circle--green {
  border-color: #5ab64a;
}

.badges-strip__circle--green .badges-strip__text {
  color: #3a9e2f;
}

.badges-strip__circle--green .badges-strip__text-top {
  color: #3a9e2f;
  font-size: 1rem;
}

.badges-strip__circle--green-accent {
  border-color: #5ab64a;
}

.badges-strip__circle--green-accent .badges-strip__text {
  color: #3a9e2f;
}

.badges-strip__text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  color: #2e8aab;
  text-align: center;
}

@media (max-width: 480px) {
  .badges-strip__circle {
    width: 100px;
    height: 100px;
  }

  .badges-strip__text {
    font-size: 0.6rem;
  }
}

/* ===== Categories ===== */
.categories {
  padding: 80px 0;
  background: var(--bg-primary);
}

.categories__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 30px;
  overflow: visible;
  padding: 20px;
}

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  min-height: 200px;
  transition: transform var(--transition-normal);
}

.category-card:hover {
  transform: translateY(-5px);
}

/* Paint splatter / textured background effect */
.category-card__paint {
  position: absolute;
  inset: -30px;
  border-radius: 20px;
  filter: url(#paint-rough);
}

.category-card--snacks .category-card__paint {
  background:
    radial-gradient(ellipse at 20% 30%, #e04a3c 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, #8a1e14 0%, transparent 55%),
    radial-gradient(ellipse at 60% 20%, #c93025 0%, transparent 50%);
  background-color: #b5271b;
}

.category-card--protein .category-card__paint {
  background:
    radial-gradient(ellipse at 20% 30%, #4db86a 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, #1a5c28 0%, transparent 55%),
    radial-gradient(ellipse at 60% 20%, #38a352 0%, transparent 50%);
  background-color: #267a3a;
}

.category-card--protein {
  grid-row: span 2;
}

.category-card--noodles .category-card__paint {
  background:
    radial-gradient(ellipse at 20% 30%, #3a8ac0 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, #0f3050 0%, transparent 55%),
    radial-gradient(ellipse at 60% 20%, #2670a0 0%, transparent 50%);
  background-color: #1a5580;
}

/* Paint splash drips & splatters */
.category-card__paint::before,
.category-card__paint::after {
  content: '';
  position: absolute;
  background: inherit;
  filter: url(#paint-blob);
}

.category-card__paint::before {
  width: 80px;
  height: 70px;
  top: -20px;
  right: -15px;
  border-radius: 40% 60% 50% 50%;
  transform: rotate(-15deg);
}

.category-card__paint::after {
  width: 70px;
  height: 65px;
  bottom: -18px;
  left: -12px;
  border-radius: 50% 40% 60% 50%;
  transform: rotate(10deg);
}

/* Extra splatter spots via card pseudo-elements */
.category-card::before,
.category-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: url(#paint-blob);
  z-index: 0;
}

.category-card--snacks::before {
  width: 40px;
  height: 40px;
  background: #b5271b;
  top: -12px;
  left: 20%;
}

.category-card--snacks::after {
  width: 30px;
  height: 35px;
  background: #c93025;
  bottom: -8px;
  right: 15%;
}

.category-card--protein::before {
  width: 45px;
  height: 40px;
  background: #267a3a;
  top: 10%;
  right: -18px;
}

.category-card--protein::after {
  width: 35px;
  height: 35px;
  background: #38a352;
  bottom: 15%;
  left: -14px;
}

.category-card--noodles::before {
  width: 38px;
  height: 38px;
  background: #1a5580;
  top: -10px;
  right: 25%;
}

.category-card--noodles::after {
  width: 32px;
  height: 30px;
  background: #2670a0;
  bottom: -10px;
  left: 30%;
}

.category-card__content {
  position: relative;
  z-index: 2;
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.category-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.category-card__images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.category-card__images img {
  width: 30%;
  max-width: 110px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
  transition: transform var(--transition-normal);
}

.category-card--noodles .category-card__images img {
  width: 40%;
  max-width: 150px;
  height: 130px;
  object-fit: contain;
}

.category-card--protein .category-card__images img {
  width: 35%;
  max-width: 160px;
  height: 160px;
  object-fit: contain;
}

.category-card__images img:hover {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .categories__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-card--protein {
    grid-row: span 1;
  }

  .category-card__content {
    min-height: 180px;
  }
}

/* ===== Product Showcase Slider ===== */
.showcase {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, #1a0505 0%, #2d0a0a 30%, #1a0505 100%);
  overflow: hidden;
}

.showcase__tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.showcase__tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
}

.showcase__tab:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--text-primary);
}

.showcase__tab.active {
  background: var(--color-yellow);
  color: var(--bg-primary);
  border-color: var(--color-yellow);
  font-weight: 700;
}

.showcase__stage {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.showcase__slides {
  position: relative;
  min-height: 420px;
}

.showcase__slide {
  display: none;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
}

.showcase__slide.active {
  display: flex;
}

.showcase__image {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.showcase__image img {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.5));
  animation: slideImageIn 0.5s ease;
}

@keyframes slideImageIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.showcase__info {
  flex: 1;
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.showcase__paint {
  position: absolute;
  inset: -40px -60px -40px -40px;
  background:
    radial-gradient(ellipse at 30% 20%, #e04a3c 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, #8a1e14 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, #c93025 0%, transparent 45%);
  background-color: #b5271b;
  filter: url(#paint-rough);
  border-radius: 20px;
  z-index: 0;
}

.showcase__paint::before,
.showcase__paint::after {
  content: '';
  position: absolute;
  background: inherit;
  filter: url(#paint-blob);
}

.showcase__paint::before {
  width: 90px;
  height: 70px;
  top: -25px;
  right: 10%;
  border-radius: 40% 60% 50% 50%;
  transform: rotate(-12deg);
}

.showcase__paint::after {
  width: 80px;
  height: 65px;
  bottom: -20px;
  left: 5%;
  border-radius: 50% 40% 60% 50%;
  transform: rotate(8deg);
}

.showcase__paint--blue {
  background:
    radial-gradient(ellipse at 30% 20%, #3a8ac0 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, #0f3050 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, #2670a0 0%, transparent 45%);
  background-color: #1a5580;
}

.showcase__paint--green {
  background:
    radial-gradient(ellipse at 30% 20%, #4db86a 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, #1a5c28 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, #38a352 0%, transparent 45%);
  background-color: #267a3a;
}

.showcase__details {
  position: relative;
  z-index: 1;
  padding: 30px 20px;
}

.showcase__name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: var(--text-primary);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.showcase__tagline {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(245, 197, 24, 0.2);
  color: var(--color-yellow);
  border: 1px solid rgba(245, 197, 24, 0.4);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.showcase__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  max-width: 480px;
}

.showcase__perfect {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 16px;
  margin-bottom: 24px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-primary);
}

.showcase__perfect-label {
  font-weight: 800;
  margin-right: 4px;
}

.showcase__cta {
  display: inline-block;
  padding: 12px 36px;
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.showcase__cta:hover {
  background: var(--color-yellow);
  color: var(--bg-primary);
  border-color: var(--color-yellow);
}

.showcase__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 5;
  line-height: 1;
}

.showcase__arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.showcase__arrow--next {
  right: -10px;
}

.showcase__thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  padding: 0 20px;
}

.showcase__thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  padding: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  overflow: hidden;
}

.showcase__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.showcase__thumb:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.showcase__thumb.active {
  border-color: var(--color-yellow);
  background: rgba(245, 197, 24, 0.1);
}

@media (max-width: 768px) {
  .showcase__slide {
    flex-direction: column;
    gap: 20px;
  }

  .showcase__slide.active {
    display: flex;
  }

  .showcase__image {
    flex: none;
    width: 100%;
  }

  .showcase__image img {
    max-height: 260px;
  }

  .showcase__slides {
    min-height: auto;
  }

  .showcase__info {
    min-height: auto;
  }

  .showcase__paint {
    inset: -30px -20px;
  }

  .showcase__arrow--next {
    right: 0;
    top: 30%;
  }

  .showcase__thumb {
    width: 48px;
    height: 48px;
  }

  .showcase__tabs {
    gap: 8px;
  }

  .showcase__tab {
    padding: 8px 16px;
    font-size: 0.7rem;
  }
}

/* ===== What is Baeku ===== */
.whatis {
  background: linear-gradient(135deg, #5a1a2a 0%, #3a0f1a 50%, #2a0a12 100%);
  padding: 70px 0;
}

.whatis__inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.whatis__left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
}

.logo-circle--whatis {
  width: 100px;
  height: 100px;
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.3);
}

.logo-circle--whatis .logo-text {
  font-size: 1.2rem;
}

.whatis__label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
}

.whatis__right {
  flex: 1;
}

.whatis__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--color-yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.whatis__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  max-width: 600px;
}

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

.whatis__lines p {
  font-size: 0.9rem;
  color: var(--color-yellow);
  font-style: italic;
}

.whatis__strike {
  font-style: normal;
  color: var(--text-primary);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.whatis__strike strong {
  font-weight: 400;
}

.whatis__highlight {
  font-style: normal;
  color: var(--color-yellow);
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@media (max-width: 768px) {
  .whatis__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .whatis__desc {
    max-width: 100%;
  }

  .whatis__lines {
    align-items: center;
  }
}

/* ===== Differently Section ===== */
.differently {
  background: linear-gradient(135deg, #5a1a2a 0%, #3a0f1a 50%, #2a0a12 100%);
  padding: 70px 0;
}

.differently__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 40px;
}

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

.differently__card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.differently__card--tall {
  grid-row: span 2;
}

.differently__placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: linear-gradient(135deg, #2a2a3a, #1a1a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.differently__card--tall .differently__placeholder {
  min-height: 100%;
}

.differently__placeholder span {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 10px;
}

.differently__placeholder--icon {
  position: relative;
}

.differently__check {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2d7a3a;
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.differently__cross {
  position: absolute;
  bottom: 12px;
  right: 48px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #b5271b;
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.differently__cross--solo {
  right: 12px;
}

.differently__text {
  padding: 12px 14px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .differently__grid {
    grid-template-columns: 1fr 1fr;
  }

  .differently__card--tall {
    grid-row: span 1;
  }

  .differently__placeholder {
    min-height: 150px;
  }
}

@media (max-width: 480px) {
  .differently__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Scrolling Text Strip ===== */
.text-strip {
  overflow: hidden;
  background: var(--bg-primary);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.text-strip__track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: scrollText 20s linear infinite;
  width: max-content;
}

.text-strip__track span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-cream);
  opacity: 0.6;
}

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

/* ===== Founder / Chef Section ===== */
.founder {
  position: relative;
  background: #ffffff;
  padding: 0 0 80px;
}

.founder__edge {
  height: 60px;
  background: var(--bg-primary);
  position: relative;
}

.founder__edge::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg-primary);
  filter: url(#paint-rough);
  z-index: 1;
}

.founder__heading {
  position: relative;
  z-index: 2;
  padding: 40px 20px 50px;
  text-align: center;
}

.founder__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 400;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: italic;
}

.founder__content {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  background: linear-gradient(160deg, #fdf6e0 0%, #f5e6a0 50%, #efd550 100%);
  border-radius: 16px;
  padding: 40px 40px 40px 30px;
}

.founder__photo-col {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder__photo-wrap {
  position: relative;
  width: 220px;
  height: 260px;
}

.founder__photo-accent {
  position: absolute;
  top: -10px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: var(--color-yellow);
  border-radius: 0 40% 0 40%;
  z-index: 0;
}

.founder__photo-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0e8d8, #e0d4c0);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.founder__photo-placeholder span {
  color: #888;
  font-size: 0.85rem;
  font-weight: 500;
}

.founder__name-tag {
  margin-top: 16px;
  background: #2a0a12;
  padding: 8px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.founder__name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founder__role {
  font-size: 0.75rem;
  color: var(--color-yellow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founder__bio {
  flex: 1;
}

.founder__bio p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #111111;
  margin-bottom: 20px;
}

.founder__bio em {
  font-style: italic;
  font-weight: 700;
  color: #000000;
}

.founder__social {
  margin-top: 20px;
}

.founder__social p {
  font-size: 0.85rem;
  color: #111111;
  margin-bottom: 10px;
  font-weight: 600;
}

.founder__instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b5271b;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.founder__instagram:hover {
  color: #8a1e14;
}

.founder__instagram svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .founder__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
  }

  .founder__photo-col {
    flex: none;
  }

  .founder__bio {
    padding: 0;
  }
}

/* ===== Contact / Know About Us Form ===== */
.contact {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact__bg-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2a 0%, #2a1520 100%);
}

.contact__bg-placeholder span {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
  opacity: 0.5;
}

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

.contact__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(120, 20, 50, 0.85) 0%, rgba(13, 13, 13, 0.95) 70%);
  z-index: 1;
}

.contact__container {
  position: relative;
  z-index: 2;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.contact__form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__field input,
.contact__field textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(160, 80, 100, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact__field input:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(160, 80, 100, 0.45);
}

.contact__field textarea {
  resize: vertical;
  min-height: 80px;
}

.contact__submit {
  padding: 16px 50px;
  background: var(--color-yellow);
  color: var(--bg-primary);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all var(--transition-fast);
  align-self: center;
  margin-top: 8px;
}

.contact__submit:hover {
  background: #e6b800;
  transform: translateY(-2px);
}

.contact__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact__status {
  text-align: center;
  font-size: 0.9rem;
  min-height: 24px;
}

.contact__status.success {
  color: var(--color-green);
}

.contact__status.error {
  color: #ff6b6b;
}

/* ===== Bottom Brand Section ===== */
.bottom-brand {
  background: #f5f5f5;
  padding: 60px 0 40px;
}

.bottom-brand__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.logo-circle--bottom {
  width: 180px;
  height: 180px;
  box-shadow: none;
}

.logo-circle--bottom .logo-text {
  font-size: 2.2rem;
  color: #3a1520;
}

.logo-tm {
  font-size: 0.5em;
  vertical-align: super;
}

.bottom-brand__icons {
  display: flex;
  gap: 20px;
}

.bottom-brand__icons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all var(--transition-fast);
}

.bottom-brand__icons a:hover {
  background: #ccc;
  transform: translateY(-2px);
}

.bottom-brand__contact {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}
