/* ============================================================
   ANIVERSARIO 365 — Okinawa Onna-son Private Suite Hotel
   ============================================================ */
:root {
  --ivory: #f6f2ea;
  --ivory-deep: #efe8db;
  --ink: #22262b;
  --ink-soft: #4b5157;
  --gold: #b08d57;
  --gold-light: #cbb28a;
  --ocean: #0e5064;
  --ocean-deep: #093a49;
  --white: #fdfcf9;
  --serif-ja: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --serif-en: "Cormorant Garamond", Georgia, serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 2;
  letter-spacing: .06em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
figure { margin: 0; }
em { font-style: normal; }
.sp { display: none; }
@media (max-width: 700px) { .sp { display: inline; } }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--ocean-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1s var(--ease), visibility 1s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; color: var(--ivory); }
.loader__en {
  display: block;
  font-family: var(--serif-en);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  letter-spacing: .5em; text-indent: .5em;
  animation: loaderFade 1.6s var(--ease) both;
}
.loader__ja {
  display: block; margin-top: 1em;
  font-family: var(--serif-ja);
  font-size: .8rem; letter-spacing: .3em;
  opacity: .7;
  animation: loaderFade 1.6s .4s var(--ease) both;
}
@keyframes loaderFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .5s var(--ease), box-shadow .5s;
}
.header.is-solid {
  background: rgba(246, 242, 234, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(34, 38, 43, .08);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 48px);
}
.header__logo { line-height: 1.3; margin-right: auto; }
.header__logo-en {
  display: block;
  font-family: var(--serif-en);
  font-size: 1.35rem; font-weight: 500;
  letter-spacing: .28em;
  color: var(--ivory);
  transition: color .5s;
}
.header__logo-en em { color: var(--gold-light); }
.header__logo-ja {
  display: block;
  font-size: .58rem; letter-spacing: .2em;
  color: rgba(253, 252, 249, .75);
  transition: color .5s;
}
.header.is-solid .header__logo-en { color: var(--ink); }
.header.is-solid .header__logo-en em { color: var(--gold); }
.header.is-solid .header__logo-ja { color: var(--ink-soft); }

.gnav { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 36px); }
.gnav__list { display: flex; gap: clamp(12px, 1.8vw, 26px); list-style: none; }
.gnav__list a { display: block; text-align: center; line-height: 1.4; padding: 4px 2px; position: relative; }
.gnav__list .en {
  display: block;
  font-family: var(--serif-en);
  font-size: .88rem; letter-spacing: .14em;
  color: var(--ivory); transition: color .5s;
}
.gnav__list .ja {
  display: block; font-size: .55rem; letter-spacing: .18em;
  color: rgba(253, 252, 249, .6); transition: color .5s;
}
.header.is-solid .gnav__list .en { color: var(--ink); }
.header.is-solid .gnav__list .ja { color: var(--ink-soft); }
.gnav__list a::after {
  content: ""; position: absolute; left: 50%; bottom: -2px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .4s var(--ease), left .4s var(--ease);
}
.gnav__list a:hover::after { width: 100%; left: 0; }

.gnav__cta {
  font-family: var(--serif-ja);
  font-size: .82rem; letter-spacing: .2em;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), #96723d);
  padding: 10px 26px; border-radius: 2px;
  text-align: center; line-height: 1.4;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.gnav__cta span {
  display: block; font-family: var(--serif-en);
  font-size: .58rem; letter-spacing: .22em; opacity: .8;
}
.gnav__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(176, 141, 87, .4); }

.menu-btn {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  position: relative; z-index: 60;
}
.menu-btn span {
  position: absolute; left: 10px; right: 10px; height: 1px;
  background: var(--ivory);
  transition: all .4s var(--ease);
}
.header.is-solid .menu-btn span, .header.is-open .menu-btn span { background: var(--ink); }
.menu-btn span:nth-child(1) { top: 18px; }
.menu-btn span:nth-child(2) { top: 26px; }
.header.is-open .menu-btn span:nth-child(1) { top: 22px; transform: rotate(20deg); }
.header.is-open .menu-btn span:nth-child(2) { top: 22px; transform: rotate(-20deg); }

