/* ============================================
   サロンウェブ — Awwwards-grade bright LP v9
   ============================================ */
:root {
  /* --- Swiss-minimal palette (logo: Inter / pure black / horizontal rule) --- */
  --bg: #FAFAF7;
  --bg-alt: #F2F1EE;
  --bg-paper: #FFFFFF;
  --bg-dark: #111111;
  --ink: #111111;
  --ink-soft: #555555;
  --ink-dim: #999999;
  --line: rgba(17, 17, 17, 0.10);
  --line-2: rgba(17, 17, 17, 0.22);
  /* Primary = black. Reserved accent used only where absolute focal pop is needed. */
  --brand: #111111;
  --brand-deep: #000000;
  --brand-soft: #EDEDEA;
  --yolk: #D7CFB6;
  --yolk-soft: #F2EEE5;
  --sage: #6B7268;
  --sage-soft: #E5E6E2;
  /* Single reserved accent for strikethroughs / danger price / selection. */
  --accent: #C4361A;

  --ff-sans: "Noto Sans JP", "Inter", sans-serif;
  --ff-serif: "Noto Serif JP", serif;
  --ff-display: "Inter", "Noto Sans JP", sans-serif;
  --ff-num: "Inter", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --rad: 14px;
  --rad-lg: 20px;

  --shadow-xs: 0 1px 2px rgba(17, 17, 17, 0.04);
  --shadow-sm: 0 4px 12px rgba(17, 17, 17, 0.06);
  --shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 24px 48px rgba(17, 17, 17, 0.12);

  --pad-x: clamp(1.25rem, 4vw, 3rem);
  --container: 1280px;

  /* Uniform work card size */
  --wcard-w: clamp(300px, 26vw, 380px);
  --wcard-ratio: 16 / 10;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-feature-settings: "palt" 1, "kern" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
body {
  background: var(--bg);
  color: var(--ink);
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.02em;
  cursor: none;
}
body.is-loading { overflow: hidden; height: 100vh; }
@media (hover: none) { body { cursor: auto; } .cursor { display: none; } }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--brand); color: #fff; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }

/* GRAIN */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9997;
  opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  animation: grain 7s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  25% { transform: translate(-2%,-2%); }
  50% { transform: translate(2%,1%); }
  75% { transform: translate(-1%,2%); }
}

/* CURSOR */
.cursor { position: fixed; top:0; left:0; pointer-events: none; z-index: 9999; mix-blend-mode: difference; }
.cursor__dot {
  position: absolute; width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease);
}
.cursor__ring {
  position: absolute; width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), background 0.3s, border-color 0.3s;
}
.cursor.is-link .cursor__ring { width: 60px; height: 60px; }
.cursor.is-cta .cursor__ring { width: 84px; height: 84px; background: rgba(17, 17, 17, 0.25); border-color: var(--brand); }
.cursor.is-view .cursor__ring { width: 104px; height: 104px; background: var(--brand); border-color: var(--brand); }
.cursor.is-view::after {
  content: "VIEW"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font: 700 10px/1 var(--ff-num);
  letter-spacing: 0.18em; color: #fff;
}
.cursor.is-view .cursor__dot { opacity: 0; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: var(--ff-sans); font-weight: 700;
  font-size: 14px; letter-spacing: 0.04em; line-height: 1;
  cursor: none; border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.35);
}
.btn--primary:hover { background: var(--brand-deep); box-shadow: 0 14px 28px rgba(17, 17, 17, 0.4); }
.btn--line-dark {
  background: var(--ink); color: #fff;
  border-color: var(--ink);
}
.btn--line-dark:hover { background: var(--bg-paper); color: var(--ink); border-color: var(--ink); }
.btn--lg { padding: 1.1rem 1.8rem; font-size: 15px; }
.btn--xl { padding: 1.25rem 2rem; font-size: 16px; }
.btn--full { width: 100%; }

