:root {
  --fh-serif: "Noto Serif TC", "Noto Sans TC", serif;
}

.fh-layout .section-title {
  font-family: var(--fh-serif);
  letter-spacing: 0.06em;
}

.fh-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.fh-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.fh-hero {
  position: relative;
  background:
    radial-gradient(860px 560px at 80% 82%, rgba(232, 134, 90, 0.18), transparent 65%),
    radial-gradient(640px 440px at 6% 10%, rgba(216, 163, 94, 0.14), transparent 62%),
    radial-gradient(520px 380px at 38% 96%, rgba(208, 106, 58, 0.08), transparent 60%),
    linear-gradient(165deg, #fdf9f7 0%, #f8efe6 45%, #f0e1d2 100%);
  overflow: hidden;
}

.fh-hero-deco--ring {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(232, 134, 90, 0.32);
  border-radius: 50%;
  pointer-events: none;
}

.fh-hero-deco--ring::after {
  content: "";
  position: absolute;
  inset: 56px;
  border: 1px solid rgba(192, 138, 63, 0.3);
  border-radius: 50%;
}

.fh-hero-deco--ring::before {
  content: "";
  position: absolute;
  inset: -120px;
  border: 1px solid rgba(232, 134, 90, 0.16);
  border-radius: 50%;
}

.fh-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: 24px;
  min-height: 600px;
}

.fh-hero-content {
  padding: 96px 0 88px;
}

.fh-hero-title {
  font-family: var(--fh-serif);
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin: 0 0 22px;
}

.fh-hero-sub {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 30em;
  margin: 0 0 34px;
}

.fh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.fh-btn-ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--text-primary);
}

.fh-btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--primary-soft);
}

.fh-hero-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.fh-hero-points li {
  display: flex;
  align-items: center;
}

.fh-hero-points li + li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary-light);
  margin: 0 16px;
}

.fh-hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.fh-hero-photo-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 134, 90, 0.16) 0%, rgba(232, 134, 90, 0.06) 62%, transparent 72%);
}

.fh-hero-photo {
  position: relative;
  display: block;
  max-height: 620px;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 28px 48px rgba(120, 72, 40, 0.24));
}

.fh-trustbar {
  background: #a9552d;
  color: #f9ece2;
}

.fh-trustbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 48px;
  padding: 15px 0;
}

.fh-trustbar-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: #f9ece2;
  text-decoration: none;
}

.fh-trustbar-item i {
  font-size: 0.92rem;
  color: #f6c69b;
}

a.fh-trustbar-item:hover {
  color: #ffffff;
}

.fh-th-t1 { --fh-cat: #e8865a; }
.fh-th-t2 { --fh-cat: #7d99b6; }
.fh-th-t3 { --fh-cat: #c98d83; }
.fh-th-t4 { --fh-cat: #c2a05e; }
.fh-th-t5 { --fh-cat: #4da89e; }
.fh-th-t6 { --fh-cat: #ab8bab; }

.fh-cat-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fh-cat, var(--border-color));
  flex-shrink: 0;
}

.fh-cat-legend {
  display: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 26px;
  margin: -16px 0 30px;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.fh-cat-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fh-treatments {
  background: var(--bg-light);
}

.fh-treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fh-treatment-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s, box-shadow 0.25s;
}

.fh-treatment-media {
  flex-shrink: 0;
  width: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: #f6f1e7;
  border-right: 1px solid var(--border-light);
}

.fh-treatment-media img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  filter: brightness(0.68) contrast(1.45) saturate(1.05);
}

.fh-treatment-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 86px;
  font-size: 1.9rem;
  color: var(--primary);
}

.fh-treatment-name {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 12px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.fh-treatment-arrow {
  flex-shrink: 0;
  align-self: center;
  margin-right: 14px;
  font-size: 0.8rem;
  color: var(--text-light);
  transition: transform 0.25s, color 0.25s;
}

.fh-treatment-card:hover {
  transform: translateY(-3px);
  border-color: var(--fh-cat, var(--primary-light));
  box-shadow: var(--shadow-md);
}

.fh-treatment-card:hover .fh-treatment-media {
  border-right-color: var(--fh-cat, var(--border-light));
}

.fh-treatment-card:hover .fh-treatment-name {
  color: var(--primary-dark);
}

.fh-treatment-card:hover .fh-treatment-arrow {
  color: var(--fh-cat, var(--primary));
  transform: translateX(3px);
}

.fh-about {
  background: var(--bg-white);
}

.fh-about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.fh-about-visual {
  position: relative;
}

.fh-about-visual::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.fh-about-visual img {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.fh-about-title {
  font-family: var(--fh-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin: 0 0 20px;
}

.fh-about-quote {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--text-secondary);
  border-left: 2px solid var(--secondary);
  padding-left: 18px;
  margin: 0 0 34px;
}

.fh-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 36px;
  margin-bottom: 38px;
}

.fh-feature {
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.fh-feature h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.fh-feature h3::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.fh-feature p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

.fh-about-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--primary);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(208, 106, 58, 0.28);
}

.fh-about-badge i {
  font-size: 0.95rem;
}

.fh-about-cred {
  margin: 0 0 32px;
}

.fh-about-cred h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 14px;
}

.fh-about-cred h3 i {
  font-size: 0.95rem;
  color: var(--primary);
}

.fh-about-cred ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.fh-about-cred li {
  position: relative;
  padding-left: 20px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.fh-about-cred li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}

.fh-why {
  background: var(--bg-white);
}

.fh-why-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}

