@charset "UTF-8";
/* =========================================================================
   disis lux  —  salon disis original theme
   Bordeaux × Rose × Gold
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Tokens
   ---------------------------------------------------------------------- */
:root {
  /* color */
  --ink:            #1d1317;
  --ink-70:         #4a3a3d;
  --muted:          #7d6b6a;

  --bordeaux:       #5a1522;
  --bordeaux-deep:  #370c14;
  --bordeaux-soft:  #722334;
  --wine:           #8c3245;

  --rose:           #c78a8a;
  --rose-soft:      #e0bdb7;
  --rose-pale:      #f4e7e2;

  --gold:           #bf9d64;
  --gold-lt:        #dfc292;
  --gold-dk:        #97764a;

  --ivory:          #f7f2ec;
  --cream:          #fdfbf8;
  --paper:          #efe5da;

  /* type */
  --f-display: "Cormorant Garamond", "Shippori Mincho B1", "Times New Roman", serif;
  --f-jp:      "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --f-sans:    "Zen Kaku Gothic New", "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;

  /* metrics */
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --maxw: 1320px;
  --frame: 14px;
  --header-h: 82px;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.76, 0, .24, 1);
}

@media (max-width: 900px) {
  :root { --frame: 0px; --header-h: 62px; }
}

/* -------------------------------------------------------------------------
   2. Reset & base
   ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 2;
  letter-spacing: .06em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg, iframe { max-width: 100%; vertical-align: bottom; }
img { height: auto; }

a { color: inherit; text-decoration: none; transition: color .4s var(--ease), opacity .4s var(--ease); }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .8em 1.4em; background: var(--bordeaux); color: #fff; font-size: .8rem;
}
.skip-link:focus { top: 1rem; }

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

/* -------------------------------------------------------------------------
   3. Texture & frame
   ---------------------------------------------------------------------- */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: .30; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.frame { position: fixed; inset: 0; z-index: 8000; pointer-events: none; }
.frame span { position: absolute; background: var(--gold); opacity: .55; }
.frame span:nth-child(1) { top: var(--frame); left: var(--frame); right: var(--frame); height: 1px; }
.frame span:nth-child(2) { bottom: var(--frame); left: var(--frame); right: var(--frame); height: 1px; }
.frame span:nth-child(3) { top: var(--frame); bottom: var(--frame); left: var(--frame); width: 1px; }
.frame span:nth-child(4) { top: var(--frame); bottom: var(--frame); right: var(--frame); width: 1px; }
@media (max-width: 900px) { .frame { display: none; } }

/* -------------------------------------------------------------------------
   4. Loader
   ---------------------------------------------------------------------- */
.loader { position: fixed; inset: 0; z-index: 9500; pointer-events: none; }
.loader__panel {
  position: absolute; top: 0; bottom: 0; width: 50.2%;
  background: var(--bordeaux-deep);
  transition: transform 1.05s var(--ease-io) .3s;
}
.loader__panel--l { left: 0; }
.loader__panel--r { right: 0; }

.loader__mark {
  position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: .8rem;
  transition: opacity .55s ease .35s;
}
.loader__mark img { width: 86px; opacity: .95; animation: markIn 1.4s var(--ease) both; }
.loader__word {
  font-family: var(--f-display); font-size: .95rem; letter-spacing: .55em; text-indent: .55em;
  color: var(--gold-lt); animation: markIn 1.4s var(--ease) .15s both;
}
@keyframes markIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.loader.is-done .loader__mark { opacity: 0; }
.loader.is-done .loader__panel--l { transform: translateX(-101%); }
.loader.is-done .loader__panel--r { transform: translateX(101%); }
.loader.is-hidden { display: none; }

/* -------------------------------------------------------------------------
   5. Shared components
   ---------------------------------------------------------------------- */
.label {
  font-family: var(--f-display);
  font-size: .78rem; font-weight: 400; letter-spacing: .42em; text-indent: .42em;
  text-transform: uppercase; color: var(--wine);
  display: flex; align-items: center; gap: .9em;
}
.label::before { content: ""; width: 46px; height: 1px; background: currentColor; opacity: .6; flex: none; }
.label--gold { color: var(--gold-lt); }
.label--center { justify-content: center; }
.label--center::after { content: ""; width: 46px; height: 1px; background: currentColor; opacity: .6; flex: none; }

.h-lux { display: block; margin-top: 1.4rem; }
.h-lux__en {
  display: block; font-family: var(--f-display); font-weight: 300;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem); line-height: 1.15; letter-spacing: .01em; color: var(--bordeaux);
}
.h-lux__ja {
  display: block; margin-top: .9rem; font-family: var(--f-jp); font-weight: 500;
  font-size: clamp(1rem, 1.55vw, 1.22rem); line-height: 2; letter-spacing: .18em; color: var(--ink);
}
.h-lux--center { text-align: center; }
.h-lux--light .h-lux__en { color: var(--gold-lt); }
.h-lux--light .h-lux__ja { color: var(--rose-pale); }

/* buttons -------------------------------------------------------------- */
.btn {
  --btn-bg: transparent;
  position: relative; display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .12em; min-width: 15.5rem; padding: 1.05em 2.4em;
  border: 1px solid currentColor; overflow: hidden; isolation: isolate;
  transition: color .5s var(--ease), border-color .5s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--btn-bg);
  transform: scaleX(0); transform-origin: right; transition: transform .6s var(--ease-io);
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); transform-origin: left; }
.btn__en { font-family: var(--f-display); font-size: .95rem; letter-spacing: .3em; text-indent: .3em; line-height: 1.3; }
.btn__ja { font-family: var(--f-jp); font-size: .68rem; letter-spacing: .22em; text-indent: .22em; opacity: .85; line-height: 1.6; }

