/* ============================================================
   /honey-mead/css/honey-mead.css
   ORAMEL Honey Mead — 既存style.cssに重ねるダークトーン
   既存のデザイントークン(--gold等)を継承します
   ============================================================ */

/* === Honey Mead 専用トークン === */
.hm-body {
  --hm-bg:        #1A0E08;         /* 既存 --brown(#3E2A0F) より深い夜色 */
  --hm-bg-soft:   #221610;
  --hm-bg-card:   #1F1410;
  --hm-ink:       #F5ECDC;
  --hm-ink-soft:  #C8B89F;
  --hm-ink-mute:  #8A7A64;
  --hm-line:      rgba(201, 168, 76, 0.22);
  --hm-line-soft: rgba(201, 168, 76, 0.10);
  /* --gold は既存style.cssから継承(#C9A84C) */
}

/* === BASE === */
.hm-body {
  background: var(--hm-bg);
  color: var(--hm-ink);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  line-height: 1.95;
  overflow-x: hidden;
}
.hm-body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at 80% -20%, rgba(201,168,76,0.10), transparent 50%),
    radial-gradient(ellipse at -10% 60%, rgba(139,105,20,0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* 既存のリンクスタイルなどを夜トーンに */
.hm-body a { color: var(--hm-ink-soft); }

/* ============================================================
   GATE — 年齢確認ページ
   ============================================================ */
.hm-gate {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 5rem 1.5rem 2.5rem;
  text-align: center;
}
.hm-gate-brand {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.85rem;
  margin-bottom: 4rem;
  opacity: 0;
  animation: hmFadeUp 0.9s 0.1s ease forwards;
}
.hm-gate-mark {
  width: 3rem; height: 3rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hm-gate-mark::before {
  content: "";
  width: 0.5rem; height: 0.5rem;
  background: var(--gold);
  border-radius: 50%;
}
.hm-gate-logo {
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-indent: 0.5em;
}
.hm-gate-sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--hm-ink-soft);
  letter-spacing: 0.1em;
}
.hm-gate-eyebrow {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-indent: 0.45em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: hmFadeUp 0.9s 0.3s ease forwards;
}
.hm-gate-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: clamp(1.3rem, 3.4vw, 1.85rem);
  line-height: 2;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  color: var(--hm-ink);
  opacity: 0;
  animation: hmFadeUp 0.9s 0.45s ease forwards;
}
.hm-gate-ornament {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: var(--gold);
  margin: 1rem 0 2rem;
  letter-spacing: 0.5em;
  opacity: 0;
  animation: hmFadeUp 0.9s 0.6s ease forwards;
}
.hm-gate-text {
  max-width: 32rem;
  font-size: 0.875rem;
  line-height: 2.1;
  color: var(--hm-ink-soft);
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: hmFadeUp 0.9s 0.75s ease forwards;
}
.hm-dob-form {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  width: 100%;
  max-width: 32rem;
  opacity: 0;
  animation: hmFadeUp 0.9s 0.9s ease forwards;
}
.hm-dob-label {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-indent: 0.35em;
}
.hm-dob-fields {
  display: flex; gap: 0.875rem;
  align-items: flex-end; flex-wrap: wrap;
  justify-content: center;
}
.hm-dob-field {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
}
.hm-dob-field label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--hm-ink-soft);
  text-transform: uppercase;
}
.hm-dob-field input {
  width: 5.25rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hm-line);
  color: var(--hm-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  text-align: center;
  padding: 0.4rem 0 0.5rem;
  transition: border-color 0.3s;
  -moz-appearance: textfield;
  letter-spacing: 0.05em;
}
.hm-dob-field input::-webkit-outer-spin-button,
.hm-dob-field input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.hm-dob-field input:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.hm-dob-sep {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--gold);
  padding-bottom: 0.625rem;
}
.hm-gate-submit {
  margin-top: 0.5rem;
  background: transparent;
  color: var(--hm-ink);
  border: 1px solid var(--gold);
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  padding: 1.125rem 3.5rem;
  cursor: pointer;
  transition: all 0.4s ease;
}
.hm-gate-submit:hover {
  background: var(--gold);
  color: var(--hm-bg);
  letter-spacing: 0.45em;
  text-indent: 0.45em;
}
.hm-gate-error {
  color: #D4856B;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  min-height: 1.125rem;
  margin-top: 0.375rem;
  text-align: center;
}
.hm-gate-warning {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hm-line);
  max-width: 32rem;
  font-size: 0.7rem;
  color: var(--hm-ink-soft);
  line-height: 1.9;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: hmFadeUp 0.9s 1.05s ease forwards;
}
.hm-gate-warning strong {
  font-family: "Cinzel", serif;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.3em;
}
.hm-gate-leave {
  margin-top: 1.5rem;
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--hm-ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.125rem;
  transition: all 0.3s;
}
.hm-gate-leave:hover {
  color: var(--hm-ink);
  border-bottom-color: var(--hm-ink-soft);
}

