
:root {
  --paper: #e9e1d4;
  --paper-light: #f3ecdf;
  --ink: #171513;
  --ink-soft: #4d463f;
  --red: #9d271f;
  --gold: #a78357;
  --line: rgba(50, 39, 28, 0.38);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", Georgia, serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #11100f;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(255,255,255,.45), transparent 25%),
    radial-gradient(circle at 83% 38%, rgba(92,66,42,.08), transparent 31%),
    var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: .13;
  pointer-events: none;
  content: "";
  background-image:
    repeating-radial-gradient(circle at 18% 27%, rgba(50,38,22,.22) 0 0.6px, transparent .7px 4px),
    repeating-linear-gradient(100deg, rgba(255,255,255,.17) 0 1px, transparent 1px 5px);
  mix-blend-mode: multiply;
}

body.modal-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

main {
  position: relative;
  overflow: clip;
  min-height: 100vh;
}

.paper-section {
  position: relative;
  background:
    linear-gradient(118deg, rgba(255,255,255,.34), transparent 38%),
    radial-gradient(circle at 72% 24%, rgba(83,56,30,.08), transparent 45%),
    var(--paper-light);
}

.site-header {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: 180px 1fr 120px;
  align-items: center;
  height: 84px;
  padding: 0 30px;
  border-bottom: 1px solid rgba(76,51,32,.2);
  background: rgba(242,235,223,.97);
  box-shadow: 0 2px 18px rgba(19,15,10,.08);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--red);
  line-height: 1;
}

.brand strong {
  font-family: Georgia, var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -.025em;
}

.brand span {
  margin-top: 7px;
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: .42em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.1vw, 35px);
  height: 100%;
}

.desktop-nav button {
  position: relative;
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
}

.desktop-nav button::after {
  position: absolute;
  right: 50%;
  bottom: 19px;
  left: 50%;
  height: 1px;
  content: "";
  background: var(--red);
  transition: right .3s ease, left .3s ease;
}

.desktop-nav button:hover::after,
.desktop-nav button.active::after {
  right: 0;
  left: 0;
}

.social-nav {
  display: flex;
  justify-content: flex-end;
  gap: 11px;
}

.social-nav a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(30,27,24,.7);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 11px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.social-nav a:hover {
  color: var(--paper-light);
  background: var(--ink);
  transform: translateY(-2px);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  height: min(660px, calc(100vh - 84px));
  min-height: 570px;
  overflow: hidden;
  color: white;
  background: #12110f;
}

.hero-image {
  position: absolute;
  inset: -7% 0 0;
  height: 114%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,7,9,.86) 0%, rgba(4,6,8,.52) 27%, rgba(4,4,4,.06) 55%, rgba(3,3,3,.18) 100%),
    linear-gradient(0deg, rgba(0,0,0,.5), transparent 35%);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(58px, 6vw, 110px);
  transform: translateY(-48%);
}

.eyebrow {
  margin: 0 0 20px;
  color: #cfb996;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .24em;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 4vw, 66px);
  font-weight: 400;
  line-height: 1.47;
  letter-spacing: .09em;
  text-shadow: 0 3px 18px rgba(0,0,0,.55);
}

.hero-description {
  margin: 13px 0 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
}

.red-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 160px;
  height: 46px;
  padding: 0 24px;
  color: white;
  background: linear-gradient(90deg, #872019, #ac3027);
  box-shadow: 0 8px 24px rgba(83,16,12,.28);
  font-family: Georgia, var(--serif);
  font-size: 13px;
  letter-spacing: .15em;
  transition: width .3s ease, background .3s ease;
}

.red-button:hover {
  width: 176px;
  background: var(--red);
}

.road-mark {
  position: absolute;
  z-index: 2;
  right: 5.5vw;
  bottom: 70px;
  display: flex;
  width: 155px;
  flex-direction: column;
  align-items: center;
  color: #e8dfd0;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,.65));
  transform: rotate(-5deg);
}

.road-mark::before,
.road-mark::after {
  width: 100%;
  height: 1px;
  margin: 6px 0;
  content: "";
  background: rgba(232,223,208,.65);
}

.road-mark span {
  font-family: cursive;
  font-size: 27px;
}

.road-mark b {
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .25em;
}

.road-mark small {
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: .18em;
}

.hero-dots {
  display: none;
}

.quick-nav {
  display: none;
}

.feature-mosaic {
  z-index: 5;
  display: grid;
  grid-template-columns: 1.05fr 1.03fr .92fr 1.5fr .62fr;
  height: 410px;
  margin: -56px 26px 24px;
  padding: 8px;
  border: 1px solid rgba(62,45,30,.38);
  box-shadow: 0 10px 28px rgba(38,29,20,.15);
}