@media (max-width: 1080px) {
  .menu-btn { display: block; }
  .gnav {
    position: fixed; inset: 0;
    background: rgba(246, 242, 234, .97);
    backdrop-filter: blur(16px);
    flex-direction: column; justify-content: center; gap: 40px;
    opacity: 0; visibility: hidden;
    transition: opacity .5s var(--ease), visibility .5s;
  }
  .header.is-open .gnav { opacity: 1; visibility: visible; }
  .gnav__list { flex-direction: column; gap: 18px; text-align: center; }
  .gnav__list .en { color: var(--ink); font-size: 1.2rem; }
  .gnav__list .ja { color: var(--ink-soft); font-size: .68rem; }
}

/* ---------- Hero ---------- */
.hero { position: relative; height: 100svh; min-height: 560px; overflow: hidden; }
.hero__slides, .hero__slide, .hero__video { position: absolute; inset: 0; }
.hero__video { width: 100%; height: 100%; object-fit: cover; }
.hero__slide {
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  transition: opacity 2.4s var(--ease), transform 7s linear;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9, 58, 73, .42) 0%, rgba(9, 58, 73, .12) 45%, rgba(9, 58, 73, .5) 100%);
}
.hero__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-end;
  text-align: right; color: var(--white);
  padding: 0 clamp(24px, 6vw, 84px) clamp(76px, 15svh, 160px) 24px;
}
.hero__content > * { width: 100%; max-width: 100%; }
.hero__lead {
  font-family: var(--serif-en);
  font-size: clamp(.72rem, 1.4vw, .95rem);
  letter-spacing: .45em;
  opacity: 0; animation: heroUp 1.6s 1.2s var(--ease) forwards;
}
.hero__title {
  font-family: var(--serif-ja);
  font-weight: 500;
  font-size: clamp(1.65rem, 4.2vw, 3rem);
  letter-spacing: .2em;
  line-height: 1.8;
  margin: .6em 0 .8em;
  text-shadow: 0 2px 30px rgba(9, 58, 73, .45);
  opacity: 0; animation: heroUp 1.8s 1.6s var(--ease) forwards;
}
.hero__sub {
  font-family: var(--serif-ja);
  font-size: clamp(.8rem, 1.6vw, 1rem);
  letter-spacing: .22em;
  line-height: 2.4;
  opacity: 0; animation: heroUp 1.8s 2.2s var(--ease) forwards;
}
.hero__copyright {
  position: absolute;
  right: clamp(16px, 3vw, 40px);
  bottom: 18px;
  font-family: var(--serif-en);
  font-size: .6rem;
  letter-spacing: .26em;
  color: rgba(253, 252, 249, .5);
  opacity: 0; animation: heroUp 1.8s 2.8s var(--ease) forwards;
}
@keyframes heroUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
.hero__scroll {
  position: absolute; bottom: 0; left: 50%;
  color: var(--white);
  font-family: var(--serif-en);
  font-size: .68rem; letter-spacing: .35em;
  writing-mode: vertical-rl;
  padding-bottom: 90px;
}
.hero__scroll::after {
  content: ""; position: absolute; bottom: 0; left: 50%;
  width: 1px; height: 74px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollLine 2.2s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); }
  45% { transform: scaleY(1); }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ---------- Movie break ---------- */
.vbreak {
  position: relative;
  height: 72vh; min-height: 420px;
  overflow: hidden;
}
.vbreak video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.vbreak__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9, 45, 58, .32), rgba(9, 45, 58, .18) 50%, rgba(9, 45, 58, .4));
}
.vbreak__caption {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; color: var(--white);
}
.vbreak__en {
  font-family: var(--serif-en);
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  letter-spacing: .32em; text-indent: .32em;
  text-shadow: 0 2px 26px rgba(9, 45, 58, .5);
}
.vbreak__ja {
  font-family: var(--serif-ja);
  font-size: clamp(.8rem, 1.5vw, .98rem);
  letter-spacing: .34em; text-indent: .34em;
  margin-top: 1em; opacity: .92;
}

