/* ============================================================================
 * main.css — Five Elements Main Landing Page (index.html)
 * Sections (in order):
 *   announcement → hero → career-chapter → style
 *   → personalisation → sample-plan → product → story → trust → final-cta
 *   → sticky-cta, plus the fixed Red String floating entry
 * ========================================================================== */

/* ---------- Announcement bar ------------------------------------------- */
.fe-announce {
  background: var(--fe-gold);
  color: var(--fe-cream);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 16px;
  font-weight: 500;
}
.fe-announce a {
  color: inherit;
  display: block;
}
.fe-announce .arrow {
  display: inline-block;
  margin-left: 4px;
  transition: transform 200ms ease;
}
.fe-announce a:hover .arrow {
  transform: translateX(2px);
}

/* ---------- Hero ------------------------------------------------------- */
.fe-hero {
  padding: 36px 0 28px;
  text-align: center;
}
.fe-hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.fe-hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fe-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fe-ink);
}
.fe-hero__brand-dot {
  width: 18px;
  height: 18px;
  border: 1px solid var(--fe-gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fe-gold);
  font-family: var(--fe-serif);
  font-size: 11px;
  font-weight: 500;
}
.fe-hero__menu {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fe-ink);
  border: 1px solid var(--fe-line);
}
.fe-hero__menu svg { width: 16px; height: 16px; }
.fe-hero__signature {
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--fe-gold);
  margin: 0 0 22px;
  text-align: center;
  font-weight: 500;
}
.fe-hero__heading {
  font-family: var(--fe-serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.22;
  color: var(--fe-ink);
  margin: 0 0 18px;
  white-space: pre-line;
  letter-spacing: -0.005em;
}
.fe-hero__body {
  font-size: 14px;
  color: var(--fe-ink-2);
  line-height: 1.7;
  margin: 0 auto 22px;
  max-width: 34ch;
}
.fe-hero__trust {
  font-family: var(--fe-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--fe-mute);
  margin: 0 0 26px;
}
.fe-hero__image {
  margin: 0 auto 24px;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--fe-cream-2);
  box-shadow: var(--fe-shadow-2);
  position: relative;
}
.fe-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fe-hero__cta {
  max-width: 360px;
  margin: 0 auto;
}
.fe-hero__bottom {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--fe-mute);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.fe-hero__bottom span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fe-hero__bottom svg { width: 14px; height: 14px; }

/* ---------- Red String floating entry -------------------------------- */
.fe-campaign-float {
  position: fixed;
  left: 12px;
  bottom: max(12px, calc(100vh - 690px), env(safe-area-inset-bottom));
  width: min(320px, calc(100vw - 24px));
  z-index: 45;
  pointer-events: none;
}
.fe-campaign {
  background: var(--fe-bg-card);
  border: 1px solid var(--fe-line);
  border-radius: var(--fe-r);
  padding: 14px;
  text-align: left;
  width: 100%;
  box-shadow: var(--fe-shadow-1);
  pointer-events: auto;
  position: relative;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  overscroll-behavior: contain;
  animation: fe-campaign-enter 180ms ease-out both;
}
@keyframes fe-campaign-enter {
  from { opacity: 0; transform: translateY(6px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.fe-campaign__collapse {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--fe-line);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.94);
  color: var(--fe-mute);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
  z-index: 1;
}
.fe-campaign__collapse:hover {
  color: var(--fe-gold);
  border-color: var(--fe-gold);
}
.fe-campaign__collapse:active {
  transform: scale(0.94);
}
.fe-campaign__collapse:focus-visible,
.fe-campaign-float__collapsed:focus-visible {
  outline: 2px solid var(--fe-gold);
  outline-offset: 3px;
}
.fe-campaign__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fe-mute);
  margin: 0 34px 10px 0;
  display: block;
}
.fe-campaign__feature {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.fe-campaign__copy {
  min-width: 0;
}
.fe-campaign__heading {
  font-family: var(--fe-serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 6px;
  color: var(--fe-ink);
  overflow-wrap: anywhere;
}
.fe-campaign__body {
  font-size: 11px;
  color: var(--fe-ink-2);
  line-height: 1.45;
  margin: 0;
  overflow-wrap: anywhere;
}
.fe-campaign__image {
  width: 100%;
  height: 96px;
  border-radius: var(--fe-r-sm);
  overflow: hidden;
  background: var(--fe-cream-2);
}
.fe-campaign__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fe-campaign__price {
  background: var(--fe-cream-2);
  border-radius: var(--fe-r-sm);
  padding: 6px 8px;
  margin-bottom: 10px;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.fe-campaign__price-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 4px 5px;
  font-size: 10px;
  color: var(--fe-ink-2);
  min-width: 0;
}
.fe-campaign__price-row + .fe-campaign__price-row {
  border-left: 1px solid var(--fe-line-2);
}
.fe-campaign__price-row .ic {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--fe-gold);
}
.fe-campaign__price-row strong {
  display: block;
  color: var(--fe-ink);
  font-weight: 500;
  font-size: 10px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
#campaign-cta {
  min-height: 44px;
  padding: 12px 14px;
  font-size: 11px;
}
#campaign-cta-text {
  overflow-wrap: anywhere;
}
.fe-campaign-float__collapsed {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid var(--fe-line);
  background: var(--fe-bg-card);
  box-shadow: var(--fe-shadow-2);
  padding: 5px;
  overflow: hidden;
  pointer-events: auto;
  animation: fe-campaign-enter 180ms ease-out both;
}
.fe-campaign-float__collapsed img {
  width: 100%;
  height: 100%;
  border-radius: 13px;
  object-fit: contain;
  background: var(--fe-cream-2);
}
body.has-sticky .fe-campaign-float {
  bottom: max(calc(76px + env(safe-area-inset-bottom)), calc(100vh - 690px));
}