.mosaic-card,
.feature-photo,
.film-strip {
  position: relative;
  overflow: hidden;
  border-right: 7px solid var(--paper-light);
}

.mosaic-card,
.feature-photo,
.film-strip button,
.story-small,
.mini-strip button {
  cursor: pointer;
}

.mosaic-card > img,
.feature-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter .5s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.mosaic-card:hover > img,
.feature-photo:hover > img {
  filter: contrast(1.06);
  transform: scale(1.035);
}

.gallery-card > img {
  object-position: 50% 24%;
}

.story-card > img {
  object-position: 50% 24%;
}

.mosaic-card > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 112px;
  grid-template-columns: 1fr auto;
  padding: 19px 20px 14px;
  color: var(--ink);
  background: rgba(242,235,223,.96);
}

.mosaic-card div b {
  align-self: end;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  line-height: .96;
  letter-spacing: .03em;
}

.mosaic-card div span {
  grid-column: 1;
  margin-top: 5px;
  font-family: var(--sans);
  font-size: 10px;
}

.mosaic-card div > span:last-child {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: end;
  font-size: 19px;
}

.feature-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 13px;
  border-right: 7px solid var(--paper-light);
  text-align: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(133,83,47,.09), transparent 30%),
    #eee5d6;
}

.feature-title p {
  margin: 0 0 4px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .11em;
}

.feature-title h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: .18em;
}

.feature-title i {
  width: 80%;
  height: 1px;
  margin: 13px 0 15px;
  background: rgba(40,32,26,.45);
}

.feature-title strong {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .05em;
}

.feature-title > span {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.7;
}

.feature-title button,
.profile-copy button,
.news-copy > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 125px;
  height: 35px;
  margin-top: 15px;
  padding: 0 14px;
  color: white;
  background: var(--ink);
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: .11em;
}

.feature-photo img {
  object-position: 61% center;
}

.feature-photo > span {
  position: absolute;
  right: 17px;
  bottom: 17px;
  color: #aa2e25;
  font-family: cursive;
  font-size: 28px;
  font-weight: 600;
  line-height: .8;
  transform: rotate(-8deg);
}

.film-strip {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 6px;
  padding: 7px;
  border-right: 0;
  background: #171512;
}

.film-strip::before,
.film-strip::after {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 4px;
  content: "";
  background: repeating-linear-gradient(0deg, transparent 0 9px, #c7b99e 9px 14px);
  opacity: .55;
}

.film-strip::before { left: 1px; }
.film-strip::after { right: 1px; }

.film-strip button {
  overflow: hidden;
}

.film-strip img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.film-strip button:hover img {
  transform: scale(1.08);
}

.three-gallery {
  position: relative;
  z-index: 3;
  background: #15120f;
}

.gallery-stage {
  position: relative;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  color: #efe5d5;
  background:
    radial-gradient(ellipse at 50% 65%, rgba(133,96,57,.22), transparent 42%),
    linear-gradient(#171411, #0c0b0a);
}

.gallery-stage::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 120px rgba(0,0,0,.72);
}

.gallery-grid {
  position: absolute;
  right: -20%;
  bottom: -48%;
  left: -20%;
  height: 92%;
  opacity: .32;
  background-image:
    linear-gradient(rgba(179,132,78,.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179,132,78,.22) 1px, transparent 1px);
  background-size: 76px 56px;
  transform: perspective(560px) rotateX(66deg);
  transform-origin: bottom;
}

.gallery-heading {
  position: absolute;
  z-index: 6;
  top: 7.8vh;
  left: 5.6vw;
  max-width: 530px;
  pointer-events: none;
}

.gallery-heading p {
  margin: 0 0 10px;
  color: #aa8b66;
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: .2em;
}

.gallery-heading h2 {
  margin: 0;
  font-size: clamp(32px, 3.2vw, 52px);
  font-weight: 400;
  letter-spacing: .08em;
}

.gallery-heading > span {
  display: block;
  margin-top: 12px;
  color: #b9aa97;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .05em;
}

.three-mount {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .45s ease;
}

.gallery-stage.is-ready .three-mount {
  opacity: 1;
}

.gallery-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}

.gallery-stage.is-fallback .gallery-fallback {
  opacity: 1;
  pointer-events: auto;
}

.gallery-fallback-track {
  position: absolute;
  top: 51%;
  left: 9vw;
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(26px, 4vw, 64px);
  transform: translateY(-39%);
  will-change: transform;
}

