@charset "UTF-8";

:root {
  --hf-navy: #102f47;
  --hf-text: #496474;
  --hf-muted: #71838d;
  --hf-aqua: #10adb6;
  --hf-aqua-soft: #e8f8f8;
  --hf-green: #67b95c;
  --hf-green-soft: #edf8eb;
  --hf-gold: #d3a542;
  --hf-gold-soft: #fff6d9;
  --hf-coral: #df866f;
  --hf-coral-soft: #fff0ea;
  --hf-blue: #4f99d5;
  --hf-blue-soft: #eaf5ff;
  --hf-purple: #9272bd;
  --hf-purple-soft: #f4effc;
  --hf-line: rgba(16, 47, 71, .10);
  --hf-shadow: 0 18px 48px rgba(16, 47, 71, .08);
  --hf-shadow-soft: 0 10px 27px rgba(16, 47, 71, .06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--hf-text);
  background: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.85;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.hf-shell {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 44px));
  margin: 0 auto;
}

section[data-food-ambient] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

section[data-food-ambient] > .hf-shell {
  position: relative;
  z-index: 2;
}

.hf-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16, 47, 71, .07);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
}

.hf-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hf-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.hf-company-logo {
  width: 150px;
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
}

.hf-brand-divider {
  width: 1px;
  height: 28px;
  background: rgba(16, 47, 71, .14);
}

.hf-service-name {
  color: var(--hf-navy);
  font-size: 18px;
  font-weight: 900;
}

.hf-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.hf-nav a {
  min-height: 40px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.hf-nav a:hover {
  transform: translateY(-2px);
  box-shadow: var(--hf-shadow-soft);
}

.hf-nav .tone-aqua {
  color: #087a82;
  background: var(--hf-aqua-soft);
  border-color: #c8e8ea;
}

.hf-nav .tone-green {
  color: #3e7f3a;
  background: var(--hf-green-soft);
  border-color: #d1eacb;
}

.hf-nav .tone-gold {
  color: #775d20;
  background: var(--hf-gold-soft);
  border-color: #ecdda8;
}

.hf-nav .tone-coral {
  color: #a45c49;
  background: var(--hf-coral-soft);
  border-color: #f1d2c9;
}

.hf-hero {
  padding: clamp(68px, 8vw, 112px) 0 clamp(60px, 7vw, 92px);
  background:
    radial-gradient(circle at 8% 18%, rgba(103, 185, 92, .11), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(211, 165, 66, .10), transparent 23%),
    linear-gradient(135deg, #fbfefb 0%, #ffffff 48%, #fffdfa 100%);
}

.hf-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, .98fr);
  gap: clamp(36px, 4.8vw, 72px);
  align-items: center;
}

.hf-eyebrow,
.hf-section-label {
  margin: 0 0 10px;
  color: var(--hf-aqua);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
}

.hf-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--hf-navy);
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.28;
  letter-spacing: -.035em;
}

.hf-hero h1 span,
.hf-section-head h2 span,
.hf-cta-card h2 span {
  display: block;
}

.hf-lead {
  max-width: 740px;
  margin: 22px 0 0;
  color: #405f70;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 2;
}

.hf-price-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.hf-price-badges span {
  min-height: 36px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--hf-navy);
  background: #ffffff;
  border: 1px solid rgba(16, 47, 71, .09);
  box-shadow: var(--hf-shadow-soft);
  font-size: 13px;
  font-weight: 800;
}

.hf-price-badges span:nth-child(1) {
  background: var(--hf-gold-soft);
}

.hf-price-badges span:nth-child(2) {
  background: var(--hf-aqua-soft);
}

.hf-price-badges span:nth-child(3) {
  background: var(--hf-green-soft);
}

.hf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hf-actions-center {
  justify-content: center;
}

.hf-btn {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}

.hf-btn:hover {
  transform: translateY(-2px);
}

.hf-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #11b4bd, #087f89);
  box-shadow: 0 15px 34px rgba(17, 173, 182, .22);
}

.hf-btn-secondary {
  color: var(--hf-navy);
  border-color: rgba(16, 47, 71, .13);
  background: #ffffff;
  box-shadow: var(--hf-shadow-soft);
}

