/* Xinjiang Hami Melon B2B — 戈壁金瓤 design tokens & layout */
/* Fleet P05: system HK TC stack only — no blocking @import / network fonts */

:root {
  /* Brand surfaces */
  --color-bg-deep: #121a16;
  --color-bg-field: #1e2e24;
  --color-bg-sand: #d9c4a0;
  --color-bg-mist: #eef2ec;

  /* Accents from product */
  --color-melon-flesh: #e6a42b;
  --color-melon-rind: #3d6b3f;
  --color-vine: #2a4a32;
  --color-sun-flare: #f0c15a;

  /* Text — muted tuned for WCAG AA (≥4.5:1) on mist + sand (fleet U08) */
  --color-text-on-dark: #f5f0e6;
  --color-text-on-light: #1a2420;
  --color-text-muted: #44544c;
  --color-text-muted-on-dark: rgba(245, 240, 230, 0.82);

  /* CTA */
  --color-cta: #e6a42b;
  --color-cta-text: #1a2420;
  --color-cta-border: #2a4a32;
  --color-cta-secondary-border: rgba(245, 240, 230, 0.72);
  --color-cta-ghost-dark-border: rgba(26, 36, 32, 0.55);

  /* Functional */
  --color-focus: #005fcc;
  --color-danger: #922b21;
  --color-success: #2a4a32;

  --hero-scrim: linear-gradient(
    105deg,
    rgba(18, 26, 22, 0.78) 0%,
    rgba(18, 26, 22, 0.42) 48%,
    rgba(18, 26, 22, 0.2) 100%
  );

  /* 港繁系统栈：Apple / PingFang / Noto TC 优先；大字靠字重正规，不依赖网络字体 */
  --font-hk-tc: -apple-system, BlinkMacSystemFont, "PingFang TC", "PingFang HK",
    "Hiragino Sans CNS", "Noto Sans TC", "Noto Sans CJK TC", "Microsoft JhengHei",
    "Segoe UI", system-ui, sans-serif;
  --font-display: var(--font-hk-tc);
  --font-body: var(--font-hk-tc);

  /*
   * Typography scale (fleet U02) — large / old-Android readable
   * Assumes browser root ≈16px → 1.125rem = 18px body floor.
   * Prefer rem + these tokens; never shrink body below --text-body on mobile.
   */
  --text-body: 1.125rem; /* ≥18px */
  --text-small: 0.9375rem; /* captions / meta only — never body copy */
  --text-support: clamp(1.125rem, 0.35vw + 1.05rem, 1.25rem); /* ≥ body */
  --text-h2: clamp(1.5rem, 1.2vw + 1.2rem, 2rem); /* clearly > body */
  --text-h1: clamp(1.875rem, 2vw + 1.35rem, 2.75rem); /* clearly > h2 */
  --text-headline: clamp(1.375rem, 1.4vw + 1rem, 1.75rem); /* page/hero h1 line */
  --text-brand: clamp(2.75rem, 6vw + 1rem, 5.5rem); /* hero brand > h1 */
  --leading-tight: 1.2;
  --leading-heading: 1.25;
  --leading-body: 1.65; /* ≥1.55 */
  --tracking-brand: 0.02em;
  --space-prose: 1.25rem; /* U05: blog/variety paragraph gap */
  --space-list-item: 0.7rem;

  --radius-none: 0;
  --radius-control: 4px;
  --space-section: clamp(4rem, 8vw, 7rem);
  --space-stack: 1rem;
  --space-gutter: clamp(1.25rem, 4vw, 2.5rem);
  --max-content: 72rem;
  --hero-content-max: 36rem;

  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-enter: 560ms;
  --duration-hover: 180ms;
  --stagger: 90ms;

  --nav-height: 4.5rem;
  --wa-number: ""; /* set in js/main.js — never commit secrets */
}

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

html {
  font-size: 100%; /* honor user/browser root; rem chain stays predictable */
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 1rem);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-text-on-light);
  background: var(--color-bg-mist);
  -webkit-font-smoothing: antialiased;
}

/* Semantic heading floor — pages may refine via BEM; keep hierarchy clear */
h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 800;
  line-height: var(--leading-heading);
}

h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: var(--leading-heading);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--color-melon-rind);
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px #fff;
}

main,
.wrap,
.section {
  min-width: 0;
}

[class*="grid"] > *,
[class*="layout"] > *,
.form-row > *,
.port-pills > *,
.trust-list > *,
.trust-eeat__list > *,
.buyer-list > *,
.variety-list > *,
.variety-index > *,
.festival-benefits > *,
.origin-gallery > *,
.origin-shots > *,
.blog-shots > *,
.inquiry-form > * {
  min-width: 0;
}

main [id],
section[id],
form[id],
.form-field {
  scroll-margin-top: calc(var(--nav-height) + 1rem);
  scroll-margin-bottom: 1rem;
}

pre,
code,
td,
th {
  overflow-wrap: anywhere;
}

pre {
  max-width: 100%;
  overflow-x: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Layout ——— */
.wrap {
  width: min(100% - 2 * var(--space-gutter), var(--max-content));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-section);
}

.section--sand {
  background: var(--color-bg-sand);
  color: var(--color-text-on-light);
}

.section--field {
  background: var(--color-bg-field);
  color: var(--color-text-on-dark);
}

.section--deep {
  background: var(--color-bg-deep);
  color: var(--color-text-on-dark);
}

.section--mist {
  background: var(--color-bg-mist);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-h2);
  line-height: var(--leading-heading);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section__lead {
  margin: 0 0 2rem;
  max-width: 40rem;
  color: var(--color-text-muted);
  font-size: var(--text-support);
}

.section--field .section__lead,
.section--deep .section__lead {
  color: var(--color-text-muted-on-dark);
}

.placeholder {
  color: var(--color-text-muted);
  font-style: italic;
}

.section--field .placeholder,
.section--deep .placeholder {
  color: var(--color-text-muted-on-dark);
}

/* ——— Site header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  /* Solid scrim — no backdrop-filter (expensive on first paint / scroll) */
  background: rgba(18, 26, 22, 0.92);
  border-bottom: 1px solid rgba(245, 240, 230, 0.08);
  color: var(--color-text-on-dark);
}

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

.site-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.site-logo:hover {
  color: var(--color-sun-flare);
}

.site-nav {
  display: none;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.35rem 1.35rem;
  font-size: 1.0625rem;
  font-weight: 600;
  max-width: min(40rem, 100%);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  color: var(--color-text-muted-on-dark);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-sun-flare);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(245, 240, 230, 0.35);
  background: transparent;
  color: inherit;
  border-radius: var(--radius-control);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Five clear items — show desktop nav earlier than the old 12-link bar */
@media (min-width: 800px) {
  .site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    overflow-x: visible;
  }

  .nav-toggle {
    display: none;
  }
}

.site-nav.is-open {
  display: flex;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0.65rem var(--space-gutter) 1.15rem;
  background: var(--color-bg-deep);
  border-bottom: 1px solid rgba(245, 240, 230, 0.1);
  font-size: 1.1875rem;
  max-height: calc(100vh - var(--nav-height));
  max-height: calc(100dvh - var(--nav-height));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.site-nav.is-open a {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(245, 240, 230, 0.08);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px; /* WCAG / Apple HIG touch target */
  padding: 0.75rem 1.35rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border-radius: var(--radius-control);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background var(--duration-hover) var(--ease-out-soft),
    color var(--duration-hover) var(--ease-out-soft),
    border-color var(--duration-hover) var(--ease-out-soft),
    transform var(--duration-hover) var(--ease-out-soft);
}

.btn--primary {
  background: var(--color-cta);
  color: var(--color-cta-text);
  /* Gold fill alone fails 3:1 vs mist; vine border identifies the control (WCAG 1.4.11 · U08) */
  border-color: var(--color-cta-border);
}

.btn--primary:hover {
  background: var(--color-sun-flare);
  color: var(--color-cta-text);
  border-color: var(--color-cta-border);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-on-dark);
  border-color: var(--color-cta-secondary-border);
}

