/* ==========================================================================
   landing-page.css — はなまる配送 LP
   Builds on colors_and_type.css (which provides tokens + element defaults).
   Structure: layout primitives → header → hero → intro → landscape-cta →
   pricing → flow + form → footer.
   ========================================================================== */

/* ───────────────────────── Layout primitives ─────────────────────── */

/* Offset anchor scroll targets by the fixed-header height so
   in-page links (#about / #pricing / #how / #contact / #top) land
   just below the header instead of being hidden behind it. */
html {
  scroll-padding-top: 64px;
  background: var(--ink-sumi);
}
@media (min-width: 880px) { html { scroll-padding-top: 80px; } }

main { display: block; }

.section-head {
  max-width: var(--w-content);
  margin: 0 auto var(--s-16); /* extra breathing room before the table/cards below */
  padding: 0 var(--gutter);
  text-align: center;
}
.section-head h2 {
  font-size: var(--fz-3xl);
  font-weight: var(--fw-medium); /* calmer than heavy — luxury sites lean lighter */
  letter-spacing: 0.04em;
  margin: var(--s-3) 0 var(--s-5);
}
.section-head__sub {
  color: var(--fg-soft);
  font-size: var(--fz-md);
  max-width: 48ch;
  margin: 0 auto;
}
.section-head__note {
  margin-top: var(--s-5);
  font-size: var(--fz-xs);
  color: var(--fg-mute);
  letter-spacing: var(--tr-snug);
}

/* ─────────────────── Hanko dot (the brand seal accent) ──────────── */
.hanko-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--brand-hanko);
  border-radius: 2px;
  position: relative;
  margin-right: var(--s-3);
  vertical-align: 1px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

/* ─────────────────────────── Buttons ─────────────────────────────── */

.btn {
  --btn-pad-y: 16px;
  --btn-pad-x: 40px;
  --btn-fz: var(--fz-sm);
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: var(--s-3);
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-family: var(--font-body-jp);
  font-weight: var(--fw-medium);
  font-size: var(--btn-fz);
  letter-spacing: 0.14em;
  line-height: 1;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  background: none;
  background-image: none !important; /* override the link underline gradient */
  transition: background-color var(--dur) var(--ease-river),
              color var(--dur) var(--ease-river),
              border-color var(--dur) var(--ease-river),
              transform var(--dur-fast) var(--ease-river),
              box-shadow var(--dur) var(--ease-river);
  white-space: nowrap;
  overflow: hidden;       /* clip the shine sweep to the pill shape */
  isolation: isolate;     /* contain mix-blend-mode to the button itself */
}
/* English page uppercases button labels — the luxury microcopy treatment.
   Japanese characters can't be uppercased, so the JP page uses extra
   letter-spacing (above) instead. */
html[lang="en"] .btn { text-transform: uppercase; letter-spacing: 0.18em; }
.btn:active { transform: translateY(1px); }
.btn:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}
.btn--primary {
  background: var(--brand-hanko);
  color: var(--paper-white);
  border-color: var(--brand-hanko);
}
.btn--primary:hover {
  background: oklch(from var(--brand-hanko) calc(l + 0.1) c h);
  border-color: oklch(from var(--brand-hanko) calc(l + 0.1) c h);
}

/* Glint sweep — a diagonal white streak that crosses the pill on hover.
   `mix-blend-mode: screen` brightens the red bg without obscuring the
   white text. The streak is hidden at rest (opacity: 0) and re-fires on
   each hover via animation re-application. */
.btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 30%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  transform: translateX(-150%) skewX(-20deg);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}
.btn--primary:hover::before {
  animation: btnShine 0.75s var(--ease-river);
}
@keyframes btnShine {
  0%   { transform: translateX(-150%) skewX(-20deg); opacity: 0; }
  18%  { opacity: 1; }
  82%  { opacity: 1; }
  100% { transform: translateX(600%) skewX(-20deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .btn--primary::before { display: none; }
}

.btn--ghost {
  background: transparent;
  color: var(--ink-sumi);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--ink-sumi);
  box-shadow: inset 0 0 0 1px var(--ink-sumi);
}
.btn--ghost-light { color: var(--paper-white); border-color: rgba(251, 248, 242, 0.7); }
.btn--ghost-light:hover { border-color: var(--paper-white); box-shadow: inset 0 0 0 1px var(--paper-white); }

.btn--lg { --btn-pad-y: 20px; --btn-pad-x: 56px; --btn-fz: var(--fz-md); }
.btn--block { display: flex; width: 100%; justify-content: center; }

.btn__icon { width: 1.25em; height: 1.25em; flex-shrink: 0; }

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

/* ─────────────────────────── Header ──────────────────────────────── */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 64px;
  z-index: var(--z-sticky);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--s-6);
  background: transparent;
  color: var(--paper-white);
  transition: background-color var(--dur) var(--ease-river),
              color var(--dur) var(--ease-river),
              backdrop-filter var(--dur) var(--ease-river),
              border-color var(--dur) var(--ease-river),
              box-shadow var(--dur) var(--ease-river);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  color: var(--ink-sumi);
  border-bottom-color: var(--border-light);
}
/* Legal pages have no hero, so the header sits on the paper background from
   the first frame — force the scrolled treatment regardless of scroll position
   so the nav / lang / hamburger labels stay readable. */