/* ---------- Sections common ---------- */
.section-head { text-align: center; margin-bottom: clamp(48px, 7vw, 80px); }
.section-head__en {
  display: block;
  font-family: var(--serif-en);
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  font-weight: 400;
  letter-spacing: .3em; text-indent: .3em;
  color: var(--gold);
  line-height: 1.2;
}
.section-head__ja {
  font-family: var(--serif-ja);
  font-size: clamp(.85rem, 1.7vw, 1rem);
  font-weight: 500;
  letter-spacing: .35em; text-indent: .35em;
  color: var(--ink-soft);
  margin-top: 12px;
}
.section-head__ja::before {
  content: ""; display: block; width: 1px; height: 34px;
  margin: 0 auto 14px; background: var(--gold);
}
.section-head--light .section-head__en { color: var(--gold-light); }
.section-head--light .section-head__ja { color: rgba(253, 252, 249, .8); }
.section-head--onimg .section-head__en { color: var(--white); }
.section-head--onimg .section-head__ja { color: rgba(253, 252, 249, .9); }
.section-head--onimg .section-head__ja::before { background: var(--white); }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1.2s var(--ease), transform 1.2s var(--ease); }
.reveal.is-view { opacity: 1; transform: none; }

/* ---------- Intro ---------- */
.intro { padding: clamp(90px, 13vw, 160px) 24px; text-align: center; }
.intro__text {
  font-family: var(--serif-ja);
  font-size: clamp(.9rem, 1.9vw, 1.12rem);
  line-height: 2.9;
  letter-spacing: .14em;
}