.btn--ghost:hover {
  border-color: var(--color-sun-flare);
  color: var(--color-sun-flare);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--color-text-on-light);
  border-color: var(--color-cta-ghost-dark-border);
}

.btn--ghost-dark:hover {
  border-color: var(--color-melon-rind);
  color: var(--color-melon-rind);
}

.btn--small {
  min-height: 44px;
  padding: 0.55rem 1rem;
  font-size: 0.9375rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--color-text-on-dark);
}

.hero__media {
  position: absolute;
  inset: 0;
  /* Atmosphere fallback — remains visible while an HTML hero image loads or fails. */
  background-color: var(--color-bg-deep);
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(240, 193, 90, 0.38) 0%, transparent 55%),
    linear-gradient(158deg, #1a2820 0%, #243528 36%, #4a3a1c 68%, #121a16 100%);
  background-size: cover;
  background-position: 62% center;
}

/* Progressive HTML hero photo (see docs/perf-images.md) */
.hero__media-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 400ms var(--ease-out-soft);
  pointer-events: none;
}

.hero__media-photo.is-loaded {
  opacity: 0.55;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: var(--hero-scrim);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2 * var(--space-gutter), var(--max-content));
  margin: 0 auto;
  padding: calc(var(--nav-height) + 2.5rem) 0 clamp(3.25rem, 10vh, 5.5rem);
  max-width: none;
}

.hero__content-inner {
  max-width: var(--hero-content-max);
}

/* Homepage photography LCP — visible immediately, no idle fade gate */
.hero--photo-lcp .hero__media-photo {
  opacity: 0.55;
  transition: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero--photo-lcp.is-ready .hero__media-photo {
    animation: hero-photo-settle 700ms var(--ease-out-soft) both;
  }
}

@keyframes hero-photo-settle {
  from {
    opacity: 0.35;
  }
  to {
    opacity: 0.55;
  }
}

/* Defer layout work for below-fold homepage sections */
.home-defer {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-brand);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-brand);
  margin: 0 0 0.85rem;
  color: var(--color-text-on-dark);
  text-wrap: balance;
  /* 系统港繁大字：用 Semibold/Heavy 档正规，避免依赖网络黑体 900 */
  font-synthesis: none;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-headline);
  line-height: var(--leading-heading);
  margin: 0 0 0.85rem;
  color: rgba(245, 240, 230, 0.92);
  text-wrap: balance;
}

.hero__support {
  margin: 0 0 1.85rem;
  font-size: var(--text-support);
  line-height: var(--leading-body);
  color: var(--color-text-muted-on-dark);
  max-width: 34rem;
}

.hero__cta {
  gap: 0.85rem;
}

/* ——— Home hero (U03): clean HK B2B — brand + one line + CTA; photo breathes ——— */
.hero--home {
  align-items: center;
}

.hero--home .hero__scrim {
  background: linear-gradient(
    95deg,
    rgba(12, 18, 16, 0.88) 0%,
    rgba(12, 18, 16, 0.62) 38%,
    rgba(12, 18, 16, 0.22) 68%,
    rgba(12, 18, 16, 0.06) 100%
  );
}

.hero--home .hero__content {
  padding-top: calc(var(--nav-height) + clamp(2rem, 8vh, 5rem));
  padding-bottom: clamp(3rem, 12vh, 6rem);
  /* Left column — origin photo breathes on the right (U03 / P09) */
  width: min(100% - 2 * var(--space-gutter), 28rem);
  max-width: 28rem;
  margin-inline: 0;
  margin-left: max(
    var(--space-gutter),
    calc((100% - var(--max-content)) / 2 + var(--space-gutter))
  );
  margin-right: auto;
}

.hero--home .hero__brand {
  font-size: clamp(3.25rem, 8vw + 1rem, 6.5rem);
  letter-spacing: 0.01em;
  margin: 0 0 1.15rem;
}

.hero--home .hero__headline {
  font-weight: 600;
  /* L01: local-company line is the value signal — big & clean, still under brand */
  font-size: clamp(1.5rem, 1.8vw + 1.1rem, 2rem);
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: rgba(245, 240, 230, 0.94);
  margin: 0 0 0.85rem;
  max-width: 14em;
}

.hero--home .hero__support {
  margin: 0 0 1.25rem;
  font-size: clamp(1.125rem, 0.4vw + 1.05rem, 1.25rem);
  line-height: 1.55;
  color: rgba(245, 240, 230, 0.78);
  max-width: 22rem;
}

/* Fleet V02: short TTS between support and CTA */
.hero--home .tts-btn {
  margin: 0 0 1.35rem;
}

.hero--home .hero__cta {
  gap: 0.75rem 1rem;
}

.hero--home .hero__media-photo.is-loaded,
.hero--home.hero--photo-lcp .hero__media-photo {
  opacity: 0.72;
}

.hero--home .hero__media.has-photo .hero__media-photo {
  object-position: 68% 42%;
}

/* Secondary CTA: underline draws in from left (motion #3 companion to primary lift) */
.btn--ghost-draw {
  position: relative;
}

.btn--ghost-draw::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0.5rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--duration-hover) var(--ease-out-soft);
  pointer-events: none;
}

.btn--ghost-draw:hover::after,
.btn--ghost-draw:focus-visible::after {
  transform: scaleX(1);
}

.hero__brand,
.hero__headline,
.hero__support,
.hero__cta {
  opacity: 1;
  transform: none;
}

.hero.is-ready .hero__brand,
.hero.is-ready .hero__headline,
.hero.is-ready .hero__support,
.hero.is-ready .hero__cta,
.page-hero.is-ready .hero__brand,
.page-hero.is-ready .hero__headline,
.page-hero.is-ready .hero__support,
.page-hero.is-ready .hero__cta {
  animation: none;
}

.hero.is-ready .hero__headline,
.page-hero.is-ready .hero__headline {
  animation-delay: var(--stagger);
}

.hero.is-ready .hero__support,
.page-hero.is-ready .hero__support {
  animation-delay: calc(var(--stagger) * 2);
}

.hero.is-ready .hero__cta,
.page-hero.is-ready .hero__cta {
  animation-delay: calc(var(--stagger) * 3);
}

/* Home: brand → headline → support → CTA */
.hero--home.is-ready .hero__cta {
  animation-delay: calc(var(--stagger) * 3);
}

@keyframes enter-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 960px) {
  .hero--home .hero__content {
    width: min(28rem, 40vw);
    max-width: min(28rem, 40vw);
  }
}