.fallback-card {
  position: relative;
  width: clamp(220px, 22vw, 350px);
  height: clamp(325px, 33vw, 520px);
  padding: 7px;
  border: 1px solid rgba(190,151,100,.74);
  background: #171411;
  box-shadow: 0 25px 45px rgba(0,0,0,.42);
  transform: rotate(1deg);
}

.fallback-card:nth-child(even) {
  transform: translateY(38px) rotate(-1.25deg);
}

.fallback-card.landscape {
  width: clamp(340px, 34vw, 540px);
  height: clamp(235px, 23vw, 360px);
}

.fallback-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fallback-card > span {
  position: absolute;
  right: 17px;
  bottom: 15px;
  left: 17px;
  padding-top: 8px;
  border-top: 1px solid rgba(239,221,193,.52);
  color: #e4cfad;
  font-family: Georgia, serif;
  font-size: 8px;
  letter-spacing: .16em;
  text-align: left;
  text-shadow: 0 2px 5px #000;
}

.three-mount canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
}

.three-mount canvas.is-dragging {
  cursor: grabbing;
}

.gallery-hud {
  position: absolute;
  z-index: 7;
  top: 50%;
  right: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.gallery-hud button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(222,200,169,.72);
  border-radius: 50%;
  background: rgba(14,12,10,.3);
  pointer-events: auto;
  font-size: 20px;
  backdrop-filter: blur(5px);
  transition: color .25s ease, background .25s ease;
}

.gallery-hud button:hover {
  color: #17130f;
  background: #d9c5a5;
}

.gallery-counter {
  position: absolute;
  top: -275px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #9d896f;
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: .12em;
}

.gallery-counter b {
  color: #efe5d5;
  font-size: 16px;
}

.gallery-counter i {
  width: 30px;
  height: 1px;
  background: #8e7454;
}

.gallery-bottom {
  position: absolute;
  z-index: 7;
  right: 4vw;
  bottom: 5.5vh;
  left: 4vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #a99478;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: .18em;
}

.gallery-dots {
  display: flex;
  gap: 13px;
}

.gallery-dots button {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #77644e;
  transition: background .25s ease, transform .25s ease;
}

.gallery-dots button.active {
  background: #f2dfbd;
  box-shadow: 0 0 0 4px rgba(185,145,91,.17);
  transform: scale(1.35);
}

.outline-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 158px;
  height: 42px;
  justify-self: end;
  padding: 0 18px;
  border: 1px solid #a68b65;
  color: #eadbc2;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: .12em;
  transition: color .25s ease, background .25s ease;
}

.outline-button:hover {
  color: #17130f;
  background: #ddc9a8;
}

.ticker {
  overflow: hidden;
  padding: 14px 0 11px;
  border-top: 1px solid #4a3b2b;
  border-bottom: 1px solid #4a3b2b;
  color: #b49770;
  background: #11100f;
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: .25em;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  width: max-content;
}

.ticker-track span {
  min-width: 100vw;
  padding-right: 40px;
}

.story-block {
  display: grid;
  grid-template-columns: 1.05fr 1.58fr .72fr .72fr;
  gap: 7px;
  margin: 24px;
  padding: 7px;
  border: 1px solid rgba(63,44,27,.35);
}

.story-copy {
  display: flex;
  min-height: 305px;
  flex-direction: column;
  justify-content: center;
  padding: 34px 38px;
  color: #eee4d5;
  background:
    radial-gradient(circle at 20% 15%, rgba(149,100,61,.16), transparent 35%),
    #151412;
}

.story-copy > p,
.news-copy > p {
  margin: 0 0 10px;
  color: #a63b32;
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: .08em;
}

.story-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(25px, 2.3vw, 38px);
  font-weight: 400;
  letter-spacing: .08em;
}

.story-copy > span {
  color: #c9bdad;
  font-family: var(--sans);
  font-size: 11px;
  line-height: 2;
}

.story-copy .outline-button {
  width: 132px;
  min-width: 0;
  height: 37px;
  justify-self: auto;
  margin-top: 22px;
}

.story-wide,
.story-small {
  min-height: 305px;
  overflow: hidden;
}

.story-wide img,
.story-small img {
  height: 100%;
  object-fit: cover;
}

.story-wide img { object-position: center 44%; }
.story-small:nth-of-type(3) img { object-position: 51% 25%; }

.profile-news {
  display: grid;
  grid-template-columns: 1.18fr .46fr 1.65fr;
  gap: 8px;
  margin: 0 24px 22px;
  padding: 0;
  background: transparent;
}

