/* ============================================
   TORELIO BUY & SELL
   Quiet luxury appraisal LP — mobile first
   ============================================ */

:root {
  --bg: #0c0a08;
  --bg-2: #120f0c;
  --charcoal: #161310;
  --card: #1a1612;
  --brown: #2a2118;
  --gold: #c5a059;
  --gold-2: #d4b56a;
  --gold-deep: #a8863d;
  --gold-dim: rgba(197, 160, 89, 0.12);
  --white: #f6f1e8;
  --muted: rgba(246, 241, 232, 0.58);
  --muted-2: rgba(246, 241, 232, 0.38);
  --line: rgba(197, 160, 89, 0.22);
  --line-soft: rgba(246, 241, 232, 0.08);
  --ink: #1a140c;
  --header-h: 4.5rem;
  --fixed-cta-h: 4.2rem;
  --pad: clamp(1.15rem, 4.8vw, 2.75rem);
  --section: clamp(4.5rem, 11vw, 8.75rem);
  --max: 1120px;
  --wide: 1280px;
  --radius: 2px;
  --serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --display: "Cormorant Garamond", "Shippori Mincho", serif;
  --sans: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --gold-grad: linear-gradient(180deg, #d8bd7a 0%, #c5a059 46%, #a8863d 100%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.6rem);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  color-scheme: dark;
}

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--white);
  background: var(--bg);
  line-height: 1.9;
  letter-spacing: 0.06em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(var(--fixed-cta-h) + env(safe-area-inset-bottom, 0px));
  overflow-x: clip;
}

body.menu-open,
body.modal-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure { margin: 0; }

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
}
.skip-link:focus { top: 1rem; }

.pc-only { display: none; }

body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.section-label::before,
.section-label::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.section-head--left.section-label::before { display: none; }

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.55rem, 4.6vw, 2.35rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--white);
}

.section-lead {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.86rem;
  max-width: 36rem;
  line-height: 2.05;
}

.section-head {
  text-align: center;
  max-width: 38rem;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 6vw, 4.25rem);
}
.section-head .section-lead { margin-inline: auto; }

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.4rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  transition: opacity 0.4s var(--ease), gap 0.4s var(--ease);
}
.text-link::after { content: "→"; }
.text-link:hover { opacity: 0.7; gap: 0.7rem; }

