/* =========================================================
   Almafuente LP - Organized CSS v2
   方針：
   - Tuningブロックを廃止し、役割別・セクション別に整理
   - 画像指定は下部の「Image Settings」に集約
   - LP内部の上書き目的の !important は原則使わない
   ========================================================= */

/* ヘッダーの背景色(白)を除去 */
#agent-header-outer {
  background: none !important;
}

/* =========================================================
   01. Design Tokens
   ========================================================= */

.alma-lp {
  --alma-ink: #1f1b16;
  --alma-text: #423b32;
  --alma-muted: #74695e;

  --alma-earth: #8a6a3f;
  --alma-earth-dark: #4f3a25;
  --alma-clay: #b9784a;
  --alma-orange: #e98332;

  --alma-moss: #6f7d54;
  --alma-forest: #293c2f;

  --alma-cream: #fbf4e8;
  --alma-ivory: #fffaf2;
  --alma-sand: #f3e4cd;
  --alma-white: #ffffff;

  --alma-border: rgba(77, 58, 35, 0.14);
  --alma-border-light: rgba(255, 255, 255, 0.78);

  --alma-shadow: 0 22px 64px rgba(56, 43, 29, 0.14);
  --alma-soft-shadow: 0 12px 34px rgba(56, 43, 29, 0.09);

  --alma-radius-sm: 18px;
  --alma-radius-md: 24px;
  --alma-radius-lg: 32px;
  --alma-radius-xl: 36px;
  --alma-radius-pill: 999px;

  --alma-container: 1180px;
  --alma-gutter: 44px;
  --alma-balanced-section-height: 780px;
}


/* =========================================================
   02. Base
   ========================================================= */

.alma-lp {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  color: var(--alma-text);
  background: var(--alma-ivory);
  font-family: inherit;
}

.alma-lp *,
.alma-lp *::before,
.alma-lp *::after {
  box-sizing: border-box;
}

.alma-lp a {
  text-decoration: none;
}

.alma-lp p {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
}

.alma-lp h1,
.alma-lp h2,
.alma-lp h3 {
  margin: 0;
  color: var(--alma-ink);
  letter-spacing: 0.01em;
}

.alma-lp h1 {
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.22;
  font-weight: 850;
}

.alma-lp h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.42;
  font-weight: 820;
}

.alma-lp h3 {
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.45;
  font-weight: 780;
}

.pc-only {
  display: inline;
}

/* =========================================================
   03. Layout
   ========================================================= */

.alma-container {
  width: min(var(--alma-container), calc(100% - var(--alma-gutter)));
  margin: 0 auto;
}

.alma-section {
  position: relative;
  padding: 100px 0 90px;
}

.alma-section--earth {
  background:
    radial-gradient(circle at 12% 18%, rgba(185, 120, 74, 0.14), transparent 28%),
    linear-gradient(135deg, #fff4e2 0%, #fffaf2 48%, #f6ead8 100%);
}

.alma-section--light {
  background:
    radial-gradient(circle at 86% 14%, rgba(111, 125, 84, 0.12), transparent 26%),
    linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
}

.alma-section--visual {
  background: linear-gradient(135deg, #fffaf2 0%, #f3e4cd 100%);
}

.alma-section-heading-center {
  max-width: 880px;
  margin: 0 auto 58px;
  text-align: center;
}

.alma-section-heading-center p:not(.alma-section-label) {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--alma-muted);
}


/* =========================================================
   04. Shared Components
   ========================================================= */

/* Label */
.alma-section-label,
.alma-eyebrow,
.alma-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--alma-earth);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.alma-section-label::before,
.alma-eyebrow::before,
.alma-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

/* Buttons */
.alma-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 52px;
  padding: 13px 28px;
  border-radius: var(--alma-radius-pill);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.4;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.alma-btn:hover {
  transform: translateY(-3px);
  opacity: 0.94;
}

.alma-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #6d4c2f, #2c251d);
  box-shadow: 0 18px 38px rgba(77, 58, 35, 0.25);
}

.alma-btn--primary:hover {
  color: #fff;
}

.alma-btn--accent {
  color: #fff;
  background: linear-gradient(135deg, #e98332, #b85d24);
  box-shadow: 0 18px 38px rgba(233, 131, 50, 0.26);
}

.alma-btn--accent:hover {
  color: #fff;
}

.alma-btn--outline {
  color: var(--alma-earth-dark);
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(77, 58, 35, 0.22);
}

.alma-btn--outline:hover {
  color: var(--alma-earth-dark);
}

/* Media placeholder base */
.alma-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08)),
    linear-gradient(135deg, #e6d2b5, #f7efe2 50%, #d7c0a0);
  box-shadow: var(--alma-shadow);
}

.alma-image-slot {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: inherit;
  padding: 24px;
  color: rgba(79, 58, 37, 0.66);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.alma-image-slot span {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: var(--alma-radius-pill);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 22px rgba(56, 43, 29, 0.08);
}


/* =========================================================
   05. HERO
   ========================================================= */

.alma-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 0px);
  padding: 42px 0 38px;
  overflow: hidden;
  background: var(--alma-ivory);
}

.alma-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
}

