/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Sections */
.section {
  padding-top: var(--spacing-4xl);
  padding-bottom: var(--spacing-4xl);
  position: relative;
}

.section-warm {
  background-color: var(--color-bg-warm);
}

.section-ivory {
  background-color: var(--color-bg-ivory);
}

.section-dark {
  background-color: var(--color-primary-dark);
  color: var(--color-text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-text-light);
}

.section-dark p {
  color: rgba(253, 251, 247, 0.82);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-text-light);
  box-shadow: 0 4px 15px rgba(34, 22, 16, 0.2);
  border: 1px solid rgba(200, 151, 62, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 22, 16, 0.3);
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.btn-gold {
  background: linear-gradient(135deg, #e4a73b 0%, #c8973e 50%, #ad7c2a 100%);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 151, 62, 0.4);
  filter: brightness(1.05);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary-dark);
  border: 1.5px solid var(--color-primary-dark);
}

.btn-secondary:hover {
  background: var(--color-primary-dark);
  color: var(--color-text-light);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-accent-gold-dark);
  border: 1.5px solid var(--color-accent-gold);
}

.btn-outline-gold:hover {
  background: var(--color-accent-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  color: #ffffff;
}

.btn-glass-hero {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fdfbf7;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-glass-hero:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--color-accent-gold-light);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Full Background Hero Section */
.hero-section-bg {
  width: 100%;
  min-height: clamp(680px, 56.25vw, 100vh);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 1.5rem);
  padding-bottom: 2rem;
  background-color: #1a110b;
  background-image: linear-gradient(90deg, rgba(16, 10, 6, 0.94) 0%, rgba(16, 10, 6, 0.85) 44%, rgba(16, 10, 6, 0.35) 75%, rgba(16, 10, 6, 0.05) 100%), url('../../../Assets/Images/hero.png');
  background-repeat: no-repeat;
  background-position: center 68%;
  background-size: cover;
  overflow: hidden;
}

.hero-split-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 1.5rem;
}

.hero-jar-pod-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  margin-bottom: -0.7rem;
  z-index: 2;
  margin-right: 2rem;
}

.hero-jar-container {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  transform: translateX(65px);
}

.hero-pod-jar-img {
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.8)) drop-shadow(0 5px 6px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 35px rgba(226, 163, 54, 0.25));
  transform-origin: bottom center;
  transition: filter var(--transition-smooth);
}

.hero-pod-jar-img:hover {
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.85)) drop-shadow(0 5px 8px rgba(0, 0, 0, 1)) drop-shadow(0 0 50px rgba(226, 163, 54, 0.4));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(200, 151, 62, 0.18);
  border: 1px solid rgba(200, 151, 62, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-accent-gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero-badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e4a73b;
  box-shadow: 0 0 10px #e4a73b;
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

.hero-title {
  color: #ffffff;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}

.text-gold-gradient {
  background: linear-gradient(135deg, #ffe29a 0%, #e5a93c 50%, #c8973e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: rgba(253, 251, 247, 0.9);
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 620px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  gap: 1.15rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.75rem;
  flex-wrap: wrap;
}

.hero-trust-pill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(24, 16, 12, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 151, 62, 0.28);
  border-radius: var(--radius-full);
  padding: 0.45rem 1rem;
  color: #fdfbf7;
  font-size: 0.84rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-trust-pill .pill-icon {
  font-size: 1rem;
}

/* Two Column Split Layout with Picture Frame */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
}

.split-image-wrapper {
  position: relative;
  background: #ffffff;
  padding: 12px; /* Elegant frame matting */
  border-radius: 14px;
  border: 1px solid rgba(200, 151, 62, 0.4);
  box-shadow: 0 20px 45px rgba(34, 22, 16, 0.15), 0 2px 8px rgba(200, 151, 62, 0.18);
  display: flex;
  height: 100%;
  min-height: 440px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.split-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 55px rgba(34, 22, 16, 0.2), 0 4px 14px rgba(200, 151, 62, 0.28);
}

.split-image-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(200, 151, 62, 0.2);
}

.split-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.split-image-wrapper:hover .split-image-inner img {
  transform: scale(1.04);
}

.intro-text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0;
}