.media-zoom { overflow: hidden; }
.media-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease);
  filter: saturate(0.92) contrast(1.06) brightness(1.02);
}
.media-zoom:hover img { transform: scale(1.08); }
.media-zoom--matte img {
  filter: saturate(0.78) contrast(1.14) brightness(0.72);
}
.reason-card:nth-child(6) img,
.result-card:nth-child(4) img {
  object-position: center 22%;
}
.cat-card:nth-child(5) img {
  object-position: center 28%;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.55rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  background: transparent;
  color: var(--white);
  transition: background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.btn svg {
  width: 14px;
  height: 14px;
  margin-left: 0.15rem;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--sm {
  min-height: 2.45rem;
  padding: 0 1rem;
  font-size: 0.64rem;
  flex-direction: row;
}
.btn--lg { min-height: 3.45rem; padding: 0.55rem 1.7rem; }
.btn--block { width: 100%; }
.btn__sub {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  font-weight: 400;
  opacity: 0.72;
}

.btn--gold {
  background: var(--gold-grad);
  color: var(--ink);
  border-color: var(--gold-deep);
}
.btn--gold:hover {
  background: linear-gradient(180deg, #e0c98a 0%, #d4b56a 46%, #c5a059 100%);
  box-shadow: 0 10px 32px rgba(197, 160, 89, 0.28);
}
.btn--gold .btn__sub { color: var(--ink); opacity: 0.62; }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}
.btn--ghost:hover {
  background: var(--gold-dim);
  box-shadow: 0 0 0 1px var(--gold);
}

.cta__actions .btn {
  flex-direction: column;
  gap: 0.1rem;
}

/* ---------- Progress / header ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 70;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}
.header.is-scrolled {
  background: rgba(12, 10, 8, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line-soft);
}

.header__inner {
  width: min(100% - 1.1rem, var(--wide));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.logo__mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo__name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
}
.logo__tag {
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  color: var(--muted);
  text-transform: uppercase;
}

.nav { display: none; }
.nav__list {
  display: flex;
  gap: 1.45rem;
}
.nav a {
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  color: rgba(246, 241, 232, 0.78);
  position: relative;
  padding-bottom: 0.2rem;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { transform: scaleX(1); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.header__tel { display: none; }
.header .btn--gold { display: none; }

.menu-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: transparent;
  display: grid;
  place-content: center;
  gap: 7px;
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 1.2px;
  background: var(--gold);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.menu-btn.is-open span:first-child { transform: translateY(4.1px) rotate(40deg); }
.menu-btn.is-open span:last-child { transform: translateY(-4.1px) rotate(-40deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(12, 10, 8, 0.97);
  color: var(--white);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 5.5rem 1.5rem 3rem;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.16em;
  display: block;
  padding: 0.7rem 0;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu__meta {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  line-height: 2;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-bottom: calc(var(--fixed-cta-h) + env(safe-area-inset-bottom, 0px));
}
.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.08);
  animation: kenburns 28s var(--ease-out) forwards;
  filter: saturate(0.88) contrast(1.08) brightness(0.72);
}
.hero__veil {
  background:
    linear-gradient(180deg, rgba(12, 10, 8, 0.48) 0%, rgba(12, 10, 8, 0.16) 28%, rgba(12, 10, 8, 0.62) 70%, rgba(12, 10, 8, 0.94) 100%),
    linear-gradient(90deg, rgba(12, 10, 8, 0.74) 0%, rgba(12, 10, 8, 0.22) 48%, rgba(12, 10, 8, 0.28) 100%);
}
@keyframes kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1.16); }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - var(--pad) * 2, var(--wide));
  margin: 0 auto;
  padding: 7.5rem 0 5.2rem;
}
.hero__eyebrow {
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.85rem, 6.4vw, 3.45rem);
  line-height: 1.42;
  letter-spacing: 0.08em;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
}
.hero__lead {
  margin-top: 1.35rem;
  max-width: 32rem;
  color: rgba(246, 241, 232, 0.78);
  font-size: 0.88rem;
  line-height: 2.1;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 2.1rem;
}
.hero__cta .btn { width: 100%; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.6rem;
  margin-top: 1.8rem;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: rgba(246, 241, 232, 0.82);
}
.hero__trust-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.hero__trust-icon svg {
  width: 18px;
  height: 18px;
}

.hero__badge {
  position: absolute;
  right: var(--pad);
  top: 5.6rem;
  z-index: 3;
  width: 92px;
  height: 92px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: rgba(12, 10, 8, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 0 6px rgba(197, 160, 89, 0.08);
}
.hero__badge-num {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}
.hero__badge-num span:last-child { font-size: 0.7em; }
.hero__badge-label {
  margin-top: 0.35rem;
  font-family: var(--display);
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.72);
  line-height: 1.35;
}

.hero__scroll {
  position: absolute;
  left: var(--pad);
  bottom: calc(var(--fixed-cta-h) + 1.1rem);
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: scroll-line 2.4s var(--ease) infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0.4); transform-origin: top; opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.4); transform-origin: bottom; opacity: 0.3; }
}

/* ---------- Reasons ---------- */
.reasons { background: var(--bg); padding-top: clamp(3.5rem, 8vw, 6rem); }
.reasons__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
.reason-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
}
.reason-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.38);
}
.reason-card__media {
  aspect-ratio: 16 / 10;
  background: #14110e;
}
.reason-card__body {
  padding: 1.15rem 1.2rem 1.35rem;
  position: relative;
}
.reason-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--line);
  margin-bottom: 0.75rem;
}
.reason-card__icon svg {
  width: 22px;
  height: 22px;
}
.reason-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-bottom: 0.4rem;
}
.reason-card p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.95;
}