.alma-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(255, 250, 242, 0.78) 0%,
      rgba(255, 250, 242, 0.52) 36%,
      rgba(255, 250, 242, 0.12) 68%,
      rgba(255, 250, 242, 0.02) 100%);
}

.alma-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 680px) 1fr;
  gap: 44px;
  align-items: center;
}

.alma-hero__copy {
  max-width: 680px;
}

.alma-hero h1 {
  white-space: nowrap;
}

.alma-hero__lead {
  max-width: 650px;
  margin-top: 18px !important;
  color: #4d4338;
  font-size: clamp(15px, 1.22vw, 18px);
  line-height: 1.82;
  font-weight: 760;
}

.alma-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}


/* =========================================================
   06. CONCEPT
   ========================================================= */

.alma-section--concept {
  position: relative;
  overflow: hidden;
  padding: 194px 0 188px;
  background-color: #f7f1e8;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.alma-section--concept .alma-statement {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 30px auto;
  text-align: center;
}

.alma-section--concept .alma-statement h2 {
  margin: 8px auto 20px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.04em;
}

.alma-section--concept .alma-statement>p:not(.alma-section-label) {
  max-width: 780px;
  margin: 0 auto;
  color: #4a4036;
  font-size: 19px;
  line-height: 2;
  font-weight: 600;
}


/* =========================================================
   07. ALMAFUENTE Product Showcase
   通常構造版：背景画像 + 通常フロー
   ========================================================= */

.alma-product-showcase {
  position: relative;
  overflow: hidden;
  padding: 40px 0 0;
  background-color: #eef5ef;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* 通常フローの2カラム */
.alma-product-showcase__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 64px;
  align-items: center;
  width: min(var(--alma-container), calc(100% - var(--alma-gutter)));
  margin: 0 auto;
  left: auto;
  inset: auto;
  transform: none;
}

/* 左側のHTML上の画像枠は使わない */
.alma-product-showcase__image,
.alma-product-showcase__image .alma-media,
.alma-product-showcase__image .alma-image-slot {
  display: none;
}

/* 右側コンテンツ */
.alma-product-showcase__content {
  grid-column: 2;
  min-width: 0;
  max-width: 760px;
  margin: 0 0 0 auto;
  padding: 38px 42px;
  border-radius: var(--alma-radius-lg);
}

/* 見出し */
.alma-product-showcase__content h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.42;
  letter-spacing: 0.04em;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

/* リード文 */
.alma-product-showcase__lead {
  max-width: 700px;
  margin-top: 10px !important;
  color: #5d554d;
  font-size: 17px;
  line-height: 2;
}

/* 3枚カード */
.alma-product-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: min(108%, 680px);
  max-width: none;
  margin-top: 18px;
}

.alma-product-points>div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 6px;
  align-items: start;
  width: 100%;
  padding: 20px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(86, 62, 42, 0.1);
  box-shadow: 0 14px 34px rgba(80, 56, 36, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.alma-product-points>div:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(80, 56, 36, 0.11);
}

.alma-product-points>div>span {
  grid-column: 1;
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: #b97745;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.alma-product-points>div>strong {
  grid-column: 2;
  grid-row: 1;
  display: block;
  min-width: 0;
  margin: 0;
  color: var(--alma-text);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.alma-product-points>div>p {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  margin: 0;
  color: var(--alma-muted);
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 1180px) {
  .alma-product-showcase {
    padding: 50px 0 0;
    background-position: 28% center;
  }

  .alma-product-showcase__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
    gap: 42px;
    width: min(100% - 32px, 1180px);
  }

  .alma-product-showcase__content {
    max-width: 720px;
    margin: 0 0 0 auto;
    padding: 34px 28px;
    border-radius: 28px;
  }

  .alma-product-showcase__content h2 {
    white-space: normal;
  }

  .alma-product-points {
    width: 100%;
    max-width: 100%;
  }
}


/* =========================================================
   08. INNER CARE
   ========================================================= */

.alma-problem-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.alma-section-copy p:not(.alma-section-label) {
  max-width: 700px;
  margin-top: 20px;
  color: var(--alma-muted);
}

.alma-floating-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.alma-floating-list div {
  min-width: 0;
  padding: 18px 22px;
  border-radius: 20px;
  color: var(--alma-ink);
  background: #fffaf2;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--alma-soft-shadow);
  font-weight: 850;
  line-height: 1.55;
  text-align: center;
}

.alma-floating-list div:nth-child(1),
.alma-floating-list div:nth-child(5) {
  background: #f6ead8;
}

.alma-floating-list div:nth-child(2),
.alma-floating-list div:nth-child(6) {
  background: #edf1ec;
}

.alma-floating-list div:nth-child(4) {
  background: #f1dfc5;
}

.alma-floating-list div:nth-child(7) {
  grid-column: 1 / -1;
}


.alma-inner-care {
  position: relative;
  overflow: hidden;
  padding: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.alma-inner-care::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.5;
}

.alma-inner-care .alma-problem-layout {
  position: absolute;
  top: 55%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: min(1180px, calc(100% - 44px));
}

