/* ============================================================
   Amrita Theme — Brand Pages CSS
   Covers: About, Sustainability, Ingredients, Contact, FAQ,
           Wholesale
   ============================================================ */

/* ─── Shared Containers ─────────────────────────────────── */
.abo-container,
.sus-container,
.ing-container,
.con-container,
.faq-container,
.ws-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .abo-container,
  .sus-container,
  .ing-container,
  .con-container,
  .faq-container,
  .ws-container {
    padding: 0 20px;
  }
}

/* ─── Shared section label (reused from main.css) ──────── */
.section-label.light {
  color: rgba(248, 243, 236, 0.6);
}

/* ─── About: anchor nav (sits in hero, bottom) ─────────── */
.abo-anchor-nav {
  position: absolute;
  bottom: 32px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.abo-anchor-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 243, 236, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.abo-anchor-link:hover {
  color: var(--p-cream);
}

.abo-anchor-sep {
  color: rgba(248, 243, 236, 0.3);
  font-size: 0.75rem;
}

/* ─── About: chapter section label ─────────────────────── */
.abo-chapter-label {
  padding-top: 80px;
  padding-bottom: 8px;
}

/* smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* offset anchor targets so sticky header doesn't cover them */
#our-story,
#sustainability,
#ingredients {
  scroll-margin-top: 80px;
}

@media (max-width: 768px) {
  .abo-anchor-nav { left: 24px; bottom: 24px; }
}


/* ============================================================
   ABOUT PAGE  (.abo-*)
   ============================================================ */

.abo-wrap { overflow-x: hidden; }

/* Hero */
.abo-hero {
  position: relative;
  height: 90vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.abo-hero-media {
  position: absolute;
  inset: 0;
}

.abo-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.abo-hero:hover .abo-hero-img {
  transform: scale(1);
}

.abo-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 20, 10, 0.85) 0%,
    rgba(30, 20, 10, 0.3) 50%,
    rgba(30, 20, 10, 0.1) 100%
  );
}

.abo-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 60px;
}

.abo-hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--p-cream);
  line-height: 1.12;
  margin: 12px 0 20px;
}

.abo-hero-sub {
  font-size: 1.05rem;
  color: rgba(248, 243, 236, 0.8);
  line-height: 1.7;
  max-width: 480px;
}

/* Section shared */
.abo-section-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--p-brown-1);
  line-height: 1.2;
  margin: 10px 0 24px;
}

/* Story */
.abo-story {
  padding: 100px 0;
  background: var(--p-cream);
}

.abo-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.abo-story-text p {
  color: var(--p-brown-3);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.abo-story-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}

/* Values */
.abo-values {
  padding: 100px 0;
  background: var(--p-linen, #f3ece3);
}

.abo-values-head {
  text-align: center;
  margin-bottom: 60px;
}

.abo-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.abo-value-card {
  background: var(--p-cream);
  padding: 36px 28px;
  border-radius: 2px;
  position: relative;
}

.abo-value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: var(--p-gold);
  opacity: 0.3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.abo-value-card:hover::after {
  transform: scaleX(1);
}

.abo-value-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--p-gold);
}

.abo-value-icon svg {
  width: 100%;
  height: 100%;
}

.abo-value-title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--p-brown-1);
  margin-bottom: 12px;
}

.abo-value-body {
  font-size: 0.88rem;
  color: var(--p-brown-3);
  line-height: 1.75;
}

/* Timeline */
.abo-timeline {
  padding: 100px 0;
  background: var(--p-cream);
}

.abo-timeline-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.abo-timeline-item {
  display: grid;
  grid-template-columns: 80px 40px 1fr;
  align-items: center;
  gap: 0 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--p-linen, #f3ece3);
}

.abo-timeline-year {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--p-gold);
  letter-spacing: 0.02em;
}

.abo-timeline-bar {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--p-gold);
  opacity: 0.4;
  justify-self: center;
}

.abo-timeline-event {
  font-size: 0.95rem;
  color: var(--p-brown-2);
  line-height: 1.65;
}

/* Certifications */
.abo-certs {
  padding: 100px 0;
  background: var(--p-brown-1);
}

.abo-certs .section-label {
  color: rgba(248, 243, 236, 0.5);
}

.abo-certs .abo-section-title {
  color: var(--p-cream);
  text-align: center;
}

