/* =========================
   SECTION: ROOT VARIABLES
========================= */
:root {
  --bg: #f5f1e8;
  --surface: #ffffff;
  --surface-soft: #f8f6f2;
  --text: #121212;
  --muted: #6b6b6b;
  --line: rgba(18, 18, 18, 0.08);
  --dark: #111111;
  --dark-2: #1a1a1a;
  --brand: #164b35;
  --brand-2: #1f6a49;
  --gold: #c9a96b;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  --radius: 24px;
  --container: 1240px;
  --header-height: 88px;
}

/* =========================
   SECTION: GLOBAL RESET
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 169, 107, 0.10), transparent 28%),
    linear-gradient(180deg, #fbf8f1 0%, #f4efe4 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   SECTION: SHARED BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold), #e6c98f);
  box-shadow: 0 10px 25px rgba(201, 169, 107, 0.18);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

/* =========================================
   SECTION: HEADER
========================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 12, 10, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d8b57b, #7bc08b);
  color: #08110d;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow:
    0 12px 28px rgba(216,181,123,0.18),
    0 6px 18px rgba(123,192,139,0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: #fff;
}

.brand-text strong {
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-text small {
  margin-top: 4px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.58);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  position: relative;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8b57b, #7bc08b);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
}

.header-btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(216,181,123,0.18);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 0 20px 20px;
  background: rgba(6, 14, 11, 0.94);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav .nav-link {
  display: block;
  padding: 12px 0;
}

.mobile-nav .nav-link::after {
  display: none;
}

.mobile-cta {
  margin-top: 10px;
  width: 100%;
  border-radius: 14px;
}

body {
  padding-top: 92px;
}

/* HEADER RESPONSIVE */
@media (max-width: 900px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .header-inner {
    min-height: 78px;
  }

  body {
    padding-top: 78px;
  }
}

@media (max-width: 640px) {
  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 14px;
  }

  .brand-text strong {
    font-size: 0.96rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }
}
/* =========================================
   SECTION: HERO
========================================= */

.hero-section {
  position: relative;
  padding: 110px 0 90px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(201,169,107,0.16), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(22,75,53,0.22), transparent 30%),
    linear-gradient(180deg, #07110d 0%, #081611 45%, #0b1c15 100%);
}

.hero-shell {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.hero-left {
  max-width: 660px;
}

.hero-insight {
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.58);
}

.hero-left h1 {
  margin: 0 0 22px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-left h1 span {
  background: linear-gradient(90deg, #d8b57b, #7bc08b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  margin-bottom: 30px;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-benefits div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  color: rgba(255,255,255,0.88);
  font-size: 15px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-buttons .btn {
  min-height: 54px;
  padding: 0 24px;
}

.hero-proof {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.hero-right {
  position: relative;
}

.hero-showcase {
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.30),
    0 10px 30px rgba(201,169,107,0.08);
  backdrop-filter: blur(20px);
}

.hero-panel-main {
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.92));
  color: #131313;
  box-shadow: 0 18px 44px rgba(0,0,0,0.10);
}

.hero-panel-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f2ead9;
  color: #7a5b21;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-panel-main h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.1;
}

.hero-panel-main p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.hero-mini-card {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 120px;
}

.hero-mini-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  color: #fff;
}

.hero-mini-card span {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
}

.hero-showcase-proof {
  margin-top: 16px;
  font-size: 13px;
  text-align: center;
  color: rgba(255,255,255,0.46);
}

/* HERO RESPONSIVE */
@media (max-width: 1100px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-left {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 84px 0 64px;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  .hero-showcase,
  .hero-panel-main {
    padding: 20px;
    border-radius: 22px;
  }
}
/* =========================================
   SECTION: TRUST STRIP
========================================= */

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -34px;
  padding: 0 0 86px;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trust-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    0 8px 24px rgba(0,0,0,0.10);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(216,181,123,0.0), rgba(216,181,123,0.55), rgba(216,181,123,0.0));
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,181,123,0.22);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.26),
    0 10px 28px rgba(216,181,123,0.08);
}

.trust-card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(216,181,123,0.14);
  border: 1px solid rgba(216,181,123,0.18);
  color: #e1c491;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.trust-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