/* ============================================================
   PRODUCTS PAGE — 共通
   ============================================================ */
.hm-body section { position: relative; z-index: 1; }

/* 既存 .section-tag をダーク版に */
.hm-body .section-tag {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.hm-body .section-heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  line-height: 1.85;
  color: var(--hm-ink);
  margin-bottom: 0.75rem;
}
.hm-body .section-heading-en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  color: var(--hm-ink-mute);
  font-weight: 300;
  margin-bottom: 3rem;
  display: block;
}

/* ============================================================
   HEADER (Honey Mead)
   ============================================================ */
.hm-header {
  background: rgba(26, 14, 8, 0);
  transition: background 0.5s, box-shadow 0.5s;
}
.hm-header.scrolled {
  background: rgba(26, 14, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--hm-line-soft);
}
.hm-header .logo,
.hm-header.scrolled .logo {
  color: var(--gold);
}
.hm-header .logo-ruby,
.hm-header.scrolled .logo-ruby {
  color: rgba(245, 236, 220, 0.65);
}
.hm-nav {
  display: flex; align-items: center; gap: 2.25rem;
}
.hm-nav a {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--hm-ink-soft);
  text-decoration: none;
  transition: color 0.3s;
  margin: 0;
}
.hm-nav a:hover { color: var(--gold); }
.hm-nav-back {
  border-left: 1px solid var(--hm-line);
  padding-left: 2rem;
  color: var(--hm-ink-mute) !important;
}
@media (max-width: 880px) {
  .hm-nav { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hm-hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 8.75rem 1.5rem 5rem;
  text-align: center;
  position: relative;
}
.hm-hero-content {
  position: relative; z-index: 2;
}
.hm-hero .hero-eyebrow {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.6em;
  color: var(--gold);
  text-indent: 0.6em;
  margin-bottom: 2.5rem;
  display: inline-block;
  opacity: 0; animation: hmFadeUp 1.2s 0.2s ease forwards;
}
.hm-hero .hero-eyebrow::before { display: none; }
.hm-hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 9vw, 6rem);
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  line-height: 1;
  color: var(--hm-ink);
  margin-bottom: 0.5rem;
  opacity: 0; animation: hmFadeUp 1.2s 0.4s ease forwards;
}
.hm-hero-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
  opacity: 0; animation: hmFadeUp 1.2s 0.6s ease forwards;
}
.hm-hero-jp {
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  line-height: 2.2;
  letter-spacing: 0.18em;
  margin-bottom: 2.5rem;
  color: var(--hm-ink);
  opacity: 0; animation: hmFadeUp 1.2s 0.8s ease forwards;
}
.hm-hero-tag {
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  color: var(--hm-ink-soft);
  letter-spacing: 0.2em;
  opacity: 0; animation: hmFadeUp 1.2s 1s ease forwards;
}
.hm-hero-line {
  position: absolute;
  bottom: 2rem; left: 50%;
  width: 1px; height: 3rem;
  background: linear-gradient(180deg, transparent, var(--gold));
  transform: translateX(-50%);
}

/* ============================================================
   STORY
   ============================================================ */
.hm-story {
  padding: 8.75rem 3.5rem 7.5rem;
  max-width: 73.75rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}
.hm-story-text { padding-right: 1.25rem; }
.hm-story-photo { aspect-ratio: 4/5; }