.fh-why-visual {
  position: relative;
}

.fh-why-visual img {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.fh-why-visual::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.fh-why-title {
  font-family: var(--fh-serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin: 0 0 30px;
}

.fh-why-list {
  display: grid;
  gap: 22px;
}

.fh-why-item {
  padding-left: 20px;
  border-left: 2px solid var(--primary-light);
}

.fh-why-item h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 7px;
}

.fh-why-item h3::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.fh-why-item p {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.fh-midcta {
  position: relative;
  background:
    radial-gradient(560px 420px at 82% 24%, rgba(232, 134, 90, 0.12), transparent 62%),
    radial-gradient(460px 360px at 12% 90%, rgba(160, 90, 53, 0.08), transparent 60%),
    linear-gradient(180deg, #f5e3bd 0%, #efd9ac 100%);
  padding: 84px 0;
  overflow: hidden;
}

.fh-midcta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.fh-midcta-inner .fh-eyebrow {
  justify-content: center;
}

.fh-midcta-title {
  font-family: var(--fh-serif);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin: 0 0 18px;
}

.fh-midcta-sub {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 34em;
  margin: 0 auto 32px;
}

.fh-midcta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.fh-midcta-inner .fh-hero-points {
  justify-content: center;
}

.fh-articles {
  background: var(--bg-cream);
}

.fh-article-editorial {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.fh-article-feature {
  display: block;
  text-decoration: none;
}

.fh-article-image {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

.fh-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.fh-article-feature:hover .fh-article-image img {
  transform: scale(1.045);
}

.fh-article-cat {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.fh-article-feature h3 {
  font-family: var(--fh-serif);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin: 0 0 12px;
  transition: color 0.2s;
}

.fh-article-feature:hover h3 {
  color: var(--primary-dark);
}

.fh-article-excerpt {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin: 0 0 14px;
}

.fh-article-more {
  font-size: 0.86rem;
  color: var(--primary-dark);
  letter-spacing: 0.04em;
}

.fh-article-more i {
  font-size: 0.78rem;
  transition: transform 0.25s;
}

.fh-article-feature:hover .fh-article-more i {
  transform: translateX(4px);
}

.fh-article-list {
  display: flex;
  flex-direction: column;
}

.fh-article-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
}

.fh-article-row:first-child {
  padding-top: 6px;
}

.fh-article-row-text {
  min-width: 0;
}

.fh-article-row .fh-article-cat {
  margin-bottom: 5px;
}

.fh-article-row-title {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-primary);
  transition: color 0.2s;
}

.fh-article-row > i {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: transform 0.25s, color 0.25s;
}

.fh-article-row:hover .fh-article-row-title {
  color: var(--primary-dark);
}

.fh-article-row:hover > i {
  color: var(--primary);
  transform: translateX(4px);
}

.fh-article-list-btn {
  align-self: flex-start;
  margin-top: 26px;
}

.fh-media {
  background: var(--bg-white);
}

.fh-press-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 0;
  margin: -14px 0 34px;
}

.fh-press-bar span {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.fh-press-bar span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary-light);
  margin: 0 18px;
}

.fh-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fh-media-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 26px 24px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
}

.fh-media-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.fh-media-quote {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 1.7rem;
  line-height: 1;
  color: rgba(232, 134, 90, 0.32);
}

.fh-media-source {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.fh-media-card h3 {
  font-family: var(--fh-serif);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.fh-reviews {
  background: var(--bg-light);
}

.fh-review-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.fh-review-feature {
  margin: 0;
}

.fh-review-mark {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(232, 134, 90, 0.4);
  margin-bottom: 14px;
}

.fh-review-feature-text {
  font-family: var(--fh-serif);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  margin: 0 0 22px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fh-review-feature footer,
.fh-review-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fh-review-stars {
  display: inline-flex;
  gap: 3px;
  font-size: 0.78rem;
  color: var(--primary);
}

.fh-review-feature cite,
.fh-review-card cite {
  font-style: normal;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.fh-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fh-review-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}

.fh-review-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fh-schedule-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 34px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.fh-schedule-notes li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fh-schedule-notes li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-light);
  flex-shrink: 0;
}

.fh-cta {
  background: linear-gradient(165deg, #7c4526 0%, #94512d 55%, #a85e37 100%);
  padding: 84px 0;
}

.fh-cta-inner {
  max-width: 640px;
}

.fh-eyebrow--light {
  color: #f2d9b0;
}

.fh-eyebrow--light .fh-eyebrow-dot {
  background: #e6bc82;
}

.fh-cta-title {
  font-family: var(--fh-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.05em;
  color: #f4faf8;
  margin: 0 0 16px;
}

.fh-cta-desc {
  font-size: 0.98rem;
  line-height: 1.9;
  color: #c9ded8;
  margin: 0 0 30px;
}

.fh-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.fh-btn-ghost--light {
  background: transparent;
  border: 1px solid rgba(244, 250, 248, 0.5);
  color: #f4faf8;
}

.fh-btn-ghost--light:hover {
  background: rgba(244, 250, 248, 0.12);
  border-color: #f4faf8;
  color: #ffffff;
}

@media (prefers-reduced-motion: no-preference) {
  .fh-hero-content > * {
    opacity: 0;
    animation: fhRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .fh-hero-content .fh-eyebrow { animation-delay: 0.05s; }
  .fh-hero-content .fh-hero-title { animation-delay: 0.16s; }
  .fh-hero-content .fh-hero-sub { animation-delay: 0.3s; }
  .fh-hero-content .fh-hero-actions { animation-delay: 0.44s; }
  .fh-hero-content .fh-hero-points { animation-delay: 0.58s; }

  .fh-hero-visual {
    opacity: 0;
    animation: fhRise 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
  }

  .fh-hero-deco--ring {
    animation: fhDrift 16s ease-in-out infinite alternate;
  }

  .fh-treatment-media img {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .fh-treatment-card:hover .fh-treatment-media img {
    transform: scale(1.07);
  }
}

@keyframes fhRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fhDrift {
  from {
    transform: translateY(0) rotate(0deg);
  }
  to {
    transform: translateY(24px) rotate(7deg);
  }
}

@media (max-width: 1024px) {
  .fh-treatment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .fh-media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fh-article-editorial {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .fh-review-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fh-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
  }

  .fh-hero-content {
    padding: 72px 0 12px;
  }

  .fh-hero-visual {
    margin-top: 20px;
  }

  .fh-hero-photo {
    max-height: 400px;
  }

  .fh-hero-photo-bg {
    width: 290px;
    height: 290px;
    bottom: 20px;
  }

  .fh-about-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .fh-about-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .fh-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fh-why-visual {
    max-width: 520px;
    margin: 0 auto;
    order: -1;
  }
}

@media (max-width: 768px) {
  .fh-trustbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 14px 0;
  }

  .fh-trustbar-item {
    font-size: 0.85rem;
  }

  .fh-cat-legend {
    display: flex;
    gap: 8px 18px;
    margin: -8px 0 22px;
  }

  .fh-treatment-grid {
    gap: 12px;
  }

  .fh-treatment-media {
    width: 92px;
    padding: 6px;
  }

  .fh-treatment-media img,
  .fh-treatment-fallback {
    height: 70px;
  }

  .fh-treatment-name {
    font-size: 0.94rem;
    padding: 14px 10px;
  }

  .fh-hero-title {
    letter-spacing: 0.03em;
  }

  .fh-hero-points {
    font-size: 0.82rem;
  }

  .fh-hero-points li + li::before {
    margin: 0 10px;
  }

  .fh-feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 576px) {
  .fh-hero-title {
    font-size: 1.68rem;
    letter-spacing: 0.02em;
  }

  .fh-media-grid {
    grid-template-columns: 1fr;
  }

  .fh-press-bar span {
    font-size: 0.8rem;
  }

  .fh-press-bar span + span::before {
    margin: 0 10px;
  }

  .fh-review-grid {
    grid-template-columns: 1fr;
  }

  .fh-review-feature-text {
    font-size: 1.08rem;
  }

  .fh-schedule-notes {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .fh-cta {
    padding: 64px 0;
  }

  .fh-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .fh-midcta {
    padding: 60px 0;
  }

  .fh-midcta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .fh-treatment-grid {
    grid-template-columns: 1fr;
  }

  .fh-hero-content {
    padding-top: 56px;
  }

  .fh-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