/* TRUST STRIP RESPONSIVE */
@media (max-width: 1080px) {
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .trust-strip {
    margin-top: -22px;
    padding: 0 0 64px;
  }

  .trust-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
}
/* =========================================
   SECTION: SHOP BY CATEGORY
========================================= */

.category-overview {
  padding: 20px 0 110px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216,181,123,0.08), transparent 24%),
    linear-gradient(180deg, #081611 0%, #091a14 100%);
  color: #fff;
}

.category-shell {
  max-width: 1320px;
  margin: 0 auto;
}

.category-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.category-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216,181,123,0.12);
  border: 1px solid rgba(216,181,123,0.16);
  color: #e1c491;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-head h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.category-intro {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 24px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.20);
  backdrop-filter: blur(18px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216,181,123,0.24);
  box-shadow: 0 28px 70px rgba(0,0,0,0.26);
}

.category-card-featured {
  background:
    radial-gradient(circle at top right, rgba(216,181,123,0.16), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.028));
  border-color: rgba(216,181,123,0.20);
}

.category-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(216,181,123,0.14);
  border: 1px solid rgba(216,181,123,0.18);
  color: #e1c491;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d8b57b, #7bc08b);
  color: #0b120f;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 30px rgba(216,181,123,0.18);
}

.category-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.category-card p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

.category-card a {
  margin-top: auto;
  color: #d8b57b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.category-card a:hover {
  color: #f0d19b;
}

/* CATEGORY RESPONSIVE */
@media (max-width: 1100px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .category-overview {
    padding: 10px 0 80px;
  }

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

  .category-card {
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  .category-head h2 {
    font-size: 32px;
  }

  .category-intro {
    font-size: 16px;
  }
}

/* =========================================
   SECTION: TASTE OF HOME / VALUE
========================================= */

.taste-value {
  padding: 110px 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(216,181,123,0.10), transparent 26%),
    radial-gradient(circle at 86% 30%, rgba(123,192,139,0.10), transparent 24%),
    linear-gradient(180deg, #0b1c15 0%, #081611 100%);
  color: #fff;
}

.taste-value-shell {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.taste-value-left {
  max-width: 680px;
}

.taste-value-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216,181,123,0.12);
  border: 1px solid rgba(216,181,123,0.16);
  color: #e1c491;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.taste-value-left h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.taste-value-left h2 span {
  background: linear-gradient(90deg, #d8b57b, #7bc08b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.taste-value-intro {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.76);
}

.taste-value-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.taste-value-points div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
}

.taste-value-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.taste-value-card {
  border-radius: 26px;
  padding: 30px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.92));
  color: #131313;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14);
}

.taste-value-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #f2ead9;
  color: #7a5b21;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.taste-value-card h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.taste-value-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.taste-value-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.taste-value-mini-card {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}

.taste-value-mini-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  color: #fff;
}

.taste-value-mini-card span {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
}

