/* ============================================================
   DESIGN TOKEN SYSTEM — 8pt grid, modular scale 1.25
   ============================================================ */
:root {
  /* Color Palette */
  --primary: #c45e1a;
  --primary-dark: #9a4412;
  --primary-light: #e8813a;
  --secondary: #d4a017;
  --accent: #2d5a27;
  --accent-light: #4a8a42;

  --surface: #faf7f2;
  --surface-2: #f2ede4;
  --surface-3: #e8dfd0;

  --dark: #1a0e00;
  --dark-2: #2e1f08;
  --dark-3: #4a3520;

  --text-primary: #1a0e00;
  --text-secondary: #4a3520;
  --text-muted: #7a6555;
  --text-inverse: #faf7f2;

  --border: rgba(196, 94, 26, 0.15);
  --border-strong: rgba(196, 94, 26, 0.3);

  /* Shadows */
  --shadow-1: 0 2px 8px rgba(26, 14, 0, 0.06), 0 1px 3px rgba(26, 14, 0, 0.04);
  --shadow-2: 0 8px 32px rgba(26, 14, 0, 0.1), 0 2px 8px rgba(26, 14, 0, 0.06);
  --shadow-3:
    0 20px 60px rgba(26, 14, 0, 0.15), 0 8px 24px rgba(26, 14, 0, 0.08);
  --shadow-accent: 0 0 30px rgba(196, 94, 26, 0.25);

  /* Typography Scale (1.25 ratio) */
  --text-xs: clamp(0.7rem, 1.5vw, 0.75rem);
  --text-sm: clamp(0.8rem, 1.8vw, 0.875rem);
  --text-base: clamp(0.95rem, 2vw, 1.05rem);
  --text-md: clamp(1.1rem, 2.5vw, 1.25rem);
  --text-lg: clamp(1.3rem, 3vw, 1.5rem);
  --text-xl: clamp(1.6rem, 4vw, 2rem);
  --text-2xl: clamp(2rem, 5vw, 2.8rem);
  --text-3xl: clamp(2.5rem, 6vw, 3.8rem);
  --text-4xl: clamp(3rem, 8vw, 5.5rem);
  --text-hero: clamp(3.5rem, 10vw, 8rem);

  /* Spacing (8pt grid) */
  --sp-1: 0.5rem;
  /* 8px */
  --sp-2: 1rem;
  /* 16px */
  --sp-3: 1.5rem;
  /* 24px */
  --sp-4: 2rem;
  /* 32px */
  --sp-5: 2.5rem;
  /* 40px */
  --sp-6: 3rem;
  /* 48px */
  --sp-8: 4rem;
  /* 64px */
  --sp-10: 5rem;
  /* 80px */
  --sp-12: 6rem;
  /* 96px */
  --sp-16: 8rem;
  /* 128px */

  /* Border radius */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.3s var(--ease);

  /* Layout */
  --max-width: 1320px;
  --nav-height: 72px;
}

[data-theme="dark"] {
  --surface: #120900;
  --surface-2: #1e1005;
  --surface-3: #2a1a08;
  --dark: #faf7f2;
  --dark-2: #e8dfd0;
  --dark-3: #c8b8a2;
  --text-primary: #faf7f2;
  --text-secondary: #e8dfd0;
  --text-muted: #c8b8a2;
  --text-inverse: #1a0e00;
  --border: rgba(196, 94, 26, 0.25);
  --border-strong: rgba(196, 94, 26, 0.45);
  --shadow-1: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-2: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(196, 94, 26, 0.1);
  --shadow-3: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(196, 94, 26, 0.1);
  --shadow-accent: 0 0 40px rgba(196, 94, 26, 0.4);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--surface);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  transition:
    background var(--transition),
    color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--sp-3);
  transition:
    opacity 0.6s var(--ease),
    visibility 0.6s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-2xl);
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.preloader-line {
  width: 200px;
  height: 2px;
  background: var(--surface-3);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: var(--radius-full);
  animation: preloaderFill 1.8s var(--ease) forwards;
}

@keyframes preloaderFill {
  to {
    width: 100%;
  }
}

.preloader-count {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--text-inverse);
  line-height: 1;
}