.hm-photo-frame {
  width: 100%;
  border: 1px solid var(--hm-line);
  position: relative;
  overflow: hidden;
}
.hm-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.hm-photo-frame::before {
  content: "";
  position: absolute; inset: 1.5rem;
  border: 1px solid var(--hm-line-soft);
}
.hm-photo-mark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cinzel", serif;
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 0.4em;
  text-indent: 0.4em;
}
.hm-photo-label {
  position: absolute;
  bottom: 2rem; left: 2rem; right: 2rem;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.8rem;
  color: var(--hm-ink-mute);
  letter-spacing: 0.15em;
}
.hm-photo-label small {
  display: block; font-size: 0.65rem;
  color: var(--gold); margin-top: 0.5rem;
  letter-spacing: 0.3em;
}

.hm-lead {
  font-size: 0.95rem;
  line-height: 2.2;
  color: var(--hm-ink-soft);
  letter-spacing: 0.04em;
  max-width: 40rem;
}
.hm-divider {
  text-align: left;
  margin: 1.75rem 0;
}
.hm-divider span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  letter-spacing: 0.5em;
}

/* ============================================================
   WHY
   ============================================================ */
.hm-why {
  padding: 7.5rem 3.5rem;
  background: var(--hm-bg-soft);
  text-align: center;
}
.hm-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 73.75rem;
  margin: 0 auto;
}
.hm-why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.hm-why-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
}
.hm-why-icon {
  width: 5rem; height: 5rem;
  margin: 0 auto 2rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-style: italic;
}
.hm-why-cap {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 0.875rem;
}
.hm-why-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.125rem;
  color: var(--hm-ink);
}
.hm-why-body {
  font-size: 0.85rem;
  line-height: 2;
  color: var(--hm-ink-soft);
}

/* ============================================================
   TASTING (既存 limited-stats と同流儀)
   ============================================================ */
.hm-tasting {
  padding: 8.75rem 3.5rem 7.5rem;
  max-width: 73.75rem;
  margin: 0 auto;
  text-align: center;
}
.hm-tasting-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--hm-line);
  border-bottom: 1px solid var(--hm-line);
  padding: 3rem 0;
  margin-top: 2rem;
}
.hm-tasting-cell {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid var(--hm-line-soft);
}
.hm-tasting-cell:last-child { border-right: none; }
.hm-tasting-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 2.125rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.hm-tasting-num small { font-size: 1.1rem; }
.hm-tasting-cap {
  font-family: "Cinzel", serif;
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  color: var(--hm-ink-mute);
  margin-bottom: 0.75rem;
}
.hm-tasting-val {
  font-size: 0.8rem;
  color: var(--hm-ink-soft);
  letter-spacing: 0.08em;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.hm-products {
  padding: 7.5rem 3.5rem;
  background: var(--hm-bg-soft);
  text-align: center;
}
.hm-product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 4rem auto 7.5rem;
  max-width: 73.75rem;
  text-align: left;
}
.hm-product-row:last-child { margin-bottom: 0; }
.hm-product-row.reverse { direction: rtl; }
.hm-product-row.reverse > * { direction: ltr; }

.hm-product-photo { aspect-ratio: 4/5; }
.hm-product-info .section-tag { margin-bottom: 0.875rem; }
.hm-product-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: var(--hm-ink);
  margin-bottom: 0.5rem;
}
.hm-product-name-en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 1.75rem;
}
.hm-product-desc-quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  border-left: 1px solid var(--hm-line);
  padding-left: 1rem;
}
.hm-product-desc {
  font-size: 0.9rem;
  line-height: 2.1;
  color: var(--hm-ink-soft);
  margin-bottom: 2rem;
}
.hm-product-spec {
  border-top: 1px solid var(--hm-line-soft);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1.5rem;
  font-size: 0.8rem;
}
.hm-product-spec dt {
  font-family: "Cinzel", serif;
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  color: var(--hm-ink-mute);
  align-self: center;
  text-transform: uppercase;
}
.hm-product-spec dd {
  color: var(--hm-ink-soft);
  letter-spacing: 0.05em;
}
.hm-product-cta {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  color: var(--gold) !important;
  background: transparent;
  border: 1px solid var(--gold);
  padding: 0.875rem 2.25rem;
  text-decoration: none;
  transition: all 0.35s;
  cursor: pointer;
  font-weight: normal;
  line-height: 1.5;
}
button.hm-product-cta { -webkit-appearance: none; appearance: none; }
.hm-product-cta:hover {
  background: var(--gold);
  color: var(--hm-bg) !important;
}

/* ============================================================
   GIFT
   ============================================================ */