.profile-card {
  display: grid;
  min-height: 330px;
  grid-template-columns: .93fr 1.07fr;
  border: 1px solid rgba(65,46,29,.4);
  background: #eee6da;
}

.profile-image {
  min-width: 0;
  overflow: hidden;
}

.profile-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.profile-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 22px;
}

.profile-copy > p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 22px;
}

.profile-copy > span {
  margin-top: 3px;
  font-family: var(--sans);
  font-size: 9px;
}

.profile-copy h2 {
  margin: 13px 0 11px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .08em;
}

.profile-copy h2 small {
  font-family: var(--sans);
  font-size: 9px;
}

.profile-copy dl {
  margin: 0;
  font-family: var(--sans);
  font-size: 9px;
  line-height: 1.75;
}

.profile-copy dl div {
  display: grid;
  grid-template-columns: 62px 1fr;
}

.profile-copy dt {
  color: #7f302a;
  font-family: Georgia, serif;
}

.profile-copy dd {
  margin: 0;
}

.profile-copy button {
  width: 120px;
}

.coming-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 4px double #b28d5e;
  color: #e5c89f;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(168,64,43,.26), transparent 42%),
    #4a241c;
  box-shadow: inset 0 0 40px rgba(0,0,0,.42);
}

.coming-card::after {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(224,180,117,.45);
  pointer-events: none;
  content: "";
}

.coming-card small {
  font-size: 8px;
  letter-spacing: .18em;
}

.coming-card h2 {
  margin: 15px 0 9px;
  font-family: Georgia, serif;
  font-size: clamp(23px, 2.3vw, 39px);
  font-weight: 500;
  line-height: .93;
}

.coming-card i {
  color: #b65a3c;
  font-size: 9px;
  letter-spacing: .22em;
}

.coming-card p {
  margin: 17px 0 5px;
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.15;
}

.coming-card b {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.news-card {
  display: grid;
  min-width: 0;
  grid-template-columns: 1.37fr .73fr;
  border: 1px solid rgba(65,46,29,.4);
  color: #e8ddcc;
  background: #171513;
}

.news-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 29px 30px;
}

.news-copy h2 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 400;
}

.news-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--sans);
  font-size: 9px;
}

.news-copy li {
  display: grid;
  grid-template-columns: 68px 48px 1fr;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(222,204,180,.15);
}

.news-copy li time {
  color: #968774;
  font-size: 8px;
}

.news-copy li b {
  padding: 2px 4px;
  border: 1px solid rgba(220,204,183,.45);
  font-family: Georgia, serif;
  font-size: 7px;
  font-weight: 400;
  text-align: center;
}

.news-copy > button {
  width: 118px;
  border: 1px solid #89745b;
}

.news-image {
  min-width: 0;
  overflow: hidden;
}

.news-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: sepia(.16) contrast(1.05);
}

.mini-gallery {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 7px;
  margin: 0 24px 24px;
  padding: 7px;
  border: 1px solid rgba(65,46,29,.4);
}

.mini-gallery-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 18px;
}

.mini-gallery-title h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: .04em;
}

.mini-gallery-title span {
  margin-top: 2px;
  font-family: var(--sans);
  font-size: 9px;
}

.mini-gallery-title button {
  display: flex;
  width: 114px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 8px 12px;
  border: 1px solid #9b5d51;
  color: #852a23;
  font-family: Georgia, serif;
  font-size: 8px;
}

.mini-strip {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  overflow: hidden;
}

.mini-strip button {
  min-width: 0;
  overflow: hidden;
}

.mini-strip img {
  height: 150px;
  object-fit: cover;
  transition: filter .35s ease, transform .45s ease;
}

.mini-strip button:nth-child(3n) img {
  filter: grayscale(1);
}

.mini-strip button:hover img {
  filter: none;
  transform: scale(1.08);
}

footer {
  display: grid;
  min-height: 180px;
  grid-template-columns: 220px 1fr 290px;
  align-items: center;
  gap: 30px;
  padding: 30px 44px;
  border-top: 1px solid #4d3c2b;
  color: #b8a58b;
  background:
    radial-gradient(circle at 90% 40%, rgba(151,94,43,.12), transparent 31%),
    #171614;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-family: Georgia, serif;
  font-size: 35px;
  font-weight: 400;
  letter-spacing: -.02em;
}

.footer-brand span {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: .42em;
}

.footer-links {
  font-family: var(--sans);
  font-size: 9px;
  line-height: 1.8;
}

.footer-links p {
  margin: 0;
}

.footer-links small {
  display: block;
  margin-top: 18px;
  color: #7f7466;
  font-size: 8px;
}