.btn--gold { color: var(--gold-lt); border-color: rgba(191, 157, 100, .8); --btn-bg: var(--gold); }
.btn--gold:hover, .btn--gold:focus-visible { color: var(--bordeaux-deep); border-color: var(--gold); }

.btn--ghost { color: var(--cream); border-color: rgba(253, 251, 248, .45); --btn-bg: var(--cream); }
.btn--ghost:hover, .btn--ghost:focus-visible { color: var(--bordeaux); border-color: var(--cream); }

.btn--reserve {
  min-width: 0; padding: .72em 1.5em; color: var(--bordeaux); border-color: rgba(90, 21, 34, .45); --btn-bg: var(--bordeaux);
}
.btn--reserve:hover, .btn--reserve:focus-visible { color: var(--gold-lt); border-color: var(--bordeaux); }
.btn--reserve .btn__en { font-size: .8rem; }
.btn--reserve .btn__ja { font-size: .6rem; }

.btn--lg { min-width: 19rem; padding: 1.25em 3em; }
.btn--block { display: flex; width: 100%; }

.icon-link {
  display: inline-grid; place-content: center; width: 40px; height: 40px;
  border: 1px solid rgba(90, 21, 34, .25); border-radius: 50%; color: var(--bordeaux);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.icon-link:hover { background: var(--bordeaux); color: var(--gold-lt); border-color: var(--bordeaux); }
.icon-link--lg { width: 46px; height: 46px; border-color: rgba(223, 194, 146, .35); color: var(--gold-lt); }
.icon-link--lg:hover { background: var(--gold); color: var(--bordeaux-deep); border-color: var(--gold); }

/* photo treatment ------------------------------------------------------ */
.ph, .concept__fig, .svc__media, .journal__thumb, .page-hero__media, .article__thumb, .card__thumb {
  position: relative; overflow: hidden; background: var(--paper);
}
.ph img, .concept__fig img, .svc__media img, .journal__thumb img,
.page-hero__media img, .article__thumb img, .card__thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(.82) contrast(1.05) sepia(.14) brightness(1.01);
}
.concept__fig::after, .svc__media::after, .journal__thumb::after,
.page-hero__media::after, .card__thumb::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(165deg, rgba(140, 50, 69, .16), rgba(55, 12, 20, .28));
  mix-blend-mode: multiply;
}

/* reveal --------------------------------------------------------------- */
.reveal { transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); transition-delay: var(--delay, 0s); }
html.js .reveal { opacity: 0; transform: translateY(26px); }
html.js .reveal.is-in { opacity: 1; transform: none; }

html.js .reveal--wipe { opacity: 1; transform: none; }
.reveal--wipe::before {
  content: ""; position: absolute; inset: 0; z-index: 3; background: var(--bordeaux);
  transform: scaleX(1); transform-origin: right;
  transition: transform 1.1s var(--ease-io); transition-delay: var(--delay, 0s);
}
html:not(.js) .reveal--wipe::before { display: none; }
.reveal--wipe img { transform: scale(1.16); transition: transform 1.8s var(--ease); transition-delay: var(--delay, 0s); }
.reveal--wipe.is-in::before { transform: scaleX(0); transform-origin: left; }
.reveal--wipe.is-in img { transform: scale(1); }

/* split text ----------------------------------------------------------- */
.split-char { display: inline-block; opacity: 0; transform: translateY(.7em) rotate(4deg); }
.is-ready .split-char { animation: charIn .95s var(--ease) forwards; animation-delay: calc(var(--ci) * 45ms + .35s); }
@keyframes charIn { to { opacity: 1; transform: none; } }

/* -------------------------------------------------------------------------
   6. Header
   ---------------------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 7000;
  padding: 0 calc(var(--gutter) * .8);
  transition: background .6s var(--ease), box-shadow .6s var(--ease), backdrop-filter .6s var(--ease);
}
.site-header__inner {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 3rem);
  height: var(--header-h); max-width: var(--maxw); margin-inline: auto;
}

.site-header.is-solid {
  background: rgba(247, 242, 236, .92);
  backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 rgba(90, 21, 34, .12);
}

.brand a { display: flex; align-items: center; gap: .75rem; }
.brand__mark { width: auto; height: 40px; flex: none; transition: transform .6s var(--ease); }
.brand a:hover .brand__mark { transform: rotate(-4deg) scale(1.06); }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 400;
  letter-spacing: .16em; color: var(--bordeaux);
}
.brand__sub { font-family: var(--f-display); font-size: .58rem; letter-spacing: .3em; color: var(--muted); }

/* ヒーローに重なっているときのヘッダー（背景なし・文字は明るく） */
.has-hero .site-header:not(.is-solid) .brand__name { color: var(--cream); }
.has-hero .site-header:not(.is-solid) .brand__sub { color: rgba(253, 251, 248, .7); }
.has-hero .site-header:not(.is-solid) .gnav__list a { color: var(--cream); }
.has-hero .site-header:not(.is-solid) .icon-link { color: var(--cream); border-color: rgba(253, 251, 248, .4); }
.has-hero .site-header:not(.is-solid) .btn--reserve { color: var(--cream); border-color: rgba(253, 251, 248, .5); --btn-bg: var(--cream); }
.has-hero .site-header:not(.is-solid) .btn--reserve:hover { color: var(--bordeaux); }
.has-hero .site-header:not(.is-solid) .burger span { background: var(--cream); }

/* JS が無い環境では常に不透明ヘッダー */
html:not(.js) .site-header { background: rgba(247, 242, 236, .95); box-shadow: 0 1px 0 rgba(90, 21, 34, .12); }