@media (max-width: 768px) {
  .alma-inner-care {
    padding: 56px 0;
  }

  .alma-inner-care::before {
    display: none;
  }

  .alma-inner-care .alma-problem-layout {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: auto;
    inset: auto;
    gap: 24px;
  }

  .alma-inner-care .alma-section-copy p:not(.alma-section-label) {
    margin-top: 14px;
    font-size: 14.8px;
    line-height: 1.8;
  }

  .alma-inner-care .alma-floating-list {
    gap: 8px;
  }

  .alma-inner-care .alma-floating-list div {
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 14.2px;
    line-height: 1.55;
  }

  .alma-inner-care .alma-floating-list div:nth-child(5),
  .alma-inner-care .alma-floating-list div:nth-child(7) {
    display: none;
  }
}

/* =========================================================
   09. DIFFERENCE
   ========================================================= */

.alma-section--deep {
  padding: 88px 0;
  color: var(--alma-text);
  background:
    radial-gradient(circle at 82% 18%, rgba(185, 120, 74, 0.12), transparent 28%),
    linear-gradient(135deg, #fffaf2 0%, #f3e4cd 100%);
}

.alma-section--deep h2,
.alma-section--deep h3,
.alma-section--deep p {
  color: var(--alma-ink);
}

.alma-section--deep .alma-section-label {
  color: var(--alma-earth);
}

.alma-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.alma-split--contrast {
  grid-template-columns: 0.82fr 1.18fr;
}

.alma-split__copy p:not(.alma-section-label) {
  max-width: 560px;
  margin-top: 20px;
  color: var(--alma-muted);
  font-size: 15.5px;
  line-height: 1.95;
}

.alma-compare-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.alma-compare-panel__item {
  padding: 30px 34px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(138, 106, 63, 0.18);
  box-shadow: var(--alma-soft-shadow);
}

.alma-compare-panel__item--focus {
  background: #fff;
  border: 2px solid rgba(185, 120, 74, 0.46);
  box-shadow: var(--alma-shadow);
}

.alma-compare-panel__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: var(--alma-radius-pill);
  color: #fff;
  background: var(--alma-earth);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.alma-compare-panel__item--focus span {
  background: var(--alma-orange);
}

.alma-compare-panel__item strong {
  display: block;
  color: var(--alma-ink);
  font-size: 23px;
  line-height: 1.45;
}

.alma-compare-panel__item p {
  margin-top: 10px;
  color: var(--alma-muted);
  font-size: 15px;
  line-height: 1.9;
}


/* =========================================================
   10. FERMENTATION
   ========================================================= */

.alma-section--fermentation {
  position: relative;
  overflow: hidden;
  padding: 58px 0 30px;
  color: #fff;
  background-color: #1f2f26;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.alma-section--fermentation::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(20, 35, 28, 0.86) 0%,
      rgba(20, 35, 28, 0.72) 38%,
      rgba(20, 35, 28, 0.44) 66%,
      rgba(20, 35, 28, 0.26) 100%);
}

.alma-fermentation-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 72px;
  align-items: center;
}

.alma-fermentation-copy {
  max-width: 620px;
}

.alma-section--fermentation .alma-section-label,
.alma-section--fermentation h2,
.alma-section--fermentation p {
  color: #fff;
}

.alma-section--fermentation .alma-section-label {
  color: rgba(255, 255, 255, 0.86);
}

.alma-section--fermentation .alma-section-label::before {
  background: rgba(255, 255, 255, 0.86);
}

.alma-section--fermentation h2 {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.42;
  letter-spacing: 0.04em;
}

.alma-ferment-lead {
  max-width: 600px;
  margin-top: 20px !important;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16.5px;
  line-height: 2.05;
  font-weight: 500;
}

.alma-fermentation-diagram {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding-top: 66px;
}

.alma-fermentation-diagram__item,
.alma-fermentation-diagram__center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 20px 24px;
  border-radius: 26px;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(8px);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  letter-spacing: 0.06em;
}

.alma-fermentation-diagram__item {
  font-size: 20px;
  line-height: 1.5;
}

.alma-fermentation-diagram__center {
  font-size: 22px;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.03),
    0 24px 70px rgba(0, 0, 0, 0.2);
}

.alma-fermentation-diagram__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  width: 1px;
  height: 40px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.3);
}

.alma-fermentation-diagram__center::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -28px;
  width: 1px;
  height: 28px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.3);
}


/* FERMENTATION：酪酸菌発酵エキスを拡大して強調 */
.alma-fermentation-diagram__center {
  animation: alma-ferment-pulse 3.2s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes alma-ferment-pulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 10px rgba(255, 255, 255, 0.03),
      0 24px 70px rgba(0, 0, 0, 0.20);
  }

  50% {
    transform: scale(1.015);
    box-shadow:
      0 0 0 14px rgba(255, 255, 255, 0.06),
      0 30px 84px rgba(0, 0, 0, 0.24);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 10px rgba(255, 255, 255, 0.03),
      0 24px 70px rgba(0, 0, 0, 0.20);
  }
}


/* =========================================================
   11. ORIGIN
   素材・発酵・時間の原点を見せるセクション
   ========================================================= */