body.is-legal .site-header {
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  color: var(--ink-sumi);
  border-bottom-color: var(--border-light);
}
@media (min-width: 880px) {
  .site-header { height: 80px; padding: 0 var(--s-10); }
}

.site-header__brand { display: flex; align-items: center; height: 100%; gap: var(--s-3); }
.site-header__logo {
  height: 36px;
  width: auto;
}
@media (min-width: 880px) {
  .site-header__logo { height: 44px; }
}

/* EN page wordmark — pairs the round flower icon (logo-mark.png) with a
   two-line typographic mark "HANAMARU / LUGGAGE DELIVERY". Renders only on
   the EN page; JP keeps using the single logo-trim.png. */
.site-header__wordmark,
.site-footer__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--brand-hanko);
}
.site-header__wordmark-name,
.site-footer__wordmark-name {
  font-family: var(--font-display-ll);
  font-weight: var(--fw-semi);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}
.site-header__wordmark-tag,
.site-footer__wordmark-tag {
  font-family: var(--font-body-ll);
  font-weight: var(--fw-medium);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  margin-top: 4px;
}
@media (min-width: 880px) {
  .site-header__wordmark-name { font-size: 1.5rem; }
  .site-header__wordmark-tag { font-size: 0.7rem; }
}
/* Footer wordmark sits on its own row above the brand tagline. */
.site-footer__wordmark-row {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
}
.site-footer__wordmark-name { font-size: 1.4rem; }
.site-footer__wordmark-tag { font-size: 0.65rem; }

.site-header__nav {
  display: none;
  justify-content: flex-end;
  gap: var(--s-8);
  font-size: var(--fz-sm);
  font-weight: var(--fw-medium);
}
.site-header__nav a {
  display: inline-flex;
  flex-direction: column;
  background-image: none;
  letter-spacing: var(--tr-snug);
  position: relative;
}
.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--brand-hanko);
  transition: right var(--dur) var(--ease-river);
}
.site-header__nav a:hover::after { right: 0; }
@media (min-width: 880px) { .site-header__nav { display: flex; } }

.site-header__lang {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-body-ll);
  font-size: var(--fz-xs);
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
}
.lang-btn {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 4px 6px;
  font: inherit;
  letter-spacing: inherit;
  opacity: 0.55;
  transition: opacity var(--dur) var(--ease-river);
}
.lang-btn.is-active { opacity: 1; }
.lang-sep { opacity: 0.4; }

/* ─────────────────── Mobile menu (hamburger + overlay) ──────────── */
/* Hamburger button — three lines that morph into an X when nav is open.
   Visible on mobile; hidden on ≥880px where the nav is always inline. */
.site-header__menu {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
  position: relative;
  z-index: 1; /* keep above the overlay */
}
.site-header__menu span {
  display: block;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--dur) var(--ease-river),
              opacity var(--dur) var(--ease-river);
}
.site-header__menu span:nth-child(2) { width: 80%; align-self: flex-end; }
body.nav-open .site-header__menu span:nth-child(1) {
  transform: translateY(8.25px) rotate(45deg);
}
body.nav-open .site-header__menu span:nth-child(2) {
  opacity: 0;
}
body.nav-open .site-header__menu span:nth-child(3) {
  transform: translateY(-8.25px) rotate(-45deg);
}

/* When the menu opens, force header to its scrolled (light bg + dark ink)
   appearance so the hamburger X and the JP/EN toggle stay readable against
   the cream overlay below. We deliberately drop `backdrop-filter` here
   (and override .is-scrolled to do the same) — a backdrop-filter ancestor
   becomes a containing block for `position: fixed` descendants, which
   would trap the nav overlay inside the header's 64px height instead of
   covering the full viewport. */
body.nav-open .site-header,
body.nav-open .site-header.is-scrolled {
  background: var(--paper-white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--ink-sumi);
  border-bottom-color: var(--border-light);
}

/* Lock body scroll while overlay is open */
body.nav-open { overflow: hidden; }

/* Inside the .site-header stacking context, lift brand / lang / menu above
   the overlay nav so the header chrome (logo, JP/EN, X button) stays
   clickable and visible when the overlay is open. */
.site-header__brand,
.site-header__lang { position: relative; z-index: 1; }

/* Overlay nav — uses the same .site-header__nav element that on desktop
   sits inline in the header. On mobile, when body.nav-open is set, it
   becomes a fullscreen cream panel with centered serif links. z-index: 0
   keeps it below the other header children (which are z-index: 1) while
   still painting above page content (header's own context is z-sticky). */
body.nav-open .site-header__nav {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--paper-white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--s-6);
  padding: 64px var(--gutter);
  animation: navOverlayIn var(--dur) var(--ease-river);
}
body.nav-open .site-header__nav a {
  font-family: var(--font-display-jp);
  font-size: var(--fz-3xl);
  font-weight: var(--fw-medium);
  color: var(--ink-sumi);
  letter-spacing: var(--tr-snug);
  padding: var(--s-2) var(--s-3);
  white-space: nowrap;
}
body.nav-open .site-header__nav a::after { display: none; }
html[lang="en"] body.nav-open .site-header__nav a {
  font-family: var(--font-display-ll);
  font-weight: var(--fw-semi);
  text-transform: none;
  letter-spacing: var(--tr-snug);
}
@keyframes navOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  body.nav-open .site-header__nav { animation: none; }
}