@media (max-width: 639px) {
  .hero {
    align-items: flex-end;
  }

  .hero__content {
    padding-top: calc(var(--nav-height) + 1.5rem);
    padding-bottom: clamp(2.5rem, 12vh, 4rem);
  }

  .hero--home {
    align-items: flex-end;
  }

  .hero--home .hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(12, 18, 16, 0.28) 0%,
      rgba(12, 18, 16, 0.48) 38%,
      rgba(12, 18, 16, 0.86) 100%
    );
  }

  .hero--home .hero__brand {
    font-size: clamp(2.6rem, 11vw + 0.2rem, 3.4rem);
    margin-bottom: 0.75rem;
  }

  .hero--home .hero__headline {
    margin-bottom: 1.35rem;
    letter-spacing: 0.02em;
  }

  .hero--home .hero__media.has-photo .hero__media-photo {
    object-position: 55% 38%;
  }

  .hero--home .hero__cta .btn {
    flex: 1 1 auto;
    min-width: min(100%, 11rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__media-photo,
  .hero--photo-lcp.is-ready .hero__media-photo {
    transition: none;
    animation: none;
  }

  .hero.is-ready .hero__media,
  .page-hero.is-ready .hero__media {
    animation: none;
  }

  .hero__brand,
  .hero__headline,
  .hero__support,
  .hero__cta,
  .hero.is-ready .hero__brand,
  .hero.is-ready .hero__headline,
  .hero.is-ready .hero__support,
  .hero.is-ready .hero__cta,
  .page-hero.is-ready .hero__brand,
  .page-hero.is-ready .hero__headline,
  .page-hero.is-ready .hero__support,
  .page-hero.is-ready .hero__cta {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .btn--primary:hover {
    transform: none;
  }

  .btn--ghost-draw::after {
    display: none;
  }

  .origin-gallery__item img {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

.lead-storage-disclosure {
  margin-block: 0.8rem;
}

/* Below-fold media placeholder — reserves space, gradient fallback if img delayed */
.media-ph {
  position: relative;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 60% 40%, rgba(230, 164, 43, 0.18) 0%, transparent 55%),
    linear-gradient(145deg, #e8ebe4 0%, #d4ddd6 100%);
  aspect-ratio: var(--media-ratio, 16 / 9);
}

.media-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Homepage origin photography — full-width shot, no card chrome (fleet A03) */
.origin-visual__shot {
  margin: 1.25rem 0 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.origin-visual__cap {
  margin: 0.65rem 0 0;
  font-size: var(--text-small);
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.hero__media.has-photo .hero__media-photo {
  object-position: 50% 42%;
}

/* ——— Page hero (inner pages, shorter) ——— */
.page-hero {
  position: relative;
  min-height: min(72svh, 36rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--color-text-on-dark);
  padding-top: var(--nav-height);
}

.page-hero .hero__media {
  background:
    radial-gradient(ellipse 70% 50% at 75% 35%, rgba(230, 164, 43, 0.28) 0%, transparent 55%),
    linear-gradient(145deg, #1e2e24 0%, #243528 45%, #2a2418 100%);
}

.page-hero .hero__media-photo.is-loaded {
  opacity: 0.4;
}

/* ——— Trust / content blocks ——— */
.stack > * + * {
  margin-top: 1.5rem;
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .trust-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.trust-list h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.trust-list p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-small);
}

.section--field .trust-list p {
  color: var(--color-text-muted-on-dark);
}

/* ——— Reusable E-E-A-T trust module (fleet #33) ——— */
.trust-eeat__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2.25rem;
  counter-reset: trust-eeat;
}

@media (min-width: 900px) {
  .trust-eeat__list {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
  }
}

.trust-eeat__item {
  margin: 0;
  counter-increment: trust-eeat;
}

.trust-eeat__item h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: var(--leading-tight);
}

.trust-eeat__item h3::before {
  content: counter(trust-eeat, decimal-leading-zero) " · ";
  color: var(--color-sun-flare);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trust-eeat__item p {
  margin: 0;
  color: var(--color-text-muted-on-dark);
  font-size: var(--text-small);
}

.trust-eeat__item p + p {
  margin-top: 0.75rem;
}

.trust-eeat__sources {
  font-size: var(--text-small);
  line-height: 1.55;
  color: var(--color-text-muted-on-dark);
}

.trust-eeat__sources a {
  color: var(--color-sun-flare);
  text-decoration: none;
  text-underline-offset: 0.18em;
}

.trust-eeat__sources a:hover {
  text-decoration: underline;
}

.trust-eeat__note {
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 240, 230, 0.14);
  max-width: 48rem;
  font-size: var(--text-small);
  color: var(--color-text-muted-on-dark);
}

.trust-eeat__note strong {
  color: var(--color-text-on-dark);
  font-weight: 600;
}

/* Pending credential placeholders — plain text marker, never a certificate badge (fleet #22 / U09) */
.trust-eeat__pending {
  display: inline;
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--color-sun-flare);
  font-weight: 700;
  font-size: 0.95em;
  letter-spacing: 0.02em;
}

/* ——— Specs table ——— */
.spec-table-wrap,
.fact-table-wrap,
.cred-table-wrap {
  overflow-x: auto;
  margin-bottom: 1.5rem;
  max-width: 100%;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  font-family: var(--font-display);
  font-size: var(--text-body); /* ≥18px · 規格表即正文 */
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(26, 36, 32, 0.12);
  vertical-align: top;
}

.spec-table th {
  font-weight: 600;
  width: 28%;
  color: var(--color-text-on-light);
  background: rgba(26, 36, 32, 0.04);
}

.spec-table td {
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

.section--field .spec-table th,
.section--field .spec-table td {
  border-bottom-color: rgba(245, 240, 230, 0.12);
}

.section--field .spec-table th {
  background: rgba(245, 240, 230, 0.06);
  color: var(--color-text-on-dark);
}

.section--field .spec-table td {
  color: rgba(245, 240, 230, 0.75);
}

@media (max-width: 639px) {
  .spec-table,
  .layer-table,
  .rule-table,
  .cred-table {
    min-width: 36rem;
  }

  .spec-table th,
  .spec-table td {
    padding: 0.75rem 0.85rem;
  }
}

/* ——— FAQ accordion (WAI-ARIA) ——— */
.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(26, 36, 32, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(26, 36, 32, 0.12);
}

.faq-item h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.faq-trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 1.1rem 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  min-height: 44px;
}

.faq-item > summary {
  min-height: 44px;
  padding-block: 0.75rem;
  cursor: pointer;
}

.faq-trigger::after {
  content: "+";
  flex: 0 0 auto;
  font-weight: 400;
  color: var(--color-melon-flesh);
  line-height: 1.2;
}

.faq-trigger[aria-expanded="true"]::after {
  content: "–";
}

.faq-panel {
  padding: 0 0 1.1rem;
}

.faq-panel[hidden] {
  display: none;
}

.faq-panel p {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 48rem;
}

.faq-panel p + p {
  margin-top: 0.75rem;
}

.faq-panel a {
  color: var(--color-melon-rind);
}

/* Season status — plain status line, not a promo badge (fleet U09) */
.season-status {
  display: block;
  margin: 0 0 1.5rem;
  padding: 0;
  background: none;
  border: 0;
  font-family: var(--font-display);
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-melon-rind);
  max-width: 40rem;
}

.season-status__dot {
  display: none;
}

.buyer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .buyer-list {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
  }
}

.buyer-list h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.buyer-list p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-small);
}

/* ——— Inquiry form ——— */
.inquiry {
  scroll-margin-top: calc(var(--nav-height) + 1rem);
}

/* Interaction block — top rule + air, not a white card nest (U09) */
.inquiry-form {
  display: grid;
  gap: 1.1rem;
  max-width: 36rem;
  padding: 1.5rem 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(26, 36, 32, 0.12);
  border-radius: 0;
  box-shadow: none;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  font-family: var(--font-display);
  font-size: 1.0625rem; /* U04: larger labels for scan / tap */
  font-weight: 700;
  line-height: 1.35;
}

.form-field .hint {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* 艦隊 50B · 五字段大字提示（≥正文 18px） */
.form-field .field-hint {
  margin: 0;
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-text-on-light);
}

.form-field .field-hint strong {
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-family: var(--font-body);
  min-height: 48px; /* U04: ≥44px touch target */
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(26, 36, 32, 0.2);
  border-radius: var(--radius-control);
  background: var(--color-bg-mist);
  color: var(--color-text-on-light);
  font-size: 1.0625rem; /* ≥16px avoids iOS focus zoom */
}

.inquiry-form .btn,
.inquiry-form button.btn,
.inquiry-form a.btn {
  min-height: 48px;
  font-size: 1.0625rem;
  padding: 0.85rem 1.35rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
  border-color: var(--color-focus);
  box-shadow: 0 0 0 4px #fff;
}