.abo-certs-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.abo-cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  border: 1px solid rgba(191, 160, 106, 0.2);
  border-radius: 2px;
  transition: border-color 0.3s ease;
}

.abo-cert-item:hover {
  border-color: rgba(191, 160, 106, 0.5);
}

.abo-cert-badge {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.abo-cert-badge svg {
  width: 100%;
  height: 100%;
}

.abo-cert-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--p-cream);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.abo-cert-detail {
  font-size: 0.78rem;
  color: rgba(248, 243, 236, 0.45);
  line-height: 1.5;
}

/* CTA */
.abo-cta {
  padding: 100px 0;
  background: var(--p-gold);
}

.abo-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.abo-cta .section-label.light {
  color: rgba(255,255,255,0.6);
}

.abo-cta-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}

.abo-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
  border-radius: 1px;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* About responsive */
@media (max-width: 1100px) {
  .abo-values-grid { grid-template-columns: repeat(2, 1fr); }
  .abo-certs-grid  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .abo-hero-content { padding: 0 24px; }
  .abo-story-inner  { grid-template-columns: 1fr; gap: 40px; }
  .abo-values-grid  { grid-template-columns: 1fr; }
  .abo-certs-grid   { grid-template-columns: repeat(2, 1fr); }
  .abo-cta-inner    { flex-direction: column; text-align: center; }
  .abo-cta-btns     { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .abo-timeline-item { grid-template-columns: 60px 24px 1fr; }
}


/* ============================================================
   SUSTAINABILITY PAGE  (.sus-*)
   ============================================================ */

.sus-wrap { overflow-x: hidden; }

/* Hero */
.sus-hero {
  position: relative;
  background: var(--p-brown-1);
  padding: 140px 0 100px;
  text-align: center;
  overflow: hidden;
}

.sus-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(191,160,106,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(191,160,106,0.1) 0%, transparent 45%);
}

.sus-hero-content {
  position: relative;
  z-index: 2;
}

.sus-hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--p-cream);
  line-height: 1.12;
  margin: 12px auto 20px;
  max-width: 700px;
}

.sus-hero-sub {
  font-size: 1.05rem;
  color: rgba(248, 243, 236, 0.7);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* Impact stats */
.sus-impact {
  background: var(--p-cream);
  padding: 64px 0;
  border-bottom: 1px solid var(--p-linen, #f3ece3);
}

.sus-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  divide-x: 1px solid var(--p-linen, #f3ece3);
}

.sus-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--p-linen, #f3ece3);
}

.sus-stat:last-child {
  border-right: none;
}

.sus-stat-num {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--p-brown-1);
  line-height: 1;
  margin-bottom: 10px;
}

.sus-stat-label {
  font-size: 0.82rem;
  color: var(--p-brown-3);
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}

/* Two-column sections */
.sus-section {
  padding: 100px 0;
}

.sus-sourcing { background: var(--p-cream); }
.sus-packaging { background: var(--p-linen, #f3ece3); }
.sus-mfg { background: var(--p-cream); }

.sus-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sus-two-col--rev .sus-col-image { order: 2; }
.sus-two-col--rev .sus-col-text  { order: 1; }

.sus-col-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}

.sus-section-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--p-brown-1);
  line-height: 1.2;
  margin: 10px 0 20px;
}

.sus-col-text p {
  color: var(--p-brown-3);
  line-height: 1.75;
  font-size: 0.97rem;
  margin-bottom: 24px;
}

.sus-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sus-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--p-brown-2);
  line-height: 1.55;
}

.sus-feature-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='7' stroke='%23bfa06a' stroke-width='1.2'/%3E%3Cpath d='M6 9 L8 11 L12 7' stroke='%23bfa06a' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 1px;
}

/* 2030 Pledges */
.sus-pledges {
  padding: 100px 0;
  background: var(--p-brown-1);
}

.sus-pledges .section-label {
  color: rgba(248,243,236,0.5);
}

.sus-pledges .sus-section-title {
  color: var(--p-cream);
  margin-bottom: 52px;
}

.sus-pledge-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sus-pledge-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(248,243,236,0.08);
}

.sus-pledge-year {
  font-family: var(--f-display);
  font-size: 1.35rem;
  color: var(--p-gold);
  font-weight: 300;
}