/* Desktop: nav inline, hamburger gone. nav-open class (if somehow set)
   must not turn into overlay — explicitly reset positioning. */
@media (min-width: 880px) {
  .site-header__menu { display: none; }
  body.nav-open .site-header__nav,
  body.nav-open .site-header {
    position: fixed; /* header stays fixed */
  }
  body.nav-open .site-header__nav {
    position: static;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: row;
    padding: 0;
    inset: auto;
    animation: none;
  }
  body.nav-open .site-header__nav a {
    font-family: var(--font-body-jp);
    font-size: var(--fz-sm);
    color: inherit;
    padding: 0;
  }
  body.nav-open .site-header__nav a::after { display: block; }
}

/* ──────────────────────────── Hero ───────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 980px;
  display: grid;
  align-items: center;
  color: var(--paper-white);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* photograph treatment: cool, slightly desaturated */
  filter: saturate(0.65) contrast(1.05) brightness(0.92) hue-rotate(-8deg);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* cool teal-ink tint to push the photo toward water-ink */
    linear-gradient(180deg,
      rgba(31, 55, 53, 0.40) 0%,
      rgba(31, 55, 53, 0.28) 38%,
      rgba(20, 35, 33, 0.72) 100%),
    linear-gradient(90deg,
      rgba(31, 55, 53, 0.34) 0%,
      rgba(31, 55, 53, 0.04) 50%);
}

.hero__inner {
  max-width: var(--w-content);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: var(--fz-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--tr-wide);
  margin-bottom: var(--s-8);
}
.hero__title {
  font-family: var(--font-display-jp);
  font-size: clamp(2.5rem, 8vw, var(--fz-6xl));
  font-weight: var(--fw-heavy);
  line-height: 1.06;
  letter-spacing: var(--tr-tight);
  margin: 0 0 var(--s-8);
  color: var(--paper-white);
  text-shadow: 0 2px 28px rgba(0,0,0,0.18);
}
.hero__title-line {
  display: block;
}

@keyframes heroLineIn { to { opacity: 1; transform: translateY(0); } }

/* Per-character soft fade-in for the JP hero title.
   Each char gets a --i index in inline style for staggered delay. */
.hero__title-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  animation: heroCharIn 900ms var(--ease-river) forwards;
  animation-delay: calc(var(--i, 0) * 90ms + 120ms);
  will-change: opacity, transform;
}
@keyframes heroCharIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__title-char { animation: none; opacity: 1; transform: none; }
}

.hero__sub {
  font-size: var(--fz-lg);
  line-height: 1.85;
  max-width: 36ch;
  margin: 0 0 var(--s-10);
  color: rgba(251, 248, 242, 0.96);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.hero .btn--ghost {
  color: var(--paper-white);
  border-color: rgba(251, 248, 242, 0.65);
}
.hero .btn--ghost:hover {
  border-color: var(--paper-white);
  background: rgba(251, 248, 242, 0.08);
  box-shadow: inset 0 0 0 1px var(--paper-white);
}

/* Scroll prompt */
.hero__scroll {
  position: absolute;
  bottom: var(--s-8);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  color: var(--paper-white);
  background-image: none !important;
  font-family: var(--font-body-ll);
  font-size: var(--fz-xs);
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
}
.hero__scroll-line {
  position: relative;
  width: 1px;
  height: 56px;
  background: rgba(251, 248, 242, 0.3);
  overflow: hidden;
}
.hero__scroll-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper-white);
  transform-origin: top;
  animation: scrollLine 2400ms var(--ease-river) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%) scaleY(0.4); }
  50%  { transform: translateY(0%)    scaleY(1);   }
  100% { transform: translateY(100%)  scaleY(0.4); }
}

