:root {
  --starbucks-green: #00704A;
  --starbucks-green-dark: #005A3C;
  --starbucks-green-soft: #E7F4EF;
  --text-dark: #17271f;
  --text-muted: #53625b;
  --surface: #ffffff;
  --surface-alt: #f6faf8;
  --border: #dce9e3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand span {
  color: var(--starbucks-green);
}

.brand-name {
  color: var(--starbucks-green);
  font-weight: 800;
  letter-spacing: 0.1px;
}

.brand em {
  font-style: normal;
  color: var(--starbucks-green);
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  color: var(--text-muted);
}

nav a:hover {
  color: var(--starbucks-green);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background: var(--starbucks-green);
  color: #fff;
  border: 2px solid var(--starbucks-green);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--starbucks-green-dark);
  border-color: var(--starbucks-green-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--starbucks-green);
}

.btn-outline:hover {
  color: #fff;
}

.btn-sm {
  padding: 8px 14px;
}

.hero {
  position: relative;
  background: linear-gradient(125deg, #fbf7ef 0%, #f4f9f6 42%, #eaf6f1 100%);
  padding: 78px 0 56px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 340px;
  height: 340px;
  right: -110px;
  top: -120px;
  background: rgba(0, 112, 74, 0.12);
}

.hero::after {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: -90px;
  background: rgba(245, 195, 64, 0.14);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 30px;
  align-items: center;
}

.hero-banner {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 0;
  background: #0e231a;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease;
  filter: saturate(1.05);
}

.hero-slide.active {
  opacity: 1;
  animation: heroZoom 7s ease both;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(92deg, rgba(5, 17, 12, 0.36) 0%, rgba(5, 17, 12, 0.2) 34%, rgba(5, 17, 12, 0.08) 62%, rgba(5, 17, 12, 0.18) 100%);
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: min(1120px, 92%);
  display: flex;
  justify-content: flex-start;
}

.hero-content {
  max-width: 620px;
  color: #fff;
  background: linear-gradient(135deg, rgba(8, 24, 16, 0.62), rgba(8, 24, 16, 0.34));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 28px 24px;
  backdrop-filter: blur(5px);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.28);
}

.clean-hero-content {
  max-width: 700px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  user-select: none;
  -webkit-user-select: none;
}

.clean-hero-content h1 {
  font-size: clamp(1.8rem, 4.1vw, 3.15rem);
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.16;
  max-width: 22ch;
  margin: 0;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.34);
}

.clean-hero-content .hero-kicker {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.clean-hero-content .hero-text {
  font-size: 1.16rem;
  max-width: 780px;
}

.clean-hero-content .trust-badges {
  font-size: 1.02rem;
}

.hero-kicker {
  color: #e7f7ef;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  margin: 0 0 12px;
}

.hero-text-light {
  color: #edf6f1;
}

.trust-badges-light {
  color: #e2f0e9;
}

.btn-light-outline {
  color: #ffffff;
  border-color: #d6f2e7;
}

.btn-light-outline:hover {
  background: #ffffff;
  color: var(--starbucks-green-dark);
  border-color: #ffffff;
}

.hero-mini-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-mini-pills span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #f2fbf7;
  border-radius: 999px;
  font-size: 0.82rem;
  padding: 6px 12px;
}

.hero-scroll-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(4, 14, 10, 0.62), rgba(4, 14, 10, 0.06));
  padding: 10px 0;
  overflow: hidden;
}

.hero-scroll-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: heroMarquee 26s linear infinite;
}