.sus-pledge-text {
  color: rgba(248,243,236,0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA */
.sus-cta {
  padding: 100px 0;
  background: var(--p-gold);
  text-align: center;
}

.sus-cta-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 16px;
}

.sus-cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* Sustainability responsive */
@media (max-width: 960px) {
  .sus-impact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sus-two-col { grid-template-columns: 1fr; gap: 40px; }
  .sus-two-col--rev .sus-col-image { order: 0; }
  .sus-two-col--rev .sus-col-text  { order: 0; }
  .sus-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .sus-pledge-card { grid-template-columns: 60px 1fr; gap: 16px; }
}


/* ============================================================
   INGREDIENTS LIBRARY  (.ing-*)
   ============================================================ */

.ing-wrap { background: var(--p-cream); }

/* Hero */
.ing-hero {
  padding: 120px 0 60px;
  text-align: center;
}

.ing-hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--p-brown-1);
  line-height: 1.15;
  margin: 10px 0 20px;
}

.ing-hero-sub {
  font-size: 1.05rem;
  color: var(--p-brown-3);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Filters bar */
.ing-filters-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--p-cream);
  border-top: 1px solid var(--p-linen, #f3ece3);
  border-bottom: 1px solid var(--p-linen, #f3ece3);
  padding: 0;
  box-shadow: 0 2px 16px rgba(30,20,10,0.04);
}

.ing-filters-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
}

.ing-type-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.ing-tab {
  display: inline-block;
  padding: 7px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--p-brown-3);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ing-tab:hover {
  border-color: var(--p-gold);
  color: var(--p-brown-1);
}

.ing-tab.is-active {
  background: var(--p-brown-1);
  color: var(--p-cream);
  border-color: var(--p-brown-1);
}

/* Search */
.ing-search-form {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--p-linen, #f3ece3);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.ing-search-input {
  border: none;
  outline: none;
  background: transparent;
  padding: 9px 16px;
  font-size: 0.88rem;
  color: var(--p-brown-1);
  width: 220px;
  font-family: var(--f-body);
}

.ing-search-btn {
  background: transparent;
  border: none;
  border-left: 1px solid var(--p-linen, #f3ece3);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  color: var(--p-brown-3);
  transition: color 0.2s ease;
}

.ing-search-btn svg {
  width: 18px;
  height: 18px;
}

.ing-search-btn:hover {
  color: var(--p-brown-1);
}

/* Grid section */
.ing-grid-section {
  padding: 48px 0 100px;
}

.ing-count {
  font-size: 0.85rem;
  color: var(--p-brown-3);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ing-clear-link {
  font-size: 0.8rem;
  color: var(--p-gold);
  text-decoration: none;
}

.ing-clear-link:hover {
  text-decoration: underline;
}

/* Ingredient cards */
.ing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.ing-card {
  background: #fff;
  border: 1px solid var(--p-linen, #f3ece3);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ing-card:hover {
  box-shadow: 0 8px 32px rgba(30,20,10,0.08);
  transform: translateY(-2px);
}

.ing-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.ing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.ing-card-img--placeholder {
  background: var(--p-linen, #f3ece3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ing-card-img--placeholder svg {
  width: 60px;
  height: 60px;
  opacity: 0.5;
}

.ing-card-body {
  padding: 20px 24px 24px;
}

.ing-card-type {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--p-gold);
  margin-bottom: 8px;
}

.ing-card-name {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--p-brown-1);
  margin-bottom: 4px;
}

.ing-card-latin {
  font-size: 0.85rem;
  color: var(--p-brown-3);
  margin-bottom: 10px;
}

.ing-card-origin {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--p-brown-3);
  margin-bottom: 12px;
}

.ing-card-origin svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.ing-card-benefits {
  font-size: 0.87rem;
  color: var(--p-brown-2);
  line-height: 1.6;
  margin-bottom: 12px;
}

.ing-card-inci {
  font-size: 0.78rem;
  color: var(--p-brown-4, #a0937e);
  padding: 8px 10px;
  background: var(--p-linen, #f3ece3);
  border-radius: 2px;
}

.ing-card-inci code {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
}

/* Empty state */
.ing-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--p-brown-3);
}

.ing-empty svg {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.ing-empty h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--p-brown-1);
  margin-bottom: 10px;
}

.ing-empty a {
  color: var(--p-gold);
  text-decoration: none;
}