.footer-mark {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  color: #a57b4b;
  transform: rotate(-4deg);
}

.footer-mark span {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.footer-mark b {
  font-family: Georgia, serif;
  font-size: 68px;
  font-weight: 400;
}

.mobile-bottom-nav {
  display: none;
}

.lightbox {
  --lightbox-tone: #161412;
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  color: white;
  background:
    radial-gradient(circle at 50% 48%, color-mix(in srgb, var(--lightbox-tone), white 11%), transparent 56%),
    color-mix(in srgb, var(--lightbox-tone), black 54%);
  animation: lightbox-in .45s cubic-bezier(.2,.7,.2,1) both;
}

@keyframes lightbox-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(214,190,156,.25);
  pointer-events: none;
  content: "";
}

.lightbox figure {
  display: grid;
  width: min(84vw, 1140px);
  height: min(78vh, 760px);
  grid-template-columns: minmax(0, 1fr) 210px;
  margin: 0;
  background: #0e0d0c;
  box-shadow: 0 30px 100px rgba(0,0,0,.62);
}

.lightbox-image {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.lightbox-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #080807;
}

.lightbox-image.landscape img {
  object-fit: cover;
}

.lightbox figcaption {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 25px;
  border-left: 1px solid rgba(214,190,156,.22);
  color: #c9b89e;
}

.lightbox figcaption span,
.lightbox figcaption small {
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: .15em;
}

.lightbox figcaption strong {
  margin: 10px 0 40px;
  color: white;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .08em;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 32px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(230,211,186,.6);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 23px;
  font-weight: 200;
}

.lightbox-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(230,211,186,.6);
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  transform: translateY(-50%);
}

.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 145px 1fr 105px; padding: 0 20px; }
  .desktop-nav { gap: 15px; }
  .desktop-nav button { font-size: 10px; }
  .desktop-nav button:nth-child(n+8) { display: none; }
  .feature-mosaic { height: 370px; grid-template-columns: 1fr 1fr .9fr 1.35fr .55fr; }
  .feature-title strong { font-size: 20px; }
  .profile-news { grid-template-columns: 1.1fr .42fr 1.5fr; }
  .news-copy { padding: 22px 18px; }
  .news-copy li { grid-template-columns: 55px 42px 1fr; gap: 5px; }
}

