:root {
  --ink: #1a2233;
  --indigo: #2f4a6e;
  --indigo-soft: #6a849f;
  --ivory: #f6f3ec;
  --mist: #d7e2ec;
  --clay: #b86b4b;
  --white: #fff;
  --line: rgba(26, 34, 51, 0.16);
  --serif: "Cormorant Garamond", "Shippori Mincho", serif;
  --sans: "Noto Sans JP", sans-serif;
  --wrap: min(1120px, calc(100% - 2.6rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.8;
}
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button, input, select, textarea { font: inherit; color: inherit; }

.fm-skip {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: -999px;
  background: var(--ink);
  color: #fff;
  padding: 8px 16px;
}
.fm-skip:focus { left: 10px; }

.fm-eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.fm-wrap { width: var(--wrap); margin-inline: auto; }

/* —— Header (simple L / R) —— */
.fm-header {
  position: sticky;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.fm-page--home .fm-header {
  position: absolute;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  pointer-events: none;
}
.fm-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 3.2vw;
}
.fm-page--home .fm-header__bar {
  align-items: flex-start;
  padding: 28px 3.2vw;
  pointer-events: none;
}
.fm-page--home .fm-logo,
.fm-page--home .fm-nav,
.fm-page--home .fm-nav-toggle { pointer-events: auto; }

.fm-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--ink);
}
.fm-page--home .fm-logo { color: #fff; text-shadow: 0 2px 18px rgba(26, 34, 51, 0.25); }
.fm-logo strong {
  font: 600 clamp(26px, 3.4vw, 48px) / 0.9 var(--serif);
  letter-spacing: -0.03em;
}
.fm-logo em {
  margin-top: 8px;
  font: 400 9px / 1 var(--sans);
  letter-spacing: 0.22em;
  font-style: normal;
  opacity: 0.85;
}

.fm-nav {
  display: flex;
  gap: 7px;
  margin-left: auto;
}
.fm-nav__link {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(13px);
  font-size: 11px;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(26, 34, 51, 0.05);
}
.fm-page--home .fm-nav__link {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(26, 34, 51, 0.22);
  color: #fff;
}
.fm-nav__link:hover,
.fm-nav__link.is-current,
.fm-nav__link[aria-current="page"] {
  background: var(--white);
  color: var(--ink);
}

.fm-nav-toggle {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 99px;
  padding: 12px 14px;
  cursor: pointer;
}
.fm-page--home .fm-nav-toggle {
  background: rgba(26, 34, 51, 0.28);
  color: #fff;
}
.fm-nav-toggle i {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
}
.fm-nav-toggle i + i { margin-top: 5px; }

.fm-drawer { position: fixed; inset: 0; z-index: 80; }
.fm-drawer[hidden] { display: none !important; }
.fm-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(26, 34, 51, 0.35);
  cursor: pointer;
}
.fm-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: var(--ivory);
  padding: 24px 22px 32px;
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: auto;
}
.fm-drawer.is-open .fm-drawer__panel { transform: none; }
.fm-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.16em;
}
.fm-drawer__close {
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 13px;
}
.fm-drawer__nav { display: grid; margin-top: 8px; }
.fm-drawer__nav a {
  display: block;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font: 500 24px / 1.2 var(--serif);
}
.fm-drawer__nav a.is-current { color: var(--indigo); }
.fm-drawer__meta {
  margin-top: 28px;
  font-size: 11px;
  line-height: 1.7;
  color: var(--indigo-soft);
}

/* —— Home hero —— */
.fm-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}
.fm-hero > img { position: absolute; inset: 0; }
.fm-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26, 34, 51, 0.72) 0%, rgba(47, 74, 110, 0.38) 42%, rgba(246, 243, 236, 0.08) 72%),
    linear-gradient(0deg, rgba(26, 34, 51, 0.28), transparent 48%);
}
.fm-hero__copy {
  position: absolute;
  left: 6vw;
  bottom: 8vh;
  max-width: 880px;
  color: #fff;
  text-shadow: 0 2px 28px rgba(26, 34, 51, 0.22);
}
.fm-hero__copy h1 {
  margin: 10px 0 0;
  font: 500 clamp(64px, 13vw, 200px) / 0.72 var(--serif);
  letter-spacing: -0.06em;
}
.fm-hero__copy > p:not(.fm-eyebrow) {
  margin: 32px 0 18px;
  font-size: clamp(16px, 1.9vw, 24px);
  letter-spacing: 0.12em;
}
.fm-hero__note {
  position: absolute;
  right: 3vw;
  bottom: 4vh;
  color: #fff;
  text-align: right;
  font: 500 12px / 1.55 var(--serif);
  letter-spacing: 0.16em;
}