.hf-btn-order {
  color: #ffffff;
  background: linear-gradient(135deg, #d7ad4b, #a97c25);
  box-shadow: 0 15px 34px rgba(211, 165, 66, .22);
}

.hf-hero-visual {
  min-height: 570px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "freezer microwave"
    "meal meal";
  gap: 18px;
  border: 1px solid rgba(16, 47, 71, .08);
  border-radius: 44px;
  background: #ffffff;
  box-shadow: var(--hf-shadow);
}

.hf-hero-card {
  min-height: 170px;
  padding: 22px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  border: 1px solid var(--hf-line);
  border-radius: 28px;
}

.hero-freezer {
  grid-area: freezer;
  background: linear-gradient(145deg, var(--hf-blue-soft), #ffffff);
}

.hero-microwave {
  grid-area: microwave;
  background: linear-gradient(145deg, var(--hf-coral-soft), #ffffff);
}

.hf-hero-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 21px;
  background: rgba(255, 255, 255, .8);
}

.hero-freezer .hf-hero-icon {
  color: #367dac;
}

.hero-microwave .hf-hero-icon {
  color: #b9624d;
}

.hf-hero-icon svg {
  width: 40px;
  height: 40px;
}

.hf-hero-icon svg *,
.hf-feature-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hf-hero-card span {
  display: block;
  color: var(--hf-aqua);
  font-size: 11px;
  font-weight: 900;
}

.hf-hero-card strong {
  display: block;
  margin-top: 4px;
  color: var(--hf-navy);
  font-size: 18px;
  line-height: 1.45;
}

.hf-hero-card p {
  margin: 4px 0 0;
  font-size: 13px;
}

.hf-hero-meal {
  grid-area: meal;
  min-height: 300px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, .9fr);
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(211, 165, 66, .18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 18%, rgba(211, 165, 66, .10), transparent 24%),
    #ffffff;
}

.hf-meal-image {
  min-height: 250px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: #ffffff;
  overflow: hidden;
}

.hf-meal-image img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: #ffffff;
}

.hf-hero-meal span {
  display: block;
  color: var(--hf-gold);
  font-size: 13px;
  font-weight: 900;
}

.hf-hero-meal strong {
  display: block;
  margin-top: 7px;
  color: var(--hf-navy);
  font-size: 24px;
  line-height: 1.5;
}

.hf-section,
.hf-cta {
  padding: clamp(60px, 8vw, 104px) 0;
}

.hf-section-head {
  max-width: 980px;
  margin-bottom: 38px;
}

.hf-section-head h2,
.hf-cta-card h2 {
  margin: 0;
  color: var(--hf-navy);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.48;
  letter-spacing: -.025em;
}

.hf-section-head p,
.hf-cta-card > p:not(.hf-section-label) {
  max-width: 980px;
  margin: 15px 0 0;
  color: #526d7c;
  font-size: 16px;
  line-height: 1.95;
}

.hf-easy {
  background: #ffffff;
}

.hf-easy-flow {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr;
  gap: 13px;
  align-items: center;
}

.hf-easy-flow article {
  min-height: 300px;
  padding: 24px 21px;
  border: 1px solid var(--hf-line);
  border-radius: 28px;
  box-shadow: var(--hf-shadow-soft);
}

.hf-easy-flow article > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: var(--hf-navy);
  font-size: 13px;
  font-weight: 900;
}

.hf-feature-icon {
  width: 64px;
  height: 64px;
  margin-top: 18px;
  display: grid;
  place-items: center;
  border-radius: 21px;
  color: var(--hf-aqua);
  background: rgba(255, 255, 255, .78);
}

.hf-feature-icon svg {
  width: 39px;
  height: 39px;
}

.hf-easy-flow h3 {
  margin: 17px 0 0;
  color: var(--hf-navy);
  font-size: 20px;
}

.hf-easy-flow p {
  margin: 9px 0 0;
  font-size: 14px;
}

.hf-easy-flow > i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--hf-aqua);
  font-style: normal;
  font-weight: 900;
}