@media (max-width: 820px) {
  body { padding-bottom: 66px; }
  .site-header {
    position: relative;
    grid-template-columns: 1fr 48px;
    height: 72px;
    padding: 0 20px;
  }
  .brand strong { font-size: 29px; }
  .brand span { margin-top: 5px; }
  .desktop-nav,
  .social-nav { display: none; }
  .menu-button {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
  }
  .menu-icon {
    display: flex;
    width: 31px;
    flex-direction: column;
    gap: 7px;
  }
  .menu-icon i {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    transition: transform .3s ease, opacity .3s ease;
  }
  .menu-icon.is-open i:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .menu-icon.is-open i:nth-child(2) { opacity: 0; }
  .menu-icon.is-open i:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 72px 0 66px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    padding: 38px 26px;
    color: #e9ddca;
    background: rgba(20,18,16,.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity .35s ease, transform .35s ease;
  }
  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .mobile-menu > p {
    display: flex;
    flex-direction: column;
    margin: 0 0 28px;
    color: #b43a30;
    font-family: Georgia, serif;
    font-size: 30px;
  }
  .mobile-menu > p span {
    margin-top: 5px;
    color: #8f806e;
    font-family: var(--sans);
    font-size: 8px;
    letter-spacing: .22em;
  }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu nav button {
    display: grid;
    grid-template-columns: 35px 1fr auto;
    align-items: center;
    padding: 15px 2px;
    border-bottom: 1px solid rgba(219,198,169,.18);
    text-align: left;
    font-size: 18px;
  }
  .mobile-menu nav small { color: #8c6f4d; font-family: Georgia, serif; font-size: 9px; }
  .hero {
    height: min(740px, calc(100svh - 72px));
    min-height: 600px;
  }
  .hero-image {
    inset: 0;
    height: 100%;
    object-position: 65% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5,6,6,.83), rgba(3,4,4,.18) 68%),
      linear-gradient(0deg, rgba(0,0,0,.72), transparent 49%);
  }
  .hero-copy {
    top: auto;
    right: 22px;
    bottom: 108px;
    left: 23px;
    transform: none;
  }
  .eyebrow { margin-bottom: 12px; font-size: 7px; }
  .hero-copy h1 {
    font-size: clamp(31px, 8.7vw, 44px);
    line-height: 1.42;
    letter-spacing: .08em;
  }
  .hero-description { max-width: 300px; margin: 10px 0 18px; font-size: 10px; line-height: 1.65; }
  .red-button { width: 140px; height: 41px; font-size: 11px; }
  .road-mark { right: 18px; bottom: 27px; width: 112px; }
  .road-mark span { font-size: 20px; }
  .road-mark b { font-size: 11px; }
  .road-mark small { font-size: 7px; }
  .hero-dots {
    position: absolute;
    z-index: 3;
    bottom: 72px;
    left: 50%;
    display: flex;
    gap: 12px;
    transform: translateX(-50%);
  }
  .hero-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.85); }
  .hero-dots i.active { background: var(--red); }
  .quick-nav {
    position: relative;
    z-index: 8;
    display: flex;
    width: calc(100% - 14px);
    margin: -52px auto 8px;
    justify-content: center;
  }
  .quick-nav button {
    display: flex;
    min-width: 0;
    flex: 1;
    aspect-ratio: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: -4px;
    border: 1px solid #d7c8b4;
    border-radius: 50%;
    color: #e9dfd0;
    background: #1b1916;
    box-shadow: 0 5px 18px rgba(0,0,0,.24);
  }
  .quick-nav button:first-child { margin-left: 0; }
  .quick-nav button.featured { z-index: 2; color: #8f2a23; background: #eee5d7; transform: scale(1.1); }
  .quick-nav i { font-family: var(--sans); font-size: 19px; font-style: normal; line-height: 1; }
  .quick-nav b { margin-top: 6px; font-family: Georgia, serif; font-size: clamp(7px, 2vw, 10px); font-weight: 500; }
  .quick-nav span { margin-top: 2px; font-family: var(--sans); font-size: clamp(6px, 1.65vw, 8px); }
  .feature-mosaic {
    grid-template-columns: minmax(0, 1fr) 84px;
    grid-template-rows: 390px;
    height: auto;
    margin: 0 12px 14px;
    padding: 6px;
  }
  .gallery-card,
  .story-card,
  .feature-title { display: none; }
  .feature-photo { grid-column: 1; border-right-width: 6px; }
  .feature-photo::before {
    position: absolute;
    z-index: 2;
    top: 22px;
    left: 20px;
    color: #f1e8da;
    content: "FEATURE\A PORTRAIT\A IN LONDON";
    font-family: Georgia, serif;
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: .05em;
    text-shadow: 0 2px 12px rgba(0,0,0,.65);
    white-space: pre;
  }
  .feature-photo::after {
    position: absolute;
    z-index: 2;
    bottom: 24px;
    left: 20px;
    padding: 9px 15px;
    border: 1px solid white;
    color: white;
    content: "VIEW MORE  →";
    font-family: Georgia, serif;
    font-size: 8px;
    letter-spacing: .11em;
  }
  .feature-photo img { object-position: 67% center; filter: brightness(.82); }
  .feature-photo > span { right: 14px; bottom: 22px; color: #cc3e33; font-size: 23px; }
  .film-strip { grid-column: 2; }
  .gallery-stage { min-height: 650px; }
  .gallery-heading {
    top: 62px;
    right: 24px;
    left: 24px;
  }
  .gallery-heading p { font-size: 8px; }
  .gallery-heading h2 { font-size: clamp(28px, 8vw, 38px); }
  .gallery-heading > span { max-width: 330px; font-size: 8px; line-height: 1.7; }
  .gallery-hud { right: 10px; left: 10px; }
  .gallery-hud button { width: 42px; height: 42px; font-size: 16px; }
  .gallery-counter { display: none; }
  .gallery-bottom {
    right: 18px;
    bottom: 80px;
    left: 18px;
    grid-template-columns: 1fr auto;
  }
  .gallery-bottom > span { display: none; }
  .gallery-dots { gap: 9px; }
  .gallery-bottom .outline-button { min-width: 115px; height: 37px; padding: 0 12px; font-size: 7px; }
  .story-block {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin: 14px 12px;
    padding: 5px;
  }
  .story-copy { grid-column: 1 / -1; min-height: 290px; padding: 32px 25px; }
  .story-copy h2 { font-size: 28px; }
  .story-wide { grid-column: 1 / -1; min-height: 230px; }
  .story-small { min-height: 220px; }
  .profile-news {
    grid-template-columns: 1fr;
    gap: 9px;
    margin: 0 12px 14px;
  }
  .profile-card { min-height: 285px; grid-template-columns: .86fr 1.14fr; }
  .profile-copy { padding: 18px 15px; }
  .profile-copy > p { font-size: 19px; }
  .profile-copy h2 { font-size: 17px; }
  .profile-copy dl { font-size: 7px; }
  .profile-copy dl div { grid-template-columns: 50px 1fr; }
  .coming-card { min-height: 280px; }
  .news-card { min-height: 300px; grid-template-columns: 1.35fr .65fr; }
  .news-copy { padding: 22px 16px; }
  .news-copy li { grid-template-columns: 49px 39px 1fr; font-size: 7px; }
  .mini-gallery {
    grid-template-columns: 1fr;
    margin: 0 12px 14px;
    padding: 5px;
  }
  .mini-gallery-title { display: grid; grid-template-columns: 1fr auto; padding: 12px; }
  .mini-gallery-title span { grid-column: 1; }
  .mini-gallery-title button { grid-row: 1 / 3; grid-column: 2; margin: 0; align-self: center; }
  .mini-strip { grid-template-columns: repeat(8, 105px); overflow-x: auto; scrollbar-width: none; }
  .mini-strip::-webkit-scrollbar { display: none; }
  .mini-strip img { height: 125px; }
  footer {
    min-height: 260px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px 24px;
  }
  .footer-links { grid-row: 2; grid-column: 1 / -1; }
  .footer-mark { gap: 15px; }
  .footer-mark span { font-size: 14px; }
  .footer-mark b { font-size: 48px; }
  .mobile-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 150;
    display: grid;
    height: 66px;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid #cbbba6;
    background: rgba(250,247,241,.98);
    box-shadow: 0 -5px 20px rgba(21,16,12,.12);
  }
  .mobile-bottom-nav button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #2c2925;
  }
  .mobile-bottom-nav button.active { color: var(--red); }
  .mobile-bottom-nav button.active::before {
    position: absolute;
    top: -1px;
    width: 25px;
    height: 3px;
    content: "";
    background: var(--red);
  }
  .mobile-bottom-nav i { font-family: var(--sans); font-size: 19px; font-style: normal; line-height: 1; }
  .mobile-bottom-nav span { margin-top: 6px; font-family: var(--sans); font-size: 7px; letter-spacing: .09em; }
  .lightbox::before { inset: 8px; }
  .lightbox figure {
    width: calc(100vw - 28px);
    height: calc(100svh - 116px);
    grid-template-rows: minmax(0, 1fr) 94px;
    grid-template-columns: 1fr;
  }
  .lightbox figcaption {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 15px 18px;
    border-top: 1px solid rgba(214,190,156,.22);
    border-left: 0;
  }
  .lightbox figcaption strong { grid-row: 2; margin: 6px 0 0; font-size: 16px; }
  .lightbox figcaption small { grid-row: 1 / 3; grid-column: 2; align-self: end; }
  .lightbox-close { top: 15px; right: 16px; width: 38px; height: 38px; }
  .lightbox-arrow { top: auto; bottom: 24px; width: 38px; height: 38px; transform: none; }
  .lightbox-prev { left: auto; right: 65px; }
  .lightbox-next { right: 18px; }
}