.fm-arrow {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid currentColor;
  padding: 7px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.fm-arrow span { font-size: 17px; }

/* —— Shared section chrome —— */
.fm-section { position: relative; padding: 140px 6vw; }
.fm-heading { margin-bottom: 64px; }
.fm-heading h2,
.fm-mast__card h1 {
  margin: 8px 0 0;
  font: 400 clamp(48px, 7.2vw, 108px) / 0.92 var(--serif);
  letter-spacing: -0.05em;
}
.fm-heading h2 em,
.fm-mast__card h1 em { font-style: italic; font-weight: 400; color: var(--indigo); }
.fm-heading--row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.fm-image { overflow: hidden; }
.fm-image img { transition: transform 0.75s; }
.fm-image:hover img { transform: scale(1.04); }

.fm-reveal { opacity: 1; transform: none; }
.js .fm-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s, transform 0.8s;
}
.js .fm-reveal.is-visible { opacity: 1; transform: none; }

/* —— Petal doors —— */
.fm-categories {
  background: linear-gradient(150deg, var(--ivory), var(--mist));
  overflow: hidden;
}
.fm-categories::before {
  content: "";
  position: absolute;
  width: 28vw;
  height: 28vw;
  right: -10vw;
  top: 3vw;
  border-radius: 72% 28% 64% 36% / 44% 68% 32% 56%;
  background: rgba(47, 74, 110, 0.12);
  filter: blur(2px);
  pointer-events: none;
  transform: rotate(28deg);
}
.fm-petals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  max-width: 1250px;
  margin: auto;
}
.fm-petal {
  position: relative;
  aspect-ratio: 0.76;
  overflow: hidden;
  border-radius: 50% 50% 46% 54% / 62% 62% 38% 38%;
  box-shadow: 0 30px 65px rgba(26, 34, 51, 0.14);
}
.fm-petal:nth-child(2) {
  margin-top: -140px;
  border-radius: 48% 52% 60% 40% / 55% 60% 40% 45%;
}
.fm-petal img { transition: transform 0.8s; }
.fm-petal:hover img { transform: scale(1.05); }
.fm-petal::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(26, 34, 51, 0.7));
}
.fm-petal > span {
  position: absolute;
  z-index: 2;
  left: 9%;
  right: 9%;
  bottom: 8%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  color: #fff;
  font: 500 clamp(34px, 4.6vw, 68px) / 1 var(--serif);
}
.fm-petal small {
  grid-column: 1 / -1;
  font: 400 11px var(--sans);
  letter-spacing: 0.2em;
}
.fm-petal b {
  justify-self: end;
  font: 500 11px var(--sans);
  letter-spacing: 0.1em;
}

/* —— Lookbook masonry —— */
.fm-lookbook { overflow: hidden; background: #fff; }
.fm-masonry {
  columns: 4 240px;
  column-gap: 20px;
}
.fm-masonry figure {
  break-inside: avoid;
  margin: 0 0 52px;
}
.fm-masonry figure:nth-child(3n + 2) { padding-top: 72px; }
.fm-masonry figure .fm-image { aspect-ratio: 0.72; }
.fm-masonry figure:nth-child(3n) .fm-image { aspect-ratio: 0.9; }
.fm-masonry figcaption {
  display: flex;
  justify-content: space-between;
  padding: 10px 2px;
  font-size: 11px;
}
.fm-masonry figcaption span { color: var(--indigo); }

/* —— Arrivals track —— */
.fm-arrivals {
  background: var(--mist);
  padding-right: 0;
}
.fm-arrival-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(245px, 25vw);
  gap: 18px;
  overflow-x: auto;
  padding: 0 6vw 40px 0;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--ink) transparent;
}
.fm-product { scroll-snap-align: start; }
.fm-product .fm-image {
  aspect-ratio: 0.76;
  background: #fff;
}
.fm-product > p {
  display: flex;
  justify-content: space-between;
  margin: 12px 0 0;
  font-size: 11px;
}
.fm-product h3 {
  margin: 2px 0 0;
  font: 500 20px / 1.3 var(--serif);
}

/* —— Story split —— */
.fm-story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 780px;
  background: linear-gradient(160deg, #e8eef4, var(--ivory));
}
.fm-story__image { min-height: 640px; }
.fm-story__copy {
  align-self: center;
  padding: 10vw;
}
.fm-story__copy h2 {
  font: 400 clamp(48px, 6.5vw, 92px) / 1 var(--serif);
  letter-spacing: -0.045em;
  margin: 16px 0 28px;
}
.fm-story__copy > p:not(.fm-eyebrow) { max-width: 520px; }