/* ============================================================
   CUSTOM CURSOR (desktop)
   ============================================================ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition-property: width, height, background, border-color, opacity;
  transition-duration: 0.2s;
  transition-timing-function: var(--ease);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid var(--primary);
  opacity: 0.6;
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--secondary);
  opacity: 0.8;
}

@media (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all 0.4s var(--ease);
  padding: 0 clamp(var(--sp-2), 5vw, var(--sp-6));
}

/* #navbar.scrolled {
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow:
    0 1px 0 var(--border),
    var(--shadow-1);
  height: 60px;
} */

[data-theme="dark"] #navbar.scrolled {
  background: rgba(18, 9, 0, 0.88);
}

.nav-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-main {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-logo-sub {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  list-style: none;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.theme-toggle {
  width: 42px;
  height: 24px;
  background: var(--surface-3);
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  position: relative;
  transition: background var(--transition);
  flex-shrink: 0;
}

.theme-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  transition: transform var(--transition);
}

[data-theme="dark"] .theme-toggle::after {
  transform: translateX(18px);
}

.btn-contact {
  padding: var(--sp-1) var(--sp-3);
  background: var(--primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(196, 94, 26, 0.3);
}

.btn-contact:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 94, 26, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-1);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--primary);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* 0.5 = 50% opacity — adjust as needed */
}

@media (max-width: 768px) {
  .hero-bg {
    display: none;
  }
}

/* Animated spice blobs */
.spice-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: floatOrb 12s ease-in-out infinite;
  opacity: 0.12;
}

.spice-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: 10%;
  animation-delay: 0s;
}

.spice-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  bottom: -50px;
  right: 30%;
  animation-delay: -4s;
}

.spice-orb-3 {
  width: 250px;
  height: 250px;
  background: var(--accent);
  top: 30%;
  left: -50px;
  animation-delay: -8s;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-15px, 20px) scale(0.95);
  }
}

/* Noise texture */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: clamp(var(--sp-8), 10vw, var(--sp-16))
    clamp(var(--sp-2), 5vw, var(--sp-6));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 6px 16px;
  background: rgba(196, 94, 26, 0.1);
  border: 1px solid rgba(196, 94, 26, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-3);
  opacity: 0;
  transform: translateY(20px);
}

.hero-tag.visible {
  animation: fadeUp 0.6s var(--ease) forwards;
}

.hero-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

.hero-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--sp-4);
  opacity: 0;
  transform: translateY(30px);
}

.hero-headline.visible {
  animation: fadeUp 0.8s 0.15s var(--ease) forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: var(--text-md);
  /* color: var(--primary-dark); */
  color: #2a1a08;
  text-shadow: 1px 1px grey;
  font-weight: 500;
  line-height: 1.9;
  max-width: 480px;
  margin-bottom: var(--sp-5);
  opacity: 0;
  transform: translateY(20px);
}

.hero-sub.visible {
  animation: fadeUp 0.7s 0.3s var(--ease) forwards;
}

.hero-ctas {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.hero-ctas.visible {
  animation: fadeUp 0.7s 0.45s var(--ease) forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 14px 32px;
  background: var(--primary);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(196, 94, 26, 0.35);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
  z-index: 0;
}

.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 94, 26, 0.45);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 14px 32px;
  border: 2px solid var(--border-strong);
  color: var(--text-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(40px);
}

.hero-visual.visible {
  animation: fadeLeft 0.9s 0.3s var(--ease) forwards;
}

.hero-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  width: 100%;
  max-width: 460px;
}

.hero-product-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-3);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.hero-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(196, 94, 26, 0.04));
  opacity: 0;
  transition: opacity var(--transition);
}

.hero-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.hero-product-card:hover::before {
  opacity: 1;
}

.hero-product-icon {
  font-size: 3rem;
  margin-bottom: var(--sp-1);
  display: block;
}

.hero-product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--text-primary);
}

.hero-product-type {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.hero-badge {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* Est. pill */
.hero-est {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  padding: var(--sp-1) var(--sp-2);
  background: var(--surface-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(20px);
}

.hero-est.visible {
  animation: fadeUp 0.7s 0.6s var(--ease) forwards;
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.section-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.section-divider svg {
  display: block;
}

/* ============================================================
   STATS BAND
   ============================================================ */
#stats {
  background: var(--primary);
  padding: var(--sp-8) clamp(var(--sp-2), 5vw, var(--sp-6));
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(255, 255, 255, 0.02) 60px,
    rgba(255, 255, 255, 0.02) 61px
  );
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-6);
  text-align: center;
  position: relative;
}

.stat-item {
  color: #fff;
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.stat-label {
  font-size: var(--text-sm);
  opacity: 0.8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  padding: clamp(var(--sp-10), 12vw, var(--sp-16))
    clamp(var(--sp-2), 5vw, var(--sp-6));
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-2);
}

.section-tag-line {
  width: 32px;
  height: 1.5px;
  background: var(--primary);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--sp-4);
}