.alma-section--origin {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background-color: #fbf0dd;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.alma-section--origin::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg,
      rgba(255, 250, 242, 0.24) 0%,
      rgba(255, 250, 242, 0.58) 48%,
      rgba(255, 250, 242, 0.86) 100%);
  pointer-events: none;
}

.alma-section--origin .alma-container {
  position: relative;
  z-index: 1;
}

.alma-origin-layout {
  display: grid;
  grid-template-columns: minmax(0, 560px);
  justify-content: end;
  gap: 0;
  align-items: center;
}

.alma-origin-visual {
  display: none;
}

.alma-origin-copy {
  max-width: 560px;
}

.alma-origin-copy h2 {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.45;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.alma-origin-copy p:not(.alma-section-label) {
  margin-top: 28px;
  color: var(--alma-muted);
  font-size: 16.5px;
  line-height: 2.15;
  letter-spacing: 0.04em;
}

.alma-origin-lead {
  color: var(--alma-text) !important;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .alma-origin-layout {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .alma-origin-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .alma-origin-copy h2 {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .alma-section--origin {
    padding: 72px 0;
  }

  .alma-section--origin::before {
    background:
      linear-gradient(180deg,
        rgba(255, 250, 242, 0.88) 0%,
        rgba(255, 250, 242, 0.78) 56%,
        rgba(255, 250, 242, 0.62) 100%);
  }

  .alma-origin-copy h2 {
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }

  .alma-origin-copy p:not(.alma-section-label) {
    margin-top: 22px;
    font-size: 14.8px;
    line-height: 1.95;
    text-align: left;
  }
}


/* =========================================================
   12. VALUE
   背景画像 + 理由カード型
   ========================================================= */

.alma-section--value {
  position: relative;
  overflow: hidden;
  background-color: #fbf0dd;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 70px 0 0px;
}

/* 背景画像の上でも読みやすくするため、全体を少し整える */
.alma-section--value::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg,
      rgba(255, 250, 242, 0.40) 0%,
      rgba(255, 250, 242, 0.40) 42%,
      rgba(255, 250, 242, 0.25) 100%);
  pointer-events: none;
}

.alma-section--value .alma-container {
  position: relative;
  z-index: 1;
}

.alma-value-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: center;
}

.alma-value-layout__title {
  max-width: 560px;
}

.alma-value-layout__title h2 {
  max-width: 560px;
}

.alma-value-lead {
  max-width: 520px;
  margin-top: 22px;
  color: var(--alma-muted);
  font-size: 16px;
  line-height: 1.95;
}

/* 右側カード */
.alma-value-cards {
  display: grid;
  gap: 18px;
}

.alma-value-cards>div {
  position: relative;
  padding: 30px 34px 30px 92px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 46px rgba(80, 56, 36, 0.11);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* 01 / 02 / 03 */
.alma-value-cards>div::before {
  position: absolute;
  left: 30px;
  top: 32px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--alma-earth), var(--alma-clay));
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.alma-value-cards>div:nth-child(1)::before {
  content: "01";
}

.alma-value-cards>div:nth-child(2)::before {
  content: "02";
}

.alma-value-cards>div:nth-child(3)::before {
  content: "03";
}

/* 既存spanを見出しとして使う */
.alma-value-tag--large,
.alma-value-cards span.alma-value-tag--large {
  display: block;
  width: auto;
  margin: 0 0 10px;
  padding: 0;
  border-radius: 0;
  color: var(--alma-ink);
  background: none;
  box-shadow: none;
  font-size: 21px;
  font-weight: 850;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.alma-value-cards p {
  margin-top: 0;
  color: var(--alma-muted);
  font-size: 15.5px;
  line-height: 1.9;
}

.alma-value-cards>div:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 54px rgba(80, 56, 36, 0.14);
}