/* ────────────────────────── Intro strip ─────────────────────────── */
.intro {
  padding: var(--s-24) var(--gutter);
  background: #FCFCFA; /* nearly white with a hint of warmth */
}
.intro__inner {
  max-width: var(--w-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
}
@media (min-width: 880px) {
  .intro__inner { grid-template-columns: 38fr 62fr; gap: var(--s-20); }
}
.intro__title {
  font-size: var(--fz-3xl);
  font-weight: var(--fw-heavy);
  letter-spacing: var(--tr-tight);
  margin: var(--s-4) 0 var(--s-3);
  line-height: 1.18;
}
.intro__body {
  color: var(--fg-soft);
  /* Auto-wrap with balanced ragged ends; let the browser pick the best
     break points instead of using physical <br>s that fight responsive widths. */
  text-wrap: pretty;
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
}
/* Inline-block keeps the contents from breaking across a line. Use on short
   semantic chunks ("次の宿まで", proper nouns) where mid-phrase breaks read poorly. */
.u-nobr { display: inline-block; }
.intro__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--s-6);
  margin: var(--s-10) 0 0;
  padding-top: var(--s-8);
  border-top: 1px solid var(--border-light);
}
.intro__facts > div { display: flex; flex-direction: column; gap: 2px; }
.intro__facts dt {
  font-family: var(--font-body-ll);
  font-size: var(--fz-xs);
  text-transform: uppercase;
  letter-spacing: var(--tr-wider);
  color: var(--fg-mute);
  font-weight: var(--fw-medium);
}
.intro__facts dd {
  margin: 0;
  font-family: var(--font-display-jp);
  font-size: var(--fz-lg);
  font-weight: var(--fw-semi);
  letter-spacing: var(--tr-snug);
}
/* ─────────────────── Section 1 (landscape + CTAs) ────────────────── */
.landscape-cta {
  position: relative;
  isolation: isolate;
  color: var(--paper-white);
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: var(--s-32) var(--gutter);
  overflow: hidden;
}
.landscape-cta__bg { position: absolute; inset: 0; z-index: -1; }
.landscape-cta__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.70) contrast(1.04) brightness(0.88) hue-rotate(-6deg);
}
.landscape-cta__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(31,55,53,0.45) 0%,
      rgba(31,55,53,0.65) 100%);
}
.landscape-cta__inner {
  max-width: var(--w-content);
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.landscape-cta__eyebrow {
  color: rgba(251, 248, 242, 0.78);
  font-family: var(--font-body-ll);
  font-style: italic;
  text-transform: none;
  letter-spacing: var(--tr-wide);
}
.landscape-cta__title {
  /* min 1.5rem (was 2rem): at 375px viewport the 11-char 2nd line
     "私たちにお預けください。" no longer overflows the 327px content area
     and the orphan "い。" line collapses back. Desktop unchanged (caps at fz-4xl). */
  font-size: clamp(1.5rem, 6.5vw, var(--fz-4xl));
  font-weight: var(--fw-heavy);
  margin: var(--s-3) 0 var(--s-5);
  line-height: 1.18;
  color: var(--paper-white);
}
.landscape-cta__sub {
  font-size: var(--fz-md);
  line-height: 1.8;
  color: rgba(251, 248, 242, 0.92);
  max-width: 44ch;
  margin: 0 auto var(--s-10);
}
.landscape-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: center;
}

/* ───────────────────────── Pricing ──────────────────────────────── */
.pricing {
  padding: var(--s-24) var(--gutter);
  background: #FAF9F5; /* neutral warm white, matches contact section */
}
/* Pricing selector — two <select>s drive a live price readout (replaces the
   former 10-row static table). Reuses .field's input chrome for the dropdowns
   so the form below the fold and this lookup feel like one visual system. */
.pricing__selector {
  max-width: 640px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: var(--s-6);
}
@media (max-width: 599px) {
  .pricing__selector { padding: var(--s-5); }
}
.pricing__selector-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
@media (max-width: 599px) {
  .pricing__selector-fields { grid-template-columns: 1fr; }
}
/* Slim down the selects + drop the trailing margin within the pricing card so
   the dropdowns feel proportionate to the surrounding section (the form's
   .field below stays at the standard size). */
.pricing__selector .field { margin-bottom: 0; gap: var(--s-1); }
.pricing__selector .field__label { font-size: var(--fz-xs); }
.pricing__selector .field select {
  padding-top: var(--s-2);
  padding-bottom: var(--s-2);
  font-size: var(--fz-sm);
}
.pricing__selector-result {
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border-light);
  text-align: center;
  /* Reserve enough vertical space so the layout doesn't jump between the
     placeholder text and the price / inquire variants. */
  min-height: 72px;
}
.pricing__selector-prompt,
.pricing__selector-error {
  margin: 0;
  font-size: var(--fz-sm);
  line-height: 1.7;
}
.pricing__selector-prompt { color: var(--fg-mute); }
.pricing__selector-error { color: var(--brand-hanko); }
.pricing__selector-price {
  margin: 0;
  font-family: var(--font-display-jp);
  font-weight: var(--fw-semi);
  font-size: var(--fz-3xl);
  font-variant-numeric: tabular-nums;
  color: var(--fg);
}
.pricing__selector-suffix {
  font-family: var(--font-body-jp);
  font-weight: var(--fw-regular);
  font-size: var(--fz-sm);
  color: var(--fg-mute);
  margin-left: var(--s-2);
}
.pricing__selector-inquire-title {
  margin: 0 0 var(--s-2);
  font-family: var(--font-display-jp);
  font-weight: var(--fw-medium);
  font-size: var(--fz-lg);
  color: var(--fg);
}
.pricing__selector-inquire-body {
  margin: 0 0 var(--s-5);
  color: var(--fg-mute);
  font-size: var(--fz-sm);
  line-height: 1.7;
}

.pricing__notes {
  /* Align with the pricing selector card above (same 640px max). Stays as a
     single column on every viewport so both notes stack as one readable
     column instead of fighting the card's narrower visual centerline. */
  max-width: 640px;
  margin: var(--s-8) auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  padding: 0;
  list-style: none;
  font-size: var(--fz-sm);
  color: var(--fg-soft);
}
.pricing__notes-bullet {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--ink-mute);
  border-radius: 1px;
  margin-right: var(--s-3);
  vertical-align: 2px;
}

/* ───────────────────────── Contact / Flow / Form ─────────────────── */

.contact {
  padding: var(--s-24) var(--gutter);
  background: #FAF9F5; /* neutral warm white — no blue tint */
}