.section-title em {
  font-style: italic;
  color: var(--primary);
}

.section-sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  background: var(--surface-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}

.about-content .section-sub {
  max-width: 100%;
  margin-bottom: var(--sp-5);
}

.about-highlight {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-4);
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-brands {
  margin-top: var(--sp-5);
}

.about-brands-title {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.brand-chip {
  padding: 8px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.brand-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}

/* About visual */
.about-visual {
  position: relative;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  transition: all var(--transition);
}

.about-card:first-child {
  grid-column: 1 / -1;
  background: var(--primary);
  color: #fff;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.about-card-icon {
  font-size: 2rem;
  margin-bottom: var(--sp-2);
}

.about-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-1);
}

.about-card:first-child .about-card-title {
  color: #fff;
}

.about-card-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.about-card:first-child .about-card-text {
  color: rgba(255, 255, 255, 0.8);
}

/* GST info strip */
.gst-strip {
  margin-top: var(--sp-3);
  padding: var(--sp-2) var(--sp-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.gst-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gst-number {
  font-family: "DM Sans", sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
#products {
  background: var(--surface);
}

.products-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-4);
  align-items: end;
  margin-bottom: var(--sp-8);
}

.products-header .section-sub {
  margin-bottom: 0;
}

.product-filter {
  display: flex;
  gap: var(--sp-1);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-4);
}

.product-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3);
  border-color: var(--border-strong);
}

.product-card-header {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-card-bg {
  transform: scale(1.05);
}

.product-emoji {
  font-size: clamp(3rem, 8vw, 5rem);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s var(--ease-spring);
}

.product-card:hover .product-emoji {
  transform: scale(1.15) rotate(-5deg);
}

.product-type-badge {
  position: absolute;
  top: var(--sp-2);
  right: var(--sp-2);
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.type-pill {
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.type-pill.spray {
  background: rgba(196, 94, 26, 0.85);
  color: #fff;
}

.type-pill.dehydrated {
  background: rgba(45, 90, 39, 0.85);
  color: #fff;
}

.product-card-body {
  padding: var(--sp-4);
}

.product-card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-1);
  line-height: 1.2;
}

.product-card-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-uses {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--sp-3);
}

.use-tag {
  padding: 4px 10px;
  background: rgba(196, 94, 26, 0.08);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 500;
  color: var(--primary);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--border);
}

.product-moq {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.product-moq strong {
  color: var(--text-primary);
  font-weight: 600;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.product-cta:hover {
  background: var(--primary-dark);
  transform: scale(1.03);
}

/* Product colors */
.p-tamarind .product-card-bg {
  background: linear-gradient(135deg, #fff3e6, #ffd4a3, #e8803c);
}

.p-onion .product-card-bg {
  background: linear-gradient(135deg, #fff5f8, #ffd6e0, #e07070);
}

.p-tomato .product-card-bg {
  background: linear-gradient(135deg, #fff5f0, #ffcab0, #e05c30);
}

.p-banana .product-card-bg {
  background: linear-gradient(135deg, #fffde6, #fff5a3, #d4b530);
}

/* ============================================================
   PAYMENT TERMS
   ============================================================ */
#terms {
  background: var(--surface-2);
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.term-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.term-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.term-card:hover::after {
  transform: scaleX(1);
}

.term-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.term-number {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1;
  color: var(--border-strong);
  margin-bottom: var(--sp-2);
}

.term-icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-2);
}

.term-title {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-1);
}

.term-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

.term-highlight {
  display: inline-block;
  margin-top: var(--sp-2);
  padding: 6px 14px;
  background: var(--primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
}

/* ============================================================
   COMMODITIES
   ============================================================ */
#commodities {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#commodities .section-title {
  color: var(--text-inverse);
}

#commodities .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

#commodities .section-tag {
  color: var(--secondary);
}

#commodities .section-tag-line {
  background: var(--secondary);
}

.commodities-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 100%,
    rgba(196, 94, 26, 0.12) 0%,
    transparent 70%
  );
}