@media (max-width: 420px) {
  .site-header { padding: 0 16px; }
  .hero-copy { right: 18px; left: 18px; }
  .quick-nav { width: calc(100% - 8px); }
  .quick-nav b { letter-spacing: -.03em; }
  .feature-mosaic { grid-template-columns: minmax(0, 1fr) 72px; grid-template-rows: 350px; margin-right: 8px; margin-left: 8px; }
  .gallery-heading { right: 18px; left: 18px; }
  .gallery-bottom { grid-template-columns: 1fr; justify-items: center; gap: 18px; }
  .gallery-bottom .outline-button { justify-self: center; }
  .profile-card { grid-template-columns: .8fr 1.2fr; }
  .profile-copy { padding: 14px 11px; }
  .profile-copy dl div:nth-child(3) { display: none; }
  .news-card { grid-template-columns: 1fr 92px; }
  .news-copy li { grid-template-columns: 45px 34px 1fr; gap: 4px; }
  .news-copy li span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  footer { grid-template-columns: 1fr auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   2026-07 Brush-up additions
   1) fallback-card tap fix   2) lightbox robustness
   3) hero FV title (svg)     4) profile detail modal
   ============================================================ */

/* --- 1) 横スクロール（フォールバック）タップ不能の根治：
       空の .three-mount がカードの上に重なりクリックを奪っていた --- */
.gallery-stage:not(.is-ready) .three-mount {
  pointer-events: none;
}

.fallback-card {
  cursor: pointer;
}