@media (max-width: 768px) {
  .ing-filters-inner { flex-direction: column; align-items: stretch; }
  .ing-search-form   { width: 100%; }
  .ing-search-input  { width: 100%; flex: 1; }
  .ing-grid          { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .ing-grid { grid-template-columns: 1fr; gap: 20px; }
  .ing-card-body { padding: 16px 18px 20px; }
  .ing-card-name { font-size: 1rem; }
  .ing-card-type { font-size: 0.7rem; margin-bottom: 6px; }
  .ing-card-latin { font-size: 0.8rem; margin-bottom: 8px; }
  .ing-card-origin { font-size: 0.78rem; margin-bottom: 10px; }
  .ing-card-benefits { font-size: 0.82rem; margin-bottom: 10px; }
  .ing-card-inci { font-size: 0.75rem; padding: 6px 8px; }
}


/* ============================================================
   CONTACT PAGE  (.con-*)
   ============================================================ */

.con-wrap { background: var(--p-cream); }

/* Hero */
.con-hero {
  padding: 120px 0 56px;
  text-align: center;
}

.con-hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--p-brown-1);
  line-height: 1.15;
  margin: 10px 0 18px;
}

.con-hero-sub {
  font-size: 1.05rem;
  color: var(--p-brown-3);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Main layout */
.con-main {
  padding: 0 0 100px;
}

.con-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

/* Info sidebar */
.con-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.con-info-block .section-label {
  margin-bottom: 20px;
  display: block;
}

.con-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.con-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--p-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.con-info-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--p-brown-4, #a0937e);
  margin-bottom: 4px;
}

.con-info-value {
  font-size: 0.92rem;
  color: var(--p-brown-1);
  text-decoration: none;
  line-height: 1.55;
}

a.con-info-value:hover {
  color: var(--p-gold);
}

.con-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.con-hours-table tr td {
  padding: 8px 0;
  border-bottom: 1px solid var(--p-linen, #f3ece3);
  color: var(--p-brown-2);
}

.con-hours-table tr td:last-child {
  text-align: right;
  color: var(--p-brown-3);
}

/* Form */
.con-form-col {}

/* Inquiry type tabs */
.con-type-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}

.con-type-tab {
  position: relative;
}

.con-type-tab input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.con-type-tab span {
  display: block;
  padding: 12px 8px;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--p-linen, #f3ece3);
  border-radius: 2px;
  color: var(--p-brown-3);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.con-type-tab input:checked + span {
  background: var(--p-brown-1);
  color: var(--p-cream);
  border-color: var(--p-brown-1);
}

.con-type-tab:hover span {
  border-color: var(--p-gold);
  color: var(--p-brown-1);
}

/* Fields */
.con-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.con-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.con-field--wholesale {
  /* shown always — company field */
}

.con-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--p-brown-2);
}

.con-label span {
  color: var(--p-gold);
}