/* tablet */
@media (max-width: 1024px) {
  .alma-value-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .alma-value-layout__title {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .alma-value-layout__title h2,
  .alma-value-lead {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .alma-value-cards {
    max-width: 760px;
    margin: 0 auto;
  }
}

/* mobile */
@media (max-width: 768px) {
  .alma-section--value::before {
    background:
      linear-gradient(180deg,
        rgba(255, 250, 242, 0.9) 0%,
        rgba(255, 250, 242, 0.78) 100%);
  }

  .alma-value-lead {
    max-width: 32em;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14.8px;
    line-height: 1.98;
    text-align: left;
  }

  .alma-value-cards {
    max-width: 420px;
    gap: 12px;
  }

  .alma-value-cards>div {
    padding: 22px 18px 22px 64px;
    border-radius: 22px;
  }

  .alma-value-cards>div::before {
    left: 18px;
    top: 24px;
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .alma-value-tag--large,
  .alma-value-cards span.alma-value-tag--large {
    font-size: 17.5px;
  }

  .alma-value-cards p {
    font-size: 14.2px;
    line-height: 1.86;
  }
}

@media (max-width: 480px) {
  .alma-value-cards>div {
    padding: 20px 18px;
  }

  .alma-value-cards>div::before {
    position: static;
    margin-bottom: 14px;
  }
}


/* =========================================================
   13. SCENE
   ========================================================= */

.alma-howto {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fffaf2 0%, #f3e4cd 100%);
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.alma-howto::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg,
      rgba(255, 250, 242, 0.68) 0%,
      rgba(255, 250, 242, 0.50) 28%,
      rgba(255, 250, 242, 0.16) 50%,
      rgba(255, 250, 242, 0) 70%);
  pointer-events: none;
}

.alma-howto__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  min-height: 520px;
}

.alma-howto__copy {
  max-width: 560px;
  text-align: left;
}

.alma-howto__copy p:not(.alma-section-label) {
  max-width: 560px;
  margin-top: 28px;
  color: var(--alma-muted);
  font-size: 17px;
  line-height: 2;
  text-align: left;
}


/* =========================================================
   14. VOICE
   ========================================================= */

.alma-section--voice {
  background:
    radial-gradient(circle at 12% 18%, rgba(185, 120, 74, 0.14), transparent 28%),
    linear-gradient(135deg, #fff4e2 0%, #fffaf2 48%, #f6ead8 100%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.alma-voice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.alma-voice-row article {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 40px 32px 96px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 250, 242, 0.88) 100%);
  border: 1px solid rgba(138, 106, 63, 0.24);
  box-shadow: 0 24px 64px rgba(56, 43, 29, 0.16);
}

.alma-voice-row article::before {
  content: "“";
  display: block;
  height: 28px;
  color: rgba(138, 106, 63, 0.48);
  font-family: Georgia, serif;
  font-size: 66px;
  line-height: 0.8;
}

.alma-voice-row article h3 {
  margin: 0 0 16px;
  color: var(--alma-earth-dark);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 850;
}

.alma-voice-row p {
  color: #4a4036;
  font-size: 15.5px;
  line-height: 1.9;
}

.alma-voice-row mark {
  padding: 0 0.18em;
  border-radius: 3px;
  color: inherit;
  background: linear-gradient(transparent 58%, rgba(244, 202, 92, 0.58) 58%);
  font-weight: 800;
}

.alma-voice-row span {
  position: absolute;
  left: 32px;
  bottom: 32px;
  display: inline-flex;
  padding: 6px 14px;
  border-radius: var(--alma-radius-pill);
  color: var(--alma-earth-dark);
  background: rgba(138, 106, 63, 0.12);
  font-size: 14px;
  font-weight: 850;
}

.alma-small-note {
  margin-top: 20px;
  color: var(--alma-muted);
  font-size: 13px;
  text-align: center;
}


/* =========================================================
   15. CHOICE
   背景に直接置くメッセージ型
   ========================================================= */

.alma-section--recommend {
  background:
    radial-gradient(circle at 12% 12%, rgba(185, 120, 74, 0.13), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(111, 125, 84, 0.16), transparent 32%),
    linear-gradient(180deg, #fffaf2 0%, #f7ead8 100%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.alma-section--choice {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.alma-section--choice::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 250, 242, 0.74);
  pointer-events: none;
}

.alma-choice-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.alma-choice-content h2 {
  margin-top: 10px;
}

.alma-section--choice .alma-choice-lead {
  width: fit-content;
  max-width: min(100%, 760px);
  margin: 28px auto 0;
  color: var(--alma-muted);
  font-size: 17px;
  line-height: 2;
  text-align: center;
}

.alma-choice-list {
  display: grid;
  width: min(100%, 450px);
  max-width: 450px;
  margin: 42px auto 0;
  gap: 0;
  text-align: left;
}

.alma-choice-list p {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  margin: 0;
  padding: 17px 0 17px 17px;
  border-top: 1px solid rgba(96, 70, 44, 0.16);
  color: var(--alma-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

.alma-choice-list p::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 0.18em;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #c99a2e, #8f6a18);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.alma-choice-list p:last-child {
  border-bottom: 1px solid rgba(96, 70, 44, 0.16);
}

.alma-choice-list p:nth-child(4) {
  border-bottom: 1px solid rgba(96, 70, 44, 0.16);
}

.alma-choice-list p:nth-child(n+5) {
  display: none;
}


/* =========================================================
   16. SELECT
   ========================================================= */

.alma-section--select {
  scroll-margin-top: 8px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(185, 120, 74, 0.16), transparent 32%),
    linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.alma-section--select .alma-section-heading-center {
  max-width: 1180px;
}

.alma-section--select .alma-section-heading-center h2 {
  white-space: nowrap;
}

.alma-purchase-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 450px));
  justify-content: center;
  align-items: stretch;
  gap: 34px;
}

.alma-purchase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 46px 38px 38px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(77, 58, 35, 0.14);
  box-shadow: var(--alma-soft-shadow);
  text-align: center;
}

.alma-purchase-card h3 {
  margin: 5px;
  font-size: clamp(20px, 2vw, 24px);
}

.alma-purchase-card--recommend {
  background: #fff;
  border: 2px solid rgba(233, 131, 50, 0.48);
  box-shadow: var(--alma-shadow);
}

.alma-badge {
  position: absolute;
  top: -17px;
  left: 50%;
  padding: 8px 20px;
  border-radius: var(--alma-radius-pill);
  color: #fff;
  background: var(--alma-orange);
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 900;
}