.section-heading-highlight {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 500;
  line-height: 1.22;
  color: var(--color-primary-dark);
  letter-spacing: 0.01em;
}

.text-gold-accent-highlight {
  background: linear-gradient(135deg, #d49b38 0%, #b88228 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.split-image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(34, 22, 16, 0.9);
  backdrop-filter: blur(10px);
  color: #fdfbf7;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 151, 62, 0.4);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Trust / USP Strip */
.usp-strip {
  background: radial-gradient(circle at 50% 50%, rgba(200, 151, 62, 0.12) 0%, transparent 70%), linear-gradient(135deg, #1f140e 0%, #150d09 50%, #241610 100%);
  border-top: 1px solid rgba(200, 151, 62, 0.35);
  border-bottom: 1px solid rgba(200, 151, 62, 0.35);
  padding: 2.25rem 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 15px 35px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: #ffffff;
  border-radius: 8px; /* Clean reduced border radius */
  border: 1px solid rgba(200, 151, 62, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: all var(--transition-normal);
}

.usp-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent-gold);
  box-shadow: 0 14px 32px rgba(200, 151, 62, 0.3);
}

.usp-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #fff8ee 0%, #faecd3 100%);
  border: 1.5px solid rgba(200, 151, 62, 0.4);
  border-radius: 8px; /* Clean matching 8px radius */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-gold-dark);
  box-shadow: 0 4px 12px rgba(200, 151, 62, 0.15);
  transition: all var(--transition-fast);
}

.usp-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent-gold-dark);
  transition: transform var(--transition-fast), stroke var(--transition-fast);
}

.usp-item:hover .usp-icon {
  background: linear-gradient(135deg, #e4a73b 0%, #c8973e 100%);
  box-shadow: 0 6px 16px rgba(200, 151, 62, 0.45);
}

.usp-item:hover .usp-icon svg {
  stroke: #ffffff;
  transform: scale(1.08);
}

.usp-text h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--color-primary-dark);
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.usp-text p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

/* ==========================================================================
   About Page: Grand Panoramic Hero with Vedic Farm Background
   ========================================================================== */

.about-hero-section {
  position: relative;
  min-height: 94vh;
  background-image: url('../../../Assets/Images/VedicFarm.jpg');
  background-position: center 35%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 5.5rem) 0 7rem;
  overflow: hidden;
}

.about-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(14, 7, 3, 0.6) 0%, rgba(14, 7, 3, 0.88) 100%),
              linear-gradient(180deg, rgba(14, 7, 3, 0.82) 0%, rgba(20, 10, 5, 0.5) 45%, rgba(14, 7, 3, 0.92) 100%);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 1;
}

.about-hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-hero-content {
  max-width: 1080px;
  margin: 0 auto;
}

/* Tagline Bar */
.about-hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.about-hero-tagline-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #dfb36c);
}

.about-hero-tagline-line:last-child {
  background: linear-gradient(90deg, #dfb36c, transparent);
}

.about-hero-tagline-text {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f7d27e;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.6rem, 7.8vw, 6.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95);
}