.con-input {
  padding: 13px 16px;
  border: 1px solid var(--p-linen, #f3ece3);
  background: #fff;
  color: var(--p-brown-1);
  font-family: var(--f-body);
  font-size: 0.92rem;
  border-radius: 2px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.con-input:focus {
  border-color: var(--p-gold);
  box-shadow: 0 0 0 3px rgba(191,160,106,0.1);
}

.con-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.con-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
}

.con-privacy {
  font-size: 0.78rem;
  color: var(--p-brown-4, #a0937e);
  line-height: 1.5;
}

.con-privacy a {
  color: var(--p-gold);
  text-decoration: none;
}

/* Success state */
.con-success {
  text-align: center;
  padding: 60px 40px;
  border: 1px solid var(--p-linen, #f3ece3);
  border-radius: 2px;
}

.con-success svg {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.con-success h3 {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--p-brown-1);
  margin-bottom: 12px;
}

.con-success p {
  color: var(--p-brown-3);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .con-layout { grid-template-columns: 1fr; gap: 48px; }
  .con-type-tabs { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .con-form-row { grid-template-columns: 1fr; }
  .con-form-footer { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   FAQ PAGE  (.faq-*)
   ============================================================ */

.faq-wrap { background: var(--p-cream); }

/* Hero */
.faq-hero {
  padding: 120px 0 56px;
  text-align: center;
}

.faq-hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--p-brown-1);
  line-height: 1.15;
  margin: 10px 0 18px;
}

.faq-hero-sub {
  font-size: 1.05rem;
  color: var(--p-brown-3);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Tabs bar */
.faq-tabs-bar {
  border-bottom: 1px solid var(--p-linen, #f3ece3);
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--p-cream);
  box-shadow: 0 2px 16px rgba(30,20,10,0.04);
}

.faq-tabs-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.faq-tabs-inner::-webkit-scrollbar { display: none; }

.faq-tab {
  display: inline-block;
  padding: 16px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--p-brown-3);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.faq-tab:hover {
  color: var(--p-brown-1);
}

.faq-tab.is-active {
  color: var(--p-brown-1);
  border-bottom-color: var(--p-gold);
}

/* Content layout */
.faq-content {
  padding: 56px 0 100px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

/* Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--p-linen, #f3ece3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--p-brown-1);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--p-gold);
}

.faq-question[aria-expanded="true"] {
  color: var(--p-gold);
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--p-gold);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 24px;
}

.faq-answer p {
  font-size: 0.93rem;
  color: var(--p-brown-2);
  line-height: 1.75;
}

/* Sidebar */
.faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 80px;
}

.faq-sidebar-card {
  padding: 32px 28px;
  border: 1px solid var(--p-linen, #f3ece3);
  border-radius: 2px;
  text-align: center;
  background: #fff;
}

.faq-sidebar-card--dark {
  background: var(--p-brown-1);
  border-color: var(--p-brown-1);
}

.faq-sidebar-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.faq-sidebar-card h3 {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--p-brown-1);
  margin-bottom: 10px;
}

.faq-sidebar-card--dark h3 {
  color: var(--p-cream);
}

.faq-sidebar-card p {
  font-size: 0.85rem;
  color: var(--p-brown-3);
  line-height: 1.6;
  margin-bottom: 20px;
}

.faq-sidebar-card--dark p {
  color: rgba(248,243,236,0.65);
}

/* Policies */
.faq-policies {
  color: var(--p-brown-2);
}

.faq-policy-title {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--p-brown-1);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--p-linen, #f3ece3);
}

.faq-policy-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.faq-policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.65;
}

.faq-policy-list li::before {
  content: '—';
  color: var(--p-gold);
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
}

@media (max-width: 600px) {
  .faq-tab { padding: 14px 12px; font-size: 0.72rem; }
}


/* ============================================================
   WHOLESALE PAGE  (.ws-*)
   ============================================================ */

.ws-wrap { background: var(--p-cream); overflow-x: hidden; }

/* Guest hero */
.ws-hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}

.ws-hero--guest {
  background: var(--p-brown-1);
}

.ws-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(191,160,106,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(248,243,236,0.05) 0%, transparent 50%);
}

.ws-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.ws-hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--p-cream);
  line-height: 1.1;
  margin: 12px 0 20px;
}

.ws-hero-sub {
  font-size: 1.05rem;
  color: rgba(248,243,236,0.75);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}

.ws-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Benefits section */
.ws-benefits {
  padding: 100px 0;
  background: var(--p-cream);
}

.ws-section-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--p-brown-1);
  line-height: 1.2;
  margin: 10px 0 48px;
}

.ws-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ws-benefit-card {
  padding: 32px 28px;
  border: 1px solid var(--p-linen, #f3ece3);
  border-radius: 2px;
  transition: box-shadow 0.3s ease;
}

.ws-benefit-card:hover {
  box-shadow: 0 4px 20px rgba(30,20,10,0.06);
}

.ws-benefit-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.ws-benefit-card h3 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--p-brown-1);
  margin-bottom: 10px;
}

.ws-benefit-card p {
  font-size: 0.88rem;
  color: var(--p-brown-3);
  line-height: 1.7;
}

/* Tiers */
.ws-tiers {
  padding: 100px 0;
  background: var(--p-linen, #f3ece3);
}

.ws-tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}

.ws-tier-card {
  padding: 44px 40px;
  background: #fff;
  border: 1px solid var(--p-linen, #f3ece3);
  border-radius: 2px;
}

.ws-tier-card--premium {
  background: var(--p-brown-1);
  border-color: var(--p-brown-1);
}

.ws-tier-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--p-gold);
  margin-bottom: 12px;
}

.ws-tier-discount {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--p-brown-1);
  margin-bottom: 28px;
}

.ws-tier-card--premium .ws-tier-discount {
  color: var(--p-cream);
}

.ws-tier-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ws-tier-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--p-brown-2);
  line-height: 1.5;
}

.ws-tier-card--premium .ws-tier-list li {
  color: rgba(248,243,236,0.8);
}