/* ---------- Concept ---------- */
.concept { padding: 0 clamp(20px, 5vw, 64px) clamp(90px, 12vw, 150px); max-width: 1280px; margin: 0 auto; }
.concept__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  grid-template-areas: "tall body" "tall imgs";
  gap: clamp(20px, 3.4vw, 44px);
}
.concept__img img { width: 100%; height: 100%; object-fit: cover; }
.concept__img--tall { grid-area: tall; }
.concept__img--tall img { aspect-ratio: 3 / 4.4; }
.concept__body { grid-area: body; align-self: center; }
.concept__grid > .concept__img:not(.concept__img--tall) { aspect-ratio: 4 / 3; overflow: hidden; }
.concept__img--a { grid-area: imgs; }
.concept__img--b { display: none; }
@media (min-width: 900px) {
  .concept__grid {
    grid-template-columns: 1.1fr 1fr 1fr;
    grid-template-areas: "tall body body" "tall img2 img3";
  }
  .concept__img--a { grid-area: img2; }
  .concept__img--b { display: block; grid-area: img3; }
}
.concept__title {
  font-family: var(--serif-ja);
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  font-weight: 500;
  letter-spacing: .12em; line-height: 2;
  margin-bottom: 1.2em;
}
.concept__body p { font-size: .92rem; line-height: 2.3; margin-bottom: 1.4em; color: var(--ink-soft); }
.concept__nums {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: clamp(56px, 8vw, 90px);
  border-top: 1px solid rgba(176, 141, 87, .35);
  border-bottom: 1px solid rgba(176, 141, 87, .35);
  padding: clamp(28px, 4vw, 42px) 0;
}
.num { text-align: center; }
.num__v {
  display: block;
  font-family: var(--serif-en);
  font-size: clamp(2rem, 4.4vw, 3rem);
  color: var(--ocean); line-height: 1.2;
}
.num__v em { font-family: var(--serif-ja); font-size: .45em; color: var(--gold); margin: 0 .1em; }
.num__l { font-size: .72rem; letter-spacing: .22em; color: var(--ink-soft); }
@media (max-width: 700px) { .concept__nums { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Stay ---------- */
.stay {
  background: linear-gradient(180deg, var(--ocean-deep), var(--ocean) 60%, var(--ocean-deep));
  color: var(--ivory);
  padding: clamp(90px, 12vw, 150px) clamp(20px, 5vw, 64px);
}
.stay__hero { max-width: 1280px; margin: 0 auto; position: relative; }
.stay__hero > img { width: 100%; aspect-ratio: 16 / 8.4; object-fit: cover; }
.stay__hero-caption {
  background: rgba(9, 58, 73, .88);
  backdrop-filter: blur(8px);
  padding: clamp(28px, 4vw, 48px);
  max-width: 560px;
  margin: -70px auto 0;
  position: relative;
  border-top: 1px solid var(--gold);
}
@media (min-width: 1000px) {
  .stay__hero-caption { position: absolute; right: 40px; bottom: -60px; margin: 0; }
}
.stay__hero-caption h3 {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: .12em; line-height: 1.5;
  color: var(--gold-light);
  margin-bottom: .8em;
}
.stay__hero-caption p { font-size: .88rem; line-height: 2.2; color: rgba(246, 242, 234, .88); }

.stay__rooms {
  max-width: 1280px; margin: clamp(70px, 10vw, 130px) auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
@media (max-width: 860px) { .stay__rooms { grid-template-columns: 1fr; max-width: 560px; } }
.room-card figure { overflow: hidden; }
.room-card img {
  width: 100%; aspect-ratio: 4 / 2.9; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.room-card:hover img { transform: scale(1.05); }
.room-card__body { padding: 22px 6px 0; }
.room-card h4 {
  font-family: var(--serif-ja);
  font-size: 1.05rem; font-weight: 500;
  letter-spacing: .14em;
  color: var(--gold-light);
  margin-bottom: .6em;
}
.room-card h4 span { display: block; font-family: var(--sans); font-size: .68rem; color: rgba(246,242,234,.6); letter-spacing: .2em; margin-top: 4px; }
.room-card p { font-size: .84rem; line-height: 2.1; color: rgba(246, 242, 234, .82); }

.stay__info { max-width: 900px; margin: clamp(70px, 9vw, 110px) auto 0; }
.info-table { border-top: 1px solid rgba(246, 242, 234, .2); }
.info-table > div {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 16px;
  padding: 20px 8px;
  border-bottom: 1px solid rgba(246, 242, 234, .2);
}
@media (max-width: 640px) { .info-table > div { grid-template-columns: 1fr; gap: 4px; } }
.info-table dt {
  font-family: var(--serif-ja);
  font-size: .84rem; letter-spacing: .18em;
  color: var(--gold-light);
}
.info-table dd { font-size: .86rem; line-height: 2; color: rgba(246, 242, 234, .88); }
.info-table dd small { display: block; font-size: .74rem; opacity: .7; margin-top: 4px; }
.stay__note {
  margin-top: 28px; text-align: center;
  font-family: var(--serif-ja);
  font-size: .84rem; letter-spacing: .12em;
  color: rgba(246, 242, 234, .75);
}

/* ---------- Facilities ---------- */
.facilities { padding: clamp(90px, 12vw, 150px) clamp(20px, 5vw, 64px); max-width: 1280px; margin: 0 auto; }
.facil__feature {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 860px) { .facil__feature { grid-template-columns: 1fr; } }
.facil__feature img, .facil__feature video { width: 100%; aspect-ratio: 16 / 10.5; object-fit: cover; display: block; }
.facil__feature-body h3 {
  font-family: var(--serif-ja);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 500; letter-spacing: .14em; line-height: 2;
  margin-bottom: 1em;
}
.facil__feature-body p { font-size: .9rem; line-height: 2.3; color: var(--ink-soft); margin-bottom: 1.2em; }
.facil__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.6vw, 30px);
  margin-top: clamp(40px, 6vw, 70px);
}
@media (max-width: 700px) { .facil__grid { grid-template-columns: 1fr; } }
.facil__cell { position: relative; overflow: hidden; }
.facil__cell img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.facil__cell:hover img { transform: scale(1.06); }
.facil__cell figcaption {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: 40px 18px 14px;
  background: linear-gradient(to top, rgba(9, 58, 73, .72), transparent);
  color: var(--white);
  font-family: var(--serif-en);
  font-size: .85rem; letter-spacing: .25em;
}
.facil__list {
  list-style: none;
  margin-top: clamp(40px, 6vw, 64px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(176, 141, 87, .3);
  border: 1px solid rgba(176, 141, 87, .3);
}
.facil__list li {
  background: var(--ivory);
  padding: 22px 20px;
  font-size: .8rem; line-height: 1.9; color: var(--ink-soft);
}
.facil__list strong {
  display: block;
  font-family: var(--serif-ja);
  font-weight: 500; font-size: .92rem;
  letter-spacing: .16em;
  color: var(--ink);
  margin-bottom: 4px;
}

/* ---------- Experience ---------- */
.experience { padding: clamp(90px, 12vw, 150px) clamp(20px, 5vw, 64px); max-width: 1280px; margin: 0 auto; }
.exp__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.4vw, 44px);
}
@media (max-width: 860px) { .exp__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }
.exp-card figure { overflow: hidden; }
.exp-card img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.exp-card:hover img { transform: scale(1.05); }
.exp-card h3 {
  font-family: var(--serif-ja);
  font-size: 1.06rem; font-weight: 500;
  letter-spacing: .12em;
  margin: 20px 0 10px;
}
.exp-card p { font-size: .85rem; line-height: 2.1; color: var(--ink-soft); }
.exp-card small { font-size: .72rem; opacity: .75; }
.exp__spots {
  margin-top: clamp(50px, 7vw, 80px);
  background: var(--ivory-deep);
  padding: clamp(28px, 4vw, 44px);
}
.exp__spots h4 {
  font-family: var(--serif-ja);
  font-size: .95rem; font-weight: 500; letter-spacing: .25em;
  text-align: center; margin-bottom: 20px;
  color: var(--ocean);
}
.exp__spots ul {
  list-style: none;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 36px;
}
.exp__spots li { font-size: .84rem; color: var(--ink-soft); }
.exp__spots li span {
  font-family: var(--serif-ja); color: var(--ink);
  margin-right: .8em; letter-spacing: .08em;
}

/* ---------- Anniversary ---------- */
.anniv { position: relative; padding: clamp(90px, 13vw, 170px) clamp(20px, 5vw, 64px); overflow: hidden; }
.anniv__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
}
.anniv__bg video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.anniv__bg {
  transform: scale(1.03);
}
.anniv__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9, 45, 58, .55), rgba(9, 45, 58, .42) 40%, rgba(9, 45, 58, .6));
}
.anniv__inner { position: relative; max-width: 1180px; margin: 0 auto; }
.anniv__content {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 4.5vw, 60px);
  align-items: center;
}
@media (max-width: 860px) { .anniv__content { grid-template-columns: 1fr; } }
.anniv__img img { width: 100%; aspect-ratio: 1; object-fit: cover; border: 1px solid rgba(253, 252, 249, .35); }
.anniv__body { color: var(--ivory); }
.anniv__body > p { font-size: .9rem; line-height: 2.3; color: rgba(246, 242, 234, .9); margin-bottom: 1.2em; }
.anniv__plans { list-style: none; margin: 1.6em 0; }
.anniv__plans li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(246, 242, 234, .3);
  font-family: var(--serif-ja);
  font-size: .88rem; letter-spacing: .1em;
}
.anniv__plans strong { font-family: var(--serif-en); font-size: 1.25rem; font-weight: 500; color: var(--gold-light); }
.anniv__note { font-size: .78rem !important; opacity: .8; }