/* LOADER */
.loader {
  position: fixed; inset: 0; z-index: 9990;
  background: var(--bg); color: var(--ink);
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.5rem);
  gap: 1rem;
}
.loader__topline {
  height: 1px;
  background: linear-gradient(90deg, var(--brand), transparent);
  transform-origin: left;
  animation: topLine 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes topLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.loader__row {
  display: flex; justify-content: space-between; align-items: baseline;
  font: 500 11.5px/1 var(--ff-num);
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-soft);
}
.loader__row span:last-child { color: var(--brand); font-weight: 700; }
.loader__word {
  align-self: center; justify-self: center;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  padding: 0.2em clamp(1rem, 4vw, 2.5rem);
}
.loader__word-line {
  display: inline-flex; gap: 0;
  font-family: var(--ff-display); font-weight: 400;
  font-style: normal;
  font-size: clamp(2.5rem, 13vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
  max-width: 100%;
}
.loader__word-line span {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}
.loader__bar {
  width: 100%; height: 2px;
  background: var(--line); overflow: hidden;
}
.loader__bar-fill {
  width: 0%; height: 100%; background: var(--brand);
}

/* HEADER */
.hdr {
  position: fixed; top:0; left:0; right:0; z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s, transform 0.35s var(--ease-expo);
  padding-top: env(safe-area-inset-top, 0);
}
/* Reserve top space when in Chrome fullscreen (URL bar + tab bar slide in ~70-90px). */
.is-chrome-fs .hdr { padding-top: 72px; }
/* When the cursor reaches the very top in fullscreen mode, slide the nav out
   of the way so Chrome's auto-show URL bar never overlaps our nav text. */
.hdr.is-ducked { transform: translateY(-100%); }
.hdr.is-scrolled {
  background: rgba(250, 250, 247, 0.96);
  border-bottom-color: var(--line-2);
}
.hdr.is-hidden { transform: translateY(-110%); }
.hdr__inner {
  max-width: 1360px; margin: 0 auto;
  padding: 0.9rem var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center; gap: 1.5rem;
}
/* Brand wordmark — matches /assets/logo/saloweb.svg (Inter 400 + thin underline) */
.hdr__brand {
  display: inline-flex;
  align-items: baseline;
  justify-self: start;
  width: max-content;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  line-height: 1;
  transition: opacity 0.35s var(--ease);
}
.hdr__brand:hover { opacity: 0.7; }
.hdr__brand-name {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}
/* Legacy diamond mark — hidden to match the wordmark-only logo. */
.hdr__brand-mark { display: none; }
.hdr__nav { display: flex; justify-content: center; gap: 1.7rem; }
.hdr__nav a {
  display: inline-flex; align-items: baseline; gap: 0.35rem;
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s; position: relative;
}
.hdr__nav a i {
  font-style: italic; font-family: var(--ff-display);
  font-size: 10px; color: var(--brand); font-weight: 500;
}
.hdr__nav a:hover { color: var(--ink); }
.hdr__nav a::after {
  content: ""; position: absolute; left:0; bottom: -4px;
  width: 100%; height: 1px;
  background: var(--ink); transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s var(--ease);
}
.hdr__nav a:hover::after { transform: scaleX(1); transform-origin: left center; }
.hdr__cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.15rem; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-family: var(--ff-sans); font-weight: 700;
  font-size: 13px; letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.hdr__cta:hover { background: var(--brand); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(17, 17, 17, 0.35); }
.hdr__cta-dot {
  width: 6px; height: 6px; background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.35);
  animation: pulse 2s ease-in-out infinite;
}
.hdr__cta:hover .hdr__cta-dot { background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,0.4); }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(1.25); } }
.hdr__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: transparent; border: none; cursor: none; }
.hdr__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 999px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.hdr.is-open .hdr__burger span:first-child { transform: translateY(4px) rotate(45deg); }
.hdr.is-open .hdr__burger span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mnav {
  position: fixed; top: 58px; left:0; right:0;
  background: var(--bg-paper);
  border-bottom: 1px solid var(--line);
  padding: 1rem var(--pad-x) 1.5rem;
  display: flex; flex-direction: column;
  z-index: 99;
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease);
}
.mnav.is-open { transform: translateY(0); }
.mnav a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 500; }
.mnav__cta { margin-top: 1rem; padding: 1rem !important; background: var(--brand); color: #fff !important; border-bottom: none !important; border-radius: 999px; text-align: center; font-weight: 700; }
@media (max-width: 1060px) { .hdr__nav { gap: 1rem; } .hdr__nav a { font-size: 12.5px; } }
@media (max-width: 960px) { .hdr__nav { display: none; } .hdr__burger { display: flex; } }
@media (max-width: 520px) { .hdr__cta { padding: 0.55rem 0.7rem; } .hdr__cta span:last-child { display: none; } }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--bg);
  display: grid;
}
.hero__bg {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 5rem 0;
  z-index: 0;
  opacity: 1;
  filter: blur(0.5px);
}
.hero__bg-row {
  overflow: hidden;
  padding: 0.5rem 0;
}
.hero__bg-track {
  display: inline-flex;
  gap: 1rem;
  will-change: transform;
}
.hero__thumb {
  flex-shrink: 0;
  display: block;
  width: clamp(200px, 18vw, 260px);
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.65);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
  background: var(--bg-paper);
}
.hero__thumb img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(250, 250, 247, 0.7) 0%, rgba(250, 250, 247, 0.88) 50%, var(--bg) 85%),
    linear-gradient(180deg, rgba(250, 250, 247, 0.6), transparent 20%, transparent 80%, rgba(250, 250, 247, 0.6));
  pointer-events: none;
}