.ws-tier-list li::before {
  content: '✓';
  color: var(--p-gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.ws-tier-note {
  font-size: 0.83rem;
  color: var(--p-brown-4, #a0937e);
  text-align: center;
  line-height: 1.55;
}

/* Apply CTA */
.ws-apply-cta {
  padding: 100px 0;
  background: var(--p-brown-1);
}

.ws-apply-inner {
  text-align: center;
}

.ws-apply-inner h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--p-cream);
  margin-bottom: 16px;
}

.ws-apply-inner p {
  font-size: 0.97rem;
  color: rgba(248,243,236,0.7);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* Pending state */
.ws-pending {
  padding: 140px 0 100px;
  background: var(--p-cream);
  text-align: center;
}

.ws-pending-inner {
  max-width: 540px;
  margin: 0 auto;
}

.ws-pending-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
}

.ws-pending-icon svg {
  width: 100%;
  height: 100%;
}

.ws-pending-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--p-brown-1);
  line-height: 1.2;
  margin: 12px 0 20px;
}

.ws-pending-sub {
  font-size: 0.97rem;
  color: var(--p-brown-3);
  line-height: 1.7;
  margin-bottom: 14px;
}

.ws-pending-sub a {
  color: var(--p-gold);
  text-decoration: none;
}

/* Dashboard */
.ws-dash-hero {
  background: var(--p-brown-1);
  padding: 80px 0 60px;
}

.ws-dash-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--p-cream);
  margin: 8px 0 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ws-premium-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--p-gold);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  font-family: var(--f-body);
  font-weight: 500;
}

.ws-dash-sub {
  font-size: 0.95rem;
  color: rgba(248,243,236,0.65);
  line-height: 1.65;
}

.ws-dash-layout {
  padding: 56px 40px 100px;
}

.ws-dash-section {
  margin-bottom: 56px;
}

.ws-dash-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ws-dash-section-title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--p-brown-1);
  margin-bottom: 20px;
}

.ws-see-all {
  font-size: 0.82rem;
  color: var(--p-gold);
  text-decoration: none;
}

/* Quick actions */
.ws-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ws-quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  border: 1px solid var(--p-linen, #f3ece3);
  border-radius: 2px;
  text-decoration: none;
  color: var(--p-brown-1);
  background: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.ws-quick-card svg {
  width: 28px;
  height: 28px;
  color: var(--p-gold);
}

.ws-quick-card:hover {
  box-shadow: 0 4px 20px rgba(30,20,10,0.08);
  border-color: var(--p-gold);
}

/* Account strip */
.ws-account-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--p-linen, #f3ece3);
  border-radius: 2px;
  background: #fff;
  overflow: hidden;
}

.ws-account-info-item {
  padding: 24px 28px;
  border-right: 1px solid var(--p-linen, #f3ece3);
}

.ws-account-info-item:last-child {
  border-right: none;
}

.ws-account-info-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--p-brown-4, #a0937e);
  margin-bottom: 6px;
}

.ws-account-info-value {
  display: block;
  font-size: 0.92rem;
  color: var(--p-brown-1);
  font-weight: 500;
}

/* Wholesale orders list */
.ws-orders-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--p-linen, #f3ece3);
  border-radius: 2px;
  background: #fff;
  overflow: hidden;
}

.ws-order-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--p-linen, #f3ece3);
}

.ws-order-row:last-child {
  border-bottom: none;
}

.ws-order-num {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--p-brown-1);
}

