/* 唯美寶 · 清雅中式養生 */

:root {
  --ink: #1a2420;
  --ink-soft: #3d4a44;
  --muted: #5e6b65;
  --cream: #f3efe6;
  --sand: #e8e1d4;
  --jade: #1f5c4a;
  --jade-deep: #153d33;
  --jade-light: #2d7a62;
  --gold: #b8955a;
  --gold-soft: #d4b88a;
  --white: #fffcf7;
  --line: rgba(26, 36, 32, 0.12);
  --shadow: 0 18px 50px rgba(21, 61, 51, 0.12);
  --font-display: "Noto Serif TC", "Songti TC", serif;
  --font-body: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --max: 1120px;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(45, 122, 98, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(184, 149, 90, 0.1), transparent 50%),
    linear-gradient(180deg, #f7f3eb 0%, var(--cream) 40%, #efe8dc 100%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--jade);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--jade-deep);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  padding: 0.6rem 1rem;
  background: var(--jade);
  color: var(--white);
  border-radius: 4px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2.5rem, 720px);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jade);
}

.section-head {
  max-width: 36rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head h2,
.about-copy h2,
.service-feature-copy h3,
.contact-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin: 0 0 0.85rem;
}

.section-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(243, 239, 230, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(243, 239, 230, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(26, 36, 32, 0.06);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.15;
}

.brand:hover {
  color: var(--jade-deep);
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--jade);
}

.nav-cta {
  padding: 0.55rem 1rem;
  background: var(--jade);
  color: var(--white) !important;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--jade-deep);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 0.45rem;
  right: 0.45rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease), opacity 0.2s;
}

.nav-toggle span:first-child {
  top: 0.95rem;
}

.nav-toggle span:last-child {
  top: 1.4rem;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  top: 1.2rem;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  top: 1.2rem;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: hero-ken 18s var(--ease) infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 32, 28, 0.82) 0%, rgba(15, 32, 28, 0.55) 48%, rgba(15, 32, 28, 0.28) 100%),
    linear-gradient(to top, rgba(10, 22, 18, 0.75) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) 0 4.5rem;
  max-width: 40rem;
  margin-left: max(1.25rem, calc((100% - var(--max)) / 2));
  animation: hero-rise 1s var(--ease) both;
}

.hero-brand {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: var(--gold-soft);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero-tagline {
  margin: 0 0 1.35rem;
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
  letter-spacing: 0.06em;
  color: rgba(255, 252, 247, 0.78);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
  color: rgba(255, 252, 247, 0.88);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold-soft);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 252, 247, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 252, 247, 0.1);
  color: var(--white);
  border-color: rgba(255, 252, 247, 0.75);
}

.btn-secondary {
  background: transparent;
  color: var(--jade-deep);
  border: 1.5px solid var(--jade);
}

.btn-secondary:hover {
  background: var(--jade);
  color: var(--white);
}

/* About */
.about {
  background:
    linear-gradient(180deg, transparent, rgba(255, 252, 247, 0.55) 30%, rgba(255, 252, 247, 0.55) 70%, transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.about-figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 252, 247, 0.5);
}

.about-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  clip-path: inset(0 round 2px);
}

/* Services */
.service-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.service-feature-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.service-feature-copy h3 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--muted);
}

.service-price strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--jade);
  font-weight: 700;
}

.service-feature-copy > p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
}

.service-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.25rem;
}

.service-checks li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.service-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--jade);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-item-body h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.price-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--jade);
}

.price-pair em {
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
  margin-right: 0.35rem;
}

.service-item-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Pricing */
.pricing {
  background: linear-gradient(180deg, rgba(31, 92, 74, 0.06), rgba(31, 92, 74, 0.02));
}

.price-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.price-table th,
.price-table td {
  padding: 1.05rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.price-table th {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.price-table td:last-child,
.price-table th:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--jade-deep);
  font-variant-numeric: tabular-nums;
}

.price-table tbody tr {
  transition: background 0.2s ease;
}

.price-table tbody tr:hover {
  background: rgba(255, 252, 247, 0.65);
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

/* Why */
.why-grid {
  list-style: none;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.why-grid li {
  background: rgba(255, 252, 247, 0.7);
  padding: 1.5rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  text-align: center;
  position: relative;
}

.why-grid li::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0 auto 0.85rem;
  background: var(--gold);
}

.why-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.75rem;
}

.why-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.why-gallery img:first-child {
  aspect-ratio: auto;
  min-height: 100%;
}

/* Reviews */
.reviews {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.35), rgba(31, 92, 74, 0.05));
}

.review-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--line);
}

.review-score {
  text-align: center;
  min-width: 7.5rem;
}