.hero__grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.5rem;
  padding: clamp(5.5rem, 13vh, 9rem) var(--pad-x) 2.5rem;
  min-height: 100svh;
}
.hero__meta {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; color: var(--ink-soft);
  text-transform: uppercase;
}
.hero__meta-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.25);
  animation: pulse 2s ease-in-out infinite;
}
.hero__meta-slash { color: var(--ink-dim); }
.hero__meta--tl { justify-self: start; }
.hero__meta--tr { justify-self: end; font-family: var(--ff-num); letter-spacing: 0.1em; }
#liveClock { font-feature-settings: "tnum"; min-width: 72px; text-align: right; }

.hero__center {
  align-self: center; justify-self: center;
  text-align: center;
  max-width: 1100px;
}
.hero__chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 1rem;
  background: var(--bg-paper);
  border: 1.5px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--ff-sans); font-weight: 700;
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-xs);
}
.hero__chip-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.25);
  animation: pulse 2s ease-in-out infinite;
}
.hero__h1 {
  font-family: var(--ff-serif);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.h1-line { display: block; overflow: hidden; }
.h1-line-inner { display: inline-block; will-change: transform; }
.hero__h1 .h1-line--top,
.hero__h1 .h1-line--bot {
  font-size: clamp(1.75rem, 4.6vw, 3.6rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.h1-line--top { margin-bottom: 0.2em; }
.h1-line--bot { margin-top: 0.1em; }
.h1-line--mega {
  font-size: clamp(4.5rem, 14vw, 13rem);
  line-height: 0.85;
  white-space: nowrap;
}
.h1-line--mega em {
  font-style: normal;
  font-family: var(--ff-num);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.05em;
  font-feature-settings: "tnum";
}

.hero__cross {
  display: inline-flex; align-items: center; gap: 0.9rem;
  padding: 0.6rem 1.1rem;
  background: rgba(17, 17, 17, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__cross-lbl {
  font-family: var(--ff-sans);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}
.hero__cross-num {
  position: relative;
  font-family: var(--ff-num);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: var(--ink-dim);
  letter-spacing: -0.01em;
}
.hero__cross-num .strike { font-style: normal; position: relative; }
.hero__cross-num .strike::after {
  content: "";
  position: absolute; left: -4%; right: -4%; top: 50%;
  height: 2.5px; background: var(--accent);
  transform: translateY(-50%) rotate(-4deg);
  border-radius: 2px;
}
.hero__cross-arrow { color: var(--accent); }
.hero__cross-new {
  font-family: var(--ff-num); font-weight: 700;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  color: var(--accent);
  letter-spacing: 0;
}

.hero__actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
}

.hero__facts {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(250, 250, 247, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-sm);
  max-width: 780px;
  margin: 0 auto;
  width: calc(100% - 2rem);
}
.hero__facts > div {
  display: flex; flex-direction: column; gap: 0.2rem;
  text-align: center;
  border-right: 1px solid var(--line);
}
.hero__facts > div:last-child { border-right: none; }
.hero__facts dt {
  font-size: 10px; font-weight: 700; color: var(--ink-dim);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.hero__facts dd .num {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: var(--ink); letter-spacing: -0.02em;
  line-height: 1;
}
.hero__facts > div:first-child dd .num { color: var(--brand); }

.hero__scroll {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: 1.5rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font: 500 italic 11px/1 var(--ff-display);
  color: var(--ink-soft); letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll span {
  display: inline-block;
  width: 1px; height: 28px;
  background: linear-gradient(180deg, var(--brand), transparent);
  transform-origin: top center;
  animation: scrollLine 2.6s var(--ease-expo) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 720px) {
  .hero__meta--tr { display: none; }
  .hero__facts { grid-template-columns: repeat(2, 1fr); border-radius: 20px; }
  .hero__facts > div { padding: 0.5rem 0; border-right: none; }
  .hero__facts > div:nth-child(2) { border-right: none; }
  .hero__scroll { display: none; }
}

/* ============ BIG TICKERS ============ */
.bigticker {
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  background: var(--bg-dark);
  color: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bigticker__track {
  display: inline-flex; white-space: nowrap; gap: 2.5rem;
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bg);
  will-change: transform;
}
.bigticker__track span { flex-shrink: 0; }
.bigticker__track em {
  font-family: var(--ff-display);
  font-style: italic; font-weight: 500;
  color: var(--brand);
}
.bigticker__icon { color: var(--brand); opacity: 0.8; font-size: 0.55em; }
.bigticker--coral {
  background: var(--brand);
  color: #fff;
  transform: rotate(-1.5deg);
  width: 104%;
  margin-left: -2%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  z-index: 2; position: relative;
}
.bigticker--coral .bigticker__track { color: #fff; }
.bigticker--coral .bigticker__icon { color: var(--yolk-soft); }

/* ============ SEC HEAD ============ */
.sec-head { max-width: 900px; margin: 0 0 3.5rem; }
.sec-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.sec-head--split {
  max-width: 1180px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}
.sec-head__meta {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.22em; color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.sec-head__n {
  font-family: var(--ff-display); font-style: italic;
  font-weight: 500; color: var(--brand);
  font-size: 14px; letter-spacing: 0;
}
.sec-head__title {
  font-family: var(--ff-serif); font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.sec-head__title em {
  font-style: italic;
  font-family: var(--ff-display);
  font-weight: 500; color: var(--brand);
}
.sec-head__lede {
  font-size: clamp(0.95rem, 1.05vw, 1rem);
  color: var(--ink-soft); line-height: 1.95;
  max-width: 54ch;
}
.sec-head--center .sec-head__lede { margin: 0 auto; }
.sec-head__count {
  display: inline-block; margin-top: 1rem;
  font-family: var(--ff-display); font-style: italic;
  color: var(--brand); font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em;
}
.sec-head__count em { font-style: normal; color: var(--ink-dim); padding: 0 0.3em; }
@media (max-width: 760px) {
  .sec-head--split { grid-template-columns: 1fr; align-items: start; }
}

/* ============ WORKS CAROUSEL (unified) ============ */
.works {
  padding: clamp(5rem, 10vh, 7rem) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.works .sec-head { margin: 0 auto 3rem; padding: 0 var(--pad-x); }

.wcarousel {
  overflow: hidden;
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  user-select: none;
}
.wcarousel--offset { margin-top: 1.5rem; }
.wcarousel__track {
  display: inline-flex; gap: 1.25rem;
  will-change: transform;
}

.wcard {
  position: relative;
  flex-shrink: 0;
  width: var(--wcard-w);
  display: flex; flex-direction: column; gap: 0.9rem;
  color: var(--ink);
  transition: transform 0.5s var(--ease);
}
.wcard:hover { transform: translateY(-8px); }
.wcard__img {
  aspect-ratio: var(--wcard-ratio);
  overflow: hidden;
  border-radius: var(--rad);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  position: relative;
  transition: box-shadow 0.4s;
}
.wcard:hover .wcard__img { box-shadow: var(--shadow); }
.wcard__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(17, 17, 17, 0.08));
  pointer-events: none;
}
.wcard__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform 1.4s var(--ease);
}
.wcard:hover .wcard__img img { transform: scale(1.08); }
.wcard__foot {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0 0.35rem;
}
.wcard__n {
  font-family: var(--ff-num); font-weight: 700;
  font-size: 11.5px; color: var(--brand);
  letter-spacing: 0.06em;
}
.wcard__title {
  font-family: var(--ff-serif); font-weight: 700;
  font-size: 15.5px; color: var(--ink);
  letter-spacing: 0.02em;
}
.wcard__title em {
  font-family: var(--ff-num); font-style: normal;
  font-weight: 500; font-size: 11px;
  color: var(--ink-dim); letter-spacing: 0.1em;
  margin-left: 0.3em;
}
.wcard__tag {
  font-size: 10.5px; font-weight: 700;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
  text-align: right;
}

/* "See all works" CTA — echoes the logo's horizontal-rule treatment */
.works__more {
  margin-top: clamp(2rem, 5vh, 3.5rem);
  display: flex;
  justify-content: center;
  padding: 0 var(--pad-x);
}
.works__more-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.8rem, 3vw, 2rem);
  padding: 1.05rem 0.4rem 1.2rem;
  width: min(520px, 90vw);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--ff-sans);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s;
}
.works__more-link:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-bottom-color: var(--ink);
}
.works__more-label {
  font-weight: 700;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.works__more-count {
  flex: 1;
  text-align: right;
  padding-right: 0.6rem;
  font-family: var(--ff-num);
  font-size: clamp(10px, 1.2vw, 11.5px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
}
.works__more-arrow {
  transition: transform 0.45s var(--ease);
}
.works__more-link:hover .works__more-arrow {
  transform: translateX(6px);
}

/* ============ STATEMENT ============ */
.statement {
  padding: clamp(5rem, 11vh, 9rem) 0;
  background: var(--bg);
  position: relative;
}
.statement__copy {
  font-family: var(--ff-serif); font-weight: 700;
  font-size: clamp(1.75rem, 4.6vw, 4.2rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: rgba(17, 17, 17, 0.2);
  max-width: 20ch;
}
.statement__copy .word {
  display: inline-block;
  transition: color 0.8s var(--ease);
}
.statement__copy .word--em {
  font-family: var(--ff-display);
  font-style: italic; font-weight: 500;
  color: rgba(17, 17, 17, 0.25);
}

/* ============ PIN HORIZONTAL ============ */
.pin {
  background: var(--bg-dark); color: var(--bg);
  overflow: clip;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pin__shell {
  padding: clamp(4rem, 8vh, 6rem) 0 clamp(3rem, 6vh, 5rem);
  overflow: clip;
}
.pin__header {
  padding: 0 var(--pad-x);
  max-width: 1400px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}
.pin__meta { color: rgba(250, 250, 247, 0.7); }
.pin__meta .sec-head__n { color: var(--yolk); }
.pin__title { color: var(--bg); margin-bottom: 0; }
.pin__title em { color: var(--yolk); }
.pin__progress-wrap {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--ff-num); font-weight: 500;
  font-size: 11px; letter-spacing: 0.22em;
  color: rgba(250, 250, 247, 0.6);
  text-transform: uppercase;
}
.pin__progress {
  position: relative;
  width: 200px; height: 1px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
}
.pin__progress-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 10%; background: var(--yolk);
}
.pin__track {
  display: flex; gap: 1.5rem;
  padding: 0 var(--pad-x);
  will-change: transform;
}
.pcard {
  flex-shrink: 0;
  width: clamp(340px, 38vw, 540px);
  display: flex; flex-direction: column; gap: 1.1rem;
  color: var(--bg);
}
.pcard__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--rad);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.pcard__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform 1.6s var(--ease);
}
.pcard:hover .pcard__img img { transform: scale(1.05); }
.pcard__info { padding: 0 0.25rem; }
.pcard__n {
  display: inline-block;
  font-family: var(--ff-num); font-weight: 600;
  font-size: 11px; color: var(--yolk);
  letter-spacing: 0.16em; margin-bottom: 0.5rem;
}
.pcard__info h3 {
  font-family: var(--ff-serif); font-weight: 700;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  color: var(--bg); margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}
.pcard__info h3 em {
  font-family: var(--ff-num); font-style: normal;
  font-weight: 500; font-size: 12px;
  color: rgba(250, 250, 247, 0.65);
  letter-spacing: 0.12em; margin-left: 0.35em;
}
.pcard__info p {
  font-size: 13px; line-height: 1.85;
  color: rgba(250, 250, 247, 0.78);
  margin-bottom: 0.65rem;
}
.pcard__cta {
  display: inline-block;
  font-family: var(--ff-display); font-style: italic;
  font-weight: 500; font-size: 12.5px;
  color: var(--yolk); letter-spacing: 0.02em;
  transition: letter-spacing 0.3s var(--ease);
}
.pcard:hover .pcard__cta { letter-spacing: 0.1em; }
@media (max-width: 760px) {
  .pin__header { grid-template-columns: 1fr; }
  .pin__progress-wrap { align-self: start; }
}

/* ============ MOOD (interior + tape) ============ */
.mood {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.mood__img {
  height: clamp(280px, 45vh, 560px);
  overflow: hidden;
  position: relative;
}
.mood__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  will-change: transform;
}
.mood__tape {
  overflow: hidden;
  background: var(--brand); color: #fff;
  padding: 1.1rem 0;
  transform: rotate(-1.2deg);
  width: 104%;
  margin: -1.2rem -2% 0;
  position: relative;
  z-index: 2;
}
.mood__tape-track {
  display: inline-flex; white-space: nowrap; gap: 2.5rem;
  font-family: var(--ff-display); font-weight: 600;
  font-style: italic; font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  color: #fff; will-change: transform;
}
.mood__tape-track span { flex-shrink: 0; }
.mood__tape-icon { color: var(--yolk-soft); font-size: 0.7em; }

/* ============ FEAT (tech) ============ */
.feat {
  padding: clamp(5rem, 10vh, 7rem) 0;
  background: var(--bg);
}
.fgrid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.fbox {
  position: relative;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 2rem 1.8rem;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  overflow: hidden;
}
.fbox::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.fbox:hover { border-color: var(--line-2); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.fbox:hover::before { transform: scaleX(1); }
.fbox__n {
  position: absolute; top: 1.25rem; right: 1.4rem;
  font-family: var(--ff-display); font-style: italic;
  font-weight: 500; font-size: 13px; color: var(--ink-dim);
}
.fbox__icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--brand-soft); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.fbox h3 {
  font-family: var(--ff-serif); font-weight: 700;
  font-size: 18px; line-height: 1.5;
  color: var(--ink); margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.fbox p { font-size: 13.5px; line-height: 1.9; color: var(--ink-soft); margin-bottom: 1.25rem; }
.fbox__list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; padding-top: 1rem; border-top: 1px dashed var(--line); }
.fbox__list li { position: relative; padding-left: 1rem; font-size: 12px; font-weight: 500; color: var(--ink); letter-spacing: 0.02em; }
.fbox__list li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 5px; height: 5px; background: var(--brand); border-radius: 50%; }
.feat__note {
  text-align: center;
  padding: 1.75rem 1.5rem;
  background: var(--bg-alt); border-radius: var(--rad);
  max-width: 720px; margin: 0 auto;
}
.feat__note p { font-size: 14px; font-weight: 500; color: var(--ink); line-height: 1.8; }
.feat__note strong { font-weight: 800; color: var(--brand); }

/* ============ PRICE ============ */
.price {
  padding: clamp(5rem, 10vh, 7rem) 0;
  background:
    radial-gradient(ellipse at 50% 0%, var(--brand-soft) 0%, transparent 55%),
    var(--bg);
  position: relative; overflow: hidden;
}
.plan {
  max-width: 640px; margin: 0 auto;
  background: var(--bg-paper);
  border: 2px solid var(--ink);
  border-radius: var(--rad-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 6px 6px 0 var(--ink);
}
.plan__head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.75rem;
}
.plan__label { font-family: var(--ff-sans); font-weight: 700; font-size: 14px; color: var(--ink); letter-spacing: 0.06em; }
.plan__badge { padding: 0.25rem 0.75rem; background: var(--ink); color: var(--bg); border-radius: 999px; font-family: var(--ff-num); font-weight: 700; font-size: 10.5px; letter-spacing: 0.2em; }
.plan__num { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 1.25rem; }
.plan__yen { font-family: var(--ff-display); font-style: italic; font-weight: 500; font-size: clamp(1.75rem, 3vw, 2.4rem); color: var(--brand); }
.plan__big { font-family: var(--ff-num); font-weight: 700; font-size: clamp(3.75rem, 8vw, 5.75rem); line-height: 0.9; color: var(--ink); letter-spacing: -0.04em; font-feature-settings: "tnum"; }
.plan__per { margin-left: 0.5rem; font-size: 13px; font-weight: 600; color: var(--ink-dim); letter-spacing: 0.04em; }
.plan__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.plan__chips li { padding: 0.45rem 0.85rem; background: var(--bg-alt); border-radius: 999px; font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.plan__chips strong { color: var(--brand); font-weight: 800; margin-left: 2px; }
.plan__list { list-style: none; display: flex; flex-direction: column; margin-bottom: 2rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.plan__list li { display: grid; grid-template-columns: 140px 1fr; gap: 0.75rem; align-items: baseline; padding: 0.65rem 0; border-bottom: 1px solid var(--line); font-size: 13.5px; line-height: 1.7; color: var(--ink-soft); }
.plan__list li:last-child { border-bottom: none; }
.plan__check { font-family: var(--ff-sans); font-weight: 700; font-size: 13px; color: var(--ink); display: inline-flex; align-items: center; gap: 0.4rem; }
.plan__check::before { content: ""; width: 6px; height: 6px; background: var(--brand); border-radius: 50%; display: inline-block; flex-shrink: 0; }
.plan__foot { margin-top: 1rem; text-align: center; font-size: 12px; color: var(--ink-dim); }
@media (max-width: 520px) { .plan__list li { grid-template-columns: 1fr; gap: 0.2rem; } }

/* ============ FLOW ============ */
.flow { padding: clamp(5rem, 10vh, 7rem) 0; background: var(--bg); }
.flow__list { list-style: none; max-width: 720px; margin: 0 auto; }
.flow__list li {
  display: grid; grid-template-columns: auto 1fr;
  gap: 1.75rem; padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.flow__list li:last-child { border-bottom: none; }
.flow__list li:hover { background: rgba(17, 17, 17, 0.03); }
.flow__num {
  font-family: var(--ff-display); font-style: italic;
  font-weight: 500; font-size: 20px; color: var(--brand);
  letter-spacing: -0.01em; width: 36px; padding-top: 0.2rem;
}
.flow__list h4 {
  font-family: var(--ff-serif); font-weight: 700;
  font-size: 18px; line-height: 1.45;
  color: var(--ink); margin-bottom: 0.4rem;
}
.flow__list p {
  font-size: 13.5px; line-height: 1.85;
  color: var(--ink-soft); margin-bottom: 0.65rem;
}
.flow__time {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  color: var(--sage); background: var(--sage-soft);
  padding: 0.25rem 0.65rem; border-radius: 999px;
  letter-spacing: 0.04em;
}

/* ============ BENTO (uniform grid) ============ */
.bento {
  padding: clamp(5rem, 10vh, 7rem) 0;
  background: var(--bg-alt);
}
.bento__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1rem;
}
.bcell {
  position: relative;
  overflow: hidden;
  border-radius: var(--rad);
  background: var(--bg-paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: transform 0.5s var(--ease), box-shadow 0.4s;
  color: var(--ink);
}
.bcell:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.bcell__img {
  aspect-ratio: var(--wcard-ratio);
  overflow: hidden;
}
.bcell__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform 1.2s var(--ease);
}
.bcell:hover .bcell__img img { transform: scale(1.08); }
.bcell__info {
  padding: 0.85rem 1rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 0.6rem;
}
.bcell__n {
  font-family: var(--ff-num); font-weight: 700;
  font-size: 11px; color: var(--brand);
  letter-spacing: 0.06em;
}
.bcell__info h4 {
  font-family: var(--ff-serif); font-weight: 700;
  font-size: 14px; color: var(--ink);
}
.bcell__info h4 em {
  font-family: var(--ff-num); font-style: normal; font-weight: 500;
  font-size: 10px; color: var(--ink-dim); margin-left: 0.25em;
}
.bcell__tag {
  font-size: 10px; font-weight: 700;
  color: var(--ink-dim); letter-spacing: 0.06em;
}

/* ============ FAQ ============ */
.faq { padding: clamp(5rem, 10vh, 7rem) 0; background: var(--bg); }
.faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.6rem; }
.faq__item { background: var(--bg-paper); border: 1px solid var(--line); border-radius: var(--rad); overflow: hidden; transition: border-color 0.3s; }
.faq__item[open] { border-color: var(--brand); }
.faq__item summary { padding: 1.2rem 3rem 1.2rem 1.3rem; cursor: none; font-family: var(--ff-sans); font-weight: 700; font-size: 14.5px; line-height: 1.7; color: var(--ink); list-style: none; position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before { content: "Q."; font-family: var(--ff-display); font-style: italic; font-weight: 500; color: var(--brand); margin-right: 0.45rem; }
.faq__item summary::after { content: ""; position: absolute; right: 1.25rem; top: 50%; width: 10px; height: 10px; border-right: 2px solid var(--ink-soft); border-bottom: 2px solid var(--ink-soft); transform: translateY(-65%) rotate(45deg); transition: transform 0.3s var(--ease), border-color 0.3s; }
.faq__item[open] summary::after { transform: translateY(-35%) rotate(-135deg); border-color: var(--brand); }
.faq__a { padding: 0 1.3rem 1.5rem; }
.faq__a p { font-size: 13.5px; line-height: 1.95; color: var(--ink-soft); margin-bottom: 0.55rem; }
.faq__a p::before { content: "A."; font-family: var(--ff-display); font-style: italic; font-weight: 500; color: var(--brand); margin-right: 0.35rem; }
.faq__a p ~ p::before { content: ""; margin: 0; }
.faq__a p:last-child { margin-bottom: 0; }

/* ============ CTA ============ */
.cta {
  position: relative;
  padding: clamp(6rem, 14vh, 10rem) 0;
  background: var(--bg);
  overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  gap: 1rem;
  z-index: 0;
  opacity: 0.38;
  filter: blur(0.5px);
}
.cta__bg-row { overflow: hidden; padding: 0.5rem 0; }
.cta__bg-track {
  display: inline-flex; gap: 1rem;
  will-change: transform;
}
.cta__bg-img {
  flex-shrink: 0;
  width: clamp(220px, 20vw, 280px);
  aspect-ratio: var(--wcard-ratio);
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.65);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
}
.cta__bg-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.cta__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(250, 250, 247, 0.78) 0%, rgba(250, 250, 247, 0.9) 60%, var(--bg));
  pointer-events: none;
}

.cta__inner {
  position: relative;
  max-width: 760px; margin: 0 auto;
  text-align: center; z-index: 1;
}
.cta__kicker {
  font-family: var(--ff-display); font-style: italic;
  font-weight: 500; font-size: 15px;
  letter-spacing: 0.05em; color: var(--brand);
  margin-bottom: 1.25rem;
}
.cta__title {
  font-family: var(--ff-serif); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.3;
  color: var(--ink); margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.cta__title .line { display: block; overflow: hidden; }
.cta__title .line-inner { display: inline-block; will-change: transform; }
.cta__title em {
  font-family: var(--ff-display);
  font-style: italic; font-weight: 500;
  color: var(--brand);
}
.cta__sub { font-size: clamp(0.95rem, 1.1vw, 1.05rem); line-height: 1.95; color: var(--ink-soft); margin-bottom: 2.5rem; }
.cta__sub strong { font-weight: 800; color: var(--brand); background: var(--brand-soft); padding: 0 0.3em; border-radius: 4px; }
.cta__notes { list-style: none; margin-top: 1.75rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; font-size: 12.5px; color: var(--ink-soft); font-weight: 500; }
.cta__notes li::before { content: "✓"; color: var(--brand); font-weight: 700; margin-right: 0.35rem; }

/* ============ FOOTER ============ */
.ft {
  padding: 0 0 1.5rem;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.ft__mega {
  overflow: hidden; padding: 2rem 0;
  background: var(--bg-dark); color: var(--bg);
}
.ft__mega-track {
  display: inline-flex; white-space: nowrap; gap: 3rem;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 10vw, 9rem);
  line-height: 1; letter-spacing: 0.02em;
  color: var(--bg);
  will-change: transform;
}
.ft__mega-track span { flex-shrink: 0; }
.ft__mega-dot { color: var(--bg); opacity: 0.45; font-size: 0.6em; }
.ft__inner {
  display: grid; grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  padding: 4rem var(--pad-x) 2.5rem;
  border-bottom: 1px solid var(--line);
}
.ft__brand-col p { margin-top: 1rem; font-size: 13px; line-height: 1.85; color: var(--ink-soft); }
.ft__nav-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 2rem; }
.ft__nav-cols h5 { font-family: var(--ff-sans); font-size: 11px; font-weight: 800; letter-spacing: 0.2em; color: var(--brand); margin-bottom: 1rem; text-transform: uppercase; }
.ft__nav-cols div { display: flex; flex-direction: column; gap: 0.6rem; }
.ft__nav-cols a { font-size: 13px; color: var(--ink-soft); transition: color 0.2s; }
.ft__nav-cols a:hover { color: var(--ink); }
.ft__bottom {
  display: flex; justify-content: space-between;
  padding: 1.5rem var(--pad-x) 0;
  font-size: 11.5px; color: var(--ink-dim);
  letter-spacing: 0.08em;
}
@media (max-width: 720px) {
  .ft__inner { grid-template-columns: 1fr; gap: 2rem; }
  .ft__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ============ FAB ============ */
.fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: var(--ink); color: #fff;
  border-radius: 999px;
  font-family: var(--ff-sans); font-weight: 700;
  font-size: 13px; letter-spacing: 0.04em;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.3);
  transition: background 0.25s, transform 0.25s var(--ease);
}
.fab:hover { background: var(--brand); transform: translateY(-3px); }
.fab__dot { width: 6px; height: 6px; background: var(--brand); border-radius: 50%; box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.4); animation: pulse 2s ease-in-out infinite; }
.fab:hover .fab__dot { background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,0.4); }
@media (max-width: 600px) { .fab { bottom: 16px; right: 16px; padding: 0.7rem 1rem; font-size: 12px; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