/* ---------- Gallery ---------- */
.gallery { padding: clamp(90px, 12vw, 150px) clamp(16px, 3.5vw, 48px); max-width: 1380px; margin: 0 auto; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(120px, 16vw, 230px);
  grid-auto-flow: dense;
  gap: clamp(8px, 1.2vw, 16px);
}
@media (max-width: 700px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } }
.g-item { overflow: hidden; display: block; }
.g-item--w { grid-column: span 2; }
.g-item--t { grid-row: span 2; }
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), filter 1.1s;
}
.g-item:hover img { transform: scale(1.06); filter: brightness(1.06); }

/* ---------- Voice ---------- */
.voice {
  background: var(--ocean-deep);
  padding: clamp(90px, 12vw, 150px) clamp(20px, 5vw, 64px);
}
.voice__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
@media (max-width: 800px) { .voice__grid { grid-template-columns: 1fr; } }
.voice-card {
  background: rgba(246, 242, 234, .05);
  border: 1px solid rgba(176, 141, 87, .3);
  padding: clamp(26px, 3.5vw, 40px);
  position: relative;
}
.voice-card::before {
  content: "\201C";
  position: absolute; top: 6px; left: 18px;
  font-family: var(--serif-en);
  font-size: 4.5rem; line-height: 1;
  color: var(--gold); opacity: .5;
}
.voice-card p {
  font-size: .86rem; line-height: 2.2;
  color: rgba(246, 242, 234, .88);
  margin-bottom: 1.2em;
  position: relative;
}
.voice-card cite {
  font-style: normal;
  font-family: var(--serif-ja);
  font-size: .76rem; letter-spacing: .16em;
  color: var(--gold-light);
}
.voice-card cite::before { content: "—"; margin-right: .8em; }

