:root {
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;
  --brand-red: #B71C1C;
  --brand-gold: #D4A017;
  --brand-green: #2E7D32;
  --brand-black: #1B1B1B;
  --brand-cream: #FFF8F0;
  --brand-wa: #25D366;
  --shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

body {
  font-family: var(--font-body);
  background: var(--brand-cream);
  color: #222;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-thumb {
  position: fixed;
  top: 0;
  right: 4px;
  width: 3px;
  height: 100%;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scroll-thumb.is-visible {
  opacity: 1;
}

.scroll-thumb__bar {
  width: 100%;
  border-radius: 100px;
  background: #d4c9b8;
  transition: background 0.2s ease;
}

.scroll-thumb.is-visible .scroll-thumb__bar {
  background: #c4b5a3;
}

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

a { color: inherit; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

/* Header â€” overlays hero, glass blur, turns white on scroll */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  padding: 14px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  line-height: 1;
}

.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.logo-tagline {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: #666;
  transition: color 0.35s ease;
}

header:not(.scrolled) .logo-tagline {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

header.scrolled .logo-tagline,
header.menu-open .logo-tagline {
  color: var(--brand-red);
  text-shadow: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  text-decoration: none;
  color: #333;
  margin-left: 16px;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.35s ease;
}

nav a:hover { color: var(--brand-red); }

header:not(.scrolled) nav a:not(.nav-wa) {
  color: #fff;
}

header:not(.scrolled) nav a:not(.nav-wa):hover {
  color: var(--brand-gold);
}

.nav-wa {
  background: var(--brand-wa) !important;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 30px;
  margin-left: 20px !important;
}

.nav-wa:hover { opacity: 0.9; }

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--brand-black);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.35s ease;
}

header:not(.scrolled) .menu-btn span {
  background: #fff;
}

header.menu-open {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

header.menu-open .menu-btn span {
  background: var(--brand-black) !important;
}

.menu-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 100px 20px 40px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -24px;
  background: url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  filter: blur(5px);
  transform: scale(1.04);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.58));
  z-index: 1;
}

.hero-inner {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-logo {
  width: clamp(130px, 22vw, 190px);
  height: clamp(130px, 22vw, 190px);
  margin: 0 auto 16px;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.45));
}

.hero .tagline {
  font-family: var(--font-body);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 600;
  color: var(--brand-gold);
  margin: 0 0 10px;
  letter-spacing: 0.4px;
}

.hero-sub {
  font-size: clamp(14px, 2.4vw, 17px);
  font-weight: 400;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 24px;
  opacity: 0.92;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.hero-trust span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero p {
  font-family: var(--font-body);
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 400;
  margin: 15px 0 28px;
  opacity: 0.92;
  letter-spacing: 0.2px;
}

.btn {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(183, 28, 28, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  margin-left: 12px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

/* â”€â”€ Sections (below hero) â”€â”€ */
.section {
  padding: 90px 5%;
  position: relative;
}

.section--white { background: #fff; }
.section--cream { background: var(--brand-cream); }

/* Unified section heading â€” same as products */
.section-intro {
  text-align: center;
  margin: 0 auto 44px;
  max-width: 640px;
}

.section-intro--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.section-intro--tight { margin-bottom: 36px; }

.section-intro__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 68px);
  font-weight: 400;
  color: var(--brand-red);
  line-height: 1.1;
  display: block;
  margin: 0 0 10px;
  letter-spacing: 1px;
}

.section-intro__tagline {
  font-size: clamp(14px, 2.5vw, 17px);
  font-weight: 500;
  color: #888;
  letter-spacing: 0.4px;
  line-height: 1.6;
}

.section-intro__tagline em {
  font-style: normal;
  color: var(--brand-gold);
  font-weight: 600;
}

.section-intro--light .section-intro__title { color: #fff; }
.section-intro--light .section-intro__tagline { color: rgba(255, 255, 255, 0.6); }
.section-intro--light .section-intro__tagline em { color: var(--brand-gold); }

.section-wrap {
  max-width: 1160px;
  margin: 0 auto;
}

/* â”€â”€ Products â”€â”€ */
.section-products {
  background: linear-gradient(180deg, #fff 0%, var(--brand-cream) 60%, #fff 100%);
  padding: 100px 5% 110px;
}

.products-wrap {
  max-width: 1160px;
  margin: 0 auto;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-bottom: 44px;
  padding-bottom: 0;
  border-bottom: 2px solid #eee;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px 14px;
  border-radius: 0;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #999;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
  margin-bottom: -2px;
}

.filter-btn:hover {
  color: var(--brand-red);
}

.filter-btn.active {
  color: var(--brand-red);
  border-bottom-color: var(--brand-red);
  background: transparent;
  box-shadow: none;
}

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

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 44px rgba(183, 28, 28, 0.14);
}

.product-card.is-hidden {
  display: none;
}

.product-card__media {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #ebe6de;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

.product-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--brand-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
}

.product-card__cat {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-red);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

.product-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 3px solid var(--brand-red);
}

.product-card__body--spice { border-top-color: var(--brand-red); }
.product-card__body--chutney { border-top-color: #E65100; }
.product-card__body--snack { border-top-color: var(--brand-gold); }
.product-card__body--healthy { border-top-color: var(--brand-green); }

.product-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-black);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.product-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.variant-block {
  margin-bottom: 16px;
}

.variant-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 10px;
}

.variant-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.variant-grid--3,
.variant-grid--4 {
  display: flex;
  flex-direction: column;
}

.variant-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #faf8f5;
  border: 1px solid #ece8e0;
  border-radius: 10px;
  padding: 10px 14px;
  transition: border-color 0.2s, background 0.2s;
}