.hm-gift {
  padding: 8.75rem 3.5rem 7.5rem;
  max-width: 73.75rem;
  margin: 0 auto;
  text-align: center;
}
.hm-gift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.hm-gift-card {
  border: 1px solid var(--hm-line-soft);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.4s, transform 0.4s;
  background: rgba(255, 255, 255, 0.01);
}
.hm-gift-card:hover {
  border-color: var(--gold);
  transform: translateY(-0.25rem);
}
.hm-gift-icon {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 2.625rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hm-gift-cap {
  font-family: "Cinzel", serif;
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  color: var(--hm-ink-mute);
  margin-bottom: 0.875rem;
}
.hm-gift-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  color: var(--hm-ink);
}
.hm-gift-quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.875rem;
}
.hm-gift-body {
  font-size: 0.8rem;
  color: var(--hm-ink-soft);
  line-height: 2;
}

/* ============================================================
   FAQ
   ============================================================ */
.hm-faq {
  padding: 7.5rem 1.5rem;
  background: var(--hm-bg-soft);
  text-align: center;
}
.hm-faq-list {
  max-width: 47.5rem;
  margin: 2rem auto 0;
  text-align: left;
}
.hm-faq-item { border-bottom: 1px solid var(--hm-line-soft); }
.hm-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  color: var(--hm-ink);
  font-family: "Noto Serif JP", serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  padding: 1.5rem 2rem 1.5rem 0;
  cursor: pointer;
  position: relative;
  line-height: 1.7;
}
.hm-faq-q::before {
  content: "Q";
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
  margin-right: 1.125rem;
  font-size: 0.875rem;
}
.hm-faq-q::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.125rem;
  font-family: "Cormorant Garamond", serif;
  transition: transform 0.3s;
}
.hm-faq-item.open .hm-faq-q::after { transform: translateY(-50%) rotate(45deg); }
.hm-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--hm-ink-soft);
  font-size: 0.85rem;
  line-height: 2.1;
  padding: 0 0 0 1.75rem;
}
.hm-faq-item.open .hm-faq-a {
  max-height: 25rem;
  padding: 0 0 1.75rem 1.75rem;
}
.hm-faq-a::before {
  content: "A";
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
  margin-right: 1.125rem;
  margin-left: -1.75rem;
  font-size: 0.875rem;
}

/* ============================================================
   CTA
   ============================================================ */
.hm-cta {
  padding: 8.75rem 1.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.08), transparent 60%),
    var(--hm-bg);
}
.hm-cta-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  line-height: 2;
  letter-spacing: 0.15em;
  margin: 1.5rem 0;
  color: var(--hm-ink);
}
.hm-cta-text {
  font-size: 0.875rem;
  color: var(--hm-ink-soft);
  line-height: 2.2;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}
.hm-cta-line {
  display: inline-block;
  background: #06C755;
  color: #fff !important;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  padding: 1.125rem 2.75rem;
  text-decoration: none;
  transition: opacity 0.3s;
}
.hm-cta-line:hover { opacity: 0.85; }
.hm-cta-note {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: var(--hm-ink-mute);
  letter-spacing: 0.1em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.hm-footer {
  background: #100A06;
  padding: 5rem 1.5rem 2.5rem;
  border-top: 1px solid var(--hm-line-soft);
}
.hm-footer-warn {
  text-align: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--hm-line-soft);
  margin-bottom: 3rem;
  font-size: 0.75rem;
  color: var(--hm-ink-soft);
  line-height: 2.1;
  letter-spacing: 0.05em;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}