.form-field textarea {
  min-height: 6.5rem;
  resize: vertical;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-status {
  margin: 0;
  font-size: 1rem;
  min-height: 1.35em;
  line-height: 1.45;
  max-width: 100%;
}

.form-status.is-error {
  color: var(--color-danger);
  padding: 0.85rem 1rem;
  border-left: 4px solid currentColor;
  background: #fff3f0;
}

.form-status.is-success {
  color: var(--color-success);
}

.form-status.is-notice {
  color: var(--color-text-on-light);
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--color-melon-rind);
  background: rgba(61, 107, 63, 0.08);
}

.form-status p {
  margin: 0;
}

.form-status__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.form-status__action {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 0.8rem;
  border: 1px solid currentColor;
  border-radius: var(--radius-control);
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.form-status__action:disabled {
  cursor: default;
  opacity: 0.72;
}

.form-status__detail {
  display: block;
  margin-top: 0.65rem;
  font-size: var(--text-small);
  color: inherit;
}

.form-status__copy {
  width: 100%;
  min-height: 9rem;
  margin-top: 0.75rem;
  padding: 0.75rem;
  border: 2px solid var(--color-danger);
  color: var(--color-text-on-light);
  background: #fff;
  font: inherit;
  resize: vertical;
}

.form-status a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea,
.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid {
  border-color: var(--color-danger);
  background: #fff8f6;
  border-width: 2px;
}

.form-field.is-invalid .port-pills {
  outline: 2px solid var(--color-danger);
  outline-offset: 2px;
}

.form-field--other:not([hidden]) {
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--color-melon-rind);
  background: rgba(61, 107, 63, 0.06);
}

/* Port choice — interactive controls, single border (no inset double-stroke · U09) */
.port-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.port-pills label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(26, 36, 32, 0.2);
  border-radius: var(--radius-control);
  background: transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}

.port-pills input {
  accent-color: var(--color-melon-rind);
}

.port-pills label:has(input:checked) {
  border-color: var(--color-melon-rind);
  border-width: 2px;
  padding: calc(0.5rem - 1px) calc(0.75rem - 1px);
  background: rgba(61, 107, 63, 0.08);
  box-shadow: none;
}

/* Inquiry variety confirm — meta line, not a chip/badge (U09) */
.variety-chip {
  display: block;
  margin: 0 0 1rem;
  padding: 0;
  background: none;
  border: 0;
  font-family: var(--font-display);
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ——— Compare grid ——— */
.compare-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .compare-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.compare-col h3 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.compare-col ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-text-muted);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--color-bg-deep);
  color: var(--color-text-on-dark);
  padding: 3rem 0 6rem;
  font-size: 1.0625rem;
}

.site-footer a {
  text-decoration: none;
  color: var(--color-text-muted-on-dark);
}

.site-footer a:hover {
  color: var(--color-sun-flare);
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.footer-nap {
  margin: 0;
  color: var(--color-text-muted-on-dark);
  line-height: 1.7;
  font-size: 1rem;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.footer-nav h3 {
  font-family: var(--font-display);
  font-size: var(--text-small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
  color: var(--color-text-muted-on-dark);
  font-weight: 600;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(245, 240, 230, 0.1);
  color: var(--color-text-muted-on-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}

/* Deep variety breadcrumbs sit before the photo hero, below the fixed header. */
.variety-detail-page main {
  padding-top: var(--nav-height);
}

/* ——— First-party contact entry ———
   The external support widget is not present until the explicit live-support action. */
.support-contact {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 34;
  max-width: min(22rem, calc(100vw - 2rem));
  color: var(--color-text-on-dark);
  font-family: var(--font-body);
}

.support-contact.is-widget-active {
  display: none;
}

body.is-inquiry-field-active .support-contact {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.support-contact__toggle,
.support-contact__action {
  appearance: none;
  min-height: 44px;
  border: 1px solid rgba(245, 240, 230, 0.72);
  border-radius: var(--radius-control);
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  touch-action: manipulation;
}

.support-contact__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.5rem;
  padding: 0.7rem 1rem;
  color: var(--color-text-on-dark);
  background: var(--color-vine);
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.2);
}

.support-contact__toggle:hover,
.support-contact__toggle:active {
  color: var(--color-text-on-dark);
  background: var(--color-melon-rind);
}

.support-contact__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.55rem);
  width: min(22rem, calc(100vw - 2rem));
  max-height: calc(100vh - 7rem);
  max-height: calc(100dvh - 7rem);
  overflow-y: auto;
  padding: 1rem;
  color: var(--color-text-on-dark);
  background: var(--color-bg-deep);
  border: 1px solid rgba(245, 240, 230, 0.24);
  border-radius: var(--radius-control);
  box-shadow: 0 0.5rem 1.75rem rgba(0, 0, 0, 0.3);
  overscroll-behavior: contain;
}

.support-contact__panel[hidden] {
  display: none;
}

@media (min-width: 960px) {
  .support-contact {
    right: auto;
    left: max(1rem, env(safe-area-inset-left, 0px));
  }

  .support-contact__panel {
    right: auto;
    left: 0;
  }
}

.support-contact__intro,
.support-contact__feedback {
  margin: 0;
  color: var(--color-text-muted-on-dark);
  font-size: var(--text-small);
  line-height: 1.5;
}

.support-contact__actions {
  display: grid;
  gap: 0.55rem;
  margin-block: 0.85rem;
}

.support-contact__action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.65rem 0.8rem;
  color: var(--color-text-on-dark);
  background: transparent;
  text-align: center;
  text-decoration: none;
}

.support-contact__action:hover {
  color: var(--color-sun-flare);
  border-color: var(--color-sun-flare);
}

.support-contact__action:disabled {
  cursor: wait;
  opacity: 0.72;
}

/* ——— Mobile sticky CTA (WhatsApp always reachable) ———
   Fleet U10: large tap + large type; solid bar for old Android;
   scroll reserve so content/footer is never covered. */
:root {
  --mobile-cta-reserve: 6.5rem;
}

.mobile-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 35;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: stretch;
  gap: 0.65rem;
  padding: 0.85rem var(--space-gutter) calc(0.85rem + env(safe-area-inset-bottom, 0px));
  /* Opaque solid — no backdrop-filter (slow / broken on old WebViews) */
  background: #121a16;
  border-top: 1px solid rgba(245, 240, 230, 0.14);
  pointer-events: auto;
  /* Own a layer so fixed bar stays tappable over scrolling content */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.mobile-cta .btn {
  width: 100%;
  min-height: 3.25rem; /* ≥52px */
  padding: 0.85rem 0.85rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  touch-action: manipulation; /* drop 300ms tap delay on old Android */
  -webkit-tap-highlight-color: rgba(240, 193, 90, 0.28);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  /* Disable lift — transform on :hover can steal taps on some WebViews */
  transform: none;
}

.mobile-cta .btn:hover,
.mobile-cta .btn:focus-visible,
.mobile-cta .btn:active {
  transform: none;
}

/* Sticky WhatsApp: filled vine — largest sticky target */
.mobile-cta a.btn[data-wa] {
  background: var(--color-vine);
  border-color: var(--color-vine);
  color: var(--color-text-on-dark);
  min-height: 3.5rem; /* ≥56px */
  font-size: 1.125rem; /* 18px */
  letter-spacing: 0.01em;
}

.mobile-cta a.btn[data-wa]:hover,
.mobile-cta a.btn[data-wa]:active {
  background: var(--color-melon-rind);
  border-color: var(--color-melon-rind);
  color: var(--color-text-on-dark);
}

.mobile-cta a.btn[data-wa]:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

@media (max-width: 360px) {
  .mobile-cta {
    grid-template-columns: 1.2fr 1fr;
    gap: 0.5rem;
    padding-inline: 0.75rem;
  }

  .mobile-cta .btn {
    font-size: 1rem;
    padding-inline: 0.5rem;
  }

  .mobile-cta a.btn[data-wa] {
    font-size: 1.0625rem;
  }
}