.product-card:hover .variant-item {
  border-color: rgba(183, 28, 28, 0.18);
  background: #fff9f5;
}

.product-card__body--spice .variant-item {
  border-left: 3px solid var(--brand-red);
}

.product-card__body--chutney .variant-item {
  border-left: 3px solid #E65100;
}

.product-card__body--snack .variant-item {
  border-left: 3px solid var(--brand-gold);
}

.product-card__body--healthy .variant-item {
  border-left: 3px solid var(--brand-green);
}

.variant-item__size {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-black);
  line-height: 1.2;
}

.variant-item__price {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-red);
  white-space: nowrap;
}

.variant-item--muted {
  background: #f5f5f5;
  border-color: #e8e8e8;
}

.variant-item--muted .variant-item__size {
  color: #888;
}

.variant-item--muted .variant-item__price {
  color: #bbb;
  font-size: 11px;
}

.product-card__footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed #eee;
}

.product-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--brand-wa);
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-order:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.product-card--soon .product-order {
  background: transparent;
  color: var(--brand-black);
  border: 1.5px solid #ddd;
  box-shadow: none;
}

.product-card--soon .product-order:hover {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
  box-shadow: none;
  transform: none;
}

.product-card--oos .product-card__media img {
  filter: grayscale(0.35);
  opacity: 0.88;
}

.product-card--oos:hover .product-card__media img {
  transform: none;
}

.oos-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  background: #8B4513;
}

.product-card--oos .variant-item--muted {
  opacity: 0.65;
}

.product-card--oos .product-order {
  background: transparent;
  color: var(--brand-black);
  border: 1.5px solid #ddd;
  box-shadow: none;
}

.product-card--oos .product-order:hover {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
  box-shadow: none;
  transform: none;
}

.product-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ddd8d0;
}

.product-card__media--placeholder::after {
  display: none;
}

@media (max-width: 560px) {
  .product-card__media {
    height: 280px;
  }
}

.soon-badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  padding: 10px 20px;
  border: 1px solid #e0ddd8;
  border-radius: 30px;
  background: #fff;
}

.product-card--soon .variant-item--muted {
  opacity: 0.65;
}

.product-card--soon .variant-item--muted .variant-item__price {
  color: #aaa;
  font-weight: 500;
}

@media (max-width: 960px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* Farmed for Your Health */
.farm-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1060px;
  margin: 0 auto;
}

.farm-step {
  background: #fff;
  border-radius: 16px;
  padding: 26px 18px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--brand-green);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.farm-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(46, 125, 50, 0.12);
}

.farm-step__icon {
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1;
}

.farm-step__num {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--brand-green);
  background: rgba(46, 125, 50, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.farm-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 8px;
}

.farm-step p {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .farm-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .farm-steps {
    grid-template-columns: 1fr;
  }
}

/* Features */
.section-features {
  background: linear-gradient(160deg, #1a1a1a 0%, #2d1515 50%, #1a1a1a 100%);
  color: #fff;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.feature:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--brand-gold);
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--brand-red), #8B0000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(183, 28, 28, 0.35);
}

.feature h3 {
  color: var(--brand-gold);
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 700;
}

.feature p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

/* About */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  position: relative;
}

.about-visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.about-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--brand-red);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-content { text-align: left; }

.about-content .section-intro { margin-bottom: 24px; }

.about-text {
  font-size: 16px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 24px;
}

.about-text strong { color: var(--brand-red); }

.about-promise {
  margin: 0 0 24px;
  padding: 20px 22px;
  background: #fff;
  border-radius: 14px;
  border-left: 4px solid var(--brand-red);
  box-shadow: var(--shadow);
}

.about-promise p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin: 0 0 14px;
}

.about-promise p strong {
  color: var(--brand-red);
}

.about-promise__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-promise__tags span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--brand-red);
  background: rgba(183, 28, 28, 0.08);
  padding: 5px 12px;
  border-radius: 20px;
}

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