@media (min-width: 640px) and (max-width: 1023px) {
  .fe-campaign-float {
    left: 16px;
    width: 300px;
  }
}

@media (min-width: 1024px) {
  .fe-campaign-float,
  body.has-sticky .fe-campaign-float {
    left: 24px;
    top: 38%;
    bottom: auto;
    width: 310px;
    transform: translateY(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fe-campaign,
  .fe-campaign-float__collapsed {
    animation: none;
  }
}

/* ---------- Career Chapter ------------------------------------------- */
.fe-career__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.fe-career__card {
  background: var(--fe-bg-card);
  border: 1px solid var(--fe-line);
  border-radius: var(--fe-r);
  padding: 16px 14px 18px;
  text-align: left;
  cursor: pointer;
  position: relative;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms ease, transform 200ms ease,
    box-shadow 200ms ease;
}
.fe-career__card:hover {
  border-color: var(--fe-gold-soft);
}
.fe-career__card.is-selected {
  border-color: var(--fe-gold);
  box-shadow: 0 0 0 2px rgba(184, 137, 58, 0.18);
}
.fe-career__card.is-selected .fe-career__check {
  display: inline-flex;
}
.fe-career__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fe-gold);
  margin-bottom: 8px;
}
.fe-career__icon svg { width: 22px; height: 22px; }
.fe-career__title {
  font-family: var(--fe-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--fe-ink);
  margin: 0 0 6px;
  line-height: 1.25;
}
.fe-career__body {
  font-size: 12px;
  color: var(--fe-mute);
  line-height: 1.55;
  margin: 0;
}
.fe-career__check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--fe-gold);
  color: #fff8ec;
  display: none;
  align-items: center;
  justify-content: center;
}
.fe-career__check svg { width: 12px; height: 12px; }
.fe-career__hint {
  text-align: center;
  font-size: 12px;
  color: var(--fe-mute);
  margin: 4px 0 18px;
  min-height: 1.5em;
  opacity: 0;
  transition: opacity 200ms ease;
}
.fe-career__hint.is-visible {
  opacity: 1;
}
.fe-career__continue {
  max-width: 360px;
  margin: 0 auto;
  display: block;
}

/* ---------- Style (horizontal scroll) --------------------------------- */
.fe-style {
  position: relative;
}
.fe-style__scroller {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 0 26px;
  margin: 0;
  scroll-padding-left: 0;
  -webkit-overflow-scrolling: touch;
}
.fe-style__scroller::-webkit-scrollbar {
  display: none;
}
.fe-style__card {
  flex: 0 0 78%;
  max-width: 320px;
  scroll-snap-align: start;
  background: var(--fe-bg-card);
  border: 2px solid transparent;
  border-radius: var(--fe-r);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 200ms ease, transform 200ms ease,
    box-shadow 200ms ease;
  position: relative;
}
.fe-style__card.is-selected {
  border-color: var(--fe-gold);
  box-shadow: 0 0 0 2px rgba(184, 137, 58, 0.18);
}
.fe-style__card.is-selected .fe-style__check {
  display: inline-flex;
}
.fe-style__image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--fe-cream-2);
  position: relative;
}
.fe-style__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.fe-style__card:hover .fe-style__image img {
  transform: scale(1.04);
}
.fe-style__check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--fe-gold);
  color: #fff8ec;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.fe-style__check svg { width: 14px; height: 14px; }