.tone-blue {
  background: linear-gradient(150deg, var(--hf-blue-soft), #ffffff);
}

.tone-aqua {
  background: linear-gradient(150deg, var(--hf-aqua-soft), #ffffff);
}

.tone-green {
  background: linear-gradient(150deg, var(--hf-green-soft), #ffffff);
}

.tone-gold {
  background: linear-gradient(150deg, var(--hf-gold-soft), #ffffff);
}

.tone-coral {
  background: linear-gradient(150deg, var(--hf-coral-soft), #ffffff);
}

.tone-purple {
  background: linear-gradient(150deg, var(--hf-purple-soft), #ffffff);
}

.hf-benefits {
  background:
    radial-gradient(circle at 10% 15%, rgba(17, 173, 182, .06), transparent 22%),
    #ffffff;
}

.hf-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.hf-benefit-grid article {
  min-height: 210px;
  padding: 25px;
  border: 1px solid var(--hf-line);
  border-radius: 28px;
  box-shadow: var(--hf-shadow-soft);
}

.hf-benefit-grid h3 {
  margin: 0;
  color: var(--hf-navy);
  font-size: 21px;
}

.hf-benefit-grid p {
  margin: 10px 0 0;
  font-size: 14px;
}

.hf-trust {
  background: #ffffff;
}

.hf-trust-panel {
  padding: clamp(30px, 5vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(103, 185, 92, .18);
  border-radius: 36px;
  background:
    radial-gradient(circle at 84% 18%, rgba(103, 185, 92, .10), transparent 24%),
    #ffffff;
  box-shadow: var(--hf-shadow);
}

.hf-trust-copy h2 {
  margin: 0;
  color: var(--hf-navy);
  font-size: clamp(32px, 3.8vw, 47px);
  line-height: 1.48;
}

.hf-trust-copy h2 span {
  display: block;
}

.hf-trust-copy > p:last-child {
  margin: 15px 0 0;
}

.hf-trust-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.hf-trust-tags span {
  min-height: 88px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--hf-navy);
  background: #ffffff;
  border: 1px solid var(--hf-line);
  box-shadow: var(--hf-shadow-soft);
  font-weight: 900;
}

.hf-trust-tags span:nth-child(1) {
  background: var(--hf-blue-soft);
}

.hf-trust-tags span:nth-child(2) {
  background: var(--hf-green-soft);
}

.hf-trust-tags span:nth-child(3) {
  background: var(--hf-gold-soft);
}

.hf-trust-tags span:nth-child(4) {
  background: var(--hf-aqua-soft);
}

.hf-menu {
  background: #ffffff;
}

.hf-menu-head {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.hf-price-panel {
  padding: 17px 20px;
  display: grid;
  gap: 4px;
  border-radius: 23px;
  background: var(--hf-gold-soft);
  border: 1px solid rgba(211, 165, 66, .18);
}

.hf-price-panel strong {
  color: var(--hf-navy);
  font-size: 19px;
}

.hf-price-panel span {
  font-size: 12px;
  font-weight: 700;
}

.hf-loading {
  padding: 24px;
  text-align: center;
  color: var(--hf-muted);
}

.hf-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hf-product-card {
  min-width: 0;
  padding: 0;
  display: grid;
  grid-template-rows: 250px auto;
  border: 1px solid rgba(16, 47, 71, .08);
  border-radius: 27px;
  background: #ffffff;
  box-shadow: var(--hf-shadow-soft);
  overflow: hidden;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}

.hf-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hf-shadow);
}

.hf-product-image {
  min-height: 250px;
  display: grid;
  place-items: center;
  background: #ffffff;
  overflow: hidden;
}

.hf-product-image img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: #ffffff;
}

.hf-product-copy {
  padding: 17px 18px 19px;
  border-top: 1px solid rgba(16, 47, 71, .06);
}

.hf-product-copy strong {
  display: block;
  color: var(--hf-navy);
  font-size: 16px;
  line-height: 1.55;
}

.hf-product-copy span {
  display: inline-flex;
  margin-top: 9px;
  color: var(--hf-aqua);
  font-size: 12px;
  font-weight: 900;
}

.hf-menu-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hf-introduction {
  background: #ffffff;
}

.hf-intro-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.hf-intro-flow article {
  min-height: 255px;
  padding: 23px 20px;
  border: 1px solid var(--hf-line);
  border-radius: 27px;
  background: #ffffff;
  box-shadow: var(--hf-shadow-soft);
}

.hf-intro-flow article:nth-child(1) {
  background: var(--hf-blue-soft);
}

.hf-intro-flow article:nth-child(2) {
  background: var(--hf-aqua-soft);
}

.hf-intro-flow article:nth-child(3) {
  background: var(--hf-green-soft);
}

.hf-intro-flow article:nth-child(4) {
  background: var(--hf-gold-soft);
}

.hf-intro-flow article:nth-child(5) {
  background: var(--hf-coral-soft);
}

.hf-intro-flow span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: var(--hf-navy);
  font-size: 13px;
  font-weight: 900;
}

.hf-intro-flow h3 {
  margin: 18px 0 0;
  color: var(--hf-navy);
  font-size: 19px;
}

.hf-intro-flow p {
  margin: 9px 0 0;
  font-size: 14px;
}

.hf-faq {
  background: #ffffff;
}

.hf-faq-list {
  display: grid;
  gap: 13px;
}

.hf-faq-item {
  border: 1px solid var(--hf-line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--hf-shadow-soft);
  overflow: hidden;
}

.hf-faq-item:nth-child(4n + 1) {
  border-left: 7px solid var(--hf-aqua);
}

.hf-faq-item:nth-child(4n + 2) {
  border-left: 7px solid var(--hf-green);
}

.hf-faq-item:nth-child(4n + 3) {
  border-left: 7px solid var(--hf-gold);
}

.hf-faq-item:nth-child(4n + 4) {
  border-left: 7px solid var(--hf-coral);
}

.hf-faq-item button {
  position: relative;
  width: 100%;
  min-height: 82px;
  padding: 20px 68px 20px 24px;
  border: 0;
  background: transparent;
  color: var(--hf-navy);
  text-align: left;
  font-weight: 900;
}

.hf-faq-item button::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--hf-navy);
  background: var(--hf-aqua-soft);
  font-size: 22px;
  transform: translateY(-50%);
  transition: transform .2s ease;
}

.hf-faq-item.is-open button::after {
  transform: translateY(-50%) rotate(45deg);
}

.hf-faq-item div {
  display: none;
  padding: 0 24px 22px;
}

.hf-faq-item.is-open div {
  display: block;
}

.hf-faq-item p {
  margin: 0;
}

.hf-cta {
  background:
    radial-gradient(circle at 17% 18%, rgba(17, 173, 182, .10), transparent 22%),
    radial-gradient(circle at 83% 80%, rgba(211, 165, 66, .10), transparent 22%),
    #ffffff;
}

.hf-cta-card {
  padding: clamp(40px, 6vw, 72px);
  border: 1px solid var(--hf-line);
  border-radius: 38px;
  background: #ffffff;
  box-shadow: var(--hf-shadow);
  text-align: center;
}

.hf-cta-card > p:not(.hf-section-label) {
  margin-left: auto;
  margin-right: auto;
}

.hf-footer {
  padding: 38px 0;
  border-top: 1px solid rgba(16, 47, 71, .08);
  background: #ffffff;
}

.hf-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.hf-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.hf-footer-brand img {
  width: 140px;
  max-height: 40px;
  object-fit: contain;
}

.hf-footer-brand span {
  color: var(--hf-navy);
  font-weight: 900;
}

.hf-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.hf-footer nav a {
  color: #58717f;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

/* Food ambient icons */
.hf-food-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hf-food-shape {
  position: absolute;
  width: 88px;
  height: 88px;
  opacity: .13;
  animation: hfFloat 8s ease-in-out infinite alternate;
}

.hf-food-shape svg {
  width: 100%;
  height: 100%;
}

.hf-food-shape:nth-child(1) {
  left: 2%;
  top: 8%;
  color: var(--hf-green);
}

.hf-food-shape:nth-child(2) {
  right: 3%;
  top: 12%;
  color: var(--hf-coral);
  animation-delay: .8s;
}

.hf-food-shape:nth-child(3) {
  left: 4%;
  bottom: 8%;
  color: var(--hf-gold);
  animation-delay: 1.5s;
}

.hf-food-shape:nth-child(4) {
  right: 5%;
  bottom: 9%;
  color: var(--hf-aqua);
  animation-delay: 2.1s;
}

.hf-food-shape svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes hfFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(-4deg) scale(.9);
  }
  to {
    transform: translate3d(10px, -14px, 0) rotate(6deg) scale(1.08);
  }
}