.gnav { margin-left: auto; }
.gnav__list { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.4rem); }
.gnav__list a { position: relative; display: flex; flex-direction: column; align-items: center; gap: .1em; padding: .3em 0; }
.gnav__en { font-family: var(--f-display); font-size: .92rem; letter-spacing: .16em; line-height: 1.2; }
.gnav__ja { font-family: var(--f-jp); font-size: .58rem; letter-spacing: .18em; opacity: .72; }
.gnav__list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .55s var(--ease-io);
}
.gnav__list a:hover::after, .gnav__list a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

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

.burger { display: none; width: 44px; height: 44px; position: relative; margin-left: auto; }

@media (max-width: 1100px) {
  .gnav__list { gap: 1.1rem; }
  .gnav__en { font-size: .8rem; }
}
@media (max-width: 960px) {
  .gnav { display: none; }
  .site-header__actions { display: none; }
  .burger { display: block; }
  .brand__mark { height: 32px; }
  .brand__name { font-size: 1.3rem; }
  .brand__sub { display: none; }
}
.burger span {
  position: absolute; left: 11px; width: 22px; height: 1px; background: var(--bordeaux);
  transition: transform .45s var(--ease), opacity .3s ease;
}
.burger span:nth-child(1) { top: 19px; }
.burger span:nth-child(2) { top: 25px; }
.burger[aria-expanded="true"] span { background: var(--gold-lt); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(21deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-21deg); }

/* drawer --------------------------------------------------------------- */
.drawer {
  position: fixed; inset: 0; z-index: 6900; background: var(--bordeaux-deep);
  clip-path: inset(0 0 100% 0); transition: clip-path .85s var(--ease-io);
  display: grid; place-items: center; overflow-y: auto;
}
.drawer.is-open { clip-path: inset(0 0 0 0); }
.drawer[hidden] { display: none; }
.drawer__inner { width: min(88%, 460px); padding: 6rem 0 4rem; text-align: center; }
.drawer__label {
  font-family: var(--f-display); font-size: .75rem; letter-spacing: .5em; text-indent: .5em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 2rem;
}
.drawer__list li { border-bottom: 1px solid rgba(223, 194, 146, .2); opacity: 0; transform: translateY(18px); }
.drawer.is-open .drawer__list li { animation: dItem .8s var(--ease) forwards; animation-delay: calc(var(--i) * 80ms + .25s); }
@keyframes dItem { to { opacity: 1; transform: none; } }
.drawer__list a { display: flex; flex-direction: column; gap: .1em; padding: 1.1rem 0; color: var(--cream); }
.drawer__list em { font-family: var(--f-display); font-style: normal; font-size: 1.5rem; letter-spacing: .16em; color: var(--gold-lt); }
.drawer__list span { font-family: var(--f-jp); font-size: .72rem; letter-spacing: .24em; opacity: .8; }
.drawer__foot { margin-top: 2.4rem; color: var(--rose-pale); }
.drawer__foot .btn--reserve { color: var(--gold-lt); border-color: rgba(223, 194, 146, .6); --btn-bg: var(--gold); }
.drawer__foot .btn--reserve:hover { color: var(--bordeaux-deep); }
.drawer__tel { margin-top: 1.4rem; font-family: var(--f-display); font-size: 1.15rem; letter-spacing: .12em; }
.drawer__addr { font-size: .74rem; letter-spacing: .12em; opacity: .75; line-height: 1.9; }

/* side rail ------------------------------------------------------------ */
.side-rail {
  position: fixed; z-index: 6000; bottom: 0; pointer-events: none;
  display: flex; align-items: center;
}
.side-rail--left { left: calc(var(--frame) + 16px); bottom: 20px; }
.side-rail__text {
  writing-mode: vertical-rl; font-family: var(--f-display); font-size: .66rem;
  letter-spacing: .34em; color: var(--muted); opacity: .8;
}
.has-hero:not(.is-scrolled) .side-rail__text { color: rgba(253, 251, 248, .55); }
@media (max-width: 1180px) { .side-rail { display: none; } }

/* -------------------------------------------------------------------------
   7. Hero
   ---------------------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 2.2s ease;
  filter: saturate(.78) contrast(1.06) sepia(.16);
}
.hero__slide.is-active { opacity: 1; animation: kb 14s ease-out both; }
@keyframes kb { from { transform: scale(1.02); } to { transform: scale(1.16); } }

.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 20% 20%, rgba(55, 12, 20, .18), transparent 60%),
    linear-gradient(180deg, rgba(29, 19, 23, .62) 0%, rgba(55, 12, 20, .48) 42%, rgba(55, 12, 20, .78) 100%);
}
.hero__veil::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, .028) 0 1px, transparent 1px 4px);
}

.hero__inner {
  position: relative; z-index: 2; width: min(100% - var(--gutter) * 2, var(--maxw));
  margin-inline: auto; padding-top: var(--header-h); color: var(--cream);
}

.hero__eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--f-display); font-size: .75rem; letter-spacing: .46em; text-indent: .46em;
  text-transform: uppercase; color: var(--gold-lt);
}
.hero__eyebrow i { display: block; width: 30px; height: 1px; background: currentColor; opacity: .7; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ヒーロー内の要素はオープニング終了に合わせて登場させる */
html.js .hero__eyebrow,
html.js .hero__title-ja,
html.js .hero__copy,
html.js .hero__actions,
html.js .hero__vertical,
html.js .hero__scroll { opacity: 0; }
.is-ready .hero__eyebrow  { animation: fadeUp 1.1s var(--ease) .05s forwards; }
.is-ready .hero__title-ja { animation: fadeUp 1.1s var(--ease) .55s forwards; }
.is-ready .hero__copy     { animation: fadeUp 1.2s var(--ease) .7s forwards; }
.is-ready .hero__actions  { animation: fadeUp 1.2s var(--ease) .85s forwards; }
.is-ready .hero__vertical { animation: fadeUp 1.3s var(--ease) 1s forwards; }
.is-ready .hero__scroll   { animation: fadeUp 1.3s var(--ease) 1.15s forwards; }