/* The animated booking flow */
.flow {
  position: relative;
  max-width: var(--w-content);
  margin: 0 auto var(--s-16);
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
@media (min-width: 720px) {
  .flow { grid-template-columns: repeat(4, 1fr); gap: var(--s-6); }
}
.flow__step {
  position: relative;
  background: #FFFFFF; /* card lifts off the cream contact bg */
  border-radius: var(--r-md);
  padding: var(--s-8) var(--s-6) var(--s-6);
  border: 1px solid var(--border-light);
  transition: border-color var(--dur) var(--ease-river),
              transform var(--dur) var(--ease-river);
  isolation: isolate;
}
.flow__step:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.flow__index {
  font-family: var(--font-display-ll);
  font-style: italic;
  font-size: var(--fz-xl);
  color: var(--fg-faint);
  letter-spacing: var(--tr-snug);
  display: block;
  margin-bottom: var(--s-3);
}
.flow__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper-cream);
  color: var(--brand-hanko);
  margin-bottom: var(--s-4);
  transition: background-color var(--dur) var(--ease-river),
              color var(--dur) var(--ease-river);
}
.flow__icon svg { width: 22px; height: 22px; }
.flow__step.is-active .flow__icon {
  background: var(--brand-hanko);
  color: var(--paper-white);
}
.flow__title {
  font-family: var(--font-display-jp);
  font-size: var(--fz-lg);
  font-weight: var(--fw-bold);
  margin: 0 0 2px;
  letter-spacing: var(--tr-snug);
}
.flow__body {
  margin: 0;
  font-size: var(--fz-sm);
  color: var(--fg-soft);
  line-height: 1.7;
}

/* line + dot — visible only on row layout (desktop) */
.flow__line { display: none; }
@media (min-width: 720px) {
  .flow__line {
    display: block;
    position: absolute;
    top: 88px;            /* aligned to icon centre */
    left: calc(100% / 8); /* centre of first col */
    width: calc(100% - 100% / 4); /* span centres of col1..col4 */
    height: 2px;
    pointer-events: none;
    z-index: -1;
  }
  .flow__line-track {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      to right,
      var(--border-strong) 0,
      var(--border-strong) 4px,
      transparent 4px,
      transparent 10px);
    opacity: 0.7;
  }
  .flow__line-dot {
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--brand-hanko);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px rgba(237, 38, 44, 0.18);
    animation: flowDot 7.6s var(--ease-river) infinite;
  }
}
@keyframes flowDot {
  0%   { left: 0%;    }
  18%  { left: 0%;    }
  25%  { left: 33.33%;}
  43%  { left: 33.33%;}
  50%  { left: 66.66%;}
  68%  { left: 66.66%;}
  75%  { left: 100%;  }
  93%  { left: 100%;  }
  100% { left: 100%;  opacity: 0; }
}

/* Form */
.form {
  /* No wrapping card — fields sit directly on the contact section bg
     like MAISON's Subscribe block. */
  max-width: 760px;
  margin: 0 auto;
  background: transparent;
  border: 0;
  border-radius: var(--r-lg);
  padding: 0;
  box-shadow: none;
}
.form__row { display: grid; gap: var(--s-5); margin-bottom: var(--s-5); }
.form__row--two { grid-template-columns: 1fr; }
.form__row--three { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .form__row--two { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .form__row--three { grid-template-columns: 1fr 1fr 1fr; gap: var(--s-6); }
}
/* Mobile only — separate consecutive trip-leg rows (お預け側 / お届け側) with
   a hairline so scanning the stack feels grouped instead of flat. */
@media (max-width: 719px) {
  .form__row--three + .form__row--three {
    margin-top: var(--s-6);
    padding-top: var(--s-6);
    border-top: 1px solid var(--border-light);
  }
}

/* Date + time as a tight pair inside a single grid cell. Used for
   お届け希望日 + お届け希望時刻 — date stays on Flatpickr (locale-aware),
   time is a native <input type="time"> so iOS shows its wheel picker
   instead of the tiny Flatpickr arrows. */
.form__field-pair { display: grid; grid-template-columns: minmax(0, 1fr) 100px; gap: var(--s-3); }
.form__field-pair > .field { margin-bottom: 0; min-width: 0; }
@media (max-width: 599px) {
  .form__field-pair { grid-template-columns: 1fr; gap: var(--s-4); }
}
/* Helper note placed above a conditional field. Sits tight under the prior row
   so the reader scans note → field as one unit. */
.form__note {
  margin: calc(var(--s-2) * -1) 0 var(--s-3);
  font-size: var(--fz-sm);
  color: var(--fg-mute);
  line-height: 1.6;
}
/* Alert variant — matches the brand-hanko asterisk so required-field cues
   read as one connected idea. */
.form__note--alert { color: var(--brand-hanko); }

.field { display: flex; flex-direction: column; gap: var(--s-2); margin-bottom: var(--s-4); }
.field__label {
  font-family: var(--font-body-jp);
  font-size: var(--fz-sm);
  font-weight: var(--fw-medium);
  color: var(--fg);
  letter-spacing: 0.06em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.field__req {
  font-size: 1em;
  font-weight: var(--fw-regular);
  color: var(--brand-hanko);
  background: transparent;
  padding: 0;
  letter-spacing: 0;
  line-height: 1;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-family: var(--font-body-jp);
  color: var(--fg);
  background: #FFFFFF; /* inputs stay white against the cream contact bg */
  border: 1px solid var(--border-strong);
  border-radius: var(--r);
  padding: var(--s-3) var(--s-4);
  transition: border-color var(--dur) var(--ease-river),
              box-shadow var(--dur) var(--ease-river),
              background-color var(--dur) var(--ease-river);
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--fg-faint); }
html[lang="en"] .field input::placeholder,
html[lang="en"] .field textarea::placeholder { font-style: italic; }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--ink-mute); }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--water-deep);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--water-deep) 18%, transparent);
  background: #FFFFFF;
}
.field textarea { resize: vertical; min-height: 6em; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%231B2421' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right var(--s-4) center;
  background-size: 12px 8px;
  padding-right: var(--s-10);
}