/* —— Process —— */
.fm-process { background: var(--ivory); }
.fm-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.fm-process__grid article {
  min-height: 260px;
  padding: 34px 4vw 34px 0;
  border-right: 1px solid var(--line);
}
.fm-process__grid article + article { padding-left: 3.5vw; }
.fm-process__grid article:last-child { border-right: 0; }
.fm-process__grid b {
  font: 400 12px var(--serif);
  color: var(--indigo);
}
.fm-process__grid h3 {
  font: 400 32px / 1.2 var(--serif);
  margin: 44px 0 10px;
}
.fm-process__grid p { font-size: 13px; margin: 0; }

/* —— Journal grid —— */
.fm-journal { background: #fff; }
.fm-journal__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fm-journal__grid article:nth-child(even) { margin-top: 64px; }
.fm-journal__grid .fm-image { aspect-ratio: 0.8; }
.fm-journal__grid time {
  display: block;
  margin-top: 12px;
  font-size: 9px;
  letter-spacing: 0.1em;
}
.fm-journal__grid h3 {
  margin: 6px 0 0;
  font: 400 20px / 1.45 var(--serif);
}

/* —— FAQ —— */
.fm-faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;
  background: linear-gradient(130deg, var(--mist), var(--ivory));
}
.fm-faq details { border-top: 1px solid var(--line); }
.fm-faq details:last-child { border-bottom: 1px solid var(--line); }
.fm-faq summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 4px;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}
.fm-faq summary::-webkit-details-marker { display: none; }
.fm-faq summary span {
  font: 300 24px var(--serif);
  transition: transform 0.25s;
}
.fm-faq details[open] summary span { transform: rotate(45deg); }
.fm-faq details p {
  padding: 0 28px 26px;
  margin: 0;
  font-size: 13px;
}

/* —— CTA —— */
.fm-cta {
  position: relative;
  padding: 140px 8vw;
  text-align: center;
  overflow: hidden;
  background: var(--indigo);
  color: #fff;
}
.fm-cta::before,
.fm-cta::after {
  content: "";
  position: absolute;
  width: 36vw;
  height: 36vw;
  background: rgba(246, 243, 236, 0.12);
  border-radius: 70% 30% 60% 40%;
  left: -15vw;
  bottom: -22vw;
  transform: rotate(30deg);
}
.fm-cta::after {
  left: auto;
  bottom: auto;
  right: -14vw;
  top: -22vw;
  background: rgba(26, 34, 51, 0.22);
}
.fm-cta h2 {
  position: relative;
  font: 400 clamp(40px, 5.6vw, 84px) / 1.2 var(--serif);
  margin: 22px 0 44px;
}
.fm-cta a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 64px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 99px;
  padding: 16px 26px;
  font-size: 12px;
  letter-spacing: 0.06em;
}

/* —— Footer —— */
.fm-footer {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 80px 6vw 24px;
}
.fm-footer__row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.fm-footer__brand strong {
  display: block;
  font: 500 clamp(48px, 8vw, 120px) / 0.8 var(--serif);
  letter-spacing: -0.05em;
}
.fm-footer__brand em {
  display: block;
  margin-top: 12px;
  font: 400 12px / 1 var(--sans);
  font-style: normal;
  letter-spacing: 0.18em;
  color: var(--indigo-soft);
}
.fm-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 12px;
}
.fm-footer__nav a:hover { color: var(--mist); }
.fm-footer__addr {
  padding: 36px 0;
  font-size: 12px;
}
.fm-footer__addr a:hover { text-decoration: underline; }
.fm-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 9px;
  letter-spacing: 0.14em;
}

/* —— Interior pages —— */
.fm-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--indigo);
}
.fm-kicker--rose,
.fm-kicker--indigo { color: var(--indigo); }
.fm-kicker--clay { color: var(--clay); }