.alma-purchase-card__label {
  color: var(--alma-earth);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.alma-price {
  position: relative;
  display: inline-block;
  margin: 10px auto 0 !important;
  color: var(--alma-earth-dark);
  font-size: clamp(40px, 0vw, 74px) !important;
  font-weight: 900;
  line-height: 1 !important;
  white-space: nowrap;
}

.alma-price span {
  position: absolute;
  left: calc(100% + 12px);
  bottom: 0.18em;
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.alma-purchase-card ul {
  display: grid;
  gap: 10px;
  width: min(100%, 340px);
  margin: 22px auto 26px;
  padding: 0;
  list-style: none;
}

.alma-purchase-card li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px 10px 42px;
  border-radius: var(--alma-radius-pill);
  color: var(--alma-text);
  background: rgb(254 251 244);
  border: 1px solid rgba(138, 106, 63, 0.12);
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 700;
}

.alma-purchase-card li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--alma-earth);
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 900;
}

.alma-purchase-card--recommend li {
  background: rgba(255, 250, 242, 0.86);
  border-color: rgba(232, 123, 42, 0.2);
}

.alma-purchase-card--recommend li::before {
  background: var(--alma-orange);
}

.alma-purchase-card .alma-btn {
  width: 100%;
  margin-top: auto;
}


/* =========================================================
   17. MESSAGE
   ========================================================= */

.alma-section--trust-light {
  background:
    radial-gradient(circle at 80% 20%, rgba(111, 125, 84, 0.12), transparent 28%),
    linear-gradient(135deg, #fffaf2 0%, #edf1ec 100%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.alma-trust-light {
  max-width: 1080px;
  padding: 0;
  margin: 30px auto;
  text-align: center;
}

.alma-trust-light h2 {
  margin: 8px auto 20px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.04em;
}

.alma-trust-light p:not(.alma-section-label) {
  max-width: 780px;
  margin: 0 auto;
  color: #4a4036;
  font-size: 19px;
  line-height: 2;
  font-weight: 600;
}

.alma-trust-light p:not(.alma-section-label)+p:not(.alma-section-label) {
  margin-top: 20px;
}


/* =========================================================
   18. LINE
   ========================================================= */

.alma-section--line {
  padding: 76px 0;
  background: linear-gradient(135deg, #eef7ea 0%, #fffaf2 100%);
}

.alma-line-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 34px 0;
}

.alma-line-box h2 {
  font-size: clamp(24px, 2.8vw, 36px);
}

.alma-line-box p:not(.alma-section-label) {
  margin-top: 14px;
  color: var(--alma-muted);
}


/* =========================================================
   19. FAQ
   ========================================================= */

.alma-faq {
  max-width: 920px;
}

.alma-section--faq {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.alma-faq details {
  border-bottom: 1px solid rgba(77, 58, 35, 0.16);
  background: transparent;
}

.alma-faq summary {
  position: relative;
  padding: 20px 44px 20px 0;
  cursor: pointer;
  color: var(--alma-ink);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.7;
  list-style: none;
}

.alma-faq summary::-webkit-details-marker {
  display: none;
}

.alma-faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 20px;
  color: var(--alma-earth);
  font-size: 24px;
  font-weight: 700;
}

.alma-faq details[open] summary::after {
  content: "−";
}

.alma-faq details p {
  padding: 0 0 24px;
  color: var(--alma-muted);
}


/* =========================================================
   20. FINAL CTA
   ========================================================= */

.alma-final {
  padding: 150px 0;
  color: var(--alma-ink);
  text-align: center;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.68), transparent 32%),
    linear-gradient(135deg, #fff4e2 0%, #eef7ea 100%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

}

.alma-final h2,
.alma-final p {
  color: var(--alma-ink);
}

.alma-final .alma-section-label {
  color: var(--alma-earth);
}

.alma-final__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}


/* =========================================================
   Section Height Balance
   HERO / CONSULTATION / START 以外をVOICE基準の縦幅へ寄せる
   ========================================================= */

.alma-section--concept,
.alma-product-showcase,
.alma-inner-care,
.alma-section--deep,
.alma-section--fermentation,
.alma-section--origin,
.alma-section--value,
.alma-howto,
.alma-section--voice,
.alma-section--choice,
.alma-section--select,
/* .alma-section--trust-light, */
.alma-section--faq {
  display: flex;
  align-items: center;
  min-height: var(--alma-balanced-section-height);
  padding-top: 96px;
  padding-bottom: 88px;
}

.alma-inner-care::before {
  display: none;
}

.alma-inner-care .alma-problem-layout {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: min(1180px, calc(100% - 44px));
}

.alma-product-showcase {
  padding-top: 72px;
  padding-bottom: 72px;
}

.alma-product-showcase__content {
  padding-top: 24px;
  padding-bottom: 24px;
}

.alma-product-points {
  gap: 12px;
  margin-top: 14px;
}

.alma-product-points>div {
  padding-top: 16px;
  padding-bottom: 16px;
}


/* =========================================================
   21. Image Settings
   画像差し替えは原則ここだけ触る
   ========================================================= */