/* Modals */
.hf-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.hf-modal.is-open {
  display: block;
}

.hf-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(16, 47, 71, .52);
  backdrop-filter: blur(5px);
}

.hf-modal-panel {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 28px));
  max-height: calc(100vh - 36px);
  margin: 18px auto;
  padding: 30px;
  border-radius: 30px;
  background: #ffffff;
  overflow-y: auto;
  box-shadow: 0 28px 90px rgba(16, 47, 71, .24);
}

.hf-modal-wide {
  width: min(1100px, calc(100% - 28px));
}

.hf-modal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--hf-navy);
  background: var(--hf-aqua-soft);
  font-size: 25px;
  font-weight: 800;
}

.hf-detail-grid {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}

.hf-detail-image {
  min-height: 390px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: #ffffff;
  overflow: hidden;
}

.hf-detail-image img {
  width: 100%;
  height: 390px;
  object-fit: contain;
  background: #ffffff;
}

.hf-detail-copy h2 {
  margin: 8px 0 0;
  color: var(--hf-navy);
  font-size: 32px;
  line-height: 1.45;
}

.hf-detail-copy > p {
  line-height: 1.9;
}

.hf-detail-meta,
.hf-nutrition-list {
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hf-detail-meta div,
.hf-nutrition-list div {
  padding: 13px;
  border-radius: 17px;
  background: var(--hf-aqua-soft);
}

.hf-detail-meta dt,
.hf-nutrition-list dt {
  color: var(--hf-muted);
  font-size: 11px;
  font-weight: 800;
}

.hf-detail-meta dd,
.hf-nutrition-list dd {
  margin: 3px 0 0;
  color: var(--hf-navy);
  font-weight: 800;
}

.hf-detail-notes {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.hf-detail-notes section {
  padding: 17px;
  border-radius: 19px;
  background: var(--hf-gold-soft);
}

.hf-detail-notes h3,
.hf-detail-notes p {
  margin: 0;
}

.hf-detail-notes p {
  margin-top: 5px;
}

.hf-order-table {
  margin-top: 22px;
  display: grid;
  gap: 8px;
}

.hf-order-row {
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 100px;
  gap: 13px;
  align-items: center;
  border-radius: 17px;
  background: #ffffff;
  border: 1px solid var(--hf-line);
}

.hf-order-row strong {
  color: var(--hf-aqua);
  font-size: 12px;
}

.hf-order-row span {
  color: var(--hf-navy);
  font-weight: 800;
}

.hf-order-row input {
  width: 100%;
  min-height: 42px;
  padding: 6px 10px;
  border: 1px solid rgba(16, 47, 71, .15);
  border-radius: 12px;
}

.hf-order-summary {
  margin-top: 20px;
  padding: 20px;
  display: grid;
  gap: 8px;
  border-radius: 22px;
  background: var(--hf-gold-soft);
}

.hf-order-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hf-order-summary .total {
  padding-top: 10px;
  border-top: 1px solid rgba(16, 47, 71, .12);
  color: var(--hf-navy);
  font-size: 20px;
}

.hf-form-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hf-form-grid label {
  display: grid;
  gap: 6px;
  color: var(--hf-navy);
  font-size: 13px;
  font-weight: 800;
}

.hf-form-grid .full {
  grid-column: 1 / -1;
}

.hf-form-grid input,
.hf-form-grid textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(16, 47, 71, .14);
  border-radius: 14px;
  background: #ffffff;
}

.hf-submit-button {
  width: 100%;
  margin-top: 20px;
}

.hf-form-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1180px) {
  .hf-header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .hf-nav {
    justify-content: flex-start;
  }

  .hf-hero-grid {
    grid-template-columns: 1fr;
  }

  .hf-easy-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hf-easy-flow > i {
    display: none;
  }

  .hf-intro-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hf-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hf-shell {
    width: min(100% - 24px, 1220px);
  }

  .hf-company-logo {
    width: 126px;
  }

  .hf-brand-divider {
    display: none;
  }

  .hf-service-name {
    font-size: 15px;
  }

  .hf-nav {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hf-nav a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hf-hero {
    padding-top: 48px;
  }

  .hf-hero h1 {
    font-size: clamp(28px, 7.8vw, 34px);
    line-height: 1.42;
  }

  .hf-lead {
    font-size: 15px;
    line-height: 1.9;
  }

  .hf-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hf-btn {
    width: 100%;
  }

  .hf-hero-visual {
    min-height: 0;
    padding: 18px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "freezer"
      "microwave"
      "meal";
  }

  .hf-hero-card {
    min-height: 130px;
  }

  .hf-hero-meal {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hf-meal-image,
  .hf-meal-image img {
    min-height: 0;
    height: 230px;
  }

  .hf-section,
  .hf-cta {
    padding: 58px 0;
  }

  .hf-section-head {
    margin-bottom: 28px;
  }

  .hf-section-head h2,
  .hf-cta-card h2,
  .hf-trust-copy h2 {
    font-size: clamp(25px, 6.8vw, 30px);
    line-height: 1.5;
  }

  .hf-section-head p {
    font-size: 15px;
    line-height: 1.9;
  }

  .hf-easy-flow,
  .hf-benefit-grid,
  .hf-trust-panel,
  .hf-product-grid,
  .hf-intro-flow {
    grid-template-columns: 1fr;
  }

  .hf-menu-head {
    grid-template-columns: 1fr;
  }

  .hf-trust-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hf-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hf-product-card {
    grid-template-rows: 180px auto;
    border-radius: 21px;
  }

  .hf-product-image,
  .hf-product-image img {
    min-height: 180px;
    height: 180px;
  }

  .hf-product-copy {
    padding: 13px;
  }

  .hf-product-copy strong {
    font-size: 14px;
  }

  .hf-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hf-footer nav {
    justify-content: flex-start;
  }

  .hf-detail-grid {
    grid-template-columns: 1fr;
  }

  .hf-detail-image,
  .hf-detail-image img {
    min-height: 0;
    height: 280px;
  }

  .hf-detail-meta,
  .hf-nutrition-list,
  .hf-form-grid {
    grid-template-columns: 1fr;
  }

  .hf-form-grid .full {
    grid-column: auto;
  }

  .hf-order-row {
    grid-template-columns: 1fr 80px;
  }

  .hf-order-row strong {
    grid-column: 1 / -1;
  }

  .hf-modal-panel {
    padding: 20px 16px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hf-food-shape {
    animation: none !important;
  }
}


/* Healthy-food refinement */
@media (min-width:761px){.hf-hero-title-nowrap{white-space:nowrap}.hf-hero h1{font-size:clamp(38px,4vw,54px)}}
.hf-price-badges span{gap:8px}.hf-mini-icon{width:25px;height:25px;display:grid;place-items:center;flex:0 0 auto}.hf-mini-icon svg{width:23px;height:23px}.hf-mini-icon svg *{fill:none;stroke:currentColor;stroke-width:2.3;stroke-linecap:round;stroke-linejoin:round}
.hf-benefit-grid article{position:relative;padding-top:86px}.hf-benefit-icon{position:absolute;left:25px;top:22px;width:52px;height:52px;display:grid;place-items:center;border-radius:18px;background:rgba(255,255,255,.82)}.hf-benefit-icon svg{width:31px;height:31px}.hf-benefit-icon svg *{fill:none;stroke:currentColor;stroke-width:2.25;stroke-linecap:round;stroke-linejoin:round}.hf-benefit-grid .tone-aqua .hf-benefit-icon{color:#087f87}.hf-benefit-grid .tone-green .hf-benefit-icon{color:#488c42}.hf-benefit-grid .tone-gold .hf-benefit-icon{color:#a77922}.hf-benefit-grid .tone-coral .hf-benefit-icon{color:#b9624d}.hf-benefit-grid .tone-blue .hf-benefit-icon{color:#367dac}.hf-benefit-grid .tone-purple .hf-benefit-icon{color:#73569a}
.hf-trust-tags span{grid-template-columns:42px minmax(0,1fr);gap:10px;padding:16px}.hf-trust-tags span i{width:42px;height:42px;display:grid;place-items:center;border-radius:15px;background:rgba(255,255,255,.78)}.hf-trust-tags span i svg{width:27px;height:27px}.hf-trust-tags span i svg *{fill:none;stroke:currentColor;stroke-width:2.25;stroke-linecap:round;stroke-linejoin:round}.hf-trust-tags span b{color:var(--hf-navy);font-size:15px}
.hf-personal-order{margin:0 0 28px;padding:24px 26px;display:grid;grid-template-columns:68px minmax(0,1fr) auto;gap:20px;align-items:center;border:1px solid rgba(17,173,182,.18);border-radius:30px;background:radial-gradient(circle at 12% 28%,rgba(17,173,182,.10),transparent 25%),radial-gradient(circle at 90% 76%,rgba(211,165,66,.10),transparent 23%),#fff;box-shadow:var(--hf-shadow)}.hf-personal-order-icon{width:68px;height:68px;display:grid;place-items:center;border-radius:22px;color:#087f87;background:var(--hf-aqua-soft)}.hf-personal-order-icon svg{width:40px;height:40px}.hf-personal-order-icon svg *{fill:none;stroke:currentColor;stroke-width:2.25;stroke-linecap:round;stroke-linejoin:round}.hf-personal-order h3{margin:4px 0 0;color:var(--hf-navy);font-size:23px}.hf-personal-order p:last-child{margin:7px 0 0;font-size:14px}.hf-personal-order-button{min-height:50px;padding:0 19px;display:inline-flex;align-items:center;gap:11px;border:0;border-radius:999px;color:#fff;background:linear-gradient(135deg,#d7ad4b,#a97c25);box-shadow:0 14px 31px rgba(211,165,66,.22);font-weight:900;white-space:nowrap}.hf-personal-order-button span{font-size:18px;line-height:1}
@media(max-width:900px){.hf-personal-order{grid-template-columns:68px minmax(0,1fr)}.hf-personal-order-button{grid-column:1/-1;width:fit-content}}
@media(max-width:760px){.hf-hero-title-nowrap{white-space:normal}.hf-benefit-grid article{padding-top:82px}.hf-trust-tags span{grid-template-columns:1fr;justify-items:center;text-align:center}.hf-personal-order{padding:21px 18px;grid-template-columns:1fr}.hf-personal-order-button{width:100%;justify-content:center}}


/* Final title and hero-card line-break tuning */
.hf-hero-card {
  padding-left: 18px;
  padding-right: 18px;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 10px;
}

.hf-hero-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
}

.hf-hero-icon svg {
  width: 34px;
  height: 34px;
}

.hf-hero-card strong {
  white-space: nowrap;
  word-break: keep-all;
  font-size: clamp(14px, 1.05vw, 15px);
  letter-spacing: -.045em;
}

.hf-hero-card p {
  word-break: keep-all;
  line-break: strict;
  font-size: 12px;
}

.hf-trust-copy h2 {
  font-size: clamp(30px, 3.15vw, 42px);
}

.hf-trust-copy h2 span {
  white-space: nowrap;
  word-break: keep-all;
}

.hf-hero h1,
.hf-section-head h2,
.hf-trust-copy h2,
.hf-cta-card h2,
.hf-benefit-grid h3,
.hf-intro-flow h3,
.hf-personal-order h3 {
  word-break: keep-all;
  line-break: strict;
}

@media (max-width: 760px) {
  .hf-hero h1 {
    font-size: clamp(22px, 6.1vw, 25px);
    line-height: 1.46;
    letter-spacing: -.025em;
  }

  .hf-section-head h2,
  .hf-cta-card h2 {
    font-size: clamp(20px, 5.6vw, 23px);
    line-height: 1.52;
    letter-spacing: -.02em;
  }

  .hf-trust-panel {
    padding: 24px 16px;
  }

  .hf-trust-copy h2 {
    font-size: clamp(17px, 4.8vw, 19px);
    line-height: 1.58;
    letter-spacing: -.015em;
  }

  .hf-cta-card {
    padding: 32px 18px;
  }

  .hf-hero h1 span,
  .hf-section-head h2 span,
  .hf-trust-copy h2 span,
  .hf-cta-card h2 span {
    white-space: nowrap;
    word-break: keep-all;
  }

  .hf-hero-card {
    padding-left: 18px;
    padding-right: 18px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
  }

  .hf-hero-card strong {
    font-size: 15px;
    letter-spacing: -.04em;
  }

  .hf-benefit-grid h3,
  .hf-intro-flow h3,
  .hf-personal-order h3 {
    font-size: 18px;
    line-height: 1.5;
  }
}


/* Hero card description overflow fix */
.hf-hero-card > div:last-child {
  min-width: 0;
}

.hf-hero-card p {
  max-width: 100%;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
  font-size: 11.5px;
  line-height: 1.75;
}

@media (max-width: 760px) {
  .hf-hero-card p {
    font-size: 12px;
    overflow-wrap: break-word;
  }
}