/* Custom time picker — replaces the native <select> for delivery_time so the
   popover height can be capped (~6 rows). The native select expands to fill
   the viewport on iOS Safari, which read as cluttered to the client. */
.time-picker { position: relative; }
.field .time-picker input[data-time-picker] {
  cursor: pointer;
  caret-color: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%231B2421' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right var(--s-4) center;
  background-size: 12px 8px;
  padding-right: var(--s-10);
}
.time-picker__list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 264px; /* ~6 rows so the popover doesn't fill the screen */
  overflow-y: auto;
  background: #FFFFFF;
  border: 1px solid var(--border-strong);
  border-radius: var(--r);
  box-shadow: var(--shadow-3);
  list-style: none;
  margin: 0;
  padding: var(--s-1) 0;
  z-index: 50;
  font-variant-numeric: tabular-nums;
  -webkit-overflow-scrolling: touch;
}
.time-picker__option {
  padding: var(--s-3) var(--s-5);
  cursor: pointer;
  font-size: var(--fz-base);
  color: var(--fg);
  line-height: 1.4;
}
.time-picker__option:hover,
.time-picker__option:focus {
  background: var(--brand-hanko-soft);
  outline: none;
}
.time-picker__option[aria-selected="true"] {
  background: var(--brand-hanko-soft);
  color: var(--brand-hanko);
  font-weight: var(--fw-medium);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: var(--fz-sm);
  color: var(--fg-soft);
  margin: var(--s-5) 0 var(--s-8);
  line-height: 1.6;
}
.checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 3px;
  accent-color: var(--ink-sumi);
}
.checkbox a { color: var(--ink-sumi); font-weight: var(--fw-medium); }
.form__submit { display: flex; flex-direction: column; align-items: stretch; gap: var(--s-4); }
.form__reply {
  text-align: center;
  font-size: var(--fz-xs);
  color: var(--fg-mute);
  margin: 0;
}
.form__guard-error {
  text-align: center;
  font-size: var(--fz-sm);
  color: var(--brand-hanko);
  margin: 0;
}
/* Confirm + complete now live in a centered <dialog> so the LP itself
   doesn't have a separate "after submit" screen — keeps the editorial calm.
   Outer <dialog> stays transparent; the inner body owns the card chrome so
   clicking the padding area registers as a backdrop click (closes the dialog). */