/* TASTE OF HOME RESPONSIVE */
@media (max-width: 1100px) {
  .taste-value-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .taste-value-left {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .taste-value {
    padding: 82px 0;
  }

  .taste-value-left h2 {
    font-size: 34px;
  }

  .taste-value-intro {
    font-size: 16px;
  }

  .taste-value-card {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .taste-value-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   SECTION: HOW IT WORKS
========================================= */

.how-it-works {
  padding: 120px 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(216,181,123,0.10), transparent 24%),
    linear-gradient(180deg, #07110d 0%, #081611 100%);
  color: #fff;
}

.how-shell {
  max-width: 1320px;
  margin: 0 auto;
}

.how-header {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.how-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216,181,123,0.12);
  border: 1px solid rgba(216,181,123,0.16);
  color: #e1c491;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-header h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.how-intro {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

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

.how-card {
  position: relative;
  padding-top: 16px;
}

.how-card-inner {
  min-height: 100%;
  padding: 34px 24px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.20);
  backdrop-filter: blur(18px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.how-card:hover .how-card-inner {
  transform: translateY(-8px);
  border-color: rgba(216,181,123,0.24);
  box-shadow: 0 28px 70px rgba(0,0,0,0.26);
}

.how-number {
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d8b57b, #7bc08b);
  color: #0b120f;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 12px 30px rgba(216,181,123,0.18);
}

.how-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.how-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

/* HOW IT WORKS RESPONSIVE */
@media (max-width: 1100px) {
  .how-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 82px 0;
  }

  .how-header h2 {
    font-size: 32px;
  }

  .how-intro {
    font-size: 16px;
  }

  .how-card-inner {
    padding: 30px 18px 20px;
    border-radius: 20px;
  }

  .how-number {
    left: 16px;
  }
}

/* =========================================
   SECTION: WHY CHOOSE US
========================================= */

.why-choose-us {
  padding: 120px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(123,192,139,0.08), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(216,181,123,0.10), transparent 22%),
    linear-gradient(180deg, #081611 0%, #07110d 100%);
  color: #fff;
}

.why-shell {
  max-width: 1320px;
  margin: 0 auto;
}

.why-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.why-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216,181,123,0.12);
  border: 1px solid rgba(216,181,123,0.16);
  color: #e1c491;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-header h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.why-intro {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.why-card {
  position: relative;
  min-height: 100%;
  padding: 28px 24px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.20);
  backdrop-filter: blur(18px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216,181,123,0.24);
  box-shadow: 0 28px 70px rgba(0,0,0,0.26);
}

.why-card-featured {
  background:
    radial-gradient(circle at top right, rgba(216,181,123,0.16), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.028));
  border-color: rgba(216,181,123,0.20);
}

.why-card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(216,181,123,0.14);
  border: 1px solid rgba(216,181,123,0.18);
  color: #e1c491;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.why-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.why-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

/* WHY CHOOSE US RESPONSIVE */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 82px 0;
  }

  .why-header h2 {
    font-size: 32px;
  }

  .why-intro {
    font-size: 16px;
  }

  .why-card {
    padding: 22px 18px 18px;
    border-radius: 20px;
  }
}

/* =========================================
   SECTION: FEATURED COLLECTIONS
========================================= */

.featured-collections {
  padding: 120px 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(216,181,123,0.08), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(123,192,139,0.08), transparent 22%),
    linear-gradient(180deg, #07110d 0%, #081611 100%);
  color: #fff;
}

.featured-shell {
  max-width: 1320px;
  margin: 0 auto;
}

.featured-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.featured-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216,181,123,0.12);
  border: 1px solid rgba(216,181,123,0.16);
  color: #e1c491;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-header h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.featured-intro {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 24px;
}

.featured-card {
  position: relative;
  min-height: 100%;
  padding: 30px 26px 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.20);
  backdrop-filter: blur(18px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.featured-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216,181,123,0.24);
  box-shadow: 0 28px 70px rgba(0,0,0,0.26);
}

.featured-card-large {
  background:
    radial-gradient(circle at top right, rgba(216,181,123,0.16), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.028));
  border-color: rgba(216,181,123,0.20);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(216,181,123,0.14);
  border: 1px solid rgba(216,181,123,0.18);
  color: #e1c491;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.featured-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.featured-card p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

.featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.featured-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 600;
}

/* FEATURED COLLECTIONS RESPONSIVE */
@media (max-width: 1100px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .featured-collections {
    padding: 82px 0;
  }

  .featured-header h2 {
    font-size: 32px;
  }

  .featured-intro {
    font-size: 16px;
  }

  .featured-card {
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  .featured-card h3 {
    font-size: 24px;
  }
}

/* =========================================
   SECTION: FINAL CTA
========================================= */

.final-cta {
  padding: 130px 0 110px;
  background:
    radial-gradient(circle at 50% 18%, rgba(216,181,123,0.16), transparent 26%),
    radial-gradient(circle at 20% 80%, rgba(123,192,139,0.10), transparent 22%),
    linear-gradient(180deg, #081611 0%, #07110d 100%);
  color: #fff;
}

.cta-shell {
  max-width: 1320px;
  margin: 0 auto;
}

.cta-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 54px 46px;
  text-align: center;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.28),
    0 10px 28px rgba(216,181,123,0.08);
  backdrop-filter: blur(18px);
}