.hero__title { margin-top: 1.6rem; }
.hero__title-en {
  display: block; font-family: var(--f-display); font-weight: 300;
  font-size: clamp(3.4rem, 11vw, 9.5rem); line-height: .95; letter-spacing: .02em;
  color: var(--cream);
  text-shadow: 0 18px 60px rgba(29, 8, 14, .45);
}
.hero__title-ja {
  display: block; margin-top: 1.5rem; font-family: var(--f-jp); font-weight: 500;
  font-size: clamp(.82rem, 1.55vw, 1.06rem); letter-spacing: .3em; color: var(--rose-pale);
}

.hero__copy {
  margin-top: 2.2rem; font-family: var(--f-jp); font-weight: 400;
  font-size: clamp(1.05rem, 2.1vw, 1.6rem); line-height: 2; letter-spacing: .2em;
  color: var(--cream);
}

.hero__actions {
  margin-top: 2.8rem; display: flex; flex-wrap: wrap; gap: 1rem;
}

.hero__vertical {
  position: absolute; z-index: 2; top: calc(var(--header-h) + 2.5rem); right: calc(var(--gutter) * .55);
  writing-mode: vertical-rl; font-family: var(--f-jp); font-size: .72rem;
  letter-spacing: .58em; color: rgba(253, 251, 248, .62);
}
.hero__vertical::after { content: ""; display: block; width: 1px; height: 70px; margin: 1.2rem auto 0; background: linear-gradient(var(--gold), transparent); }

.hero__scroll {
  position: absolute; z-index: 2; left: 50%; bottom: 2.2rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  font-family: var(--f-display); font-size: .68rem; letter-spacing: .4em; text-indent: .4em;
  color: rgba(253, 251, 248, .8);
}
.hero__scroll i { display: block; width: 1px; height: 54px; background: rgba(253, 251, 248, .35); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; inset: 0; background: var(--gold-lt); animation: scrollLine 2.4s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: translateY(-100%); } 55%, 100% { transform: translateY(100%); } }

@media (max-width: 900px) {
  .hero { min-height: 92svh; }
  .hero__vertical { display: none; }
  .hero__inner { padding-bottom: 4rem; }
  .hero__eyebrow { font-size: .62rem; letter-spacing: .3em; text-indent: .3em; }
  .hero__title { margin-top: 1.1rem; }
  .hero__title-ja { margin-top: 1.1rem; font-size: .72rem; letter-spacing: .16em; }
  .hero__copy { margin-top: 1.6rem; letter-spacing: .14em; }
  .hero__actions { margin-top: 2rem; gap: .7rem; }
  .hero__actions .btn { min-width: 0; flex: 1 1 46%; padding: .95em .6rem; }
  .hero__actions .btn__en { font-size: .78rem; letter-spacing: .18em; text-indent: .18em; }
  .hero__actions .btn__ja { font-size: .6rem; letter-spacing: .12em; text-indent: .12em; }
  .hero__scroll { bottom: 5.4rem; }
  .hero__scroll i { height: 34px; }
}

/* -------------------------------------------------------------------------
   8. Marquee
   ---------------------------------------------------------------------- */
.marquee {
  overflow: hidden; padding: 1.5rem 0; background: var(--bordeaux-deep);
  border-block: 1px solid rgba(223, 194, 146, .25);
}
.marquee__track { display: flex; align-items: center; gap: 2.2rem; width: max-content; animation: marq 46s linear infinite; }
.marquee__track span {
  font-family: var(--f-display); font-size: clamp(1.4rem, 3vw, 2.4rem); font-style: italic; font-weight: 300;
  letter-spacing: .1em; color: transparent;
  -webkit-text-stroke: .6px var(--gold); white-space: nowrap;
}
.marquee__track i { color: var(--gold); font-size: .7rem; font-style: normal; opacity: .7; }
@keyframes marq { to { transform: translateX(-50%); } }

/* -------------------------------------------------------------------------
   9. Concept
   ---------------------------------------------------------------------- */
.concept { position: relative; padding: clamp(5rem, 12vw, 10rem) 0; background: var(--ivory); }
.concept::before {
  content: ""; position: absolute; top: 0; right: 0; width: 46%; height: 74%;
  background: linear-gradient(270deg, var(--paper), rgba(239, 229, 218, 0));
  opacity: .9;
}
.concept__inner {
  position: relative; width: min(100% - var(--gutter) * 2, var(--maxw)); margin-inline: auto;
  display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 6vw, 6rem); align-items: center;
}

.concept__visual { position: relative; }
.concept__fig--main { aspect-ratio: 4 / 5; }
.concept__fig--sub {
  position: absolute; right: -8%; bottom: -10%; width: 46%; aspect-ratio: 3 / 4;
  border: 1px solid rgba(223, 194, 146, .5); box-shadow: 0 30px 70px -30px rgba(55, 12, 20, .55);
}
.concept__fig--sub figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4; padding: .7rem .8rem;
  background: linear-gradient(transparent, rgba(55, 12, 20, .85));
  font-family: var(--f-display); font-size: .64rem; letter-spacing: .22em; color: var(--gold-lt); text-align: center;
}
.concept__no {
  position: absolute; left: -.4rem; top: -3.2rem; z-index: 0;
  font-family: var(--f-display); font-style: italic; font-size: clamp(5rem, 12vw, 9rem); font-weight: 300;
  line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(191, 157, 100, .6);
}