.ws-order-date {
  font-size: 0.8rem;
  color: var(--p-brown-4, #a0937e);
  margin-top: 3px;
}

.ws-order-status {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  background: var(--p-linen, #f3ece3);
  color: var(--p-brown-2);
}

.ws-order-status.status-completed { background: #e6f4ea; color: #2d6a4f; }
.ws-order-status.status-processing { background: #e8f0fe; color: #1a56db; }
.ws-order-status.status-pending { background: #fff8e1; color: #b45309; }

.ws-order-total {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--p-brown-1);
}

.ws-order-link {
  font-size: 0.82rem;
  color: var(--p-gold);
  text-decoration: none;
}

/* Apply form state */
.ws-apply-section {
  padding: 80px 0 100px;
}

.ws-apply-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.ws-apply-intro p {
  font-size: 0.93rem;
  color: var(--p-brown-3);
  line-height: 1.7;
  margin-bottom: 12px;
}

.ws-apply-form {
  /* reuses .con-* form styles */
}

/* Wholesale responsive */
@media (max-width: 1100px) {
  .ws-quick-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-account-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .ws-benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-tier-grid { grid-template-columns: 1fr; }
  .ws-apply-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .ws-benefit-grid { grid-template-columns: 1fr; }
  .ws-quick-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-account-strip { grid-template-columns: 1fr 1fr; }
  .ws-order-row { grid-template-columns: 1fr auto; }
  .ws-order-row .ws-order-status,
  .ws-order-row .ws-order-total { display: none; }
  .ws-dash-layout { padding: 40px 20px 60px; }
}

@media (max-width: 480px) {
  .ws-quick-grid { grid-template-columns: 1fr 1fr; }
  .ws-account-strip { grid-template-columns: 1fr; }
  .ws-account-info-item { border-right: none; }
}

/* ═══════════════════════════════════════════════════════
   480px MOBILE PASS — all pages
═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* ── About page ── */
  .abo-hero { min-height: 60vh; }
  .abo-hero-title { font-size: clamp(32px, 9vw, 48px); }
  .abo-story { gap: 32px; }
  .abo-story-text p { font-size: 14px; }
  .abo-values-grid { grid-template-columns: 1fr; gap: 16px; }
  .abo-timeline { gap: 24px; }
  .abo-timeline-year { font-size: 11px; }
  .abo-timeline-dot { width: 8px; height: 8px; }
  .abo-certs-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .abo-cert-item { padding: 16px 12px; }
  .abo-anchor-nav { left: 12px; gap: 6px; }
  .abo-anchor-btn { padding: 6px 12px; font-size: 9px; }

  /* ── Sustainability page ── */
  .sus-impact-grid { grid-template-columns: 1fr; gap: 16px; }
  .sus-two-col { gap: 28px; }
  .sus-section { padding: 52px 16px; }
  .sus-impact-number { font-size: clamp(36px, 10vw, 52px); }

  /* ── Contact page ── */
  .con-layout { gap: 32px; }
  .con-type-tabs { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .con-type-tab { padding: 14px 10px; font-size: 10px; gap: 8px; }
  .con-type-tab svg { width: 18px; height: 18px; }
  .con-info-block { gap: 28px; }
  .con-hours-table { font-size: 12px; }
  .con-hours-table td, .con-hours-table th { padding: 8px 6px; }
  .con-form-row { gap: 14px; }

  /* ── FAQ page ── */
  .faq-layout { gap: 32px; }
  .faq-sidebar-card { padding: 20px 16px; }
  .faq-sidebar-title { font-size: 16px; }
  .faq-accordion-question { padding: 16px 14px; font-size: 14px; }
  .faq-accordion-answer { padding: 0 14px 16px; font-size: 13px; }
  .faq-tabs-inner { gap: 6px; }
  .faq-tab { padding: 7px 14px; font-size: 10px; }

  /* ── Wholesale page ── */
  .ws-hero-title { font-size: clamp(32px, 9vw, 48px); }
  .ws-apply-layout { gap: 28px; }
  .ws-tier-card { padding: 24px 18px; }
  .ws-tier-price { font-size: clamp(28px, 7vw, 40px); }
  .ws-benefit-item { padding: 20px 16px; gap: 14px; }
  .ws-quick-grid { gap: 10px; }
  .ws-quick-card { padding: 16px 12px; }
  .ws-dash-layout { padding: 32px 14px 48px; }
  .ws-order-row { padding: 14px 12px; gap: 8px; }

  /* ── Ingredients page ── */
  .ing-filters-bar { padding: 14px 12px; gap: 10px; }
  .ing-type-tabs { gap: 6px; }
  .ing-type-tab { padding: 7px 14px; font-size: 10px; }
  .ing-search-input { height: 40px; font-size: 13px; padding: 0 14px; }
  .ing-grid { gap: 14px; }

  /* ── Our Story page ── */
  .os-hero { min-height: 55vh; }
  .os-section { gap: 28px; padding: 52px 16px; }
  .os-ing-header { gap: 16px; }

  /* ── General page wrapper padding ── */
  .page-wrap,
  .amrita-page-wrap { padding-top: 80px; padding-left: 16px; padding-right: 16px; }
  .section-label { font-size: 8px; }
}