.commodities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  position: relative;
}

.commodity-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--sp-5);
  text-align: center;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(10px);
}

.commodity-card:hover {
  background: rgba(196, 94, 26, 0.12);
  border-color: rgba(196, 94, 26, 0.3);
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(196, 94, 26, 0.1);
}

.commodity-icon {
  font-size: 3.5rem;
  margin-bottom: var(--sp-3);
  display: block;
}

.commodity-name {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-xl);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--sp-1);
}

.commodity-detail {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: var(--surface);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-10);
  align-items: start;
}

.contact-info {
}

.contact-info .section-sub {
  margin-bottom: var(--sp-6);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.contact-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(196, 94, 26, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all var(--transition);
}

.contact-item:hover .contact-item-icon {
  background: var(--primary);
}

.contact-item-label {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}

.contact-item-value a {
  transition: color var(--transition);
}

.contact-item-value a:hover {
  color: var(--primary);
}

/* Contact form */
.contact-form-wrap {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
}

.form-title {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-5);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.form-input {
  padding: 14px 18px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--text-primary);
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(196, 94, 26, 0.1);
}

.form-input:focus ~ .form-label {
  color: var(--primary);
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  margin-top: var(--sp-2);
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.form-submit:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 94, 26, 0.4);
}

.form-submit:active {
  transform: scale(0.98);
}

.form-submit span {
  position: relative;
  z-index: 1;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-4);
  color: var(--accent);
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}

.footer-top {
  padding: clamp(var(--sp-10), 10vw, var(--sp-16))
    clamp(var(--sp-2), 5vw, var(--sp-6));
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-8);
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-logo-main {
  font-size: var(--text-lg);
  color: var(--primary);
}

.footer-brand .nav-logo-sub {
  color: rgba(255, 255, 255, 0.4);
}