.hm-footer-warn strong {
  display: inline-block;
  font-family: "Cinzel", serif;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 0.875rem;
  font-weight: 400;
}
.hm-footer-grid {
  max-width: 73.75rem;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.hm-footer-logo {
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hm-footer-logo em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--hm-ink-soft);
  margin-left: 0.5rem;
}
.hm-footer-text {
  font-size: 0.8rem;
  color: var(--hm-ink-soft);
  line-height: 2;
}
.hm-footer-h {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1.125rem;
  font-weight: 400;
}
.hm-footer-links { list-style: none; padding: 0; margin: 0; }
.hm-footer-links li { margin-bottom: 0.625rem; }
.hm-footer-links a {
  color: var(--hm-ink-soft);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s;
}
.hm-footer-links a:hover { color: var(--gold); }
.hm-footer-legal {
  text-align: center;
  font-size: 0.7rem;
  color: var(--hm-ink-mute);
  padding-top: 2rem;
  border-top: 1px solid var(--hm-line-soft);
  line-height: 2;
  max-width: 73.75rem;
  margin: 0 auto;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes hmFadeUp {
  from { opacity: 0; transform: translateY(0.75rem); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   既存 .reveal クラスのダーク版上書き(必要に応じて)
   既存 style.css の .reveal はダーク背景でもそのまま動作する
   ============================================================ */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .hm-story {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5.5rem 1.5rem 4.5rem;
  }
  .hm-story-text { padding-right: 0; order: 2; }
  .hm-story-photo { order: 1; }

  .hm-why { padding: 5rem 1.5rem; }
  .hm-why-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .hm-tasting { padding: 5rem 1.5rem; }
  .hm-tasting-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .hm-tasting-cell:nth-child(2) { border-right: none; }

  .hm-products { padding: 5rem 1.5rem; }
  .hm-product-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .hm-product-row.reverse { direction: ltr; }

  .hm-gift { padding: 5rem 1.5rem; }
  .hm-gift-grid { grid-template-columns: 1fr; gap: 1rem; }

  .hm-cta { padding: 5rem 1.5rem; }

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

  .hm-gate { padding: 3.75rem 1.25rem 2rem; }
  .hm-gate-brand { margin-bottom: 3rem; }
  .hm-dob-field input { width: 4.5rem; font-size: 1.25rem; }
}

@media (max-width: 540px) {
  .hm-tasting-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   LEGAL / PRIVACY ページ
   ============================================================ */
.hm-legal-main {
  position: relative; z-index: 1;
  padding: 8rem 1.5rem 6rem;
  min-height: 60vh;
}
.hm-legal-container {
  max-width: 50rem;
  margin: 0 auto;
}
.hm-legal-container .section-tag {
  margin-bottom: 1rem;
}
.hm-legal-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.12em;
  line-height: 1.7;
  color: var(--hm-ink);
  margin-bottom: 0.5rem;
}
.hm-legal-container .section-heading-en {
  margin-bottom: 3rem;
}
.hm-legal-intro {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--hm-ink-soft);
  letter-spacing: 0.04em;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--hm-line-soft);
  margin-bottom: 3rem;
}

.hm-legal-section {
  margin-bottom: 3.5rem;
}
.hm-legal-h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--hm-line);
  position: relative;
}
.hm-legal-h2::before {
  content: "✦";
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  margin-right: 0.875rem;
  font-size: 0.85rem;
  opacity: 0.6;
}

.hm-legal-pre {
  font-size: 0.85rem;
  line-height: 2;
  color: var(--hm-ink-soft);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.hm-legal-text {
  font-size: 0.85rem;
  line-height: 2;
  color: var(--hm-ink-soft);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.hm-legal-text:last-child { margin-bottom: 0; }

.hm-legal-dl {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1.25rem 2rem;
}
.hm-legal-dl dt {
  font-family: "Noto Serif JP", serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--hm-ink);
  padding-top: 0.125rem;
}
.hm-legal-dl dd {
  font-size: 0.85rem;
  line-height: 1.95;
  color: var(--hm-ink-soft);
  letter-spacing: 0.03em;
}
.hm-legal-dl dd a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--hm-line);
  padding-bottom: 0.0625rem;
  transition: border-color 0.3s;
}
.hm-legal-dl dd a:hover { border-bottom-color: var(--gold); }

.hm-legal-note {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--hm-ink-mute);
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}
.hm-legal-note-block {
  font-size: 0.78rem;
  color: var(--hm-ink-mute);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hm-line-soft);
}

.hm-legal-channels {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}
.hm-legal-channels li {
  font-size: 0.85rem;
  line-height: 2;
  color: var(--hm-ink-soft);
  padding: 1rem 1.25rem;
  border: 1px solid var(--hm-line-soft);
  background: rgba(255, 255, 255, 0.01);
}
.hm-legal-channels li strong {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: var(--hm-ink);
  letter-spacing: 0.08em;
}
.hm-legal-channels li a {
  color: var(--gold);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  word-break: break-all;
}
.hm-legal-channels li a:hover {
  text-decoration: underline;
}