.cta-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216,181,123,0.12);
  border: 1px solid rgba(216,181,123,0.16);
  color: #e1c491;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-box h2 {
  margin: 0 0 16px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.cta-intro {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.76);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}

.cta-buttons .btn {
  min-height: 54px;
  padding: 0 24px;
}

.cta-trust {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.54);
}

/* FINAL CTA RESPONSIVE */
@media (max-width: 768px) {
  .final-cta {
    padding: 88px 0 82px;
  }

  .cta-box {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .cta-box h2 {
    font-size: 34px;
  }

  .cta-intro {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
/* =========================================
   SECTION: FOOTER
========================================= */

.site-footer {
  padding: 110px 0 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(216,181,123,0.08), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(123,192,139,0.08), transparent 20%),
    linear-gradient(180deg, #060d0a 0%, #040806 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #fff;
}

.footer-shell {
  max-width: 1320px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 34px;
}

.footer-brand-col {
  max-width: 420px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d8b57b, #7bc08b);
  color: #08110d;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow:
    0 12px 28px rgba(216,181,123,0.18),
    0 6px 18px rgba(123,192,139,0.12);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-brand-text strong {
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}

.footer-brand-text small {
  margin-top: 4px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.56);
}

.footer-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.68);
}

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.01em;
}

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

.footer-col li + li {
  margin-top: 10px;
}

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

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

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

/* FOOTER RESPONSIVE */
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-col {
    max-width: none;
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 82px 0 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 14px;
  }

  .footer-brand-text strong {
    font-size: 0.96rem;
  }

  .footer-brand-text small {
    font-size: 0.72rem;
  }
}



/* =========================================
   SECTION: INDISKT & PAKISTANSKT HERO
========================================= */

.indpak-hero {
  padding: 110px 0 84px;
  background:
    radial-gradient(circle at 18% 18%, rgba(216,181,123,0.14), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(123,192,139,0.10), transparent 24%),
    linear-gradient(180deg, #07110d 0%, #081611 100%);
  color: #fff;
}

.indpak-hero-shell {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.indpak-eyebrow,
.indpak-section-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216,181,123,0.12);
  border: 1px solid rgba(216,181,123,0.16);
  color: #e1c491;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.indpak-hero-left h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.indpak-hero-left h1 span {
  background: linear-gradient(90deg, #d8b57b, #7bc08b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.indpak-subtitle {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.76);
  max-width: 700px;
}

.indpak-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.indpak-points div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
}

.indpak-hero-card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.28),
    0 10px 28px rgba(216,181,123,0.08);
}

.indpak-hero-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================
   SECTION: INDISKT & PAKISTANSKT GROUPS
========================================= */

.indpak-groups {
  padding: 110px 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(216,181,123,0.08), transparent 22%),
    linear-gradient(180deg, #081611 0%, #07110d 100%);
  color: #fff;
}

.indpak-groups-shell,
.indpak-value-shell,
.indpak-cta-shell {
  max-width: 1320px;
  margin: 0 auto;
}

.indpak-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.indpak-section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.indpak-section-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

.indpak-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.indpak-group-card {
  min-height: 100%;
  padding: 28px 24px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.20);
  backdrop-filter: blur(18px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.indpak-group-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216,181,123,0.24);
  box-shadow: 0 28px 70px rgba(0,0,0,0.26);
}

.indpak-group-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(216,181,123,0.14);
  border: 1px solid rgba(216,181,123,0.18);
  color: #e1c491;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.indpak-group-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.indpak-group-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

/* =========================================
   SECTION: INDISKT & PAKISTANSKT VALUE
========================================= */

.indpak-value {
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(123,192,139,0.08), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(216,181,123,0.10), transparent 22%),
    linear-gradient(180deg, #081611 0%, #07110d 100%);
  color: #fff;
}

.indpak-value-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.indpak-value-intro {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.76);
}

.indpak-value-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.indpak-value-points div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
}

.indpak-value-card {
  border-radius: 26px;
  padding: 30px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.92));
  color: #131313;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14);
}

.indpak-value-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #f2ead9;
  color: #7a5b21;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.indpak-value-card h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.indpak-value-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* =========================================
   SECTION: INDISKT & PAKISTANSKT CTA