/* --- 2) 拡大表示（ライトボックス）の画像を必ず表示させる --- */
@media (min-width: 821px) {
  .lightbox figure {
    grid-template-rows: minmax(0, 1fr);
  }
}

.lightbox-image {
  display: grid;
  place-items: center;
  min-height: min(52vh, 480px);
  background: #080807;
}

.lightbox-image img {
  width: 100%;
  height: 100%;
  max-height: min(78vh, 760px);
  object-fit: contain;
}

.lightbox-image img.is-error {
  min-height: 240px;
  opacity: .25;
}

/* --- 3) ヒーローの手書きタイトル（FV文字.svg） --- */
.hero-fv-title {
  margin: 0 0 4px;
  line-height: 0;
}

.hero-fv-title img {
  display: block;
  width: min(560px, 43vw);
  height: auto;
  filter: drop-shadow(0 6px 26px rgba(0,0,0,.58));
}

/* --- 4) プロフィール詳細モーダル --- */
.profile-card.is-clickable {
  cursor: pointer;
}

.profile-card.is-clickable:hover .profile-image img {
  filter: contrast(1.05);
}

.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 44px);
}

.profile-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(64,46,30,.34), transparent 58%),
    rgba(12,10,8,.82);
}

.profile-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  overflow: hidden;
  width: min(960px, 94vw);
  max-height: min(86vh, 720px);
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  border: 1px solid rgba(90,64,40,.5);
  background:
    linear-gradient(118deg, rgba(255,255,255,.4), transparent 42%),
    radial-gradient(circle at 78% 18%, rgba(83,56,30,.09), transparent 46%),
    var(--paper-light);
  box-shadow: 0 40px 110px rgba(10,7,4,.55);
}

.profile-modal-panel::before {
  position: absolute;
  inset: 10px;
  z-index: 3;
  border: 1px solid rgba(140,104,64,.32);
  pointer-events: none;
  content: "";
}

.profile-modal-media {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: #171411;
}

.profile-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.profile-modal-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(12deg, rgba(10,8,6,.42), transparent 46%);
}

.pm-tag {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: 18px;
  color: #e7d9c2;
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: .22em;
}

.profile-modal-body {
  overflow-y: auto;
  padding: clamp(26px, 3.4vw, 44px) clamp(24px, 3.2vw, 46px) clamp(22px, 3vw, 38px);
}

.pm-eyebrow {
  margin: 0 0 6px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
}

.pm-kana {
  display: block;
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .34em;
}

.pm-name {
  margin: 0;
  font-family: Georgia, var(--serif);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.05;
}

.pm-name small {
  margin-left: 10px;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .14em;
}

.pm-rule {
  width: 100%;
  height: 1px;
  margin: 18px 0;
  background: rgba(50,39,28,.34);
}

.pm-lead {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: .06em;
}

.profile-modal dl {
  margin: 0 0 18px;
}

.profile-modal dl div {
  display: grid;
  grid-template-columns: 96px 1fr;
  padding: 8px 2px;
  border-bottom: 1px solid rgba(50,39,28,.22);
}

.profile-modal dt {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: .16em;
  align-self: center;
}

.profile-modal dd {
  margin: 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .04em;
}

.pm-bio {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 12.5px;
  line-height: 2.05;
  letter-spacing: .04em;
}

.pm-links {
  display: flex;
  gap: 10px;
}

.pm-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 132px;
  height: 37px;
  padding: 0 15px;
  color: white;
  background: var(--ink);
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: .13em;
  transition: background .3s cubic-bezier(.2,.7,.2,1), transform .3s cubic-bezier(.2,.7,.2,1);
}

.pm-links a:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.profile-modal-close {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(60,44,30,.55);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(243,236,223,.9);
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 200;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.profile-modal-close:hover {
  color: var(--paper-light);
  background: var(--ink);
  transform: rotate(90deg);
}

@media (max-width: 820px) {
  .hero-fv-title img {
    width: min(80vw, 430px);
  }

  .profile-modal-panel {
    grid-template-columns: 1fr;
    max-height: 88vh;
    overflow-y: auto;
  }

  .profile-modal-media {
    min-height: 0;
    height: 300px;
  }

  .profile-modal-media img {
    object-position: 50% 22%;
  }

  .profile-modal-body {
    overflow-y: visible;
  }

  .pm-links {
    flex-direction: column;
  }

  .pm-links a {
    width: 100%;
  }
}

/* --- フォーカスリング：マウス時は消し、キーボード時は世界観に合わせる --- */
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(157,39,31,.62);
  outline-offset: 3px;
}