.fe-style__body {
  padding: 14px 16px 18px;
  text-align: center;
}
.fe-style__title {
  font-family: var(--fe-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--fe-ink);
  margin: 0 0 4px;
}
.fe-style__desc {
  font-size: 12px;
  color: var(--fe-mute);
  line-height: 1.5;
  margin: 0;
}
.fe-style__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: -8px;
  margin-bottom: 16px;
}
.fe-style__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fe-sand-2);
  transition: background 200ms ease, transform 200ms ease;
}
.fe-style__dot.is-active {
  background: var(--fe-gold);
  transform: scale(1.4);
}

/* ---------- Personalisation Moment ------------------------------------ */
.fe-pm {
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--fe-cream) 0%, var(--fe-cream-2) 100%);
  padding: 80px 0;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fe-pm__inner {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 0 var(--fe-gutter);
  opacity: 0;
  transition: opacity 800ms ease;
}
.fe-pm__inner.is-in {
  opacity: 1;
}
.fe-pm__signature {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--fe-gold);
  margin-bottom: 26px;
  font-weight: 500;
}
.fe-pm__signature span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--fe-gold-soft);
  border-radius: 50%;
  font-family: var(--fe-serif);
  font-size: 13px;
  letter-spacing: 0;
}
.fe-pm__heading {
  font-family: var(--fe-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--fe-ink);
  margin: 0 0 26px;
}
.fe-pm__card {
  background: var(--fe-bg-card);
  border-radius: var(--fe-r);
  padding: 18px 20px;
  text-align: left;
  margin: 0 auto 16px;
  max-width: 360px;
  border: 1px solid var(--fe-line);
}
.fe-pm__label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fe-gold);
  margin-bottom: 6px;
  display: block;
}
.fe-pm__value {
  font-family: var(--fe-serif);
  font-size: 18px;
  color: var(--fe-ink);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.fe-pm__value .ic { color: var(--fe-gold); width: 18px; height: 18px; }
.fe-pm__explanation {
  font-size: 13px;
  color: var(--fe-ink-2);
  line-height: 1.7;
  max-width: 38ch;
  margin: 12px auto 0;
}
.fe-pm__privacy {
  font-size: 12px;
  color: var(--fe-mute);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  justify-content: center;
}
.fe-pm__privacy svg { width: 14px; height: 14px; }
.fe-pm__arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--fe-gold);
  color: #fff8ec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  box-shadow: var(--fe-shadow-2);
  transition: transform 200ms ease;
  cursor: pointer;
}
.fe-pm__arrow:hover { transform: translateY(2px); }
.fe-pm__arrow svg { width: 22px; height: 22px; }

/* ---------- Sample Personal Plan ------------------------------------- */
.fe-sp__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 26px;
}
.fe-sp__image {
  width: 100%;
  border-radius: var(--fe-r);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--fe-cream-2);
  box-shadow: var(--fe-shadow-1);
}
.fe-sp__image img { width: 100%; height: 100%; object-fit: cover; }
.fe-sp__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fe-sp__list-item {
  background: var(--fe-bg-card);
  border: 1px solid var(--fe-line);
  border-radius: var(--fe-r);
  padding: 16px;
}
.fe-sp__list-no {
  font-family: var(--fe-serif);
  font-size: 22px;
  color: var(--fe-gold);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}
.fe-sp__list-title {
  font-family: var(--fe-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--fe-ink);
  margin: 0 0 6px;
  line-height: 1.3;
}
.fe-sp__list-body {
  font-size: 12px;
  color: var(--fe-mute);
  line-height: 1.55;
  margin: 0;
}
.fe-sp__disclaimer {
  font-size: 12px;
  color: var(--fe-mute);
  text-align: center;
  font-style: italic;
  max-width: 40ch;
  margin: 18px auto 0;
}