========================================= */

.indpak-cta {
  padding: 110px 0 120px;
  background:
    radial-gradient(circle at 50% 18%, rgba(216,181,123,0.16), transparent 26%),
    linear-gradient(180deg, #07110d 0%, #060d0a 100%);
  color: #fff;
}

.indpak-cta-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 54px 46px;
  text-align: center;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.28),
    0 10px 28px rgba(216,181,123,0.08);
  backdrop-filter: blur(18px);
}

.indpak-cta-box h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.indpak-cta-box p {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.76);
}

.indpak-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* =========================================
   SECTION: CATEGORY DIRECTORY LINK
========================================= */

.directory-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: #d8b57b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.directory-link:hover {
  color: #f0d19b;
}

/* INDISKT & PAKISTANSKT RESPONSIVE */
@media (max-width: 1100px) {
  .indpak-hero-shell,
  .indpak-value-shell,
  .indpak-group-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .indpak-hero,
  .indpak-groups,
  .indpak-value,
  .indpak-cta {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .indpak-hero-left h1,
  .indpak-section-head h2,
  .indpak-cta-box h2 {
    font-size: 32px;
  }

  .indpak-subtitle,
  .indpak-value-intro,
  .indpak-cta-box p,
  .indpak-section-head p {
    font-size: 16px;
  }

  .indpak-group-card,
  .indpak-value-card,
  .indpak-cta-box {
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  .indpak-cta-buttons {
    flex-direction: column;
  }
}
/* =========================================
   SECTION: GLOBAL SPACING & TRANSITIONS
========================================= */

html {
  scroll-padding-top: 110px;
}

main {
  position: relative;
}

/* Shared section rhythm */
.hero-section,
.trust-strip,
.category-overview,
.taste-value,
.how-it-works,
.why-choose-us,
.featured-collections,
.final-cta {
  position: relative;
}

/* Gentle visual transition lines between dark sections */
.category-overview::before,
.taste-value::before,
.how-it-works::before,
.why-choose-us::before,
.featured-collections::before,
.final-cta::before,
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1240px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.08),
    rgba(216,181,123,0.12),
    rgba(255,255,255,0.08),
    rgba(255,255,255,0)
  );
  pointer-events: none;
}

/* Slightly softer section-end fade */
.category-overview::after,
.taste-value::after,
.how-it-works::after,
.why-choose-us::after,
.featured-collections::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 64px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.10));
  pointer-events: none;
}

/* Consistent container breathing room */
.hero-shell,
.category-shell,
.taste-value-shell,
.how-shell,
.why-shell,
.featured-shell,
.cta-shell,
.footer-shell {
  padding-left: 4px;
  padding-right: 4px;
}

/* Better vertical rhythm for section headers */
.category-head,
.why-header,
.featured-header,
.how-header {
  margin-bottom: 46px;
}

/* Slightly tighter header-to-content rhythm in CTA */
.cta-box {
  max-width: 920px;
}

/* Mobile spacing polish */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 92px;
  }

  .category-overview::before,
  .taste-value::before,
  .how-it-works::before,
  .why-choose-us::before,
  .featured-collections::before,
  .final-cta::before,
  .site-footer::before {
    width: min(1240px, calc(100% - 24px));
  }

  .hero-shell,
  .category-shell,
  .taste-value-shell,
  .how-shell,
  .why-shell,
  .featured-shell,
  .cta-shell,
  .footer-shell {
    padding-left: 0;
    padding-right: 0;
  }

  .category-head,
  .why-header,
  .featured-header,
  .how-header {
    margin-bottom: 34px;
  }

  .category-overview::after,
  .taste-value::after,
  .how-it-works::after,
  .why-choose-us::after,
  .featured-collections::after {
    height: 40px;
  }
}


/* =========================================
   SECTION: CATEGORIES HERO
========================================= */