.hm-legal-revised {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--hm-ink-mute);
  letter-spacing: 0.1em;
  text-align: right;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

@media (max-width: 720px) {
  .hm-legal-main { padding: 6rem 1rem 4rem; }
  .hm-legal-dl {
    grid-template-columns: 1fr;
    gap: 0.5rem 0;
  }
  .hm-legal-dl dt {
    font-weight: 500;
    color: var(--gold);
    margin-top: 0.75rem;
  }
  .hm-legal-dl dt:first-child { margin-top: 0; }
}

/* ============================================================
   LEGAL — h3 (サブセクション見出し)
   ============================================================ */
.hm-legal-h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--hm-ink);
  margin: 1.5rem 0 0.875rem;
  padding-left: 0.875rem;
  border-left: 2px solid var(--gold);
}
.hm-legal-section h3.hm-legal-h3:first-child {
  margin-top: 0;
}

/* ============================================================
   FOOTER — メールリンク用
   ============================================================ */
.hm-footer-links a[href^="mailto:"] {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* ============================================================
   STRONG (商品説明内の強調)
   ============================================================ */
.hm-emphasis {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

/* ============================================================
   TWO EXPRESSIONS (二つの表情の比較セクション)
   ============================================================ */
.hm-twoex {
  padding: 8.75rem 1.5rem 7.5rem;
  max-width: 73.75rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.hm-twoex::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 4rem;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.hm-twoex-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 3rem;
  text-align: left;
}

.hm-twoex-card {
  border: 1px solid var(--hm-line-soft);
  padding: 3rem 2.5rem;
  background: rgba(255, 255, 255, 0.015);
  position: relative;
  transition: border-color 0.4s, transform 0.4s;
}
.hm-twoex-card:hover {
  border-color: var(--gold);
  transform: translateY(-0.25rem);
}
.hm-twoex-card.hm-twoex-a {
  background: linear-gradient(135deg, rgba(139, 105, 20, 0.04), transparent 60%);
}
.hm-twoex-card.hm-twoex-b {
  background: linear-gradient(225deg, rgba(232, 201, 122, 0.04), transparent 60%);
}

.hm-twoex-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.hm-twoex-cap {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--hm-ink-mute);
  margin-bottom: 1rem;
}
.hm-twoex-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--hm-ink);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.hm-twoex-style {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--hm-line-soft);
}
.hm-twoex-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hm-twoex-list li {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--hm-ink-soft);
  letter-spacing: 0.04em;
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}
.hm-twoex-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.65rem;
  opacity: 0.7;
}

.hm-twoex-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hm-twoex-divider span {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  padding: 0.5rem 0.75rem;
  background: var(--hm-bg);
  position: relative;
  z-index: 2;
}
.hm-twoex-divider::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--hm-line) 20%, var(--hm-line) 80%, transparent);
  z-index: 1;
}

.hm-twoex-note {
  margin-top: 3.5rem;
  font-size: 0.875rem;
  line-height: 2.1;
  color: var(--hm-ink-soft);
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 880px) {
  .hm-twoex { padding: 5rem 1.25rem; }
  .hm-twoex-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hm-twoex-card { padding: 2rem 1.5rem; }
  .hm-twoex-divider {
    padding: 0.5rem 0;
  }
  .hm-twoex-divider::before {
    top: 50%; bottom: auto;
    left: 0; right: 0;
    width: auto; height: 1px;
    background: linear-gradient(90deg, transparent, var(--hm-line) 20%, var(--hm-line) 80%, transparent);
  }
}

/* ============================================================
   PRIVACY POLICY — ol/ul スタイル
   ============================================================ */
.hm-legal-ol,
.hm-legal-ul {
  margin: 1rem 0 1.5rem;
  padding-left: 0;
  list-style: none;
  counter-reset: legalCounter;
}
.hm-legal-ol li,
.hm-legal-ul li {
  font-size: 0.85rem;
  line-height: 2;
  color: var(--hm-ink-soft);
  letter-spacing: 0.04em;
  padding: 0.4rem 0 0.4rem 2rem;
  position: relative;
}
.hm-legal-ol li::before {
  counter-increment: legalCounter;
  content: counter(legalCounter) ".";
  position: absolute;
  left: 0;
  top: 0.4rem;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 500;
  width: 1.5rem;
}
.hm-legal-ul li::before {
  content: "✦";
  position: absolute;
  left: 0.25rem;
  top: 0.65rem;
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.7;
}