@media (min-width: 960px) {
  .mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 3rem;
  }
}

/* ——— Mobile audit: touch + uncrowded first screen ——— */
@media (max-width: 959px) {
  :root {
    /* U02 mobile floor: body ≥18px, support ≥ body, H1/H2 stay clearly larger */
    --text-body: 1.125rem;
    --leading-body: 1.65;
    --text-brand: clamp(2.15rem, 8.5vw + 0.4rem, 3.1rem);
    --text-headline: clamp(1.375rem, 2.5vw + 0.95rem, 1.625rem);
    --text-support: clamp(1.125rem, 0.5vw + 1rem, 1.2rem);
    --text-h1: clamp(1.875rem, 5vw + 1rem, 2.35rem);
    --text-h2: clamp(1.5rem, 4vw + 0.85rem, 1.85rem);
  }

  /* Header CTAs live in sticky bar — free first viewport */
  .site-header__actions .btn {
    display: none;
  }

  .nav-toggle {
    width: 2.75rem;
    height: 2.75rem;
    min-height: 2.75rem;
  }

  .has-mobile-cta .site-nav.is-open {
    max-height: calc(100vh - var(--nav-height) - var(--mobile-cta-reserve));
    max-height: calc(100dvh - var(--nav-height) - var(--mobile-cta-reserve));
  }

  body:has(.mobile-cta) .site-nav.is-open {
    max-height: calc(100vh - var(--nav-height) - var(--mobile-cta-reserve));
    max-height: calc(100dvh - var(--nav-height) - var(--mobile-cta-reserve));
  }

  .has-mobile-cta .support-contact {
    display: block;
    bottom: calc(var(--mobile-cta-reserve) + 0.65rem + env(safe-area-inset-bottom, 0px));
  }

  body:has(.mobile-cta) .support-contact {
    display: block;
    bottom: calc(var(--mobile-cta-reserve) + 0.65rem + env(safe-area-inset-bottom, 0px));
  }

  .has-mobile-cta .support-contact__toggle,
  body:has(.mobile-cta) .support-contact__toggle {
    min-width: 6.75rem;
    min-height: 44px;
    padding-inline: 0.75rem;
  }

  .hero__content {
    padding: calc(var(--nav-height) + 1.15rem) 0 calc(var(--mobile-cta-reserve) + env(safe-area-inset-bottom, 0px));
  }

  .hero__brand {
    margin-bottom: 0.45rem;
  }

  .hero__headline {
    margin-bottom: 0.55rem;
  }

  .hero__support {
    margin-bottom: 1.15rem;
  }

  .hero__cta.btn-row {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.6rem;
    max-width: 22rem;
  }

  .hero__cta .btn {
    width: 100%;
    min-height: 3rem;
  }

  .page-hero {
    min-height: min(56svh, 26rem);
  }

  .page-hero .hero__content {
    padding-bottom: calc(var(--mobile-cta-reserve) + env(safe-area-inset-bottom, 0px));
  }

  .inquiry-form {
    gap: 1.25rem;
    padding: 1.35rem 0 0;
  }

  .inquiry-form .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .inquiry-form .btn,
  .inquiry-form button.btn,
  .inquiry-form a.btn {
    width: 100%;
    min-height: 48px;
  }

  .form-field {
    gap: 0.5rem;
  }

  .form-field label {
    font-size: 1.125rem;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 48px;
    font-size: var(--text-body);
  }

  .faq-trigger {
    min-height: 3rem;
    padding-block: 1.15rem;
    font-size: var(--text-body);
  }

  /* Long HK titles / EEAT links — avoid 1–2px horizontal bleed */
  .section__title,
  .page-intro h1,
  .blog-body h2,
  .eeat-local__links a,
  .eeat-local__sources a {
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
  }

  .section__title {
    font-size: var(--text-h2);
  }

  .page-intro h1 {
    font-size: var(--text-h1);
    line-height: var(--leading-heading);
  }

  .blog-body h2,
  .blog-prose h2 {
    font-size: var(--text-h2);
    line-height: var(--leading-heading);
  }

  /* JS class is the old-Android fallback; :has covers no-JS modern browsers. */
  .has-mobile-cta {
    padding-bottom: calc(var(--mobile-cta-reserve) + env(safe-area-inset-bottom, 0px));
  }

  body:has(.mobile-cta) {
    padding-bottom: calc(var(--mobile-cta-reserve) + env(safe-area-inset-bottom, 0px));
  }

  .has-mobile-cta .site-nav.is-open a {
    min-height: 3rem;
    display: flex;
    align-items: center;
    padding-block: 0.85rem;
  }

  body:has(.mobile-cta) .site-nav.is-open a {
    min-height: 3rem;
    display: flex;
    align-items: center;
    padding-block: 0.85rem;
  }

  /* Old Android / no :has() — footer clears sticky CTA */
  .site-footer {
    padding-bottom: calc(var(--mobile-cta-reserve) + 1rem + env(safe-area-inset-bottom, 0px));
  }

  .has-mobile-cta .site-footer {
    padding-bottom: 3rem;
  }
}

@media (max-width: 959px) and (max-height: 520px) {
  :root {
    --mobile-cta-reserve: 4.5rem;
  }

  .mobile-cta {
    gap: 0.45rem;
    padding: 0.35rem var(--space-gutter)
      calc(0.35rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-cta .btn,
  .mobile-cta a.btn[data-wa] {
    min-height: 44px;
    padding-block: 0.5rem;
    font-size: 1rem;
  }
}

/* When :has works, body owns the reserve — avoid double footer padding */
@supports selector(:has(*)) {
  @media (max-width: 959px) {
    body:has(.mobile-cta) .site-footer {
      padding-bottom: 3rem;
    }
  }
}

/* ——— Varieties card grid + festival pages (戈壁金瓤) ———
   Interactive navigation only — light surfaces, no card walls.
   Classes used by /varieties/ · /origin/festival/ · /varieties/festival-picks/ */
.variety-grid,
.variety-list,
.variety-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .variety-grid,
  .variety-list,
  .variety-index {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
  }

  /* Hero variety spans full row — conversion priority, not decoration */
  .variety-list__item--hero,
  .variety-card--hero,
  .variety-grid > .variety-card:first-child {
    grid-column: 1 / -1;
  }
}

.variety-list__item,
.variety-card,
.variety-index > li {
  margin: 0;
  padding: 1rem 0 1rem 1rem;
  border-left: 3px solid rgba(61, 107, 63, 0.35);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.variety-list__item--hero,
.variety-card--hero {
  border-left-color: var(--color-melon-flesh);
  padding-block: 1.15rem;
  background: linear-gradient(
    90deg,
    rgba(230, 164, 43, 0.08) 0%,
    transparent 55%
  );
}

.section--field .variety-list__item,
.section--field .variety-card,
.section--field .variety-index > li {
  border-left-color: rgba(240, 193, 90, 0.35);
}

.section--field .variety-list__item--hero,
.section--field .variety-card--hero {
  border-left-color: var(--color-melon-flesh);
  background: linear-gradient(
    90deg,
    rgba(230, 164, 43, 0.12) 0%,
    transparent 50%
  );
}

.section--sand .variety-list__item,
.section--sand .variety-card,
.section--sand .variety-index > li {
  border-left-color: rgba(42, 74, 50, 0.35);
}

.variety-list__item h3,
.variety-card__name,
.variety-index__name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 0.5vw + 1.1rem, 1.4rem);
  font-weight: 700;
  line-height: var(--leading-heading);
  margin: 0 0 0.55rem;
}

.variety-list__item h3 a,
.variety-card__name a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