.about-hero-title .text-gold-accent-highlight {
  background: linear-gradient(135deg, #fff2cc 0%, #f6c86a 45%, #e2aa46 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 20px rgba(246, 200, 106, 0.6));
}

.about-hero-lead {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: #faebd7;
  line-height: 1.65;
  max-width: 820px;
  margin: 0 auto 3.5rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
  font-weight: 400;
}

/* 3 Bespoke Glassmorphic Information Cards */
.about-hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.about-hero-card {
  background: linear-gradient(145deg, rgba(32, 16, 8, 0.82) 0%, rgba(18, 9, 4, 0.88) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid rgba(223, 179, 108, 0.45);
  border-radius: 4px;
  padding: 1.65rem 1.45rem;
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-hero-card:hover {
  transform: translateY(-6px);
  border-color: #ffd67a;
  box-shadow: 0 18px 45px rgba(200, 151, 62, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  background: linear-gradient(145deg, rgba(42, 22, 12, 0.9) 0%, rgba(24, 12, 6, 0.92) 100%);
}

.about-hero-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 4px;
  background: linear-gradient(135deg, #fff7ea 0%, #f3e2ca 100%);
  border: 1.5px solid #dfb36c;
  color: #9e6d1b;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(200, 151, 62, 0.3);
  transition: transform 0.3s ease;
}

.about-hero-card:hover .about-hero-card-icon {
  transform: scale(1.08) rotate(3deg);
  background: linear-gradient(135deg, #ffd67a 0%, #e2aa46 100%);
  color: #24130b;
}

.about-hero-card-body h4 {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.about-hero-card-body p {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: #edd9c2;
  line-height: 1.5;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
}

@media (max-width: 900px) {
  .about-hero-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   About Page: Story Narrative Editorial Layout & 3-Box Horizontal Row
   ========================================================================== */

.narrative-section {
  padding: 5.5rem 0 6.5rem;
  background: #fdfaf5;
}

.narrative-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.narrative-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.narrative-clean-frame {
  position: relative;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid #dfb36c;
  box-shadow: 0 16px 40px rgba(36, 16, 3, 0.14), 0 2px 10px rgba(200, 151, 62, 0.2);
  background: #ffffff;
  padding: 8px; /* Clean uniform golden matting */
  box-sizing: border-box;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.narrative-clean-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(36, 16, 3, 0.2), 0 4px 16px rgba(200, 151, 62, 0.3);
}

.narrative-clean-frame img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  transition: transform 0.4s ease;
}

.narrative-clean-frame:hover img {
  transform: scale(1.02);
}

.narrative-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.2vw, 3.2rem);
  font-weight: 700;
  color: #1e1109;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}

.narrative-lead-quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: #4a382d;
  line-height: 1.65;
  background: linear-gradient(145deg, #ffffff 0%, #fdfbf7 100%);
  border-left: 3.5px solid #c8973e;
  border-radius: 0 4px 4px 0;
  padding: 1.1rem 1.35rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 14px rgba(36, 16, 3, 0.04);
}

.narrative-guarantee-box {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #28150a 0%, #150904 100%);
  color: #fce3a6;
  border: 1px solid #dfb36c;
  border-radius: 4px;
  padding: 0.85rem 1.35rem;
  box-shadow: 0 4px 14px rgba(21, 9, 4, 0.2);
}

.narrative-guarantee-box .guarantee-icon {
  font-size: 1.25rem;
}

.narrative-guarantee-box p {
  font-size: 0.84rem;
  color: #f7ecdc;
  line-height: 1.4;
  margin: 0;
}

/* 3-Box Horizontal Row */
.narrative-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.narrative-box-card {
  background: linear-gradient(145deg, #ffffff 0%, #fdfbf7 100%);
  padding: 1.6rem 1.4rem;
  border-radius: 4px;
  border: 1.5px solid #ebdec9;
  box-shadow: 0 4px 16px rgba(36, 16, 3, 0.04);
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.narrative-box-card:hover {
  transform: translateY(-5px);
  border-color: #c8973e;
  box-shadow: 0 12px 28px rgba(200, 151, 62, 0.18);
  background: #ffffff;
}

.narrative-box-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 4px;
  background: linear-gradient(135deg, #fff7ea 0%, #f3e2ca 100%);
  border: 1.5px solid rgba(200, 151, 62, 0.4);
  color: #9e6d1b;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(200, 151, 62, 0.15);
  transition: transform 0.28s ease;
}

.narrative-box-card:hover .narrative-box-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, #ffd67a 0%, #e2aa46 100%);
  color: #24130b;
}

.narrative-box-body h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #24130b;
  margin-bottom: 0.35rem;
}

.narrative-box-body p {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: #635043;
  line-height: 1.55;
}

@media (max-width: 992px) {
  .narrative-split-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .narrative-cards-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ==========================================================================
   Section Header Decorative Divider Lines & Philosophy 4px Cards
   ========================================================================== */

.header-divider-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.header-divider-line {
  width: 50px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #dfb36c);
}

.header-divider-line:last-child {
  background: linear-gradient(90deg, #dfb36c, transparent);
}

.header-divider-icon {
  font-size: 1.25rem;
  color: #dfb36c;
  filter: drop-shadow(0 2px 6px rgba(200, 151, 62, 0.35));
}

.philosophy-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}

.philosophy-card {
  background: linear-gradient(145deg, #ffffff 0%, #fdfbf7 100%);
  padding: 2.25rem 1.85rem;
  border-radius: 4px; /* Sleek 4px radius */
  border: 1.5px solid #ebdcc8;
  box-shadow: 0 6px 22px rgba(36, 16, 3, 0.04);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.philosophy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(200, 151, 62, 0.18);
  border-color: #c8973e;
  background: #ffffff;
}

.philosophy-card-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 4px;
  background: linear-gradient(135deg, #fff8ee 0%, #f3e2ca 100%);
  border: 1.5px solid rgba(200, 151, 62, 0.4);
  color: #9e6d1b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  box-shadow: 0 4px 12px rgba(200, 151, 62, 0.15);
  transition: transform 0.25s ease, background 0.25s ease;
}

.philosophy-card:hover .philosophy-card-icon {
  transform: scale(1.08) rotate(3deg);
  background: linear-gradient(135deg, #ffd67a 0%, #e2aa46 100%);
  color: #24130b;
}

.philosophy-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #24130b;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.philosophy-card p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #5c4a3e;
  line-height: 1.65;
}

@media (max-width: 992px) {
  .philosophy-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   Section: Brand Poster Showcase (Royal Heritage Frame)
   ========================================================================== */

.section-poster-showcase {
  padding: 4.5rem 0 5.5rem;
  background: linear-gradient(180deg, #fdfaf6 0%, #f7f1e6 50%, #fdfaf6 100%);
  display: flex;
  justify-content: center;
  position: relative;
}

.poster-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Royal Heritage Double Frame */
.royal-heritage-frame {
  position: relative;
  padding: 14px;
  background: linear-gradient(145deg, #2b170c 0%, #170b05 100%);
  border-radius: 18px;
  border: 2px solid #dfb36c;
  box-shadow: 
    0 25px 65px rgba(28, 14, 5, 0.32),
    0 0 0 4px rgba(200, 151, 62, 0.25),
    0 0 35px rgba(200, 151, 62, 0.18),
    inset 0 0 12px rgba(0, 0, 0, 0.6);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.royal-heritage-frame:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 32px 75px rgba(28, 14, 5, 0.42),
    0 0 0 5px rgba(200, 151, 62, 0.45),
    0 0 45px rgba(200, 151, 62, 0.28),
    inset 0 0 15px rgba(0, 0, 0, 0.7);
}

/* Inner Matting (Parchment Gold Bevel) */
.poster-inner-matting {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(223, 179, 108, 0.85);
  box-shadow: 
    inset 0 0 16px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.5);
  background: #000000;
}

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

.royal-heritage-frame:hover .brand-poster-img {
  transform: scale(1.012);
}

/* Ornate Corner Accents */
.frame-corner {
  position: absolute;
  width: 36px;
  height: 36px;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.frame-corner-tl {
  top: 4px;
  left: 4px;
}

.frame-corner-tr {
  top: 4px;
  right: 4px;
}

.frame-corner-bl {
  bottom: 4px;
  left: 4px;
}

.frame-corner-br {
  bottom: 4px;
  right: 4px;
}

@media (max-width: 768px) {
  .royal-heritage-frame {
    padding: 8px;
    border-radius: 12px;
  }
  .frame-corner {
    display: none;
  }
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.feature-card {
  background: #ffffff;
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
  text-align: left;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-accent-gold);
}

.feature-card-icon {
  width: 56px;
  height: 56px;
  background: var(--color-accent-cream);
  border: 1px solid var(--color-accent-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-gold-dark);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-why-choose-us .feature-card-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #fff8ec 0%, #f3e2ca 100%);
  border: 1.5px solid rgba(200, 151, 62, 0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.35rem;
  box-shadow: 0 4px 10px rgba(200, 151, 62, 0.15);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.section-why-choose-us .feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #24130b;
  margin-bottom: 0.65rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.section-why-choose-us .feature-card p {
  font-size: 0.88rem;
  color: #554438;
  line-height: 1.6;
}

/* ==========================================================================
   Customer Trust & Testimonials (Data-Rich Cards)
   ========================================================================== */

/* Overall Trust Stats Strip */
.trust-stats-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: linear-gradient(145deg, #ffffff 0%, #fcf9f2 100%);
  border: 1.5px solid #ebdcc8;
  border-radius: 12px;
  padding: 1.25rem 2rem;
  margin-bottom: 2.75rem;
  box-shadow: 0 4px 16px rgba(36, 16, 3, 0.04);
}

.trust-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.trust-stat-stars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #df9e26;
  font-size: 1.15rem;
}

.trust-stat-stars strong {
  color: #24130b;
  font-size: 1.05rem;
  margin-left: 0.25rem;
}

.trust-stat-item span {
  font-size: 0.82rem;
  color: #635043;
}

.trust-badge-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #24130b;
  font-size: 0.95rem;
}

.trust-stat-divider {
  width: 1px;
  height: 36px;
  background: #e2d2be;
}

/* Carousel Architecture for Testimonials (3 cards per screen on Desktop) */
.testimonials-carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.testimonials-track-container {
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0.25rem 1rem;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 2 * 1.5rem) / 3); /* Exactly 3 cards visible at a time */
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf7 100%);
  padding: 2rem 1.65rem 1.75rem;
  border-radius: 14px;
  border: 1px solid rgba(200, 151, 62, 0.25);
  box-shadow: 0 6px 20px rgba(36, 16, 3, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.28s ease;
  position: relative;
  box-sizing: border-box;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(200, 151, 62, 0.2);
  border-color: #c8973e;
  background: #ffffff;
}

/* Left & Right Nav Buttons */
.testimonial-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #dfb36c;
  color: #a87620;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(36, 16, 3, 0.14);
  transition: all 0.25s ease;
}

.testimonial-prev-btn {
  left: -22px;
}

.testimonial-next-btn {
  right: -22px;
}

.testimonial-nav-btn:hover {
  background: #a87620;
  color: #ffffff;
  border-color: #a87620;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(200, 151, 62, 0.4);
}

/* Pagination Dots */
.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.dot-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2d2be;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.dot-btn.active {
  width: 28px;
  border-radius: 6px;
  background: #a87620;
  box-shadow: 0 2px 6px rgba(200, 151, 62, 0.35);
}

.testimonial-card-top {
  margin-bottom: 1.5rem;
}

.testimonial-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.rating-stars-gold {
  color: #df9e26;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.verified-badge-pill {
  font-size: 0.72rem;
  font-weight: 600;
  color: #2b7a32;
  background: #eaf5ec;
  border: 1px solid #c3e2c7;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: #3b2c22;
  position: relative;
}

.testimonial-card-bottom {
  border-top: 1px solid #f0e4d4;
  padding-top: 1.15rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar-badge {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 4px;
  background: linear-gradient(135deg, #2e1507 0%, #150903 100%);
  color: #fce3a6;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #dfb36c;
  box-shadow: 0 2px 6px rgba(28, 14, 5, 0.2);
}

.author-info h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #22120b;
  margin-bottom: 0.15rem;
}

.author-meta {
  font-size: 0.76rem;
  color: #7a6657;
  line-height: 1.35;
}

/* Final Conversion Banner */
.cta-banner {
  background: linear-gradient(135deg, #24150e 0%, #150c08 100%);
  border-radius: var(--radius-lg);
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 151, 62, 0.3);
  box-shadow: 0 20px 50px rgba(21, 12, 8, 0.4);
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 151, 62, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  color: #fdfbf7;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(253, 251, 247, 0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: #18100c;
  color: #fdfbf7;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(200, 151, 62, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.6fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  color: #fdfbf7;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(253, 251, 247, 0.7);
  font-size: 0.95rem;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-column h4 {
  color: var(--color-accent-gold);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(253, 251, 247, 0.75);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--color-accent-gold);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  color: rgba(253, 251, 247, 0.75);
  font-size: 0.92rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-social-wrapper {
  margin-top: 1.1rem;
}

.footer-social-instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(253, 29, 29, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(253, 29, 29, 0.4);
  color: #ffffff !important;
}

.footer-social-instagram-btn svg {
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(253, 251, 247, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast-item {
  pointer-events: auto;
  min-width: 280px;
  max-width: 400px;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(34, 22, 16, 0.95);
  backdrop-filter: blur(12px);
  color: #fdfbf7;
  border: 1px solid rgba(200, 151, 62, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.toast-item.toast-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
}

.toast-success .toast-icon {
  background: var(--color-success);
  color: #fff;
}

.toast-warning .toast-icon {
  background: #d97706;
  color: #fff;
}

.toast-error .toast-icon {
  background: var(--color-error);
  color: #fff;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split-image-wrapper {
    min-height: 380px;
    max-height: 460px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 1.5rem) / 2); /* 2 cards visible on tablet */
  }

  .testimonial-prev-btn {
    left: -12px;
  }

  .testimonial-next-btn {
    right: -12px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Mobile Trust Stats Strip */
  .trust-stats-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 0.95rem;
    padding: 1.25rem 1.15rem;
    margin-bottom: 2rem;
    border-radius: 12px;
  }

  .trust-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
  }

  .trust-stat-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ebdcc8 20%, #ebdcc8 80%, transparent);
  }

  .trust-stat-stars {
    font-size: 1.1rem;
  }

  .trust-badge-label {
    font-size: 0.92rem;
    font-weight: 700;
  }

  /* Mobile Testimonials Carousel */
  .testimonials-carousel-wrapper {
    position: relative;
    padding-bottom: 3.5rem;
  }

  .testimonials-track-container {
    padding: 0.25rem 0.15rem 0.5rem;
  }

  .testimonial-card {
    flex: 0 0 100%; /* 1 card visible per slide */
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }

  .testimonial-card:hover {
    transform: none;
  }

  .testimonial-quote {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .testimonial-nav-btn {
    top: auto;
    bottom: 0;
    transform: none;
    width: 40px;
    height: 40px;
    box-shadow: 0 3px 10px rgba(36, 16, 3, 0.12);
  }

  .testimonial-nav-btn:hover {
    transform: scale(1.05);
  }

  .testimonial-prev-btn {
    left: calc(50% - 92px);
  }

  .testimonial-next-btn {
    right: calc(50% - 92px);
  }

  .testimonial-dots {
    margin-top: -36px;
    height: 40px;
    position: relative;
    z-index: 5;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-image-wrapper {
    min-height: auto;
    height: clamp(280px, 60vw, 360px);
    max-height: none;
    padding: 8px;
    border-radius: 10px;
    width: 100%;
  }

  .split-image-inner {
    border-radius: 6px;
  }

  .usp-strip {
    padding: 1.25rem 0;
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
  }

  .usp-item {
    padding: 0.7rem 0.6rem !important;
    gap: 0.55rem !important;
    border-radius: 4px !important;
    min-width: 0 !important;
  }

  .usp-icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border-radius: 4px !important;
  }

  .usp-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .usp-text {
    min-width: 0 !important;
  }

  .usp-text h4 {
    font-size: 0.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.1rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .usp-text p {
    font-size: 0.68rem !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-banner {
    padding: 3rem 1.5rem;
  }

  .hero-section-bg {
    min-height: auto;
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: 2.25rem !important;
    background-position: 83% 44% !important;
    background-size: cover !important;
    background-image: 
      linear-gradient(180deg, 
        rgba(16, 10, 6, 0.97) 0%, 
        rgba(16, 10, 6, 0.85) 38%, 
        rgba(16, 10, 6, 0.45) 68%, 
        rgba(16, 10, 6, 0.25) 100%), 
      url('../../../Assets/Images/hero.png') !important;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-split-layout {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-content {
    align-items: center !important;
    text-align: center !important;
    padding-bottom: 0 !important;
    width: 100% !important;
  }

  .hero-title {
    font-size: clamp(2.2rem, 7.8vw, 2.85rem) !important;
    line-height: 1.16 !important;
    text-align: center !important;
    margin-bottom: 0.85rem !important;
  }

  .hero-subtitle {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
    color: #ebd6c0 !important;
    text-align: center !important;
    max-width: 95% !important;
    margin: 0 auto 1.15rem auto !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.6rem !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    flex-wrap: nowrap !important;
  }

  .hero-actions .btn {
    flex: 1 1 50% !important;
    width: auto !important;
    max-width: 175px !important;
    padding: 0.65rem 0.65rem !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
    justify-content: center !important;
    text-align: center !important;
    letter-spacing: 0.01em !important;
  }

  .hero-jar-pod-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0.4rem auto 0 auto !important;
    margin-bottom: 2.25rem !important;
    width: 100% !important;
    max-width: 200px !important;
    transform: none !important;
    position: relative !important;
    z-index: 2;
  }

  .hero-jar-container {
    transform: none !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 180px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
  }

  .hero-pod-jar-img {
    width: 100% !important;
    max-width: 155px !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.95)) drop-shadow(0 2px 3px rgba(0, 0, 0, 0.98)) drop-shadow(0 0 30px rgba(226, 163, 54, 0.35)) !important;
  }

  .hero-trust-row {
    flex-direction: column;
    align-items: flex-start;
  }

  /* About Page Mobile Optimizations */
  .about-hero-section {
    min-height: 85vh;
    padding: calc(var(--header-height) + 1.5rem) 1rem 3.5rem;
    width: 100%;
    max-width: 100%;
  }

  .about-hero-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .about-hero-title {
    font-size: clamp(2.3rem, 8vw, 3.4rem);
  }

  .about-hero-lead {
    font-size: 0.98rem;
    margin-bottom: 2.25rem;
  }

  .about-hero-card {
    padding: 1.25rem 1.15rem;
  }

  .narrative-section {
    padding: 3.5rem 0 4.5rem;
    width: 100%;
    max-width: 100%;
  }

  .narrative-clean-frame {
    padding: 6px;
  }

  .narrative-heading {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .philosophy-card {
    padding: 1.6rem 1.35rem;
  }

  .royal-heritage-frame {
    padding: 8px;
    border-radius: 10px;
  }

  .toast-container {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .toast-item {
    max-width: 100%;
  }
}

/* 10 — FAQ Accordion Component (SEO & Trust) */
.faq-section {
  padding: 5rem 0 5.5rem;
  background-color: var(--color-bg-warm, #fdfbf7);
  border-top: 1px solid rgba(200, 151, 62, 0.18);
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(200, 151, 62, 0.25);
  border-radius: var(--radius-md, 8px);
  padding: 0;
  transition: all var(--transition-normal, 0.25s ease);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(34, 22, 16, 0.03);
}

.faq-item[open] {
  border-color: var(--color-accent-gold, #c8973e);
  box-shadow: 0 6px 20px rgba(200, 151, 62, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--color-primary-dark, #221610);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-accent-gold-dark, #a87620);
  transition: transform 0.25s ease;
  margin-left: 1rem;
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.35rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--color-text-muted, #554433);
  border-top: 1px dashed rgba(200, 151, 62, 0.15);
  margin-top: 0.25rem;
  padding-top: 1rem;
}

.faq-answer p {
  margin: 0;
}