.form__dialog {
  width: min(640px, calc(100vw - var(--gutter, 24px) * 2));
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--fg);
  overflow: visible;
}
.form__dialog::backdrop {
  background: rgba(28, 24, 24, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.form__dialog-body {
  background: var(--paper-white);
  border-radius: var(--r-lg);
  padding: var(--s-10) var(--s-8);
  box-shadow: var(--shadow-3);
  /* Cap the card height so a long confirm list (up to 10 rows) scrolls
     INSIDE the popup instead of pushing the Edit/Send buttons off-screen.
     Earlier attempt put overflow on the <dialog> itself, but iOS Safari
     doesn't reliably make the dialog element the touch-scroll container —
     making the inner card the scroller is the iOS-safe pattern. `dvh`
     tracks the dynamic viewport (URL bar shows/hides). */
  max-height: calc(100dvh - var(--s-6) * 2);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 599px) {
  .form__dialog-body { padding: var(--s-8) var(--s-5); }
}

/* iOS Safari sometimes fails to lock <body> scroll when dialog.showModal()
   fires, so the page behind scrolls instead of the dialog content. Force
   the lock so only the popup can scroll while it's open. */
body:has(dialog[open]) { overflow: hidden; }

.form__dialog-title {
  font-family: var(--font-display-jp);
  font-size: var(--fz-2xl);
  font-weight: var(--fw-semi);
  text-align: center;
  margin: 0 0 var(--s-8);
  letter-spacing: var(--tr-snug);
}
.form__dialog-text {
  text-align: center;
  color: var(--fg-mute);
  line-height: 1.9;
  margin: 0 0 var(--s-8);
}

.form__confirm-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: var(--s-6);
  row-gap: var(--s-3);
  margin: 0 0 var(--s-8);
  font-size: var(--fz-sm);
  line-height: 1.7;
}
.form__confirm-list dt {
  font-weight: var(--fw-medium);
  color: var(--fg-mute);
  letter-spacing: 0.06em;
}
/* Match the EN form labels — uppercase reads as one visual system with the inputs above. */
html[lang="en"] .form__confirm-list dt { text-transform: uppercase; letter-spacing: 0.12em; }
.form__confirm-list dd {
  margin: 0;
  color: var(--fg);
  word-break: break-word;
  white-space: pre-wrap;
}
/* Optional fields left blank still show in the list — dimmed so the eye skips
   them but they're confirmable at a glance. */
.form__confirm-list dd[data-empty] { color: var(--fg-mute); font-style: italic; }
/* Mobile: stack dt above dd so long Japanese labels don't crush the value column. */
@media (max-width: 599px) {
  .form__confirm-list {
    grid-template-columns: 1fr;
    row-gap: var(--s-1);
  }
  .form__confirm-list dt:not(:first-of-type) { margin-top: var(--s-3); }
}

/* Honeypot — hidden visually but reachable to bots that auto-fill every input.
   `display: none` would make some bots skip it; off-screen positioning is the
   standard Formspree-recommended approach. */
.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Submission error banner inside the confirm step — soft hanko-red tint so
   it reads as an alert without shouting. Hidden by default; JS toggles. */
.form__dialog-error {
  margin: 0 0 var(--s-5);
  padding: var(--s-3) var(--s-4);
  background: oklch(from var(--brand-hanko) 0.96 0.03 h);
  border-radius: var(--r-md);
  color: var(--brand-hanko);
  font-size: var(--fz-sm);
  line-height: 1.6;
  text-align: center;
}

/* Send button while in flight — slightly dimmed and not clickable. */
.form__confirm-actions .btn[disabled] { opacity: 0.55; cursor: progress; }

.form__confirm-actions {
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  flex-wrap: wrap;
}
/* justify-content: center centers the label inside each pill — without this,
   .btn's default flex-start leaves the text hugging the left padding when the
   button stretches via `flex: 1 1 …`. */
.form__confirm-actions .btn {
  flex: 1 1 200px;
  max-width: 260px;
  justify-content: center;
}
.form__confirm-actions--single { justify-content: center; }
.form__confirm-actions--single .btn { flex: 0 1 260px; }

/* ─────────────────────── Legal pages (terms / privacy / legal) ─────────
   Long-form static pages that share the LP's header/footer but use a calmer,
   reading-first layout. Constrained measure (~720px), generous line-height,
   serif headings to feel editorial. .legal-page__todo highlights placeholder
   fields the client still needs to fill in. */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--s-20) var(--gutter, 24px) var(--s-24);
}
.legal-page__title {
  font-family: var(--font-display-jp);
  font-size: var(--fz-3xl);
  font-weight: var(--fw-semi);
  text-align: center;
  margin: 0 0 var(--s-3);
  letter-spacing: var(--tr-snug);
}
.legal-page__meta {
  text-align: center;
  color: var(--fg-mute);
  font-size: var(--fz-sm);
  margin: 0 0 var(--s-16);
}
.legal-page__lead {
  margin: 0 0 var(--s-12);
  line-height: 1.95;
}
.legal-page h2 {
  font-family: var(--font-display-jp);
  font-size: var(--fz-xl);
  font-weight: var(--fw-semi);
  margin: var(--s-12) 0 var(--s-4);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--border-soft);
  letter-spacing: var(--tr-snug);
}
.legal-page h2:first-of-type { margin-top: 0; }
.legal-page p { margin: 0 0 var(--s-4); line-height: 1.95; }
.legal-page ol,
.legal-page ul {
  margin: 0 0 var(--s-4) var(--s-6);
  line-height: 1.95;
}
.legal-page ol li,
.legal-page ul li { margin-bottom: var(--s-2); }
.legal-page a { color: var(--ink-sumi); }
.legal-page a:hover { text-decoration-color: var(--brand-hanko); }

/* TODO placeholder — soft hanko-red tint so the eye spots fields awaiting the
   client's real info, without screaming red on every line. */
.legal-page__todo {
  background: oklch(from var(--brand-hanko) 0.94 0.04 h);
  color: var(--brand-hanko);
  padding: 0.05em 0.4em;
  border-radius: var(--r-sm);
  font-weight: var(--fw-medium);
  font-size: 0.95em;
  white-space: nowrap;
}

.legal-page__notice {
  margin-top: var(--s-16);
  padding: var(--s-5) var(--s-6);
  background: var(--paper-cream);
  border-radius: var(--r-md);
  font-size: var(--fz-sm);
  color: var(--fg-mute);
  line-height: 1.8;
}

/* Definition list used by the 特商法 page (label | value rows). */
.legal-page__dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: var(--s-8);
  row-gap: var(--s-4);
  margin: 0 0 var(--s-6);
  line-height: 1.7;
}
.legal-page__dl dt {
  font-weight: var(--fw-medium);
  color: var(--fg-mute);
}
.legal-page__dl dd { margin: 0; color: var(--fg); }
@media (max-width: 599px) {
  .legal-page__dl { grid-template-columns: 1fr; row-gap: var(--s-1); }
  .legal-page__dl dt:not(:first-of-type) { margin-top: var(--s-3); }
}

/* Flatpickr theme — re-skins the date picker to the LP palette.
   Default Flatpickr is blue; we shift to paper-white / ink-sumi / hanko-red
   to feel like one product, not a third-party widget. */
.flatpickr-calendar {
  font-family: var(--font-body-jp);
  background: var(--paper-white);
  color: var(--ink-sumi);
  box-shadow: var(--shadow-3);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
}
html[lang="en"] .flatpickr-calendar { font-family: var(--font-body-ll); }