.concept__body { position: relative; }
.concept__text { margin-top: 2.2rem; display: grid; gap: 1.4rem; color: var(--ink-70); font-size: .95rem; line-height: 2.3; }

.concept__points { margin-top: 2.8rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(90, 21, 34, .16); }
.concept__points li {
  background: var(--ivory); padding: 1.4rem .6rem; text-align: center;
  display: flex; flex-direction: column; gap: .5rem; align-items: center;
}
.concept__points em {
  font-family: var(--f-display); font-style: italic; font-size: 1.5rem; color: var(--gold-dk); line-height: 1;
}
.concept__points span { font-family: var(--f-jp); font-size: .74rem; letter-spacing: .12em; line-height: 1.9; color: var(--ink); }

@media (max-width: 980px) {
  .concept__inner { grid-template-columns: 1fr; gap: 4.5rem; }
  .concept::before { width: 70%; height: 30%; }
  .concept__fig--sub { width: 40%; right: 0; bottom: -8%; }
  .concept__no { top: -2.4rem; }
}
@media (max-width: 560px) {
  .concept__points { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   10. Service
   ---------------------------------------------------------------------- */
.service { padding: clamp(5rem, 12vw, 10rem) 0; background: var(--cream); }
.service__head { width: min(100% - var(--gutter) * 2, var(--maxw)); margin-inline: auto; text-align: center; }
.service__list { margin-top: clamp(3rem, 7vw, 6rem); display: grid; gap: clamp(3.5rem, 9vw, 8rem); }

.svc__link {
  width: min(100% - var(--gutter) * 2, var(--maxw)); margin-inline: auto;
  display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(2rem, 6vw, 5.5rem);
}
.svc:nth-child(even) .svc__link { direction: rtl; }
.svc:nth-child(even) .svc__body { direction: ltr; }

.svc__media { aspect-ratio: 16 / 11; }
.svc__media img { transition: transform 1.4s var(--ease); }
.svc__link:hover .svc__media img { transform: scale(1.06); }
.svc__no {
  position: absolute; z-index: 4; left: 1.2rem; top: .4rem;
  font-family: var(--f-display); font-style: italic; font-size: clamp(3rem, 6vw, 5rem); font-weight: 300;
  color: transparent; -webkit-text-stroke: 1px rgba(253, 251, 248, .75); line-height: 1;
}

.svc__body { direction: ltr; }
.svc__en {
  font-family: var(--f-display); font-size: .8rem; letter-spacing: .42em; text-indent: .42em;
  text-transform: uppercase; color: var(--wine);
}
.svc__ja {
  margin-top: .7rem; font-family: var(--f-jp); font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: .16em; color: var(--bordeaux); line-height: 1.4;
}
.svc__lead {
  margin-top: 1.2rem; font-family: var(--f-jp); font-size: clamp(.95rem, 1.6vw, 1.1rem);
  letter-spacing: .14em; line-height: 2; color: var(--ink);
}
.svc__text { margin-top: 1rem; font-size: .9rem; line-height: 2.2; color: var(--ink-70); }
.svc__more {
  margin-top: 1.8rem; display: inline-flex; align-items: center; gap: .9rem;
  font-family: var(--f-jp); font-size: .76rem; letter-spacing: .24em; color: var(--bordeaux);
}
.svc__more i { display: block; width: 54px; height: 1px; background: var(--gold-dk); position: relative; transition: width .6s var(--ease); }
.svc__more i::after {
  content: ""; position: absolute; right: 0; top: -2px; width: 6px; height: 6px;
  border-top: 1px solid var(--gold-dk); border-right: 1px solid var(--gold-dk); transform: rotate(45deg);
}
.svc__link:hover .svc__more i { width: 78px; }

@media (max-width: 900px) {
  .svc__link, .svc:nth-child(even) .svc__link { grid-template-columns: 1fr; direction: ltr; gap: 1.8rem; }
  .svc__media { aspect-ratio: 4 / 3; }
}

/* -------------------------------------------------------------------------
   11. Journal
   ---------------------------------------------------------------------- */
.journal { padding: clamp(4.5rem, 10vw, 8rem) 0; background: var(--ivory); }
.journal__head, .journal__list { width: min(100% - var(--gutter) * 2, var(--maxw)); margin-inline: auto; }
.journal__list { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); }
.journal__thumb { aspect-ratio: 4 / 3; }
.journal__thumb img { transition: transform 1.2s var(--ease); }
.journal__list a:hover .journal__thumb img { transform: scale(1.07); }
.journal__meta {
  margin-top: 1rem; display: flex; align-items: center; gap: 1rem;
  font-family: var(--f-display); font-size: .74rem; letter-spacing: .18em; color: var(--muted);
}
.journal__cat {
  padding: .18em 1em; border: 1px solid rgba(191, 157, 100, .6); border-radius: 999px;
  font-family: var(--f-jp); font-size: .62rem; letter-spacing: .14em; color: var(--gold-dk);
}
.journal__title {
  margin-top: .7rem; font-family: var(--f-jp); font-weight: 500; font-size: 1rem;
  line-height: 1.9; letter-spacing: .1em; color: var(--ink);
}
.journal__list a:hover .journal__title { color: var(--bordeaux); }
@media (max-width: 860px) { .journal__list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .journal__list { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------
   12. Access
   ---------------------------------------------------------------------- */
.access { position: relative; padding: clamp(5rem, 11vw, 9rem) 0; background: var(--bordeaux-deep); color: var(--rose-pale); overflow: hidden; }
.access::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 70% at 85% 0%, rgba(140, 50, 69, .45), transparent 60%);
}
.access__inner {
  position: relative; width: min(100% - var(--gutter) * 2, var(--maxw)); margin-inline: auto;
  display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2.4rem, 6vw, 5rem); align-items: center;
}
.access__dl { margin-top: 2.4rem; border-top: 1px solid rgba(223, 194, 146, .3); }
.access__dl > div {
  display: grid; grid-template-columns: 7.5rem 1fr; gap: 1rem;
  padding: 1.05rem 0; border-bottom: 1px solid rgba(223, 194, 146, .18);
}
.access__dl dt { font-family: var(--f-jp); font-size: .76rem; letter-spacing: .24em; color: var(--gold-lt); }
.access__dl dd { font-size: .9rem; line-height: 1.95; letter-spacing: .1em; }
.access__dl dd a { border-bottom: 1px solid rgba(223, 194, 146, .5); }
.access__dl dd a:hover { color: var(--gold-lt); }
.access__note { margin-top: 1.4rem; font-size: .74rem; letter-spacing: .1em; opacity: .7; }