.fm-textlink {
  display: inline-flex;
  margin-top: 18px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.fm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 99px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.fm-btn:hover { background: var(--indigo); }

.fm-mast {
  position: relative;
  min-height: 58vh;
  display: grid;
  place-items: end start;
  padding: 160px 6vw 72px;
  overflow: hidden;
  color: #fff;
}
.fm-mast__media {
  position: absolute;
  inset: 0;
}
.fm-mast__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(26, 34, 51, 0.78), rgba(47, 74, 110, 0.35) 55%, rgba(26, 34, 51, 0.2)),
    linear-gradient(0deg, rgba(26, 34, 51, 0.35), transparent 50%);
}
.fm-mast__card {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.fm-mast__card h1 {
  color: #fff;
  margin: 8px 0 16px;
}
.fm-mast__card > p:last-child {
  margin: 0;
  max-width: 520px;
  font-size: 15px;
  opacity: 0.92;
}

.fm-section--paper { background: rgba(215, 226, 236, 0.35); }
.fm-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
}
.fm-duo--flip > :first-child { order: 2; }
.fm-frame {
  overflow: hidden;
  aspect-ratio: 0.82;
  background: #fff;
}
.fm-prose h2 {
  margin: 8px 0 20px;
  font: 400 clamp(36px, 4.5vw, 64px) / 1.1 var(--serif);
  letter-spacing: -0.04em;
}
.fm-prose p { font-size: 14px; }
.fm-prose a { text-decoration: underline; text-underline-offset: 3px; }