/* ---------- CTA ---------- */
.cta { position: relative; padding: clamp(110px, 15vw, 190px) 24px; overflow: hidden; text-align: center; }
.cta__bg { position: absolute; inset: 0; background-size: cover; background-position: center 65%; }
.cta__bg::after { content: ""; position: absolute; inset: 0; background: rgba(9, 45, 58, .38); }
.cta__inner { position: relative; color: var(--white); }
.cta__en {
  font-family: var(--serif-en);
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: .4em; text-indent: .4em;
  color: var(--gold-light);
  margin-bottom: .8em;
}
.cta__title {
  font-family: var(--serif-ja);
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 500; letter-spacing: .2em;
  margin-bottom: 1.6em;
}
.cta__btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  min-width: 260px;
  padding: 18px 36px;
  font-family: var(--serif-ja);
  font-size: .95rem; letter-spacing: .22em;
  line-height: 1.5;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s;
}
.btn span { display: block; font-family: var(--serif-en); font-size: .66rem; letter-spacing: .25em; opacity: .8; margin-top: 2px; }
.btn--gold { background: linear-gradient(135deg, var(--gold), #96723d); color: var(--white); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(176, 141, 87, .5); }
.btn--ghost { border: 1px solid rgba(253, 252, 249, .7); color: var(--white); }
.btn--ghost:hover { background: rgba(253, 252, 249, .12); transform: translateY(-3px); }

/* ---------- Access ---------- */
.access { padding: clamp(90px, 12vw, 150px) clamp(20px, 5vw, 64px); max-width: 1280px; margin: 0 auto; }
.access__grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 860px) { .access__grid { grid-template-columns: 1fr; } }
.access__map { aspect-ratio: 4 / 3; }
.access__map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.85); }
.access .info-table { border-top-color: rgba(34, 38, 43, .15); }
.access .info-table > div { border-bottom-color: rgba(34, 38, 43, .15); grid-template-columns: 140px 1fr; padding: 16px 4px; }
@media (max-width: 640px) { .access .info-table > div { grid-template-columns: 1fr; } }
.access .info-table dt { color: var(--gold); }
.access .info-table dd { color: var(--ink-soft); }
.access .info-table a { border-bottom: 1px solid var(--gold); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ocean-deep);
  color: rgba(246, 242, 234, .8);
  padding: clamp(56px, 8vw, 90px) clamp(20px, 5vw, 64px) 36px;
}
.footer__inner { max-width: 1180px; margin: 0 auto; text-align: center; }
.footer__logo {
  font-family: var(--serif-en);
  font-size: 1.7rem; letter-spacing: .3em; text-indent: .3em;
  color: var(--ivory);
}
.footer__logo em { color: var(--gold-light); }
.footer__tag { font-family: var(--serif-en); font-size: .72rem; letter-spacing: .3em; opacity: .6; margin-top: 6px; }
.footer__addr { font-size: .78rem; line-height: 2.1; margin-top: 18px; }
.footer__nav {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 26px;
  margin: 34px 0;
  padding: 22px 0;
  border-top: 1px solid rgba(246, 242, 234, .15);
  border-bottom: 1px solid rgba(246, 242, 234, .15);
}
.footer__nav a {
  font-family: var(--serif-en);
  font-size: .78rem; letter-spacing: .2em;
  transition: color .3s;
}
.footer__nav a:hover { color: var(--gold-light); }
.footer__meta p { font-size: .7rem; letter-spacing: .12em; opacity: .6; line-height: 2; }
.footer__copy { font-family: var(--serif-en); }