/* ---------- Category ---------- */
.category { background: var(--bg-2); }
.category__grid {
  display: grid;
  gap: 1.15rem;
}
.cat-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.38);
}
.cat-card__media {
  aspect-ratio: 4 / 3;
  background: #14110e;
}
.cat-card__body {
  padding: 1.15rem 1.2rem 1.4rem;
  text-align: center;
}
.cat-card__en {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
}
.cat-card h3 {
  font-family: var(--serif);
  font-size: 1.12rem;
  letter-spacing: 0.14em;
  margin: 0.3rem 0 0.45rem;
}
.cat-card p {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ---------- About ---------- */
.about { background: var(--bg); }
.about__grid {
  display: grid;
  gap: 2.25rem;
}
.about__media {
  aspect-ratio: 4 / 3;
  background: #14110e;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.about__media img { height: 100%; }
.about__lead {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  line-height: 2.1;
  color: rgba(246, 241, 232, 0.88);
}
.about__copy {
  margin-top: 1.15rem;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 2.15;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
}
.stat__num {
  font-family: var(--display);
  font-size: clamp(1.55rem, 4.4vw, 2.45rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
}
.stat__unit {
  font-size: 0.45em;
  margin-left: 0.12em;
}
.stat__label {
  margin-top: 0.55rem;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* ---------- Results ---------- */
.results {
  background: var(--bg-2);
  overflow: clip;
}
.results__viewport {
  overflow: hidden;
  width: min(100%, var(--wide));
  margin-inline: auto;
}
.results__track {
  display: flex;
  gap: 1.15rem;
  padding-inline: var(--pad);
  transition: transform 0.7s var(--ease);
  touch-action: pan-y;
  cursor: grab;
}
.result-card {
  flex: 0 0 min(82vw, 340px);
  background: var(--card);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.result-card:hover {
  border-color: var(--line);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}
.result-card__media {
  aspect-ratio: 4 / 3;
  background: #14110e;
}
.result-card__body { padding: 1.15rem 1.15rem 1.35rem; }
.result-card__brand {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
}
.result-card h3 {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin: 0.3rem 0 0.35rem;
}
.result-card__meta {
  font-size: 0.7rem;
  color: var(--muted-2);
  letter-spacing: 0.06em;
}
.result-card__price {
  margin-top: 0.85rem;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}
.result-card__price span {
  font-size: 0.55em;
  margin-left: 0.18em;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.7rem;
}
.carousel-nav__btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
  display: grid;
  place-items: center;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.carousel-nav__btn:hover { border-color: var(--gold); background: var(--gold-dim); }
.carousel-nav__btn svg { width: 18px; height: 18px; }
.carousel-nav__dots { display: flex; gap: 0.45rem; }
.carousel-nav__dots button {
  width: 7px;
  height: 7px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.28);
}
.carousel-nav__dots button.is-on { background: var(--gold); }

/* ---------- Flow ---------- */
.flow { background: var(--bg); }
.flow__list {
  display: grid;
  gap: 1.75rem;
}
.flow-item {
  text-align: center;
  position: relative;
  max-width: 16rem;
  margin-inline: auto;
}
.flow-item__num {
  display: block;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 0.55rem;
}
.flow-item__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.8rem;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--line);
}
.flow-item__icon svg {
  width: 22px;
  height: 22px;
}
.flow-item h3 {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}
.flow-item p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.9;
}

/* ---------- Voice ---------- */
.voice { background: var(--bg-2); }
.voice__grid {
  display: grid;
  gap: 1.15rem;
}
.voice-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  display: grid;
  grid-template-columns: 108px 1fr;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.voice-card:hover {
  border-color: var(--line);
  transform: translateY(-4px);
}
.voice-card__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #14110e;
}
.voice-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}
.voice-card__body {
  padding: 1.05rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
}
.voice-card__stars {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.voice-card__quote {
  font-size: 0.8rem;
  line-height: 1.95;
  color: rgba(246, 241, 232, 0.86);
  flex: 1;
}
.voice-card__who {
  margin-top: 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg); }
.faq__grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: 0;
  color: var(--gold);
  text-align: left;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 1.15rem 0.1rem;
  font-family: var(--serif);
}
.faq-item__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item__icon::before { width: 12px; height: 1px; }
.faq-item__icon::after { width: 1px; height: 12px; transition: opacity 0.3s; }
.faq-item.is-open .faq-item__icon::after { opacity: 0; }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.6rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 2;
  opacity: 0;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq-item.is-open .faq-item__a {
  max-height: 18rem;
  opacity: 1;
  padding-bottom: 1.2rem;
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.cta__media,
.cta__veil { position: absolute; inset: 0; }
.cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.52);
}
.cta__veil {
  background:
    linear-gradient(90deg, rgba(12, 10, 8, 0.82) 0%, rgba(12, 10, 8, 0.45) 55%, rgba(12, 10, 8, 0.72) 100%),
    linear-gradient(180deg, rgba(12, 10, 8, 0.2), rgba(12, 10, 8, 0.55));
}
.cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  padding-block: 5rem;
}
.cta__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4.6vw, 2.5rem);
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.cta__lead {
  margin: 1.15rem 0 1.8rem;
  max-width: 28rem;
  color: rgba(246, 241, 232, 0.78);
  font-size: 0.88rem;
}
.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cta__actions .btn { width: 100%; }
.cta__info {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 2.05;
  letter-spacing: 0.08em;
}
.cta__brand {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.cta__info a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.footer {
  background: #080706;
  border-top: 1px solid var(--line-soft);
  padding: 2.5rem 0 6.5rem;
}
.footer__inner {
  width: min(100% - var(--pad) * 2, var(--wide));
  margin-inline: auto;
  display: grid;
  gap: 1.6rem;
}
.footer__brand p {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--muted-2);
  max-width: 22rem;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.3rem;
}
.footer__nav a {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.footer__nav a:hover { color: var(--gold); }
.footer__bottom {
  width: min(100% - var(--pad) * 2, var(--wide));
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.66rem;
  color: var(--muted-2);
  line-height: 1.9;
}

/* ---------- Modal / toast / fixed CTA ---------- */
.modal[hidden],
.toast[hidden] { display: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}
.modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: 2rem 1.45rem 1.55rem;
  max-height: min(92vh, 720px);
  overflow: auto;
}
.modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.85rem;
  border: 0;
  background: none;
  font-size: 1.5rem;
  color: var(--muted);
  line-height: 1;
}
.modal h2 {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
}
.modal__lead {
  margin: 0.6rem 0 1.25rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.form { display: grid; gap: 0.75rem; }
.form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0.72rem 0.8rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--white);
  background: #0a0a0a;
}
.form select { appearance: none; }
.form textarea { min-height: 5.5rem; resize: vertical; }

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--fixed-cta-h) + 1.2rem);
  transform: translateX(-50%);
  z-index: 90;
  background: var(--gold);
  color: var(--ink);
  padding: 0.85rem 1.15rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  width: min(calc(100% - 2rem), 420px);
  text-align: center;
}