.stat-box {
  background: #fff;
  padding: 18px 12px;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--brand-gold);
}

.stat-box strong {
  display: block;
  font-size: 22px;
  color: var(--brand-red);
  font-weight: 800;
}

.stat-box span {
  font-size: 12px;
  color: #888;
  font-weight: 600;
}

/* Founders */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.founder-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--brand-red);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.founder-card__avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-red), #8B0000);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.founder-card__avatar--ceo {
  background: linear-gradient(135deg, var(--brand-gold), #b8860b);
}

.founder-card__role {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--brand-red);
  background: rgba(183, 28, 28, 0.08);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.founder-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 400;
  color: var(--brand-black);
  margin-bottom: 10px;
  line-height: 1.25;
}

.founder-card__edu {
  font-size: 14px;
  line-height: 1.65;
  color: #666;
  max-width: 280px;
  margin: 0 auto;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-cta {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--brand-red);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-cta__eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-red);
  margin-bottom: 10px;
}

.contact-cta__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 400;
  color: var(--brand-black);
  line-height: 1.2;
  margin-bottom: 12px;
}

.contact-cta__text {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-wa-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--brand-wa);
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  width: fit-content;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-wa-lg svg {
  flex-shrink: 0;
}

.btn-wa-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.contact-cta__note {
  margin-top: 16px;
  font-size: 13px;
  color: #aaa;
}

.contact-cta__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-cta__location:hover {
  color: var(--brand-red);
}

.contact-cta__location svg {
  flex-shrink: 0;
  color: var(--brand-red);
  opacity: 0.85;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 100%;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  background: #fff;
  padding: 22px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.09);
  border-color: rgba(183, 28, 28, 0.12);
}

.contact-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(183, 28, 28, 0.08);
  color: var(--brand-red);
}

.contact-card--wa .contact-card__icon {
  background: rgba(37, 211, 102, 0.12);
  color: #1da851;
}

.contact-card--mail .contact-card__icon {
  background: rgba(212, 160, 23, 0.12);
  color: var(--brand-gold);
}

.contact-card--ig .contact-card__icon {
  background: rgba(225, 48, 108, 0.12);
  color: #E1306C;
}

.contact-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.contact-card__body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-black);
}

.contact-card__body span {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
  word-break: break-word;
}

.contact-card__body em {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  color: #aaa;
  letter-spacing: 0.2px;
}

/* Footer */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #1f1f1f 0%, var(--brand-black) 100%);
  color: #fff;
  padding: 0 5% 28px;
}

.footer-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-gold));
  margin: 0 -5.5%;
  margin-bottom: 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 36px;
  margin-bottom: 40px;
  text-align: left;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 12px;
  display: block;
}

.footer-brand .footer-tagline {
  color: var(--brand-gold);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 300px;
}

.footer-social {
  margin-top: 16px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social-link:hover {
  background: rgba(225, 48, 108, 0.18);
  border-color: rgba(225, 48, 108, 0.35);
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li { margin-bottom: 11px; }

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--brand-gold); }

.footer-cta {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 20px;
}

.footer-cta h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.footer-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  background: var(--brand-wa);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 30px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.footer-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  .logo-tagline {
    font-size: 7px;
    letter-spacing: 0.4px;
  }

  .menu-btn {
    display: block;
    z-index: 2;
  }

  header {
    align-items: center;
    flex-wrap: nowrap;
  }

  header.menu-open {
    flex-wrap: wrap;
    align-content: flex-start;
  }

  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    background: #fff;
    padding: 8px 0 20px;
    gap: 4px;
    order: 3;
    margin-top: 14px;
    border-top: 1px solid #f0f0f0;
  }

  nav.open {
    display: flex;
  }

  nav a {
    margin: 0;
    padding: 14px 4px;
    border-bottom: 1px solid #f5f5f5;
    width: 100%;
    color: #333 !important;
    font-size: 16px;
    text-shadow: none !important;
  }

  nav a:last-of-type {
    border-bottom: none;
  }

  nav a:hover { color: var(--brand-red) !important; }

  .nav-wa {
    margin: 8px 0 0 !important;
    padding: 14px 20px !important;
    text-align: center;
    color: #fff !important;
    border-bottom: none !important;
    width: 100%;
  }

  .btn-outline {
    display: block;
    margin: 12px auto 0;
    max-width: 220px;
  }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-intro--left {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-visual img { height: 260px; }

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

  .founders-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .footer-brand p { max-width: none; margin: 0 auto; }

  .footer-logo { margin-left: auto; margin-right: auto; }

  .footer-social { display: flex; justify-content: center; }

  .footer-cta { max-width: 320px; margin: 0 auto; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .footer-pills { justify-content: center; }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-cta { padding: 28px 22px; }

  .contact-cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .contact-card {
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
    padding: 18px 16px;
  }

  .contact-card__body {
    align-items: flex-start;
  }
}