.access__map {
  position: relative; aspect-ratio: 4 / 3.4; overflow: hidden;
  border: 1px solid rgba(223, 194, 146, .35);
}
.access__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; filter: grayscale(.35) contrast(1.05) sepia(.18); }

@media (max-width: 900px) {
  .access__inner { grid-template-columns: 1fr; }
  .access__dl > div { grid-template-columns: 6rem 1fr; }
  .access__map { aspect-ratio: 4 / 3; }
}

/* -------------------------------------------------------------------------
   13. CTA
   ---------------------------------------------------------------------- */
.cta { position: relative; padding: clamp(4.5rem, 10vw, 8rem) 0; background: var(--bordeaux); overflow: hidden; text-align: center; }
.cta__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 50% 120%, rgba(191, 157, 100, .3), transparent 70%),
    linear-gradient(180deg, var(--bordeaux-deep), var(--bordeaux));
}
.cta__bg::after {
  content: ""; position: absolute; inset: 8px; border: 1px solid rgba(223, 194, 146, .3);
}
.cta__inner { position: relative; width: min(100% - var(--gutter) * 2, 760px); margin-inline: auto; }
.cta .label { justify-content: center; }
.cta .label::after { content: ""; width: 46px; height: 1px; background: currentColor; opacity: .6; }
.cta__title { margin-top: 1.4rem; }
.cta__title-en {
  display: block; font-family: var(--f-display); font-weight: 300; font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15; color: var(--gold-lt);
}
.cta__title-ja {
  display: block; margin-top: .9rem; font-family: var(--f-jp); font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.25rem); letter-spacing: .22em; color: var(--cream);
}
.cta__text { margin-top: 1.6rem; font-size: .88rem; line-height: 2.2; letter-spacing: .1em; color: rgba(244, 231, 226, .85); }
.cta .btn { margin-top: 2.4rem; }
.cta__tel { margin-top: 1.6rem; font-size: .8rem; letter-spacing: .16em; color: rgba(244, 231, 226, .8); }
.cta__tel a { font-family: var(--f-display); font-size: 1.2rem; letter-spacing: .1em; color: var(--gold-lt); border-bottom: 1px solid rgba(223, 194, 146, .4); }

/* -------------------------------------------------------------------------
   14. Footer
   ---------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--rose-pale); padding: clamp(3.5rem, 8vw, 6rem) 0 0; }
.site-footer__inner {
  width: min(100% - var(--gutter) * 2, var(--maxw)); margin-inline: auto;
  display: grid; grid-template-columns: 1.3fr .7fr 1.2fr; gap: clamp(2rem, 5vw, 4rem);
}
.site-footer__mark { width: 62px; }
.site-footer__name { margin-top: 1rem; font-family: var(--f-display); font-size: 1.7rem; letter-spacing: .18em; color: var(--gold-lt); }
.site-footer__sub { margin-top: .4rem; font-family: var(--f-jp); font-size: .72rem; letter-spacing: .16em; opacity: .75; }
.site-footer__brand .icon-link { margin-top: 1.4rem; }
.site-footer__navtitle {
  font-family: var(--f-display); font-size: .72rem; letter-spacing: .4em; text-indent: .4em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem;
}
.site-footer__nav li { border-bottom: 1px solid rgba(223, 194, 146, .14); }
.site-footer__nav a { display: block; padding: .65rem 0; font-size: .82rem; letter-spacing: .16em; }
.site-footer__nav a:hover { color: var(--gold-lt); }
.site-footer__info dl { display: grid; grid-template-columns: 5rem 1fr; gap: .3rem 1rem; }
.site-footer__info dt { font-family: var(--f-jp); font-size: .7rem; letter-spacing: .2em; color: var(--gold); padding-top: .15rem; }
.site-footer__info dd { font-size: .8rem; line-height: 1.9; letter-spacing: .08em; }
.site-footer__info dd a { border-bottom: 1px solid rgba(223, 194, 146, .35); }
.site-footer__copy {
  margin-top: clamp(2.5rem, 6vw, 4rem); padding: 1.4rem 0;
  border-top: 1px solid rgba(223, 194, 146, .14);
  text-align: center; font-family: var(--f-display); font-size: .7rem; letter-spacing: .24em; opacity: .7;
}
@media (max-width: 900px) {
  .site-footer { padding-bottom: 4.5rem; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__copy { padding-bottom: 5.5rem; }
}

/* mobile bar ------------------------------------------------------------ */
.mobile-bar { display: none; }
@media (max-width: 900px) {
  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 6800;
    display: grid; grid-template-columns: 1fr 1fr 2fr;
    background: rgba(55, 12, 20, .96); backdrop-filter: blur(8px);
    border-top: 1px solid rgba(223, 194, 146, .3);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-bar__item {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .25rem;
    padding: .75rem .2rem; color: var(--rose-pale); font-size: .62rem; letter-spacing: .14em;
    border-right: 1px solid rgba(223, 194, 146, .18);
  }
  .mobile-bar__item--main {
    background: var(--gold); color: var(--bordeaux-deep); font-family: var(--f-jp);
    font-size: .78rem; font-weight: 500; letter-spacing: .18em; border-right: 0;
  }
}