.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  height: calc(var(--fixed-cta-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: #0a0806;
  border-top: 1px solid var(--line-soft);
  transition: transform 0.45s var(--ease);
}
.fixed-cta.is-hidden { transform: translateY(110%); }
.fixed-cta a {
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.fixed-cta__line { color: var(--white); }
.fixed-cta__tel {
  color: var(--white);
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
}
.fixed-cta__web { background: var(--gold-grad); color: var(--ink); }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.hero .reveal {
  animation: hero-reveal 1.15s var(--ease-out) 0.15s both;
}
.hero .reveal.is-in { animation: none; }
@keyframes hero-reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.js .reveal {
  animation: reveal-fallback 0.01s linear 3.2s forwards;
}
.js .hero .reveal {
  animation: hero-reveal 1.15s var(--ease-out) 0.15s both;
}
.js .reveal.is-in { animation: none; }
@keyframes reveal-fallback {
  to { opacity: 1; transform: none; }
}

/* ---------- Tablet ---------- */
@media (min-width: 720px) {
  .pc-only { display: inline; }
  .header .btn--gold { display: inline-flex; }
  .hero__cta {
    flex-direction: row;
    align-items: stretch;
  }
  .hero__cta .btn { width: auto; min-width: 13.5rem; }
  .hero__badge {
    width: 128px;
    height: 128px;
    top: auto;
    bottom: 6.5rem;
    right: clamp(1.5rem, 4vw, 3.5rem);
  }
  .hero__badge-num { font-size: 1.85rem; }
  .reasons__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .category__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .about__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 3rem;
  }
  .about__media {
    aspect-ratio: 4 / 5;
    max-height: 680px;
  }
  .result-card { flex-basis: min(44vw, 360px); }
  .flow__list { grid-template-columns: repeat(3, 1fr); gap: 2rem 1.2rem; }
  .flow-item { max-width: none; }
  .voice__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .voice-card { grid-template-columns: 128px 1fr; }
  .faq__grid { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
  .faq-item:nth-child(-n+2) { border-top: 0; }
  .cta__inner { grid-template-columns: 1.3fr 0.7fr; align-items: end; }
  .cta__actions {
    flex-direction: row;
    align-items: stretch;
  }
  .cta__actions .btn { width: auto; min-width: 13.5rem; }
  .footer { padding-bottom: 2.5rem; }
  .footer__inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

/* ---------- Desktop ---------- */
@media (min-width: 1024px) {
  body { padding-bottom: 0; }
  .fixed-cta { display: none; }
  .menu-btn { display: none; }
  .nav { display: block; }
  .header__tel {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: right;
  }
  .header__tel-num {
    font-family: var(--display);
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    color: var(--white);
  }
  .header__tel-hours {
    font-size: 0.52rem;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-top: 0.15rem;
  }
  .header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  .nav { justify-self: center; }
  .hero__content { padding: 8.5rem 0 6.5rem; }
  .hero__scroll {
    display: flex;
    left: auto;
    right: var(--pad);
    bottom: 1.6rem;
  }
  .hero { padding-bottom: 0; }
  .hero__badge {
    width: 148px;
    height: 148px;
    right: clamp(2rem, 6vw, 5.5rem);
    top: 38%;
    bottom: auto;
  }
  .hero__badge-num { font-size: 2.15rem; }
  .hero__badge-label { font-size: 0.58rem; }
  .reasons__grid { grid-template-columns: repeat(3, 1fr); }
  .category__grid { grid-template-columns: repeat(3, 1fr); }
  .result-card { flex-basis: min(30vw, 360px); }
  .flow__list {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
  .flow-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 4.55rem;
    left: calc(50% + 32px);
    width: calc(100% - 64px);
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0.45;
    pointer-events: none;
  }
  .voice-card { grid-template-columns: 140px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero__media img,
  .hero .reveal,
  .media-zoom img,
  .reason-card,
  .cat-card { animation: none; transition: none; }
  .hero__scroll::after { animation: none; }
}