.variety-list__item h3 a:hover,
.variety-card__name a:hover {
  color: var(--color-melon-rind);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.variety-index a {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--duration-hover) var(--ease-out-soft);
}

.variety-index a:hover .variety-index__name,
.variety-index a:focus-visible .variety-index__name {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.variety-index__name {
  color: var(--color-melon-rind);
}

.section--field .variety-index__name,
.section--field .variety-list__item h3,
.section--field .variety-card__name {
  color: var(--color-sun-flare);
}

.section--field .variety-list__item h3 a:hover,
.section--field .variety-card__name a:hover {
  color: var(--color-sun-flare);
}

.variety-list__meta,
.variety-card__meta,
.variety-index__meta {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-melon-rind);
}

.section--field .variety-list__meta,
.section--field .variety-card__meta,
.section--field .variety-index__meta {
  color: var(--color-sun-flare);
}

.variety-list__item p,
.variety-card__desc,
.variety-index__desc {
  margin: 0 0 0.85rem;
  color: var(--color-text-muted);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  max-width: 40rem;
}

.variety-list__item p:last-child,
.variety-card__desc:last-child,
.variety-index__desc {
  margin-bottom: 0;
}

.section--field .variety-list__item p,
.section--field .variety-card__desc,
.section--field .variety-index__desc {
  color: var(--color-text-muted-on-dark);
}

.variety-card__cta,
.variety-list__actions {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0.55rem;
  max-width: 28rem;
  margin-top: 0.35rem;
}

.variety-card__cta .btn,
.variety-list__actions .btn {
  width: 100%;
  min-height: 3rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.variety-list__actions:has(> :only-child) {
  grid-template-columns: 1fr;
  max-width: 18rem;
}


.section--field .variety-list__actions .btn--ghost-dark,
.section--field .variety-card__cta .btn--ghost-dark {
  color: var(--color-text-on-dark);
  border-color: rgba(245, 240, 230, 0.4);
}

.section--field .variety-list__actions .btn--ghost-dark:hover,
.section--field .variety-card__cta .btn--ghost-dark:hover {
  border-color: var(--color-sun-flare);
  color: var(--color-sun-flare);
}

@media (min-width: 960px) {
  .variety-card__cta,
  .variety-list__actions {
    display: flex;
    flex-wrap: wrap;
    max-width: none;
  }

  .variety-card__cta .btn,
  .variety-list__actions .btn {
    width: auto;
    min-width: 8.5rem;
  }
}

.bucket-list a,
.buyer-list a,
.variety-index a {
  touch-action: manipulation;
}

.festival-channel-cta {
  margin-top: 2rem;
}

.buyer-list a.link-arrow {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}

/* Varieties index: keep sticky CTA above content, uncrowded hero */
.mobile-cta--varieties {
  z-index: 40;
}

#inquiry-cta .btn-row {
  max-width: 28rem;
}

@media (max-width: 959px) {
  body:has(.mobile-cta--varieties) {
    padding-bottom: calc(var(--mobile-cta-reserve) + env(safe-area-inset-bottom, 0px));
  }

  .page-hero .hero__cta .btn--hero-tertiary {
    display: none;
  }

  .page-hero:has(.btn--hero-tertiary) .hero__cta {
    max-width: 22rem;
  }

  #inquiry-cta .btn-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  #inquiry-cta .btn {
    width: 100%;
    min-height: 3rem;
  }

  body:has(.mobile-cta--varieties) .site-nav.is-open a {
    min-height: 3rem;
    display: flex;
    align-items: center;
    padding-block: 0.85rem;
  }

  .variety-list__actions:has(> :only-child) {
    max-width: none;
  }

}

/* HK buyer mind-buckets — 3 columns, no filled cards */
.bucket-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bucket-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.75rem 2rem;
  }
}

.bucket-list > li {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.bucket-list h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid rgba(230, 164, 43, 0.45);
}

.bucket-list p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-small);
}

.section--field .bucket-list p {
  color: var(--color-text-muted-on-dark);
}

/* Festival / origin-advantage notes — boundary copy, not promo chips */
.festival-note {
  margin: 1.5rem 0 0;
  max-width: 42rem;
  padding: 0.85rem 0 0.85rem 1rem;
  border-left: 3px solid rgba(61, 107, 63, 0.4);
  font-size: var(--text-small);
  color: var(--color-text-muted);
}

.festival-note a {
  color: var(--color-melon-rind);
}

.section--field .festival-note {
  border-left-color: rgba(240, 193, 90, 0.45);
  color: var(--color-text-muted-on-dark);
}

.section--field .festival-note a {
  color: var(--color-sun-flare);
}

.festival-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .festival-benefits {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.festival-benefits h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.festival-benefits p {
  margin: 0;
  font-size: var(--text-small);
  color: var(--color-text-muted);
}

.sources-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-text-muted);
  font-size: var(--text-small);
  max-width: 42rem;
}

.sources-list li + li {
  margin-top: 0.5rem;
}

.sources-list a {
  color: var(--color-melon-rind);
}

.section--field .sources-list {
  color: var(--color-text-muted-on-dark);
}

.section--field .sources-list a {
  color: var(--color-sun-flare);
}

/* Ordered inquiry steps on festival pages */
.inquiry-steps {
  list-style: decimal;
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 1.25rem;
}

.inquiry-steps > li {
  display: list-item;
  padding-left: 0.25rem;
}

.inquiry-steps h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.inquiry-steps p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-small);
}

@media (max-width: 959px) {
  .variety-list__item,
  .variety-card,
  .variety-index > li {
    padding-left: 0.85rem;
  }

  .variety-card__cta .link-arrow {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
  }
}

/* ——— Utility ——— */
.muted {
  color: var(--color-text-muted);
}

.link-arrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-small);
  text-decoration: none;
  color: var(--color-melon-rind);
}

.section--field .link-arrow {
  color: var(--color-sun-flare);
}

.link-arrow:hover {
  text-decoration: underline;
}

.band-note {
  font-size: var(--text-small);
  margin: 0 0 1.5rem;
  max-width: 40rem;
}

/* ——— Origin photo gallery (fleet A06 / H05 mobile) ———
   Mobile: 2-col so portrait shots (~3/4) don’t eat ~half a phone screen each. */
.origin-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.origin-gallery__item--wide {
  grid-column: 1 / -1;
}

.origin-gallery--two {
  grid-template-columns: repeat(2, 1fr);
}

.origin-gallery--two .origin-gallery__item--wide {
  grid-column: auto;
}

@media (min-width: 640px) {
  .origin-gallery {
    gap: 1.25rem 1.5rem;
  }
}

@media (min-width: 960px) {
  .origin-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1.75rem;
  }

  .origin-gallery--about {
    grid-template-columns: repeat(3, 1fr);
  }

  .origin-gallery--about .origin-gallery__item--wide {
    grid-column: 1 / -1;
  }

  .origin-gallery--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 48rem;
  }
}

.origin-gallery__item {
  margin: 0;
  min-width: 0;
}

.origin-gallery__item .media-ph {
  border-radius: 0;
}

.origin-gallery__item img {
  display: block;
  transition: transform var(--duration-hover) var(--ease-out-soft);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .origin-gallery__item:hover img {
    transform: scale(1.02);
  }
}

.origin-gallery figcaption {
  margin: 0.55rem 0 0;
  font-size: var(--text-small);
  line-height: 1.45;
  color: var(--color-text-muted);
  max-width: 36rem;
}

@media (max-width: 639px) {
  .origin-gallery figcaption {
    font-size: var(--text-small);
    line-height: 1.45;
  }
}

.section--field .origin-gallery figcaption {
  color: var(--color-text-muted-on-dark);
}

/* Varieties / blog inline galleries — same mobile pairing (H05) */
.origin-shots,
.blog-shots {
  display: grid;
  gap: 0.85rem 0.75rem;
  margin-top: 1.75rem;
  grid-template-columns: repeat(2, 1fr);
}