/* ---------- Language selector ---------- */
.langsel { position: relative; margin-left: clamp(10px, 1.6vw, 20px); z-index: 61; }
.langsel__btn {
  display: flex; align-items: center; gap: 7px;
  background: rgba(253, 252, 249, .1);
  border: 1px solid rgba(253, 252, 249, .45);
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--ivory);
  cursor: pointer;
  font-family: var(--serif-en);
  font-size: .8rem; letter-spacing: .1em;
  line-height: 1;
  transition: color .5s var(--ease), border-color .5s var(--ease), background .3s;
}
.langsel__btn:hover { background: rgba(253, 252, 249, .2); }
.langsel__globe { flex: none; opacity: .9; }
.langsel__cur { white-space: nowrap; }
.langsel__caret { flex: none; transition: transform .35s var(--ease); opacity: .8; }
.langsel.is-open .langsel__caret { transform: rotate(180deg); }

.header.is-solid .langsel__btn {
  color: var(--ink);
  border-color: rgba(34, 38, 43, .28);
  background: rgba(34, 38, 43, .04);
}
.header.is-solid .langsel__btn:hover { background: rgba(176, 141, 87, .12); }

.langsel__menu {
  position: absolute; top: calc(100% + 12px); right: 0;
  min-width: 176px;
  list-style: none;
  background: var(--white);
  border: 1px solid rgba(176, 141, 87, .35);
  box-shadow: 0 18px 44px rgba(9, 45, 58, .22);
  border-radius: 4px;
  padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .32s var(--ease), transform .32s var(--ease), visibility .32s;
}
.langsel.is-open .langsel__menu { opacity: 1; visibility: visible; transform: none; }
.langsel__menu::before {
  content: ""; position: absolute; top: -6px; right: 22px;
  width: 11px; height: 11px;
  background: var(--white);
  border-left: 1px solid rgba(176, 141, 87, .35);
  border-top: 1px solid rgba(176, 141, 87, .35);
  transform: rotate(45deg);
}
.langsel__menu button {
  position: relative;
  display: flex; align-items: baseline; gap: 10px;
  width: 100%;
  background: none; border: none; cursor: pointer;
  padding: 11px 14px 11px 30px;
  border-radius: 3px;
  color: var(--ink);
  text-align: left;
  transition: background .25s;
}
.langsel__menu button:hover { background: var(--ivory-deep); }
.langsel__name { font-family: var(--serif-ja); font-size: .9rem; letter-spacing: .1em; }
.langsel__sub { font-family: var(--serif-en); font-size: .64rem; letter-spacing: .12em; color: var(--ink-soft); opacity: .8; }
.langsel__menu button.is-active { color: var(--gold); }
.langsel__menu button.is-active .langsel__sub { color: var(--gold-light); }
.langsel__menu button.is-active::before {
  content: ""; position: absolute; left: 13px; top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); transform: translateY(-50%);
}

@media (max-width: 1080px) {
  /* Sit the selector to the left of the hamburger on mobile */
  .langsel { margin-left: 4px; margin-right: 4px; }
  .langsel__menu { right: 0; }
}
@media (max-width: 380px) {
  .langsel__btn { padding: 6px 10px; }
  .langsel__cur { display: none; }
}

/* ---------- Per-language typography ---------- */
body.lang-zh {
  --serif-ja: "Noto Serif SC", "Shippori Mincho", serif;
  --sans: "Noto Sans SC", "Zen Kaku Gothic New", sans-serif;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(10, 20, 26, .94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
  padding: 5vmin;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .5);
}
.lightbox__close {
  position: absolute; top: 18px; right: 26px;
  background: none; border: none;
  color: var(--ivory); font-size: 2.4rem;
  cursor: pointer; line-height: 1;
  font-family: var(--serif-en);
}