.hero-scroll-track img {
  width: 160px;
  height: 78px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

@keyframes heroMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.eyebrow {
  color: var(--starbucks-green);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 0.84rem;
  margin-bottom: 10px;
}

h1, h2, h3 {
  line-height: 1.2;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.hero-text,
.section-intro {
  color: var(--text-muted);
  max-width: 780px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.trust-badges {
  margin-top: 8px;
  color: #325546;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-wrap {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 22px 42px rgba(20, 44, 34, 0.12);
}

.hero-image-wrap img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.hero-float-badge {
  position: absolute;
  top: 14px;
  right: -16px;
  background: #fff;
  color: var(--starbucks-green-dark);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 8px 14px;
  box-shadow: 0 10px 24px rgba(20, 44, 34, 0.1);
}

.hero-float-badge.alt {
  top: auto;
  right: auto;
  left: -16px;
  bottom: 18px;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 36px rgba(20, 44, 34, 0.08);
}

.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}

.hero-card li:last-child {
  border-bottom: none;
}

.stats {
  background: linear-gradient(135deg, #008b5d, #00704a);
  color: #fff;
  padding: 32px 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-grid article {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 12px 10px;
  backdrop-filter: blur(2px);
}

.stat-grid h2 {
  margin: 0;
  font-size: 1.8rem;
}

.stat-grid p {
  margin: 6px 0 0;
  opacity: 0.95;
}

.section {
  padding: 68px 0;
}

.section.alt {
  background: var(--surface-alt);
}

#products.section.alt {
  background: linear-gradient(180deg, #ffffff 0%, #f3fbf7 52%, #ecf8f2 100%);
  padding-top: 54px;
  padding-bottom: 60px;
}

#certifications.section.alt {
  background: #ffffff;
  padding-top: 52px;
  padding-bottom: 34px;
}

.about-cards {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-top-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: center;
}

.about-visual-card {
  background: linear-gradient(145deg, #ffffff, #f2fbf6);
  border: 1px solid #d3e7dc;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 18px 30px rgba(9, 40, 27, 0.1);
}

.about-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  min-height: 290px;
}

.about-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.about-mini-stats span {
  background: #ffffff;
  border: 1px solid #cce2d6;
  color: #1b4b38;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 6px 12px rgba(9, 40, 27, 0.06);
}

.about-cards article,
.product-card,
.timeline article,
.cert-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}

.about-cards article {
  background: linear-gradient(180deg, #ffffff, #f7fcf9);
  border: 1px solid #d6e8df;
  box-shadow: 0 10px 18px rgba(7, 42, 27, 0.06);
  padding: 18px;
}

.about-cards article h3 {
  color: #144532;
}

.mission-block {
  margin-top: 28px;
  background: var(--starbucks-green-soft);
  border-left: 5px solid var(--starbucks-green);
  border-radius: 14px;
  padding: 22px 24px;
}

.about-feature-band {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-feature-band article {
  background: linear-gradient(145deg, #0f8b5f, #08754f);
  color: #e7f8f0;
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 16px 26px rgba(5, 67, 43, 0.22);
}

.about-feature-band article h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.03rem;
}

.about-feature-band article p {
  margin: 0;
  color: #ddf6ea;
  font-size: 0.92rem;
}

.product-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.product-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.product-link {
  display: block;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
}

.product-card-content {
  padding-top: 16px;
}

.product-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.products-toolbar {
  margin-top: 12px;
}

.products-toolbar input {
  width: min(500px, 100%);
  border-radius: 999px;
  border: 1px solid #b6d6c8;
  padding: 12px 18px;
  font-size: 0.95rem;
  background: #fff;
  box-shadow: 0 8px 14px rgba(10, 42, 28, 0.06);
}

.products-toolbar input::placeholder {
  color: #6b8278;
}

.product-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.category-section {
  margin-top: 20px;
}

.category-heading {
  background: linear-gradient(180deg, #fbfffd, #f0fbf5);
  border: 1px solid #cfe5da;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 10px 18px rgba(10, 44, 28, 0.06);
}

.category-heading h3 {
  margin: 0 0 3px;
  color: #154231;
  font-size: 1.3rem;
}

.category-heading p {
  margin: 0;
  color: #557065;
}

.category-chip {
  border: 1px solid #bed9cc;
  background: #fff;
  color: #1f4c39;
  border-radius: 999px;
  padding: 10px 18px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: 0 6px 12px rgba(10, 44, 28, 0.05);
}

.category-chip:hover,
.category-chip.active {
  background: linear-gradient(135deg, #00a873, #00704a);
  color: #fff;
  border-color: #00704a;
  box-shadow: 0 10px 18px rgba(0, 112, 74, 0.26);
}

.product-badge {
  display: inline-block;
  background: #e9f5f0;
  color: #185239;
  border: 1px solid #c9e3d7;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.detail-badge {
  margin-bottom: 8px;
}

.detail-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--starbucks-green);
  font-weight: 600;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(12, 34, 25, 0.14);
}

.product-card.category-vegetable-powder {
  border-top: none;
}

.product-card.category-fruit-powder {
  border-top: none;
}

.product-card.category-nut-and-seed {
  border-top: none;
}

.product-card.category-spice-powder {
  border-top: none;
}

.category-section.category-vegetable-powder .category-heading {
  border-left: 6px solid #20a56a;
}

.category-section.category-fruit-powder .category-heading {
  border-left: 6px solid #e6527d;
}

.category-section.category-nut-and-seed .category-heading {
  border-left: 6px solid #b48742;
}

.category-section.category-spice-powder .category-heading {
  border-left: 6px solid #e87a2f;
}

.section-intro {
  color: #4a655a;
}

.back-link {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--starbucks-green);
  font-weight: 600;
}

.product-details {
  margin-top: 12px;
}

.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.product-image-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
}

.product-image-wrap img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.product-tag {
  color: var(--starbucks-green);
  font-weight: 600;
}

.detail-list {
  padding-left: 20px;
  color: var(--text-muted);
}

.product-feature-strip {
  margin: 16px 0 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-feature-strip article {
  background: linear-gradient(145deg, #ffffff, #f2fbf6);
  border: 1px solid #cfe4d8;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 8px 14px rgba(8, 33, 22, 0.07);
}

.product-feature-strip h4 {
  margin: 0 0 4px;
  color: #14523a;
  font-size: 0.95rem;
}

.product-feature-strip p {
  margin: 0;
  color: #4f6b5f;
  font-size: 0.82rem;
  line-height: 1.4;
}

.detail-table-wrap {
  margin-top: 14px;
}

.benefit-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.benefit-card {
  background: linear-gradient(160deg, #ffffff, #f3fbf7);
  border: 1px solid #cfe4d8;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 10px 18px rgba(8, 33, 22, 0.08);
}

.benefit-card-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(140deg, #0f8b5f, #08754f);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-card h4 {
  margin: 0 0 6px;
  color: #14533b;
  font-size: 1rem;
}

.benefit-card p {
  margin: 0;
  color: #4f6a5f;
  font-size: 0.9rem;
  line-height: 1.45;
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid #d3e7dc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(8, 33, 22, 0.08);
}

.detail-table th,
.detail-table td {
  border: 1px solid #e0ede7;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  font-size: 0.92rem;
}

.detail-table th {
  background: #e9f6f0;
  color: #15513a;
  font-weight: 700;
}

.detail-table tr:nth-child(even) td {
  background: #f9fdfb;
}

.spec-table td:first-child {
  width: 34%;
  font-weight: 600;
  color: #16543c;
  background: #f2faf6;
}

.product-faq-block {
  margin-top: 16px;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #d7e8df;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 8px 14px rgba(8, 33, 22, 0.06);
}

.faq-item h4 {
  margin: 0 0 6px;
  color: #154231;
  font-size: 0.98rem;
}

.faq-item p {
  margin: 0;
  color: #4c675c;
  font-size: 0.9rem;
  line-height: 1.45;
}

.product-sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: flex;
  gap: 8px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #cfe2d8;
  box-shadow: 0 14px 24px rgba(8, 33, 22, 0.2);
}

.timeline {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.process-highlights span {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #cfe5d9;
  border-radius: 999px;
  padding: 8px 12px;
  color: #14553b;
  font-weight: 600;
  font-size: 0.83rem;
  box-shadow: 0 7px 14px rgba(8, 33, 22, 0.06);
}

.timeline article {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #f5fbf8 100%);
  border: 1px solid #d3e7dc;
  border-radius: 18px;
  box-shadow: 0 14px 24px rgba(8, 33, 22, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.timeline article:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(8, 33, 22, 0.14);
}

.timeline article:nth-child(2),
.timeline article:nth-child(5) {
  background: linear-gradient(160deg, #ffffff 0%, #eef9f3 100%);
}

.timeline article:nth-child(3),
.timeline article:nth-child(6) {
  background: linear-gradient(160deg, #ffffff 0%, #f7fcf9 100%);
}

.process-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.process-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #0f8b5f, #08754f);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: 0 8px 14px rgba(7, 69, 45, 0.3);
}

.timeline h3 {
  margin: 0;
  color: #14513a;
}

.timeline article p {
  margin: 0;
  color: #4b665b;
  font-size: 0.96rem;
  line-height: 1.5;
}

.certificate-grid {
  margin-top: 16px;
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 2px;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.certificate-grid::-webkit-scrollbar {
  display: none;
}

.certificate-card {
  flex: 0 0 220px;
  display: block;
  background: #fff;
  border: 1px solid #d7e7df;
  border-radius: 18px;
  padding: 12px 10px;
  text-align: center;
  box-shadow: 0 14px 28px rgba(8, 33, 22, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 34px rgba(8, 33, 22, 0.12);
}

.certificate-card img {
  width: 188px;
  height: 146px;
  object-fit: contain;
  margin-bottom: 8px;
  transform: scale(1.14);
  filter: none;
}

.certificate-card img[alt="Kosher Certified"] {
  transform: scale(0.92);
}

.certificate-card img[alt="Halal Compliance"] {
  transform: scale(0.9);
}

.certificate-card img[alt="USDA Organic"] {
  transform: scale(1.24);
}

.certificate-card h3 {
  margin: 0;
  font-size: 1rem;
  color: #1b4f39;
}

.certificate-card.is-clone {
  pointer-events: none;
}

.contact-section {
  background: #ffffff;
}

.owner-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  box-shadow: 0 18px 32px rgba(12, 34, 25, 0.08);
}

.owner-photo-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d7e8e1;
}

.owner-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.owner-kicker {
  margin: 0 0 4px;
  color: var(--starbucks-green);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.owner-meta {
  margin: 0 0 10px;
  color: #355a49;
  font-size: 0.9rem;
}

.owner-text {
  margin: 0;
  color: var(--text-muted);
}

.owner-card-large {
  border: 1px solid #cfe3d8;
  border-left: 6px solid #0e8b5f;
  box-shadow: 0 18px 30px rgba(8, 33, 22, 0.1);
}

.owner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px;
}

.owner-tags span {
  display: inline-block;
  background: #e9f6f0;
  color: #146042;
  border: 1px solid #c7e4d6;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.owner-card-large .owner-text {
  line-height: 1.45;
}

.owner-card-large .owner-text + .owner-text {
  margin-top: 10px;
}

.owner-highlight {
  color: #0f6f4b;
  font-weight: 700;
}

.owner-callout {
  margin: 12px 0 0;
  background: #f1faf5;
  border: 1px solid #d0e7dc;
  border-radius: 12px;
  padding: 10px 12px;
  color: #1b4f39;
  font-weight: 600;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}

.contact-info-card h4 {
  margin: 0 0 8px;
  color: #144531;
}

.contact-info-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-form-wrap {
  background: linear-gradient(160deg, #ffffff, #f7fcf9);
  border: 1px solid #d6e8df;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 36px rgba(12, 34, 25, 0.1);
}

.form-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.form-head h3 {
  margin: 0;
}

.form-head p {
  margin: 2px 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.contact-form {
  margin-top: 8px;
}

.inquiry-section {
  background: linear-gradient(180deg, #f8fcfa 0%, #eef8f3 100%);
}

.inquiry-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.inquiry-benefits {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inquiry-benefits span {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: #1b4f39;
  border: 1px solid #cfe4d8;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 6px 12px rgba(8, 33, 22, 0.06);
}

.inquiry-visual-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #d4e7dc;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 16px 28px rgba(8, 33, 22, 0.12);
  overflow: hidden;
}

.inquiry-visual-card img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.inquiry-visual-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  background: rgba(6, 34, 23, 0.7);
  color: #e8f6f0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  padding: 12px 14px;
  backdrop-filter: blur(6px);
}

.inquiry-visual-overlay h3 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 1rem;
}

.inquiry-visual-overlay p {
  margin: 0;
  font-size: 0.88rem;
}

.inquiry-feature-card {
  background: linear-gradient(130deg, #0e6f4b, #0a5c3f);
  border-radius: 18px;
  padding: 18px 20px;
  color: #e8f7f0;
  box-shadow: 0 18px 30px rgba(10, 58, 39, 0.24);
}

.inquiry-feature-card h3 {
  margin: 0 0 10px;
  color: #fff;
}

.inquiry-feature-card ul {
  margin: 0;
  padding-left: 18px;
}

.inquiry-feature-card li {
  margin-bottom: 8px;
}

.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
}

.required-mark {
  color: #c43b2f;
  font-weight: 700;
}

.phone-input-group {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.phone-code-wrapper {
  position: relative;
  width: 28%;
  flex-shrink: 0;
  max-width: 120px;
}

.phone-code-wrapper .phone-code-select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

.phone-code-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  border: 1px solid #cfe0d8;
  border-radius: 8px;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  margin-top: 0;
}

.phone-code-trigger:hover,
.phone-code-trigger:focus {
  border-color: var(--starbucks-green);
  outline: 2px solid #98d0ba;
}

.phone-code-display {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.85rem;
}

.phone-code-arrow {
  flex-shrink: 0;
  margin-left: 4px;
  font-size: 0.55rem;
  color: #5a7a6d;
}

.phone-code-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  width: max-content;
  margin-top: 4px;
  background: #fff;
  border: 1px solid #cfe0d8;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(8, 33, 22, 0.15);
  z-index: 100;
  overflow: hidden;
}

.phone-code-search {
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-bottom: 1px solid #d6e8df;
  border-radius: 0;
  font: inherit;
  margin: 0;
  box-sizing: border-box;
}

.phone-code-search:focus {
  outline: none;
  border-bottom-color: var(--starbucks-green);
}

.phone-code-list {
  max-height: 260px;
  overflow-y: auto;
  overflow-x: hidden;
}

.phone-code-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.phone-code-option .phone-code-left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 500;
}

.phone-code-option .phone-code-right {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0e6b4a;
  flex-shrink: 0;
}

.phone-code-option:hover {
  background: #e9f6f0;
}

.phone-code-no-match {
  padding: 14px 12px;
  color: #6b8178;
  font-size: 0.9rem;
}

.wa-flow-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 26, 18, 0.5);
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.wa-flow-modal {
  width: min(520px, 96vw);
  background: #fff;
  border: 1px solid #cfe2d8;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 20px 34px rgba(8, 33, 22, 0.24);
}

.wa-flow-modal h3 {
  margin: 0 0 4px;
  color: #134734;
}

.wa-flow-modal p {
  margin: 0 0 10px;
  color: #4f6b5f;
}

.wa-flow-modal label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

.wa-qty-group {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.wa-qty-group input {
  flex: 1;
  min-width: 0;
}

.wa-qty-group select {
  width: 92px;
}

.wa-flow-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.phone-input-group .phone-code-select {
  width: 28%;
  margin-top: 0;
}

.phone-input-group input[type="tel"] {
  flex: 1;
  min-width: 0;
  margin-top: 0;
}

.quantity-input-group {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.quantity-input-group input[name="quantity"] {
  flex: 1;
  min-width: 0;
  margin-top: 0;
}

.quantity-input-group select[name="quantity_uom"] {
  width: 92px;
  margin-top: 0;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid #cfe0d8;
  border-radius: 10px;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #98d0ba;
  border-color: var(--starbucks-green);
}

.site-footer {
  background: #00704a;
  color: #d8e9e1;
  padding: 34px 0 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.footer-col h4 {
  margin: 0 0 10px;
  color: #ffffff;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 8px;
  color: #deeee7;
  font-size: 0.94rem;
}

.footer-col a:hover {
  color: #9dd9c1;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #e8f6f0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  padding: 0;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.social-icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.24);
}

.footer-socials a:nth-child(1) {
  background: linear-gradient(135deg, #fd5949, #d6249f, #285aeb);
  border-color: rgba(255, 255, 255, 0.45);
}

.footer-socials a:nth-child(2) {
  background: #0a66c2;
  border-color: rgba(255, 255, 255, 0.45);
}

.footer-socials a:nth-child(3) {
  background: #25d366;
  border-color: rgba(255, 255, 255, 0.45);
}

.footer-socials a:nth-child(4) {
  background: #1877f2;
  border-color: rgba(255, 255, 255, 0.45);
}

.footer-socials a:nth-child(5) {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.45);
}

.footer-subhead {
  margin-top: 6px;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #bed7cc;
  font-size: 0.88rem;
}

.about-page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("assets/about-hero-femiaura-pro.png") center/cover no-repeat;
}

.about-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(8, 18, 14, 0.3), rgba(8, 18, 14, 0.22));
}

.about-page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
}

.about-page-hero-content h1 {
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  margin-bottom: 10px;
}

.about-page-hero-content p {
  margin: 0;
  color: #e7f4ef;
}

.owner-page-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.header-on-hero .site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
}

.header-on-hero .brand span,
.header-on-hero nav a {
  color: #184835;
}

.header-on-hero nav a:hover {
  color: var(--starbucks-green);
}

.header-on-hero .btn-sm {
  border-color: var(--starbucks-green);
  background: var(--starbucks-green);
  color: #fff;
}

.owner-shell-wrap {
  padding-top: 0;
}

.owner-shell {
  margin-top: -56px;
  position: relative;
  z-index: 3;
  background: linear-gradient(180deg, #ffffff, #f9fdfa);
  border-radius: 36px;
  padding: 34px;
  border: 1px solid #d8e8e0;
  box-shadow: 0 26px 42px rgba(10, 34, 24, 0.12);
}

.director-carousel-wrap {
  margin-top: 24px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.director-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.director-carousel::-webkit-scrollbar {
  display: none;
}

.director-slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.owner-card-large {
  grid-template-columns: 380px 1fr;
  align-items: start;
  padding: 28px;
  background: linear-gradient(135deg, #ffffff, #f7fcf9);
  min-height: 520px;
}

.owner-card-no-photo {
  grid-template-columns: 1fr;
}

.owner-photo-xl {
  height: 460px;
  min-height: 460px;
}

.owner-photo-tall {
  height: 320px;
}

.director-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 16px;
}

.director-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--starbucks-green);
  background: #fff;
  color: var(--starbucks-green);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.director-nav-btn:hover {
  background: var(--starbucks-green);
  color: #fff;
  transform: scale(1.06);
}

.director-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.director-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c7e4d6;
  border: 2px solid #9ed4bf;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  margin: 0;
}

.director-dots button.dot {
  font-size: 0;
  overflow: hidden;
}

.director-dots .dot.active {
  background: var(--starbucks-green);
  border-color: #0a5c3d;
  transform: scale(1.2);
}

.owner-photo-safe img {
  object-position: center 12%;
}

.owner-points {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #48655a;
}

.owner-points li {
  margin-bottom: 6px;
}

.leadership-kpis {
  margin: 16px 0 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.leadership-kpis article {
  background: linear-gradient(140deg, #0e8d60, #09724d);
  border-radius: 14px;
  padding: 14px;
  color: #e6f8ef;
  box-shadow: 0 14px 24px rgba(7, 69, 45, 0.22);
}

.leadership-kpis h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 1.1rem;
}

.leadership-kpis p {
  margin: 0;
  font-size: 0.9rem;
  color: #ddf5ea;
}

.about-pillars {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-pillars article,
.why-grid article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 28px rgba(12, 34, 25, 0.07);
}

.about-pillars article h3,
.why-grid article h3 {
  color: #154231;
}

.why-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-wrap p {
  margin: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .hero-grid,
  .inquiry-grid,
  .product-details-grid {
    grid-template-columns: 1fr;
  }

  .owner-card {
    grid-template-columns: 1fr;
  }

  .owner-card-large,
  .about-pillars,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .leadership-kpis {
    grid-template-columns: 1fr;
  }

  .owner-card-large {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .owner-photo-xl {
    height: 340px;
    min-height: 340px;
  }

  .owner-shell {
    margin-top: -40px;
    padding: 20px;
  }

  .hero-float-badge {
    right: 8px;
  }

  .hero-float-badge.alt {
    left: 8px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-top-grid {
    grid-template-columns: 1fr;
  }

  .about-feature-band {
    grid-template-columns: 1fr;
  }

  .certificate-grid { gap: 12px; }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .product-feature-strip {
    grid-template-columns: 1fr;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .benefit-cards-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-banner {
    min-height: 82vh;
  }

  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  nav {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 64px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav.open {
    display: flex;
  }

  .btn-sm {
    display: none;
  }

  .about-cards,
  .product-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .certificate-grid { gap: 10px; }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .inquiry-benefits {
    gap: 8px;
  }

  .inquiry-visual-card img {
    min-height: 300px;
  }

  .category-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-banner {
    min-height: 84vh;
    align-items: flex-start;
    padding-top: 86px;
  }

  .clean-hero-content {
    max-width: 92%;
    padding: 0;
  }

  .clean-hero-content h1 {
    font-size: clamp(1.35rem, 6.8vw, 2.15rem);
    max-width: 17ch;
    line-height: 1.17;
  }

  .product-sticky-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
    justify-content: space-between;
  }

  .product-sticky-cta .btn {
    flex: 1;
    text-align: center;
  }

  .about-page-hero {
    min-height: 56vh;
  }

  .hero-kicker {
    font-size: 0.95rem;
  }

  .hero-float-badge {
    position: static;
    display: inline-block;
    margin-top: 10px;
    margin-right: 8px;
  }
}