.origin-shots__wide {
  grid-column: 1 / -1;
}

.origin-shots figure,
.blog-shots figure {
  margin: 0;
  min-width: 0;
}

.origin-shots figcaption,
.blog-shots figcaption {
  margin-top: 0.55rem;
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.45;
}

@media (min-width: 720px) {
  .origin-shots,
  .blog-shots {
    gap: 1.5rem;
  }

  .origin-shots figcaption,
  .blog-shots figcaption {
    font-size: var(--text-small);
    line-height: 1.45;
  }
}

/* ——— Origin visual (homepage single shot · A03) ——— */
.origin-visual__shot {
  margin: 0;
  max-width: 56rem;
}

.origin-visual__shot--trust {
  margin: 0 0 2rem;
  max-width: 40rem;
}

.origin-visual__cap {
  margin: 0.65rem 0 0;
  font-size: var(--text-small);
  color: var(--color-text-muted);
}

.section--field .origin-visual__cap {
  color: var(--color-text-muted-on-dark);
}

/* ——— EEAT local trust (fleet H02 · restrained) ——— */
.eeat-local__pillars {
  display: grid;
  gap: 2.25rem;
  margin: 0;
}

@media (min-width: 900px) {
  .eeat-local__pillars {
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 2rem 2.5rem;
    align-items: start;
  }
}

.eeat-local__pillar h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--color-text-on-light);
  line-height: var(--leading-tight);
}

.eeat-local__pillar p {
  margin: 0 0 0.85rem;
  font-size: var(--text-small);
  color: var(--color-text-muted);
  max-width: 36rem;
}

.eeat-local__pillar p:last-child {
  margin-bottom: 0;
}

.eeat-local__shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0.85rem 0 1rem;
}

.eeat-local__shots figure {
  margin: 0;
  min-width: 0;
}

.eeat-local__shots figcaption {
  margin: 0.45rem 0 0;
  font-size: var(--text-small);
  line-height: 1.45;
  color: var(--color-text-muted);
}

.eeat-local__note-inline {
  font-size: var(--text-small) !important;
  line-height: 1.5;
}

.eeat-local__links {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.eeat-local__links a {
  font-size: var(--text-small);
  color: var(--color-melon-rind);
  text-decoration: none;
  text-underline-offset: 0.18em;
}

.eeat-local__links a:hover {
  text-decoration: underline;
}

.eeat-local__sources {
  font-size: var(--text-small) !important;
  line-height: 1.55;
}

.eeat-local__sources a:not(.link-arrow) {
  color: var(--color-melon-rind);
  text-decoration: none;
}

.eeat-local__sources a:not(.link-arrow):hover {
  text-decoration: underline;
}

.eeat-local__foot {
  margin: 2.25rem 0 0;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(26, 36, 32, 0.12);
  max-width: 48rem;
  font-size: var(--text-small);
  color: var(--color-text-muted);
}

.eeat-local__foot strong {
  color: var(--color-text-on-light);
  font-weight: 600;
}

/* 【待填】 on light surfaces (mist/sand) — color only, no chip fill (U09) */
.eeat-local .trust-eeat__pending,
.section--mist .trust-eeat__pending,
.section--sand .trust-eeat__pending {
  background: none;
  color: var(--color-vine);
}

/* Compact: page already has a photo gallery — hide shot pillar */
.eeat-local--no-shots .eeat-local__pillar--shots {
  display: none;
}

@media (min-width: 900px) {
  .eeat-local--no-shots .eeat-local__pillars {
    grid-template-columns: 1fr 1fr;
  }
}

/* ——— U06 · about / origin：干净正规大字排版 ——— */
.page-formal {
  --text-brand: clamp(3.1rem, 7vw + 1rem, 6rem);
  --text-headline: clamp(1.35rem, 1.8vw + 0.85rem, 2rem);
  --text-support: clamp(1.05rem, 0.5vw + 0.95rem, 1.25rem);
  --text-body: 1.125rem;
  --hero-content-max: 38rem;
}

.page-formal .section__title {
  font-size: clamp(1.85rem, 2.4vw + 1.1rem, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
}

.page-formal .section__lead {
  font-size: clamp(1.1rem, 0.45vw + 1rem, 1.3rem);
  line-height: 1.55;
  max-width: 38rem;
  margin-bottom: 2.25rem;
  color: var(--color-text-on-light);
}

.page-formal .section--field .section__lead,
.page-formal .section--deep .section__lead {
  color: var(--color-text-muted-on-dark);
}

.page-formal .prose-formal {
  max-width: 40rem;
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  font-size: var(--text-body);
  line-height: 1.75;
  color: var(--color-text-on-light);
}

.page-formal .prose-formal p {
  margin: 0;
}

.page-formal .prose-formal .muted {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-formal .spec-table {
  font-size: 1.05rem;
}

.page-formal .spec-table th,
.page-formal .spec-table td {
  padding: 1rem 1.1rem;
  vertical-align: top;
}

.page-formal .spec-table th {
  font-weight: 700;
  width: 9.5rem;
  color: var(--color-text-on-light);
}

.page-formal .trust-list h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.page-formal .trust-list p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-formal .origin-gallery figcaption {
  font-size: 0.95rem;
  line-height: 1.45;
  margin-top: 0.65rem;
}

.page-formal .band-note {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 40rem;
}

.page-formal .pending-board {
  margin: 0;
  max-width: 40rem;
  border-top: 1px solid rgba(26, 36, 32, 0.14);
  border-bottom: 1px solid rgba(26, 36, 32, 0.14);
}

.page-formal .pending-board__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1.25rem;
  align-items: baseline;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(26, 36, 32, 0.08);
  font-size: 1.05rem;
  line-height: 1.5;
}

.page-formal .pending-board__row:first-child {
  border-top: 0;
}

.page-formal .pending-board__label {
  color: var(--color-text-on-light);
  font-weight: 600;
}

.page-formal .section--field .pending-board {
  border-color: rgba(245, 240, 230, 0.18);
}

.page-formal .section--field .pending-board__row {
  border-top-color: rgba(245, 240, 230, 0.12);
}

.page-formal .section--field .pending-board__label {
  color: var(--color-text-on-dark);
}

.page-formal .local-kicker {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1vw + 0.95rem, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-vine);
  line-height: 1.3;
}

.page-formal .section--field .local-kicker {
  color: var(--color-sun-flare);
}

@media (max-width: 719px) {
  .page-formal .section__title {
    font-size: clamp(1.55rem, 5.5vw + 0.65rem, 2rem);
  }

  .page-formal .pending-board__row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .page-formal .spec-table th {
    width: auto;
  }
}

/* ——— TTS read-aloud (V01 core · V06: ≥48px / 大字「聽講解」/ sticky CTA clear) ——— */
.blog-tts,
.tts-host {
  position: relative;
  z-index: 1; /* below .mobile-cta (35) — never compete for sticky layer */
  margin: 0.85rem 0 1.15rem;
}

/* The standalone button is revealed after capability detection; reserve its box to avoid CLS. */
.blog-tts {
  display: flow-root;
  min-height: 5.25rem;
}

.tts-btn {
  /* In-flow control only — must not become sticky/fixed near .mobile-cta */
  position: relative;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-sizing: border-box;
  min-height: 48px; /* WCAG / Apple HIG — V06 hard floor */
  min-width: 11.5rem;
  padding: 0.9rem 1.6rem;
  margin: 0.75rem 0 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem; /* 大字「聽講解」 */
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: var(--color-text-on-dark);
  background: var(--color-vine);
  border: 1px solid var(--color-vine);
  border-radius: var(--radius-control);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    background var(--duration-hover) var(--ease-out-soft),
    border-color var(--duration-hover) var(--ease-out-soft),
    color var(--duration-hover) var(--ease-out-soft),
    transform var(--duration-hover) var(--ease-out-soft);
}

.tts-btn.is-ready,
.tts-btn:not([hidden]) {
  display: inline-flex;
}

.tts-btn[hidden] {
  display: none !important;
}

.tts-btn:hover {
  background: var(--color-melon-rind);
  border-color: var(--color-melon-rind);
  color: var(--color-text-on-dark);
  transform: translateY(-1px);
}

.tts-btn:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}