/* to top ---------------------------------------------------------------- */
.to-top {
  position: fixed; right: calc(var(--frame) + 18px); bottom: 28px; z-index: 6500;
  width: 46px; height: 46px; display: grid; place-content: center;
  border: 1px solid rgba(191, 157, 100, .6); border-radius: 50%;
  background: rgba(247, 242, 236, .9); color: var(--bordeaux);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), background .4s, color .4s;
}
.to-top.is-in { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--bordeaux); color: var(--gold-lt); }
@media (max-width: 900px) { .to-top { bottom: 84px; right: 14px; width: 40px; height: 40px; } }

/* -------------------------------------------------------------------------
   15. Sub pages
   ---------------------------------------------------------------------- */
.page-hero { position: relative; min-height: 56svh; display: grid; align-items: end; overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { position: absolute; inset: 0; }
.page-hero__media::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(29, 19, 23, .66), rgba(55, 12, 20, .72));
}
.page-hero__inner {
  position: relative; z-index: 3; width: min(100% - var(--gutter) * 2, var(--maxw));
  margin-inline: auto; padding: 0 0 clamp(2.5rem, 6vw, 4.5rem); color: var(--cream);
}
.page-hero__en {
  font-family: var(--f-display); font-weight: 300; font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.05; color: var(--cream); display: block;
}
.page-hero__ja {
  display: block; margin-top: .8rem; font-family: var(--f-jp); font-weight: 500;
  font-size: clamp(.9rem, 1.6vw, 1.1rem); letter-spacing: .3em; color: var(--gold-lt);
}
.page-hero__lead { margin-top: 1.4rem; max-width: 46em; font-size: .9rem; line-height: 2.2; color: rgba(244, 231, 226, .9); }

.breadcrumb {
  width: min(100% - var(--gutter) * 2, var(--maxw)); margin: 1.4rem auto 0;
  font-size: .7rem; letter-spacing: .12em; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.breadcrumb a:hover { color: var(--bordeaux); }
.breadcrumb span[aria-hidden] { opacity: .5; }

.section-pad { padding: clamp(3.5rem, 9vw, 7rem) 0; }
.wrap { width: min(100% - var(--gutter) * 2, var(--maxw)); margin-inline: auto; }
.wrap--narrow { width: min(100% - var(--gutter) * 2, 840px); margin-inline: auto; }

/* card grid ------------------------------------------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); }
.card__thumb { aspect-ratio: 4 / 3; }
.card__thumb img { transition: transform 1.2s var(--ease); }
.card a:hover .card__thumb img { transform: scale(1.07); }
.card__meta { margin-top: .9rem; font-family: var(--f-display); font-size: .74rem; letter-spacing: .18em; color: var(--muted); }
.card__title {
  margin-top: .5rem; font-family: var(--f-jp); font-weight: 500; font-size: .98rem;
  line-height: 1.9; letter-spacing: .1em;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat; background-size: 0 1px; background-position: 0 100%;
  transition: background-size .6s var(--ease);
  display: inline;
}
.card a:hover .card__title { background-size: 100% 1px; }
@media (max-width: 860px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .card-grid { grid-template-columns: 1fr; } }

/* article --------------------------------------------------------------- */
.article { padding: clamp(2.2rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 6rem); }
.breadcrumb--top { margin-top: calc(var(--header-h) + clamp(1.2rem, 3vw, 2rem)); }
.article__lead { padding-bottom: 1.8rem; border-bottom: 1px solid rgba(90, 21, 34, .12); }
.article__lead p:first-child { margin-top: 0; }
.article__lead p { font-size: 1.02rem; color: var(--ink); }
.article__head { width: min(100% - var(--gutter) * 2, 840px); margin-inline: auto; }
.article__meta { display: flex; align-items: center; gap: 1rem; font-family: var(--f-display); font-size: .76rem; letter-spacing: .2em; color: var(--muted); }
.article__title {
  margin-top: 1rem; font-family: var(--f-jp); font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem); line-height: 1.7; letter-spacing: .08em; color: var(--bordeaux);
}
.article__rule { width: min(100% - var(--gutter) * 2, 840px); margin: 1.6rem auto 0; height: 1px; background: linear-gradient(90deg, var(--gold), rgba(191, 157, 100, 0)); }
.article__thumb { width: min(100% - var(--gutter) * 2, 1000px); margin: 2.4rem auto 0; aspect-ratio: 16 / 9; }