/* ============================================================
   TWO EXPRESSIONS — 液体アニメーション(2026年5月追加)
   ============================================================ */

/* 既存の hm-twoex-card に flexbox を効かせて、液体エリアを底に配置 */
.hm-twoex-card {
  display: flex;
  flex-direction: column;
  overflow: hidden; /* 液体が枠からはみ出さないように */
}

/* リストの下マージンを詰める(液体との余白を最小に) */
.hm-twoex-card .hm-twoex-list {
  margin-bottom: 8px;
}
.hm-twoex-card .hm-twoex-list li:last-child {
  padding-bottom: 0;
}

/* 液体ステージ:カードの底に貼り付け、横は端から端まで */
.hm-liquid-stage {
    width: calc(100% + 2px);
    margin-left: -1px;
    margin-right: -1px;
    margin-bottom: -1px;
    margin-top: -80px;
    height: 300px;
    position: relative;
    overflow: hidden;
}
.hm-liquid-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── 波アニメ:transform方式でクロスブラウザ対応 ─── */
.hm-wave-adore-1 {
  transform-origin: center center;
  animation: hmWaveSlide 6.5s ease-in-out infinite, hmWaveBob 4.5s ease-in-out infinite;
}
.hm-wave-adore-2 {
  transform-origin: center center;
  animation: hmWaveSlide 8.5s ease-in-out infinite reverse, hmWaveBob 5.5s ease-in-out infinite reverse;
}
.hm-wave-kaguya-1 {
  transform-origin: center center;
  animation: hmWaveSlide 5.5s ease-in-out infinite, hmWaveBob 4s ease-in-out infinite;
}
.hm-wave-kaguya-2 {
  transform-origin: center center;
  animation: hmWaveSlide 7.5s ease-in-out infinite reverse, hmWaveBob 5s ease-in-out infinite reverse;
}

@keyframes hmWaveSlide {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50%      { transform: translateX(-20px) scaleY(1.05); }
}
@keyframes hmWaveBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
/* 2つのアニメを合成 */
@keyframes hmBigWaveA {
  0%, 100% { transform: translate(0, 0) scaleY(1); }
  25%      { transform: translate(-30px, -4px) scaleY(1.04); }
  50%      { transform: translate(0, 2px) scaleY(0.97); }
  75%      { transform: translate(30px, -3px) scaleY(1.03); }
}
@keyframes hmBigWaveB {
  0%, 100% { transform: translate(0, 0) scaleY(1); }
  33%      { transform: translate(40px, 3px) scaleY(0.96); }
  66%      { transform: translate(-30px, -5px) scaleY(1.05); }
}
.hm-wave-adore-1 { animation: hmBigWaveA 6.5s ease-in-out infinite; }
.hm-wave-adore-2 { animation: hmBigWaveB 7.5s ease-in-out infinite; }
.hm-wave-kaguya-1 { animation: hmBigWaveA 5.5s ease-in-out infinite; }
.hm-wave-kaguya-2 { animation: hmBigWaveB 6.5s ease-in-out infinite; }

/* モバイル時の調整 */
@media (max-width: 720px) {
  .hm-liquid-stage {
    height: 180px;
  }
.hm-liquid-stage {
    margin-top: -40px;
}
}