.tts-btn.is-speaking,
.tts-btn.is-paused {
  background: var(--color-melon-flesh);
  border-color: var(--color-melon-flesh);
  color: var(--color-cta-text);
}

.tts-btn.is-speaking:hover,
.tts-btn.is-paused:hover {
  background: var(--color-sun-flare);
  border-color: var(--color-sun-flare);
  color: var(--color-cta-text);
}

/* Mobile: larger tap target + scroll clear of sticky WhatsApp/報價 bar */
@media (max-width: 959px) {
  .tts-btn {
    width: 100%;
    max-width: 22rem;
    min-height: 52px; /* >48px */
    font-size: 1.375rem;
    letter-spacing: 0.08em;
    /* When scrolled/focused into view, sit above .mobile-cta */
    scroll-margin-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }

  .blog-tts,
  .tts-host {
    scroll-margin-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }

  /* Safety: TTS must never render inside the sticky CTA strip */
  .mobile-cta .tts-btn {
    display: none !important;
  }
}

/* ——— U05 · varieties/* + blog/*：大字正文／列表间距；长文短句节奏 ——— */
.page-prose {
  --space-stack: var(--space-prose);
}

.page-prose .section__lead {
  font-size: var(--text-support);
  line-height: var(--leading-body);
  margin-bottom: 2.25rem;
}

.page-prose .section__title {
  margin-bottom: 0.75rem;
}

/* ——— Quick answer box (fleet A06 · AI-citable · 港繁大字) ——— */
.quick-answer {
  max-width: 42rem;
  margin: 0 0 1.75rem;
  padding: 1.35rem 1.35rem 1.4rem;
  border-left: 4px solid var(--color-melon-flesh);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 0 0 1px rgba(26, 36, 32, 0.06);
}

.section--field .quick-answer {
  background: rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 0 0 1px rgba(245, 240, 230, 0.1);
}

.quick-answer__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.1vw + 1.15rem, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 0.85rem;
  color: var(--color-text-on-light);
  line-height: 1.25;
}

.section--field .quick-answer__title {
  color: var(--color-sun-flare);
}

.quick-answer__body {
  display: grid;
  gap: 0.7rem;
}

.quick-answer__body p {
  margin: 0;
  font-size: clamp(1.1875rem, 0.45vw + 1.1rem, 1.375rem); /* ≥19px · 大字利 AI／舊機 */
  line-height: 1.65;
  color: var(--color-text-on-light);
}

.section--field .quick-answer__body p {
  color: var(--color-text-on-dark);
}

.quick-answer__body strong {
  font-weight: 700;
  color: var(--color-text-on-light);
}

.section--field .quick-answer__body strong {
  color: var(--color-text-on-dark);
}

/* Blog article + index list */
.blog-prose,
.blog-body {
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  font-size: var(--text-body);
  line-height: var(--leading-body);
  overflow-wrap: anywhere;
}

.blog-prose p,
.blog-body > p {
  margin: 0 0 var(--space-prose);
  color: var(--color-text-muted);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.blog-prose p:last-child,
.blog-body > p:last-child {
  margin-bottom: 0;
}

.blog-prose strong,
.blog-body strong {
  color: var(--color-text-on-light);
  font-weight: 700;
}

.section--field .blog-prose p,
.section--field .blog-body > p,
.section--field .blog-prose strong,
.section--field .blog-body strong {
  color: var(--color-text-muted-on-dark);
}

.section--field .blog-prose strong,
.section--field .blog-body strong {
  color: var(--color-text-on-dark);
}

.blog-prose ol,
.blog-prose ul,
.blog-body > ul,
.blog-body > ol {
  margin: 0 0 var(--space-prose);
  padding-left: 1.35rem;
  color: var(--color-text-muted);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.blog-prose li + li,
.blog-body li + li {
  margin-top: var(--space-list-item);
}

.blog-body h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: var(--leading-heading);
  margin: 2.25rem 0 0.9rem;
  color: var(--color-text-on-light);
}

.blog-index-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.75rem;
}

.blog-index-list > li {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(26, 36, 32, 0.12);
}

.blog-index-list > li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.blog-index-list h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 0.5vw + 1.1rem, 1.4rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: var(--leading-heading);
}

.blog-index-list h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-index-list h3 a:hover {
  color: var(--color-melon-rind);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.blog-index-list p {
  margin: 0;
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-text-muted);
  max-width: 40rem;
}

.blog-kw {
  display: inline-block;
  font-size: var(--text-small);
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  margin: 0 0 0.55rem;
}

.blog-meta,
.article-meta {
  font-size: var(--text-small);
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0.75rem 0 0;
}

/* Variety detail body blocks that were stuck on --text-small */
.page-prose .buyer-grid p,
.page-prose .compare-list span,
.page-prose .compare-list li,
.page-prose .check-list li,
.page-prose .disambig-grid p,
.page-prose .inquiry-fields li,
.page-prose .inquiry-aside ol,
.page-prose .bucket-list p {
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.page-prose .buyer-grid h3,
.page-prose .disambig-grid h3,
.page-prose .bucket-list h3 {
  font-size: clamp(1.15rem, 0.4vw + 1.05rem, 1.3rem);
  line-height: var(--leading-heading);
  margin-bottom: 0.5rem;
}

.page-prose .buyer-grid {
  gap: 1.75rem;
}

.page-prose .compare-list li,
.page-prose .check-list li {
  padding-block: 1rem;
}

.page-prose .inquiry-fields li {
  padding-block: 1rem;
  gap: 0.85rem;
}

.page-prose .layer-table {
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.page-prose .layer-table th,
.page-prose .layer-table td {
  padding: 0.9rem 0.95rem;
}

.page-prose .wa-template {
  font-size: var(--text-body);
  line-height: 1.6;
  padding: 1.15rem 1.25rem;
}

@media (max-width: 719px) {
  .page-prose .section__title {
    font-size: clamp(1.45rem, 5vw + 0.6rem, 1.9rem);
  }

  .blog-index-list {
    gap: 1.5rem;
  }

  .variety-grid,
  .variety-list,
  .variety-index {
    gap: 1.5rem;
  }
}

/* ——— Fleet U03 home hero overrides (cascade last) ——— */
.hero.hero--home .hero__content {
  width: min(100% - 2 * var(--space-gutter), 28rem);
  max-width: 28rem;
  margin-inline: 0;
  margin-left: max(
    var(--space-gutter),
    calc((100% - var(--max-content)) / 2 + var(--space-gutter))
  );
  margin-right: auto;
}

@media (min-width: 960px) {
  .hero.hero--home .hero__content {
    width: min(28rem, 40vw);
    max-width: min(28rem, 40vw);
  }
}

.hero.hero--home .hero__media.has-photo .hero__media-photo,
.hero.hero--home.hero--photo-lcp .hero__media-photo {
  object-position: 68% 42%;
  opacity: 0.68;
}

@media (prefers-reduced-motion: no-preference) {
  .hero.hero--home.hero--photo-lcp.is-ready .hero__media-photo {
    animation-name: hero-photo-settle-home;
  }
}

@keyframes hero-photo-settle-home {
  from { opacity: 0.4; }
  to { opacity: 0.68; }
}

.hero.hero--home.is-ready .hero__cta {
  animation-delay: calc(var(--stagger) * 2);
}