.review-score-num {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4rem);
  line-height: 1;
  color: var(--jade-deep);
  font-weight: 700;
}

.stars {
  --rating: 5;
  display: inline-block;
  margin: 0.35rem 0 0.25rem;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  background: linear-gradient(
    90deg,
    var(--gold) calc(var(--rating) / 5 * 100%),
    rgba(26, 36, 32, 0.18) 0
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.review-score-label {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.review-metrics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.review-metrics li {
  display: grid;
  grid-template-columns: 5.5rem 1fr 2.2rem;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.95rem;
}

.review-metrics span {
  color: var(--ink-soft);
}

.review-metrics strong {
  text-align: right;
  color: var(--jade-deep);
  font-variant-numeric: tabular-nums;
}

.metric-bar {
  height: 6px;
  background: rgba(26, 36, 32, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.metric-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--jade), var(--gold));
  border-radius: inherit;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.review-item {
  margin: 0;
  padding: 1.5rem 1.25rem 1.5rem 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.review-item:nth-child(3n) {
  border-right: 0;
  padding-right: 0;
}

.review-item:nth-child(3n + 1) {
  padding-left: 0;
}

.review-item:nth-child(3n + 2) {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.review-item p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.review-item footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.review-item cite {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}

.review-item time {
  font-size: 0.82rem;
  color: var(--muted);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
  color: var(--jade);
  font-weight: 400;
  font-size: 1.35rem;
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  max-width: 38rem;
}

/* Contact */
.contact {
  background:
    linear-gradient(160deg, rgba(21, 61, 51, 0.94), rgba(31, 92, 74, 0.9)),
    url("images/store002.jpg") center / cover;
  color: var(--white);
}

.contact .section-eyebrow {
  color: var(--gold-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.contact-copy h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

.contact-list {
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 1.1rem;
}

.contact-list > div {
  display: grid;
  gap: 0.2rem;
}

.contact-list dt {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.55);
}

.contact-list dd {
  margin: 0;
  font-size: 1.08rem;
}

.contact-list a {
  color: var(--gold-soft);
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--white);
  text-decoration: underline;
}

.contact-figure {
  margin: 0;
}

.contact-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(255, 252, 247, 0.18);
}

.contact-actions .btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.contact-actions .btn-secondary {
  border-color: rgba(255, 252, 247, 0.45);
  color: var(--white);
}

.contact-actions .btn-secondary:hover {
  background: rgba(255, 252, 247, 0.12);
  color: var(--white);
}

/* Footer */
.site-footer {
  background: var(--jade-deep);
  color: rgba(255, 252, 247, 0.7);
  padding: 2.25rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.08em;
}

.footer-tag,
.footer-meta {
  margin: 0;
  font-size: 0.85rem;
}

/* Float WhatsApp */
.float-wa {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 90;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
  animation: float-pulse 2.8s ease-in-out infinite;
}

.float-wa:hover {
  transform: translateY(-3px) scale(1.04);
  color: #fff;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-ken {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

@keyframes float-pulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55), 0 0 0 10px rgba(37, 211, 102, 0.12);
  }
}

@media (max-width: 960px) {
  .about-grid,
  .service-feature,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-list,
  .why-grid,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-summary {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .review-score {
    text-align: left;
  }

  .review-item,
  .review-item:nth-child(3n),
  .review-item:nth-child(3n + 1),
  .review-item:nth-child(3n + 2) {
    padding: 1.35rem 1rem 1.35rem 0;
    border-right: 1px solid var(--line);
  }

  .review-item:nth-child(2n) {
    padding-left: 1rem;
    padding-right: 0;
    border-right: 0;
  }

  .review-item:nth-child(2n + 1) {
    padding-left: 0;
  }

  .why-gallery {
    grid-template-columns: 1fr;
  }

  .why-gallery img,
  .why-gallery img:first-child {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .contact-figure img {
    aspect-ratio: 16 / 11;
  }

  .service-feature-media {
    order: -1;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(243, 239, 230, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    border: 0;
  }

  .hero-content {
    margin-left: auto;
    padding-bottom: 3.25rem;
  }

  .service-list,
  .why-grid,
  .service-checks,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-item,
  .review-item:nth-child(2n),
  .review-item:nth-child(2n + 1),
  .review-item:nth-child(3n),
  .review-item:nth-child(3n + 1),
  .review-item:nth-child(3n + 2) {
    padding: 1.25rem 0;
    border-right: 0;
  }

  .review-metrics li {
    grid-template-columns: 4.8rem 1fr 2rem;
  }

  .hero-brand {
    font-size: clamp(1.85rem, 9vw, 2.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .float-wa,
  .reveal {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