/* ---------- Product + Price ------------------------------------------ */
.fe-product {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.fe-product__image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--fe-r);
  overflow: hidden;
  background: var(--fe-cream-2);
  box-shadow: var(--fe-shadow-2);
}
.fe-product__image img { width: 100%; height: 100%; object-fit: cover; }
.fe-product__name {
  font-family: var(--fe-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--fe-ink);
  text-align: center;
  margin: 0;
  line-height: 1.3;
}
.fe-product__value {
  font-size: 13px;
  color: var(--fe-ink-2);
  line-height: 1.7;
  text-align: center;
  max-width: 38ch;
  margin: 0 auto;
}
.fe-product__price {
  text-align: center;
  font-family: var(--fe-serif);
  font-size: 34px;
  color: var(--fe-gold);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.fe-product__price .currency {
  font-size: 18px;
  vertical-align: super;
  margin-right: 2px;
}
.fe-product__user-choice {
  background: var(--fe-bg-card);
  border: 1px solid var(--fe-line);
  border-radius: var(--fe-r);
  padding: 14px 18px;
  text-align: left;
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
}
.fe-product__user-choice + .fe-product__user-choice {
  margin-top: 10px;
}
.fe-product__receive {
  background: var(--fe-bg-card-2);
  border-radius: var(--fe-r);
  padding: 18px 20px;
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
}
.fe-product__receive h4 {
  font-family: var(--fe-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fe-gold);
  margin: 0 0 12px;
  text-align: center;
  font-weight: 500;
}
.fe-product__explanation {
  white-space: pre-line;
  font-size: 13px;
  line-height: 1.7;
  color: var(--fe-ink-2);
  margin: 0 0 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--fe-line-2);
}
.fe-product__receive ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fe-product__receive li {
  font-size: 13px;
  color: var(--fe-ink-2);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.fe-product__receive li::before {
  content: '✓';
  color: var(--fe-gold);
  font-weight: 500;
  font-size: 13px;
}
.fe-product__assurances {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fe-product__assurance {
  background: var(--fe-bg-card-2);
  border: 1px solid var(--fe-line);
  border-radius: var(--fe-r);
  padding: 18px 20px;
}
.fe-product__assurance h4 {
  font-family: var(--fe-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fe-gold);
  margin: 0 0 10px;
  text-align: center;
  font-weight: 500;
}
.fe-product__assurance p {
  white-space: pre-line;
  font-size: 13px;
  line-height: 1.7;
  color: var(--fe-ink-2);
  margin: 0;
}
.fe-product__trust-whatsapp {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}
.fe-product__trust-whatsapp p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fe-mute);
  margin: 0 0 10px;
}
.fe-product__timeline {
  font-size: 13px;
  color: var(--fe-mute);
  line-height: 1.7;
  text-align: center;
  max-width: 36ch;
  margin: 0 auto;
}
.fe-product__timeline p { margin: 4px 0; }
.fe-product__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
}

/* ---------- Story ----------------------------------------------------- */
.fe-story {
  text-align: center;
}
.fe-story__pill {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--fe-r-pill);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fe-gold);
  border: 1px solid var(--fe-gold-soft);
  margin-bottom: 16px;
}
.fe-story__user {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}
.fe-story__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--fe-cream-2);
  border: 1px solid var(--fe-line);
  flex-shrink: 0;
}
.fe-story__avatar img { width: 100%; height: 100%; object-fit: cover; }
.fe-story__user-meta { text-align: left; }
.fe-story__name { font-weight: 500; font-size: 13px; color: var(--fe-ink); }
.fe-story__chapter {
  font-size: 11px;
  color: var(--fe-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fe-story__heading {
  font-family: var(--fe-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--fe-ink);
  margin: 0 0 18px;
  line-height: 1.3;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.fe-story__body {
  text-align: left;
  font-size: 13px;
  color: var(--fe-ink-2);
  line-height: 1.8;
  max-width: 38ch;
  margin: 0 auto;
}
.fe-story__body p { margin: 0 0 12px; }
.fe-story__product {
  margin: 24px auto 0;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4/3;
  border-radius: var(--fe-r);
  overflow: hidden;
  background: var(--fe-cream-2);
}
.fe-story__product img { width: 100%; height: 100%; object-fit: cover; }
.fe-story__disclosure {
  font-size: 11px;
  color: var(--fe-mute-2);
  font-style: italic;
  margin-top: 16px;
  text-align: center;
}

/* ---------- Trust (3 cols) ------------------------------------------- */
.fe-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: center;
}
.fe-trust__item {
  background: var(--fe-bg-card);
  border: 1px solid var(--fe-line);
  border-radius: var(--fe-r);
  padding: 20px 18px;
}
.fe-trust__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--fe-cream-2);
  color: var(--fe-gold);
  margin: 0 auto 12px;
}
.fe-trust__icon svg { width: 18px; height: 18px; }
.fe-trust__title {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fe-ink);
  font-weight: 500;
  margin: 0 0 8px;
}
.fe-trust__body {
  font-size: 12px;
  color: var(--fe-mute);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Final CTA ------------------------------------------------- */
.fe-final {
  text-align: center;
  background: var(--fe-bg-card-2);
}
.fe-final__heading {
  font-family: var(--fe-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--fe-ink);
  margin: 0 0 22px;
}
.fe-final__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  margin: 0 auto;
}