.fm-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 36px;
}
.fm-step {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.fm-step span {
  font: 400 12px var(--serif);
  color: var(--indigo);
}
.fm-step h3 {
  margin: 14px 0 8px;
  font: 500 26px / 1.2 var(--serif);
}
.fm-step p { margin: 0; font-size: 13px; }

.fm-palette {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.fm-palette__swatch {
  padding: 18px 14px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.fm-palette__swatch strong {
  display: block;
  margin-bottom: 6px;
  font: 500 13px var(--serif);
  letter-spacing: 0.14em;
}
.fm-palette__swatch--ink { background: #141210; }
.fm-palette__swatch--indigo { background: var(--indigo); }
.fm-palette__swatch--clay { background: var(--clay); }

.fm-ticks {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.fm-ticks li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.fm-ticks li::before {
  content: "— ";
  color: var(--indigo);
}

.fm-fits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 20px;
}
.fm-fit h3 {
  margin: 14px 0 6px;
  font: 500 22px / 1.3 var(--serif);
}
.fm-fit p { margin: 0; font-size: 13px; }
.fm-fit__media {
  position: relative;
  aspect-ratio: 0.78;
  overflow: hidden;
  background: #fff;
}
.fm-fit__media span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 12px;
  background: rgba(246, 243, 236, 0.92);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.fm-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4vw;
  align-items: center;
  margin-bottom: 72px;
}
.fm-feature .fm-frame { aspect-ratio: 1.35; }
.fm-feature time {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.fm-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 22px;
}
.fm-journal-grid .fm-frame { aspect-ratio: 0.82; margin-bottom: 14px; }
.fm-journal-grid time {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin: 4px 0 8px;
}
.fm-journal-grid h3 {
  margin: 0 0 8px;
  font: 500 22px / 1.35 var(--serif);
}
.fm-journal-grid p { margin: 0; font-size: 13px; }

.fm-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: 0 auto 100px;
  padding: 40px 36px;
  background: var(--mist);
}
.fm-band h2 {
  margin: 6px 0 8px;
  font: 400 clamp(28px, 3.5vw, 44px) / 1.15 var(--serif);
}
.fm-band p { margin: 0; font-size: 14px; }

.fm-contact {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8vw;
}
.fm-form {
  display: grid;
  gap: 22px;
}
.fm-form label span {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.fm-form input,
.fm-form select,
.fm-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  padding: 12px 2px;
  outline: none;
}
.fm-form input:focus,
.fm-form select:focus,
.fm-form textarea:focus { border-color: var(--indigo); }
.fm-form button { justify-self: start; }

.fm-aside {
  padding: 48px 36px;
  background: var(--mist);
  border-radius: 42% 58% 12px 12px / 12% 12% 12px 12px;
}
.fm-aside h2 {
  margin: 8px 0 20px;
  font: 400 44px / 1.05 var(--serif);
}
.fm-aside dt {
  margin-top: 22px;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--indigo);
}
.fm-aside dd { margin: 6px 0 0; font-size: 13px; }
.fm-aside__note { margin-top: 28px; font-size: 12px; }
.fm-aside .fm-frame {
  margin-top: 28px;
  aspect-ratio: 0.9;
  border-radius: 8px;
}

.fm-thanks h2 {
  margin: 8px 0 16px;
  font: 400 clamp(36px, 5vw, 64px) / 1.1 var(--serif);
}

.fm-404 {
  min-height: 100svh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 140px 24px;
  background: radial-gradient(circle at center, var(--mist), var(--ivory));
}
.fm-404 h1 {
  margin: 18px 0;
  font: 400 clamp(48px, 8vw, 96px) / 1 var(--serif);
  letter-spacing: -0.05em;
}
.fm-404 p { max-width: 420px; margin: 0 auto 28px; font-size: 14px; }
.fm-404 .fm-btn { justify-self: center; }

/* —— Responsive —— */
@media (max-width: 980px) {
  .fm-nav { display: none; }
  .fm-nav-toggle { display: block; }
  .fm-header__bar { padding: 14px 18px; }
  .fm-page--home .fm-header__bar { padding: 18px; }
  .fm-logo strong { font-size: 30px; }

  .fm-hero { min-height: 780px; }
  .fm-hero__copy { left: 22px; right: 22px; bottom: 64px; }
  .fm-hero__copy h1 { font-size: 18vw; }
  .fm-hero__copy > p:not(.fm-eyebrow) { font-size: 15px; margin: 22px 0; }
  .fm-hero__note { display: none; }

  .fm-section { padding: 88px 22px; }
  .fm-heading { margin-bottom: 42px; }
  .fm-heading h2,
  .fm-mast__card h1 { font-size: 14vw; }

  .fm-petals { gap: 14px; }
  .fm-petal:nth-child(2) { margin-top: 64px; }
  .fm-petal > span { font-size: 8vw; }
  .fm-petal b { display: none; }

  .fm-masonry { columns: 2; }
  .fm-masonry figure:nth-child(3n + 2) { padding-top: 18px; }
  .fm-arrival-track { grid-auto-columns: 72vw; }

  .fm-story { grid-template-columns: 1fr; }
  .fm-story__image { min-height: 480px; }
  .fm-story__copy { padding: 72px 24px; }

  .fm-process__grid { grid-template-columns: 1fr; }
  .fm-process__grid article,
  .fm-process__grid article + article {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .fm-process__grid h3 { margin: 12px 0; }

  .fm-journal__grid { grid-template-columns: 1fr 1fr; }
  .fm-journal__grid article:nth-child(even) { margin-top: 36px; }

  .fm-faq { grid-template-columns: 1fr; }
  .fm-cta { padding: 96px 24px; }
  .fm-cta a { gap: 20px; }

  .fm-footer { padding: 64px 22px 20px; }
  .fm-footer__row { display: block; }
  .fm-footer__nav { margin-top: 28px; }

  .fm-mast { padding: 140px 22px 56px; min-height: 52vh; }
  .fm-duo,
  .fm-duo--flip > :first-child { grid-template-columns: 1fr; order: 0; }
  .fm-duo { grid-template-columns: 1fr; }
  .fm-steps { grid-template-columns: 1fr; }
  .fm-fits { grid-template-columns: 1fr 1fr; }
  .fm-feature { grid-template-columns: 1fr; margin-bottom: 56px; }
  .fm-journal-grid { grid-template-columns: 1fr 1fr; }
  .fm-contact { grid-template-columns: 1fr; }
  .fm-band { flex-direction: column; align-items: flex-start; margin-bottom: 72px; }
}

@media (max-width: 560px) {
  .fm-petals { grid-template-columns: 1fr; }
  .fm-petal { aspect-ratio: 0.84; }
  .fm-petal:nth-child(2) { margin-top: 10px; }
  .fm-masonry { columns: 1; }
  .fm-masonry figure:nth-child(3n + 2) { padding-top: 0; }
  .fm-heading--row { display: block; }
  .fm-heading--row > .fm-arrow { margin-top: 18px; }
  .fm-journal__grid { grid-template-columns: 1fr; }
  .fm-journal__grid article:nth-child(even) { margin-top: 0; }
  .fm-footer__bottom { flex-direction: column; }
  .fm-fits,
  .fm-journal-grid,
  .fm-palette { grid-template-columns: 1fr; }
  .fm-aside { padding: 40px 24px; border-radius: 24px; }
  .fm-aside h2 { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .js .fm-reveal { opacity: 1; transform: none; }
}

html, body { max-width: 100%; overflow-x: clip; }
.fm-nav__link,
.fm-nav-toggle,
.fm-cta a,
.fm-btn,
.fm-drawer__nav a { min-height: 44px; }

@media (min-width: 981px) and (max-width: 1100px) {
  .fm-nav { gap: 4px; }
  .fm-nav__link { padding: 9px 10px; font-size: 10px; }
}

@media (max-width: 480px) {
  .fm-hero { min-height: 700px; }
  .fm-hero__copy { bottom: 48px; }
  .fm-hero__copy h1 { font-size: 17vw; line-height: 0.78; }
  .fm-mast { padding-top: 130px; }
}