.article__body { width: min(100% - var(--gutter) * 2, 840px); margin: 2.6rem auto 0; }
.article__body p { margin-top: 1.5rem; font-size: .96rem; line-height: 2.3; letter-spacing: .06em; color: var(--ink-70); }
.article__body h2 {
  margin-top: 3.2rem; padding: .3rem 0 .3rem 1.1rem; border-left: 3px solid var(--gold);
  font-family: var(--f-jp); font-weight: 600; font-size: clamp(1.15rem, 2.3vw, 1.5rem);
  letter-spacing: .1em; line-height: 1.8; color: var(--bordeaux);
}
.article__body h3 {
  margin-top: 2.4rem; font-family: var(--f-jp); font-weight: 600; font-size: 1.08rem;
  letter-spacing: .1em; color: var(--wine);
}
.article__body ul, .article__body ol { margin-top: 1.4rem; display: grid; gap: .6rem; }
.article__body ul li { position: relative; padding-left: 1.4em; font-size: .93rem; line-height: 2.1; color: var(--ink-70); }
.article__body ul li::before { content: ""; position: absolute; left: .2em; top: 1em; width: 6px; height: 6px; border-radius: 50%; background: var(--rose); }
.article__body ol { counter-reset: n; }
.article__body ol li { position: relative; counter-increment: n; padding-left: 1.9em; font-size: .93rem; line-height: 2.1; color: var(--ink-70); }
.article__body ol li::before { content: counter(n) "."; position: absolute; left: 0; font-family: var(--f-display); color: var(--gold-dk); }
.article__body strong { background: linear-gradient(transparent 62%, var(--rose-pale) 62%); font-weight: 600; color: var(--ink); }
.article__body a { color: var(--wine); border-bottom: 1px solid rgba(140, 50, 69, .4); }
.article__body img { margin-top: 1.8rem; }
.article__body blockquote {
  margin-top: 1.8rem; padding: 1.2rem 1.6rem; background: var(--paper);
  border-left: 2px solid var(--gold); font-size: .9rem; line-height: 2.1;
}
.article__body table { width: 100%; border-collapse: collapse; margin-top: 1.8rem; font-size: .86rem; }
.article__body th, .article__body td { padding: .8rem 1rem; border: 1px solid rgba(90, 21, 34, .16); }
.article__body th { background: var(--paper); font-weight: 500; letter-spacing: .1em; }

.trt-loop { margin-top: 1rem; }
.trt-item { margin-top: 2.6rem; }
.trt-item__heading {
  margin-top: 2.6rem; padding: .3rem 0 .3rem 1.1rem; border-left: 3px solid var(--gold);
  font-family: var(--f-jp); font-weight: 600; font-size: clamp(1.15rem, 2.3vw, 1.5rem);
  letter-spacing: .1em; line-height: 1.8; color: var(--bordeaux);
}
.trt-item__img { margin-top: 1.4rem; width: 100%; }
.trt-item__text { margin-top: .4rem; }

/* profile --------------------------------------------------------------- */
.profile {
  width: min(100% - var(--gutter) * 2, 840px); margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding: clamp(1.6rem, 4vw, 2.6rem); background: var(--cream); border: 1px solid rgba(191, 157, 100, .38);
}
.profile__title {
  font-family: var(--f-display); font-size: .74rem; letter-spacing: .4em; text-indent: .4em;
  text-transform: uppercase; color: var(--gold-dk);
}
.profile__inner { margin-top: 1.4rem; display: grid; grid-template-columns: 220px 1fr; gap: clamp(1.2rem, 3vw, 2.2rem); align-items: start; }
.profile__photo { aspect-ratio: 4 / 5; overflow: hidden; }
.profile__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) sepia(.12); }
.profile__name { font-family: var(--f-display); font-size: 1.5rem; letter-spacing: .16em; color: var(--bordeaux); }
.profile__role { font-family: var(--f-jp); font-size: .7rem; letter-spacing: .24em; color: var(--muted); margin-top: .2rem; }
.profile__text { margin-top: 1rem; font-size: .85rem; line-height: 2.2; color: var(--ink-70); }
@media (max-width: 640px) { .profile__inner { grid-template-columns: 1fr; } .profile__photo { max-width: 220px; } }

/* prev / next ----------------------------------------------------------- */
.postnav { width: min(100% - var(--gutter) * 2, 840px); margin: clamp(3rem, 7vw, 4.5rem) auto 0; display: flex; justify-content: space-between; gap: 1rem; }
.postnav a { display: inline-flex; align-items: center; gap: .6rem; font-size: .8rem; letter-spacing: .14em; color: var(--bordeaux); }
.postnav a:hover { color: var(--wine); }

/* pagination ------------------------------------------------------------ */
.pagination { margin-top: 3.5rem; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: .5rem; align-items: center; }
.pagination .page-numbers {
  display: grid; place-content: center; min-width: 42px; height: 42px; padding: 0 .6rem;
  border: 1px solid rgba(90, 21, 34, .2); font-family: var(--f-display); font-size: .9rem; letter-spacing: .1em;
  transition: background .4s, color .4s, border-color .4s;
}
.pagination .page-numbers:hover, .pagination .page-numbers.current {
  background: var(--bordeaux); border-color: var(--bordeaux); color: var(--gold-lt);
}

/* 404 / empty ----------------------------------------------------------- */
.empty { text-align: center; padding: clamp(4rem, 10vw, 8rem) 0; }
.empty__num { font-family: var(--f-display); font-style: italic; font-size: clamp(4rem, 14vw, 9rem); color: transparent; -webkit-text-stroke: 1px var(--gold); line-height: 1; }
.empty__text { margin-top: 1.4rem; font-family: var(--f-jp); font-size: 1rem; letter-spacing: .16em; }
.empty .btn { margin-top: 2.2rem; color: var(--bordeaux); border-color: rgba(90, 21, 34, .4); --btn-bg: var(--bordeaux); }
.empty .btn:hover { color: var(--gold-lt); }

/* -------------------------------------------------------------------------
   16. Motion preferences
   ---------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
  .reveal--wipe::before { display: none; }
  .reveal--wipe img { transform: none; }
  .split-char { opacity: 1; transform: none; }
}