/* HERO：PCは動画、SPは静止画 */
.alma-hero {
  background-image: url('/wp-content/themes/biotrust_child/lp/almafuente/img/alma-hero-pc.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* CONCEPT */
.alma-section--concept {
  background-image: url('/wp-content/themes/biotrust_child/lp/almafuente/img/alma-intro.jpg');
}

/* ALMAFUENTE */
.alma-product-showcase {
  background-image: url('/wp-content/themes/biotrust_child/lp/almafuente/img/alma-almafuente.jpg');
}

/* INNER CARE */
.alma-inner-care {
  background-image: url('/wp-content/themes/biotrust_child/lp/almafuente/img/alma-innercare.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* DIFFERENCE */
.alma-section--deep {
  background-image: url('/wp-content/themes/biotrust_child/lp/almafuente/img/alma-difference.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* FERMENTATION */
.alma-section--fermentation {
  background-image: url('/wp-content/themes/biotrust_child/lp/almafuente/img/alma-intro.jpg');
}

/* ORIGIN */
.alma-section--origin {
  background-image: url('/wp-content/themes/biotrust_child/lp/almafuente/img/alma-value.jpg');
}

/* VALUE */
.alma-section--value {
  background-image: url('/wp-content/themes/biotrust_child/lp/almafuente/img/alma-value.jpg');
}

/* SCENE */
.alma-howto {
  background-image: url('/wp-content/themes/biotrust_child/lp/almafuente/img/alma-howto.jpg');
}

/* VOICE */
.alma-section--voice {
  background-image: url('/wp-content/themes/biotrust_child/lp/almafuente/img/alma-voice.jpg');
}

/* CHOICE */
.alma-section--recommend {
  background-image: url('/wp-content/themes/biotrust_child/lp/almafuente/img/alma-difference.jpg');
}

/* SELECT */
.alma-section--select {
  background-image: url('/wp-content/themes/biotrust_child/lp/almafuente/img/alma-select.jpg');
}

/* MESSAGE */
.alma-section--trust-light {
  background-image: url('/wp-content/themes/biotrust_child/lp/almafuente/img/alma-message.jpg');
}

/* LINE */
.alma-section--line {
  background-image: url('/wp-content/themes/biotrust_child/lp/almafuente/img/alma-difference.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* FAQ */
.alma-section--faq {
  background-image: url('/wp-content/themes/biotrust_child/lp/almafuente/img/alma-faq.jpg');
}

/* FINAL CTA */
.alma-final {
  background-image: url('/wp-content/themes/biotrust_child/lp/almafuente/img/alma-difference.jpg');
}


/* =========================================================
   22. Responsive
   ========================================================= */

@media (max-width: 1024px) {
  .alma-hero {
    min-height: auto;
    padding: 56px 0 48px;
  }

  .alma-hero__grid,
  .alma-product-showcase__grid,
  .alma-problem-layout,
  .alma-split,
  .alma-split--contrast,
  .alma-fermentation-layout,
  .alma-value-layout,
  .alma-howto__grid,
  .alma-line-box {
    grid-template-columns: 1fr;
  }

  .alma-hero__copy,
  .alma-product-showcase__content,
  .alma-section-copy,
  .alma-split__copy,
  .alma-value-layout__title,
  .alma-howto__copy,
  .alma-line-box {
    text-align: center;
  }

  .alma-hero h1 {
    white-space: normal;
  }

  .alma-hero__actions,
  .alma-final__actions {
    justify-content: center;
  }

  .alma-product-showcase {
    padding: 64px 0;
    background-position: 28% center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .alma-product-showcase__grid {
    position: relative;
    inset: auto;
    left: auto;
    width: min(100% - 32px, var(--alma-container));
    transform: none;
  }

  .alma-product-showcase__content {
    grid-column: auto;
    max-width: 760px;
    margin: 0 auto;
    padding: 30px 22px;
  }

  .alma-product-points,
  .alma-value-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .alma-floating-list {
    max-width: 680px;
    margin: 0 auto;
  }

  .alma-value-layout__title h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .alma-howto__grid {
    min-height: auto;
  }

  .alma-trust-light {
    max-width: 760px;
  }
}

@media (max-width: 768px) {
  .alma-lp {
    --alma-gutter: 32px;
  }

  .alma-section {
    padding: 62px 0;
  }

  .alma-section--concept,
  .alma-product-showcase,
  .alma-inner-care,
  .alma-section--deep,
  .alma-section--fermentation,
  .alma-section--origin,
  .alma-section--value,
  .alma-howto,
  .alma-section--voice,
  .alma-section--choice,
  .alma-section--select,
  .alma-section--trust-light,
  .alma-section--faq {
    min-height: auto;
  }

  .alma-inner-care .alma-problem-layout {
    width: auto;
  }

  .alma-lp p {
    font-size: 15.5px;
    line-height: 1.85;
  }

  .alma-lp h1 {
    font-size: clamp(32px, 8.8vw, 42px);
    line-height: 1.2;
  }

  .alma-lp h2,
  .alma-section-heading-center h2,
  .alma-final h2 {
    font-size: clamp(25px, 7.2vw, 34px);
    line-height: 1.42;
  }

  .alma-section--select .alma-section-heading-center h2 {
    white-space: normal;
  }

  .alma-section--select {
    scroll-margin-top: 68px;
  }

  .alma-lp h3 {
    font-size: 21px;
  }

  .pc-only {
    display: none;
  }

  .alma-btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    font-size: 15px;
  }

  .alma-hero {
    min-height: 560px;
    align-items: flex-start;
    padding: 58px 0 42px;
  }

  .alma-hero-video {
    display: none;
  }

  .alma-hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(255, 250, 242, 0.88) 0%,
        rgba(255, 250, 242, 0.68) 42%,
        rgba(255, 250, 242, 0.24) 100%);
  }

  .alma-hero__lead {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.8;
  }

  .alma-hero__actions,
  .alma-final__actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .alma-section--concept {
    padding: 72px 0 68px;
  }

  .alma-section--concept .alma-statement {
    margin: 0 auto;
  }

  .alma-section--concept .alma-statement h2 {
    margin: 8px auto 18px;
    font-size: 27px;
    line-height: 1.45;
  }

  .alma-section--concept .alma-statement>p:not(.alma-section-label) {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.9;
  }

  .alma-product-showcase {
    padding: 54px 0;
    background-position: 24% center;
  }

  .alma-product-showcase__content {
    padding: 26px 16px;
  }

  .alma-product-showcase__content h2 {
    white-space: normal;
    font-size: 27px;
    line-height: 1.45;
  }

  .alma-product-showcase__lead {
    font-size: 15px;
    line-height: 1.9;
  }

  .alma-product-points {
    gap: 11px;
    margin-top: 20px;
  }

  .alma-product-points>div {
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 12px;
    padding: 15px 14px;
  }

  .alma-product-points>div>span {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .alma-product-points>div>strong {
    font-size: 18px;
    line-height: 1.42;
  }

  .alma-product-points>div>p {
    font-size: 14.2px;
    line-height: 1.68;
  }

  .alma-product-points>div:nth-child(3)>p {
    line-height: 1.62;
  }

  .alma-floating-list {
    grid-template-columns: 1fr;
  }

  .alma-floating-list div:nth-child(7) {
    grid-column: auto;
  }

  .alma-compare-panel__item {
    padding: 24px 22px;
  }

  .alma-compare-panel__item strong {
    font-size: 20px;
  }

  .alma-section--fermentation {
    padding: 64px 0;
  }

  .alma-fermentation-diagram {
    max-width: 100%;
    gap: 18px;
    padding-top: 28px;
  }

  .alma-fermentation-diagram__item,
  .alma-fermentation-diagram__center {
    min-height: auto;
    padding: 18px;
    border-radius: 20px;
  }

  .alma-fermentation-diagram__item {
    font-size: 15px;
    line-height: 1.45;
  }

  .alma-fermentation-diagram__center {
    font-size: 20px;
    line-height: 1.45;
  }

  .alma-fermentation-diagram__item::after {
    bottom: -18px;
    height: 18px;
  }

  .alma-fermentation-diagram__center::before {
    top: -18px;
    height: 18px;
  }

  .alma-voice-row,
  .alma-purchase-layout {
    grid-template-columns: 1fr;
  }

  .alma-voice-row {
    gap: 14px;
  }

  .alma-voice-row article {
    padding: 30px 22px 82px;
    border-radius: 24px;
  }

  .alma-voice-row span {
    left: 22px;
    bottom: 24px;
  }

  .alma-voice-row article h3 {
    font-size: 17px;
  }

  .alma-section--choice {
    padding: 64px 0;
  }

  .alma-howto__copy p:not(.alma-section-label) {
    max-width: min(100%, 30em);
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.85;
  }

  .alma-section--choice .alma-choice-lead {
    max-width: min(100%, 30em);
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.85;
  }

  .alma-choice-list {
    max-width: 520px;
    margin-top: 26px;
    padding-left: 40px;
  }

  .alma-choice-list p {
    padding: 13px 0;
    font-size: 15px;
    line-height: 1.65;
  }

  .alma-purchase-card {
    padding: 36px 24px 26px;
    border-radius: 26px;
  }

  .alma-price {
    font-size: 44px !important;
  }

  .alma-purchase-card li {
    min-height: 42px;
    border-radius: 18px;
    font-size: 14px;
  }

  .alma-section--trust-light {
    padding: 72px 0 68px;
  }

  .alma-trust-light {
    padding: 0;
    margin: 0 auto;
  }

  .alma-trust-light h2 {
    margin: 8px auto 18px;
    font-size: 27px;
    line-height: 1.45;
  }

  .alma-trust-light p:not(.alma-section-label) {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.9;
  }

  .alma-line-box {
    gap: 22px;
  }

  .alma-faq summary {
    padding-right: 36px;
    font-size: 15.5px;
  }

  .alma-final {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .alma-lp {
    --alma-gutter: 28px;
  }

  .alma-lp h1 {
    font-size: 36px;
  }

  .alma-lp h2 {
    font-size: 25px;
  }

  .alma-section-label,
  .alma-eyebrow,
  .alma-kicker {
    font-size: 11px;
  }

  .alma-section-label::before,
  .alma-eyebrow::before,
  .alma-kicker::before {
    width: 20px;
  }

  .alma-price {
    font-size: 40px !important;
  }
}