.footer-tagline {
  margin-top: var(--sp-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-lg);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--sp-3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links a::before {
  content: "→";
  font-size: 12px;
  opacity: 0.5;
}

.footer-bottom {
  padding: var(--sp-4) clamp(var(--sp-2), 5vw, var(--sp-6));
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
}

.footer-meta {
  display: flex;
  gap: var(--sp-3);
}

.footer-meta span {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
}

.footer-watermark {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 700;
  text-align: center;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
  padding: 0 var(--sp-4);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-top {
  position: fixed;
  bottom: var(--sp-5);
  right: var(--sp-5);
  z-index: 500;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(196, 94, 26, 0.4);
  transform: translateY(80px);
  opacity: 0;
  transition: all var(--transition);
}

#back-top.show {
  transform: translateY(0);
  opacity: 1;
}

#back-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(196, 94, 26, 0.5);
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9997;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* ============================================================
   SECTION NAV DOTS
   ============================================================ */
.section-dots {
  position: fixed;
  right: var(--sp-3);
  top: 50%;
  z-index: 600;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  position: relative;
}

.s-dot::before {
  content: attr(data-label);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.s-dot:hover::before {
  opacity: 1;
}

.s-dot.active {
  background: var(--primary);
  transform: scale(1.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    padding-top: var(--sp-6);
  }

  .hero-visual {
    order: -1;
  }

  .hero-product-grid {
    max-width: 100%;
  }

  .nav-links,
  .btn-contact {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .products-header {
    grid-template-columns: 1fr;
  }

  .product-filter {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-dots {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-cards {
    grid-template-columns: 1fr;
  }

  .about-card:first-child {
    grid-column: auto;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .spice-orb {
    animation: none;
  }

  .hero-dot {
    animation: none;
  }
}

/* ============================================================
   FOCUS STYLES (accessibility)
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: var(--sp-4);
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: var(--sp-2);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why-us {
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}

#why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-strong),
    transparent
  );
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-10);
  align-items: center;
}

.why-us-reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

.reason-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-3);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.reason-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
  border-color: var(--border-strong);
}

.reason-card:hover::after {
  transform: scaleX(1);
}

.reason-card:hover .reason-icon {
  transform: scale(1.15) rotate(-8deg);
}

.reason-icon {
  font-size: 2.2rem;
  margin-bottom: var(--sp-2);
  display: inline-block;
  transition: transform 0.3s var(--ease-spring);
}

.reason-title {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.2;
}

.reason-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}

/* Wide card spanning full row */
.reason-card.wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  color: #fff;
}

.reason-card.wide .reason-title {
  color: #fff;
}

.reason-card.wide .reason-desc {
  color: rgba(255, 255, 255, 0.78);
}

/* Why-us content side */
.why-us-content .section-sub {
  margin-bottom: var(--sp-5);
}

.why-us-stamp {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  padding: var(--sp-2) var(--sp-3);
  background: rgba(196, 94, 26, 0.07);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
}

/* ============================================================
   WORK PROCESS
   ============================================================ */
#process {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.process-header {
  text-align: center;
  margin-bottom: var(--sp-10);
}

.process-header .section-tag {
  justify-content: center;
}

.process-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

/* Connecting line */
.process-track::before {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-line-fill {
  position: absolute;
  top: 40px;
  left: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 1;
  width: 0;
  transition: width 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-line-fill.animate {
  width: calc(75%);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--sp-2);
  position: relative;
  z-index: 2;
}

.process-node {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: var(--sp-4);
  position: relative;
  transition: all 0.4s var(--ease-spring);
  box-shadow: var(--shadow-1);
}

.process-node::after {
  content: attr(data-step);
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  background: var(--primary);
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--surface);
}

.process-step.active .process-node,
.process-step:hover .process-node {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(196, 94, 26, 0.35);
}

.process-step.active .process-node::after {
  background: var(--secondary);
}

.process-step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-1);
  line-height: 1.2;
}

.process-step-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 180px;
}

.process-note {
  margin-top: var(--sp-8);
  padding: var(--sp-4);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .process-track {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }

  .process-track::before,
  .process-line-fill {
    display: none;
  }
}

@media (max-width: 480px) {
  .process-track {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.testimonials-header .section-tag {
  justify-content: center;
}

.testimonials-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

/* Rail container */
.testi-rail-wrap {
  position: relative;
  overflow: hidden;
  /* Fade edges */
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.testi-rail-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.testi-track {
  display: flex;
  gap: var(--sp-3);
  width: max-content;
  animation: scrollRail 36s linear infinite;
}

.testi-track:hover {
  animation-play-state: paused;
}

.testi-track-2 {
  animation-direction: reverse;
  animation-duration: 42s;
  margin-top: var(--sp-3);
}

@keyframes scrollRail {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.testi-card {
  flex-shrink: 0;
  width: clamp(280px, 33vw, 360px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-4);
  transition: all 0.3s var(--ease);
  position: relative;
}

.testi-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-2);
}

.testi-quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--primary);
  opacity: 0.25;
  margin-bottom: var(--sp-1);
  display: block;
}

.testi-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--sp-3);
  font-style: italic;
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding-top: var(--sp-2);
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.testi-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-primary);
  line-height: 1.2;
}

.testi-role {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.testi-stars {
  margin-left: auto;
  color: var(--secondary);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* ============================================================
   FAQs
   ============================================================ */
#faqs {
  background: var(--surface);
  position: relative;
}

.faqs-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: var(--sp-10);
  align-items: start;
}

.faqs-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--sp-4));
}

.faqs-sidebar .section-sub {
  margin-bottom: var(--sp-4);
}

.faqs-contact-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  color: #fff;
  margin-top: var(--sp-5);
}

.faqs-contact-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}

.faqs-contact-card p {
  font-size: var(--text-sm);
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: var(--sp-3);
}

.faqs-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #fff;
  color: var(--primary);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.faqs-contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.faq-item.open {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-1);
}

.faq-question {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--surface-3);
}

.faq-item.open .faq-question {
  background: rgba(196, 94, 26, 0.05);
}

.faq-q-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(196, 94, 26, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.3s;
}

.faq-item.open .faq-q-icon {
  background: var(--primary);
}

.faq-q-text {
  flex: 1;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq-item.open .faq-q-text {
  color: var(--primary);
}

.faq-chevron {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--surface-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  transition:
    transform 0.35s var(--ease),
    background 0.3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--primary);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 var(--sp-4) var(--sp-4);
  padding-left: calc(var(--sp-4) + 36px + var(--sp-3));
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: var(--sp-3);
}

@media (max-width: 900px) {
  .faqs-grid {
    grid-template-columns: 1fr;
  }

  .faqs-sidebar {
    position: static;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-us-reasons {
    order: -1;
  }
}

/* ============================================================
   UTILITY
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