/* ---------- Sticky CTA (bottom) -------------------------------------- */
.fe-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--fe-cream);
  border-top: 1px solid var(--fe-line);
  padding: 10px var(--fe-gutter);
  display: none;
  align-items: center;
  gap: 10px;
  z-index: 50;
  box-shadow: 0 -4px 16px rgba(29, 20, 13, 0.06);
}
.fe-sticky.is-visible {
  display: flex;
  animation: fe-fade-up 200ms ease;
}
.fe-sticky__price {
  font-family: var(--fe-serif);
  font-size: 16px;
  color: var(--fe-ink);
  font-weight: 500;
  white-space: nowrap;
}
.fe-sticky__btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 12px;
}

/* bottom safe-area for sticky + iOS home bar */
@supports (padding: max(0px)) {
  .fe-sticky {
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
  body.has-sticky {
    padding-bottom: 72px;
  }
}

/* ---------- Responsive ----------------------------------------------- */
@media (min-width: 480px) {
  .fe-style__card { flex-basis: 60%; }
}
@media (min-width: 640px) {
  .fe-career__grid { grid-template-columns: repeat(4, 1fr); }
  .fe-trust { grid-template-columns: repeat(3, 1fr); }
  .fe-sp__grid { flex-direction: row; }
  .fe-sp__image { flex: 0 0 50%; }
}
@media (min-width: 960px) {
  .fe-hero__heading { font-size: 42px; }
  .fe-style__card { flex-basis: 28%; }
}

/* ============================================================
 * V1.1 ADDITIONS
 * ============================================================ */

/* ---------- Product Gallery (1-3 horizontal-swipe slides) ----- */
.fe-product__gallery {
  width: 100%;
  margin: 0 0 18px;
}
.fe-gallery__scroller {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--fe-r);
  background: var(--fe-cream-2);
  box-shadow: var(--fe-shadow-1);
  /* Strip the natural scroller appearance for a clean gallery */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.fe-gallery__scroller::-webkit-scrollbar { display: none; }

.fe-gallery__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  background: var(--fe-cream-2);
}
.fe-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fe-gallery__slide-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(29, 20, 13, 0.62);
  color: var(--fe-cream);
  font-family: var(--fe-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--fe-r-pill);
  backdrop-filter: blur(4px);
}

.fe-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  min-height: 8px;
}
.fe-gallery__dots:empty { display: none; }
.fe-gallery__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fe-sand-2);
  transition: background 200ms ease, transform 200ms ease, width 200ms ease;
  cursor: pointer;
}
.fe-gallery__dot.is-active {
  background: var(--fe-gold);
  width: 18px;
  border-radius: 4px;
}

/* ---------- What Happens Next (4-step process) ---------------- */
.fe-product__process {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  background: var(--fe-bg-card);
  border: 1px solid var(--fe-line);
  border-radius: var(--fe-r);
  padding: 20px 18px 22px;
}
.fe-product__process h4 {
  font-family: var(--fe-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fe-gold);
  margin: 0 0 14px;
  text-align: center;
  font-weight: 500;
}
.fe-process {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: fe-step;
}
.fe-process__item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  position: relative;
  counter-increment: fe-step;
}
.fe-process__item + .fe-process__item {
  border-top: 1px solid var(--fe-line-2);
}
.fe-process__no {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--fe-cream-2);
  color: var(--fe-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fe-serif);
  font-size: 13px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
/* Vertical connector line between steps */
.fe-process__item:not(:last-child) .fe-process__no::after {
  content: '';
  position: absolute;
  left: 50%;
  top: calc(100% + 4px);
  width: 1px;
  height: calc(10px + 1px); /* padding-top of next item + border-top */
  background: var(--fe-line);
  transform: translateX(-0.5px);
}
.fe-process__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fe-process__title {
  font-family: var(--fe-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fe-ink);
  font-weight: 500;
  margin: 0 0 2px;
}
.fe-process__copy {
  font-size: 12px;
  color: var(--fe-mute);
  line-height: 1.5;
  margin: 0;
}