.categories-page-hero {
  padding: 110px 0 70px;
  background:
    radial-gradient(circle at 18% 18%, rgba(216,181,123,0.14), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(123,192,139,0.10), transparent 24%),
    linear-gradient(180deg, #07110d 0%, #081611 100%);
  color: #fff;
}

.categories-page-hero-shell {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.categories-page-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216,181,123,0.12);
  border: 1px solid rgba(216,181,123,0.16);
  color: #e1c491;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.categories-page-hero-left h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.categories-page-hero-left h1 span {
  background: linear-gradient(90deg, #d8b57b, #7bc08b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.categories-page-subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.76);
  max-width: 700px;
}

.categories-hero-card {
  padding: 34px 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.28),
    0 10px 28px rgba(216,181,123,0.08);
  backdrop-filter: blur(18px);
}

.categories-hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(216,181,123,0.14);
  border: 1px solid rgba(216,181,123,0.18);
  color: #e1c491;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.categories-hero-card h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.categories-hero-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

/* =========================================
   SECTION: CATEGORY DIRECTORY
========================================= */

.category-directory {
  padding: 100px 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(216,181,123,0.08), transparent 22%),
    linear-gradient(180deg, #081611 0%, #07110d 100%);
  color: #fff;
}

.category-directory-shell {
  max-width: 1320px;
  margin: 0 auto;
}

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

.directory-card {
  min-height: 100%;
  padding: 18px 18px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.20);
  backdrop-filter: blur(18px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.directory-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216,181,123,0.24);
  box-shadow: 0 28px 70px rgba(0,0,0,0.26);
}

.directory-card-featured {
  background:
    radial-gradient(circle at top right, rgba(216,181,123,0.16), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.028));
  border-color: rgba(216,181,123,0.20);
}

.directory-image {
  position: relative;
  min-height: 230px;
  margin-bottom: 18px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 16px 36px rgba(0,0,0,0.22);
  background: rgba(255,255,255,0.04);
}

.directory-image img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.directory-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.directory-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(216,181,123,0.14);
  border: 1px solid rgba(216,181,123,0.18);
  color: #e1c491;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.directory-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d8b57b, #7bc08b);
  color: #0b120f;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 30px rgba(216,181,123,0.18);
}

.directory-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.directory-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

/* CATEGORY DIRECTORY RESPONSIVE */
@media (max-width: 1100px) {
  .category-directory-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .category-directory {
    padding: 82px 0;
  }

  .directory-card {
    padding: 16px 16px 18px;
    border-radius: 20px;
  }

  .directory-image {
    min-height: 200px;
    border-radius: 18px;
  }

  .directory-image img {
    height: 200px;
  }
}
/* =========================================
   SECTION: CATEGORIES CTA
========================================= */

.categories-cta {
  padding: 110px 0 120px;
  background:
    radial-gradient(circle at 50% 18%, rgba(216,181,123,0.16), transparent 26%),
    linear-gradient(180deg, #07110d 0%, #060d0a 100%);
  color: #fff;
}

.categories-cta-shell {
  max-width: 1320px;
  margin: 0 auto;
}

.categories-cta-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 54px 46px;
  text-align: center;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.28),
    0 10px 28px rgba(216,181,123,0.08);
  backdrop-filter: blur(18px);
}

.categories-cta-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216,181,123,0.12);
  border: 1px solid rgba(216,181,123,0.16);
  color: #e1c491;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.categories-cta-box h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.categories-cta-box p {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.76);
}

.categories-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.categories-cta-buttons .btn {
  min-height: 54px;
  padding: 0 24px;
}

/* CATEGORIES PAGE RESPONSIVE */
@media (max-width: 1100px) {
  .categories-page-hero-shell,
  .category-directory-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .categories-page-hero,
  .category-directory,
  .categories-cta {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .categories-page-hero-left h1,
  .categories-cta-box h2 {
    font-size: 32px;
  }

  .categories-page-subtitle,
  .categories-cta-box p {
    font-size: 16px;
  }

  .categories-hero-card,
  .directory-card,
  .categories-cta-box {
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  .categories-cta-buttons {
    flex-direction: column;
  }
}
/* =========================
   SECTION: RESPONSIVE
========================= */
@media (max-width: 1080px) {
  .hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card-wrap {
    justify-content: flex-start;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .hero-section {
    padding: 54px 0 36px;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .hero-card {
    padding: 24px;
    border-radius: 22px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points span {
    width: 100%;
  }
}