/* ユーザーが「動きを減らす」設定をしている場合は静止画に */
@media (prefers-reduced-motion: reduce) {
  .hm-wave-adore-1,
  .hm-wave-adore-2,
  .hm-wave-kaguya-1,
  .hm-wave-kaguya-2 {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════
   Phase 4-E v4 追加修正
   1. ×ボタン位置&サイズ(モーダル)
   2. 商品ごとの上下余白増やす
   3. (液体アニメは上で修正済み)
   4. フォント全体大きく(65歳までターゲット読みやすさ)
   ═══════════════════════════════════════════════════ */

/* ─── 1. モーダル×ボタン:大きく+位置調整 ─── */
.hm-shop-modal-close {
  top: 0.85rem !important;
  right: 0.85rem !important;
  width: 38px !important;
  height: 38px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(184,134,11,.25) !important;
  color: rgba(232,220,196,.8) !important;
  transition: all .25s ease;
}
.hm-shop-modal-close:hover {
  background: rgba(184,134,11,.18) !important;
  color: var(--gold, #C9A84C) !important;
  border-color: var(--gold, #C9A84C) !important;
}
.hm-shop-modal-close svg {
  width: 20px !important;
  height: 20px !important;
}
@media (max-width: 600px) {
  .hm-shop-modal-close {
    top: 0.75rem !important;
    right: 0.75rem !important;
    width: 42px !important;
    height: 42px !important;
  }
  .hm-shop-modal-close svg {
    width: 22px !important;
    height: 22px !important;
  }
}

/* ─── 2. 商品ごとの上下余白を増やす ─── */
.hm-product-row {
  padding: 6rem 0;
}
.hm-product-row + .hm-product-row {
  border-top: 1px solid var(--hm-line-soft, rgba(184,134,11,.12));
}
@media (max-width: 720px) {
  .hm-product-row {
    padding: 4rem 0;
  }
}

/* ─── 4. フォント全体大きく(65歳まで読みやすく) ─── */
/* 商品名 */
.hm-product-name {
  font-size: 1.95rem !important;
  line-height: 1.45 !important;
  letter-spacing: 0.04em;
}
.hm-product-name-en {
  font-size: 1rem !important;
  letter-spacing: 0.04em;
}
/* キャッチ */
.hm-product-desc-quote {
  font-size: 1.2rem !important;
  line-height: 1.7 !important;
  letter-spacing: 0.04em;
}
/* 本文 */
.hm-product-desc {
  font-size: 1rem !important;
  line-height: 2.05 !important;
  letter-spacing: 0.06em;
}
.hm-emphasis {
  font-size: 1.08rem !important;
}
/* スペック表 */
.hm-product-spec {
  font-size: 0.95rem !important;
}
.hm-product-spec dt {
  font-size: 0.78rem !important;
  letter-spacing: 0.16em !important;
}
.hm-product-spec dd {
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
}
/* CTAボタン */
.hm-product-cta {
  font-size: 0.85rem !important;
  letter-spacing: 0.32em !important;
  padding: 1.05rem 2.5rem !important;
}

/* リード文 */
.hm-lead {
  font-size: 1rem !important;
  line-height: 2.1 !important;
}
/* セクションヘッダー */
.section-heading {
  font-size: 2.2rem !important;
  line-height: 1.5 !important;
}
.section-heading-en {
  font-size: 0.85rem !important;
}
.section-tag {
  font-size: 0.78rem !important;
  letter-spacing: 0.5em !important;
}

/* WHYセクション */
.hm-why-body {
  font-size: 1rem !important;
  line-height: 1.95 !important;
}
.hm-why-tag {
  font-size: 0.78rem !important;
}
.hm-why-title {
  font-size: 1.4rem !important;
}

/* 二つの表情 */
.hm-twoex-cap {
  font-size: 0.78rem !important;
}
.hm-twoex-title {
  font-size: 1.55rem !important;
}
.hm-twoex-style {
  font-size: 0.95rem !important;
}
.hm-twoex-list li {
  font-size: 0.95rem !important;
  line-height: 1.85 !important;
}
.hm-twoex-note {
  font-size: 0.95rem !important;
  line-height: 2 !important;
}

/* テイスティング(Numbers) */
.hm-tasting-num {
  font-size: 3rem !important;
}
.hm-tasting-text {
  font-size: 0.9rem !important;
  line-height: 1.85 !important;
}

/* GIFTセクション */
.hm-gift-text {
  font-size: 1rem !important;
  line-height: 2 !important;
}

/* FAQ */
.hm-faq-q {
  font-size: 1rem !important;
  line-height: 1.7 !important;
}
.hm-faq-a {
  font-size: 0.95rem !important;
  line-height: 1.95 !important;
}

/* 最終CTA */
.hm-cta-text {
  font-size: 1rem !important;
  line-height: 2 !important;
}

/* スマホ時さらに調整(小さくなりすぎ防止) */
@media (max-width: 720px) {
  .hm-product-name { font-size: 1.65rem !important; }
  .hm-product-desc-quote { font-size: 1.05rem !important; }
  .hm-product-desc { font-size: 0.95rem !important; }
  .section-heading { font-size: 1.7rem !important; }
  .hm-twoex-title { font-size: 1.35rem !important; }
}