.flatpickr-months .flatpickr-month,
.flatpickr-current-month,
.flatpickr-weekday {
  color: var(--ink-sumi);
}
.flatpickr-weekdays { background: transparent; }
.flatpickr-weekday {
  font-weight: var(--fw-medium);
  font-size: var(--fz-xs);
  letter-spacing: 0.06em;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month { color: var(--ink-sumi); fill: var(--ink-sumi); }
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover { color: var(--brand-hanko); fill: var(--brand-hanko); }

.flatpickr-day {
  color: var(--ink-sumi);
  border-radius: var(--r-sm);
}
.flatpickr-day:hover,
.flatpickr-day:focus {
  background: oklch(from var(--brand-hanko) 0.96 0.03 h);
  border-color: transparent;
  color: var(--brand-hanko);
}
.flatpickr-day.today { border-color: var(--brand-hanko); }
.flatpickr-day.today:hover { background: var(--brand-hanko); color: var(--paper-white); }
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--brand-hanko);
  border-color: var(--brand-hanko);
  color: var(--paper-white);
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover { color: var(--fg-mute); background: transparent; }
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay { color: var(--fg-mute); }

.numInputWrapper:hover { background: transparent; }
.flatpickr-current-month input.cur-year { color: var(--ink-sumi); }
.flatpickr-current-month .flatpickr-monthDropdown-months { color: var(--ink-sumi); }

/* ───────────────────────── Footer ───────────────────────────────── */
.site-footer {
  background: var(--ink-sumi);
  color: rgba(251, 248, 242, 0.88);
  padding: var(--s-20) var(--gutter) var(--s-8);
}
.site-footer__inner {
  max-width: var(--w-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid rgba(251, 248, 242, 0.12);
}
@media (min-width: 880px) {
  .site-footer__inner { grid-template-columns: 1fr 1.4fr; gap: var(--s-20); }
}
.site-footer__brand { max-width: 320px; }
.site-footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--s-5);
}
.site-footer__tag {
  font-family: var(--font-display-jp);
  font-size: var(--fz-lg);
  line-height: 1.5;
  color: rgba(251, 248, 242, 0.92);
  margin: 0;
}
.site-footer__tag span {
  display: block;
  margin-top: var(--s-2);
  font-family: var(--font-body-ll);
  font-style: italic;
  font-size: var(--fz-xs);
  color: rgba(251, 248, 242, 0.6);
  letter-spacing: var(--tr-snug);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--s-8);
}
.site-footer__nav h4 {
  font-family: var(--font-body-jp);
  font-size: var(--fz-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: rgba(251, 248, 242, 0.6);
  margin: 0 0 var(--s-4);
}
.site-footer__nav ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: var(--s-3);
  font-size: var(--fz-sm);
}
.site-footer__nav a {
  background-image: linear-gradient(rgba(251,248,242,0.9), rgba(251,248,242,0.9));
}
.site-footer__bar {
  max-width: var(--w-content);
  margin: var(--s-8) auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: space-between;
  font-size: var(--fz-xs);
  color: rgba(251, 248, 242, 0.5);
}
.site-footer__bar a {
  background-image: linear-gradient(rgba(251,248,242,0.6), rgba(251,248,242,0.6));
  color: rgba(251, 248, 242, 0.78);
}

/* =========================================================================
   Japanese-only page (index.html)
   Center the hero content; the JP hero now carries only title + CTAs,
   so centering reads more intentional than the default left-aligned grid.
   ========================================================================= */
html[lang="ja"] .hero__inner { text-align: center; }
html[lang="ja"] .hero__cta   { justify-content: center; }
html[lang="ja"] .hero__title { margin-bottom: var(--s-12); }

/* Intro slider — auto-advancing photo slideshow in the left column of the
   intro section. Slides stack via absolute positioning and cross-fade with
   opacity transitions driven from JS. */
.intro-slider {
  position: relative;
  aspect-ratio: 3 / 2;
  width: 100%;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--paper-cream);
  margin-bottom: var(--s-6);
}
.intro-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.intro-slider__slide.is-current { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .intro-slider__slide { transition: none; }
}

/* =========================================================================
   English-only page (index-en.html)
   Swap display + body type to Latin equivalents.
   Cormorant Garamond + Inter are already loaded by colors_and_type.css.
   ========================================================================= */
html[lang="en"] body,
html[lang="en"] .btn,
html[lang="en"] .field__label,
html[lang="en"] .field input,
html[lang="en"] .field select,
html[lang="en"] .field textarea,
html[lang="en"] .pricing__selector-suffix,
html[lang="en"] .pricing__selector-inquire-body,
html[lang="en"] .site-footer__nav h4 {
  font-family: var(--font-body-ll);
}
html[lang="en"] h1, html[lang="en"] h2, html[lang="en"] h3,
html[lang="en"] h4, html[lang="en"] h5, html[lang="en"] h6,
html[lang="en"] .h1, html[lang="en"] .h2, html[lang="en"] .h3, html[lang="en"] .h4,
html[lang="en"] .hero__title,
html[lang="en"] .intro__facts dd,
html[lang="en"] .pricing__selector-price,
html[lang="en"] .pricing__selector-inquire-title,
html[lang="en"] .flow__title,
html[lang="en"] .site-footer__tag {
  font-family: var(--font-display-ll);
}
/* Cormorant Garamond max weight is 600 — cap the heavy h1. */
html[lang="en"] h1,
html[lang="en"] .hero__title {
  font-weight: var(--fw-semi);
  letter-spacing: var(--tr-snug);
}
/* EN form labels use the luxury microcopy treatment — UPPERCASE + wide tracking,
   matching .btn and .section-head__sub patterns on the EN page. */
html[lang="en"] .field__label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--fz-xs);
}
