/* ==========================================================================
   タイ古式 RAKSAA（ラクサー）— shared.css
   Luxury Thai Spa | dark + cream alternating, gold accents
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Trirong:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Noto+Sans+JP:wght@300;400;500;600;700&family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap');

:root {
  /* Palette */
  --gold:        #C9A84C;
  --gold-soft:   #D8BE6F;
  --gold-deep:   #9E8232;
  --char:        #1A1A1A;
  --char-2:      #232323;
  --char-3:      #2A2A2A;
  --cream:       #F8F4EE;
  --cream-2:     #F1EADD;
  --beige:       #EDE0CC;
  --beige-deep:  #D8C8AE;
  --green:       #2D4A3E;
  --green-deep:  #1F362D;
  --ink:         #1A1A1A;
  --ink-soft:    #3A3530;
  --muted:       #7A7368;
  --line:        rgba(201,168,76,.28);
  --line-dark:   rgba(255,255,255,.10);

  /* Type */
  --serif-en:    'Cormorant Garamond', 'Noto Serif JP', serif;
  --serif-ac:    'Trirong', 'Cormorant Garamond', serif;
  --sans-jp:     'Noto Sans JP', system-ui, sans-serif;
  --serif-jp:    'Noto Serif JP', 'Cormorant Garamond', serif;

  /* Layout */
  --maxw:        1280px;
  --gutter:      clamp(20px, 4vw, 56px);
  --radius:      2px;

  /* Shadow */
  --sh-card:     0 30px 60px -30px rgba(0,0,0,.55), 0 8px 22px -10px rgba(0,0,0,.35);
  --sh-soft:     0 18px 40px -22px rgba(20,20,20,.40);

  /* Motion */
  --ease:        cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans-jp);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  letter-spacing: .02em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

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

/* ============================ Typography ============================ */
.eyebrow {
  font-family: var(--serif-ac);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before, .eyebrow.dual::after {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}
.section-title {
  font-family: var(--serif-en);
  font-weight: 300;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.08;
  letter-spacing: .01em;
  margin: 18px 0 12px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.section-subtitle {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .26em;
  color: var(--muted);
  margin: 0;
}
.kanji-title {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: .22em;
  margin: 10px 0 0;
}

/* ============================ Layout ============================ */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
}
.sec-head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.sec-head.left {
  text-align: left;
}

/* alternating sections */
.sec-dark   { background: var(--char); color: var(--cream); }
.sec-dark .section-title { color: var(--cream); }
.sec-dark .section-subtitle { color: rgba(248,244,238,.55); }
.sec-cream  { background: var(--cream); color: var(--ink); }
.sec-beige  { background: var(--beige); color: var(--ink); }
.sec-green  { background: var(--green-deep); color: var(--cream); }

/* ============================ Buttons ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 30px;
  font-family: var(--sans-jp);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .14em;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease);
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover { color: var(--char); }
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn .arr {
  width: 22px; height: 1px; background: currentColor;
  position: relative; transition: width .4s var(--ease);
}
.btn .arr::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arr { width: 30px; }

.btn--solid {
  background: var(--gold); color: var(--char); border-color: var(--gold);
}
.btn--solid::before { background: var(--char); }
.btn--solid:hover { color: var(--gold); }

.btn--ghost-dark {
  border-color: rgba(248,244,238,.4); color: var(--cream);
}
.btn--ghost-dark::before { background: var(--cream); }
.btn--ghost-dark:hover { color: var(--char); }

/* ============================ Lotus / motifs ============================ */
.motif {
  position: absolute;
  pointer-events: none;
  opacity: .08;
  z-index: 0;
}
.motif-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 28px 0;
  color: var(--gold);
}
.motif-divider .line {
  width: 70px; height: 1px;
  background: currentColor;
  opacity: .5;
}

/* ============================ NAV ============================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .5s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(26,26,26,.55), rgba(26,26,26,0));
}
.nav.scrolled {
  background: rgba(20,20,20,.92);
  backdrop-filter: blur(14px);
  padding: 12px var(--gutter);
  border-color: var(--line-dark);
}
.nav .brand {
  display: flex; flex-direction: column; line-height: 1; color: var(--cream);
}
.nav .brand .jp {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: .24em;
}
.nav .brand .en {
  font-family: var(--serif-ac);
  font-size: 10.5px;
  letter-spacing: .42em;
  color: var(--gold);
  margin-top: 6px;
  text-transform: uppercase;
}
.nav .links {
  display: flex; gap: 38px; align-items: center;
}
.nav .links a {
  font-family: var(--serif-ac);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav .links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s var(--ease);
}
.nav .links a:hover { color: var(--gold); }
.nav .links a:hover::after { width: 100%; }
.nav .cta-mini {
  padding: 10px 22px;
  font-size: 11px;
  letter-spacing: .24em;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif-ac);
  text-transform: uppercase;
  transition: all .3s var(--ease);
}
.nav .cta-mini:hover {
  background: var(--gold); color: var(--char);
}
.nav .burger {
  display: none;
  width: 30px; height: 18px;
  position: relative; cursor: pointer;
  background: none; border: 0; padding: 0;
}
.nav .burger span {
  position: absolute; left: 0; right: 0; height: 1px;
  background: var(--cream); transition: all .3s var(--ease);
}
.nav .burger span:nth-child(1) { top: 0; }
.nav .burger span:nth-child(2) { top: 50%; }
.nav .burger span:nth-child(3) { bottom: 0; }
.nav.menu-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.menu-open .burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .burger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

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

@media (max-width: 900px) {
  .nav .links, .nav .cta-mini { display: none; }
  .nav .burger { display: block; }
  .nav .mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(20,20,20,.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease);
  }
  .nav.menu-open .mobile-menu {
    opacity: 1; pointer-events: auto;
  }
  .nav .mobile-menu a {
    font-family: var(--serif-en);
    font-size: 24px;
    letter-spacing: .14em;
    color: var(--cream);
  }
  .nav .mobile-menu a em {
    font-family: var(--serif-jp);
    font-style: normal;
    font-size: 13px;
    letter-spacing: .26em;
    color: var(--gold);
    display: block;
    margin-top: 4px;
  }
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(ellipse at 20% 30%, #2A2517 0%, #161413 45%, #0E0D0C 100%);
  color: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 80%, rgba(201,168,76,.10), transparent 60%),
    radial-gradient(ellipse at 10% 10%, rgba(45,74,62,.20), transparent 70%);
  pointer-events: none;
}
.hero .grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .18;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy .h-eyebrow {
  font-family: var(--serif-ac);
  font-size: 12px;
  letter-spacing: .5em;
  color: var(--gold);
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}
.hero-copy .h-eyebrow::before {
  content: ""; width: 60px; height: 1px; background: var(--gold);
}
.hero-copy h1 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.45;
  letter-spacing: .08em;
  margin: 0 0 28px;
  color: var(--cream);
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}
.hero-copy h1 .em-gold {
  color: var(--gold);
  font-weight: 500;
}
.hero-copy h1 .ornament {
  display: block;
  margin: 16px 0;
  width: 80px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-copy .sub-lines {
  list-style: none;
  padding: 0; margin: 0 0 40px;
  display: flex; flex-direction: column; gap: 8px;
}
.hero-copy .sub-lines li {
  font-family: var(--sans-jp);
  font-size: 14.5px;
  letter-spacing: .12em;
  color: rgba(248,244,238,.78);
  padding-left: 22px;
  position: relative;
}
.hero-copy .sub-lines li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 8px; height: 1px; background: var(--gold);
}
.hero-copy .h-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.hero-copy .h-meta {
  display: flex; gap: 30px; margin-top: 50px; flex-wrap: wrap;
  padding-top: 30px; border-top: 1px solid var(--line-dark);
}
.hero-copy .h-meta div .lbl {
  font-family: var(--serif-ac);
  font-size: 10.5px;
  letter-spacing: .32em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.hero-copy .h-meta div .val {
  font-family: var(--serif-jp);
  font-size: 15px;
  letter-spacing: .12em;
  color: var(--cream);
}

.hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 160px 220px 160px;
  gap: 14px;
  position: relative;
}
.hero-photo {
  background: linear-gradient(135deg, #3a2f1e 0%, #1a1612 60%, #0f0d0c 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.15);
}
.hero-photo:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.hero-photo:nth-child(2) { grid-column: 2; grid-row: 1; }
.hero-photo:nth-child(3) { grid-column: 2; grid-row: 2 / 4; }
.hero-photo:nth-child(4) { grid-column: 1; grid-row: 3; }
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-photo .ph-cap {
  position: absolute; left: 14px; bottom: 12px;
  font-family: var(--serif-ac);
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  z-index: 2;
}
.hero-photo .ph-pl {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(201,168,76,.35);
  text-transform: uppercase;
  background: repeating-linear-gradient(
    -45deg,
    rgba(201,168,76,.03) 0 12px,
    transparent 12px 24px
  );
}
.hero .lotus-bg {
  position: absolute;
  bottom: -120px; right: -120px;
  width: 520px; height: 520px;
  opacity: .08;
  pointer-events: none;
  color: var(--gold);
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photos { grid-template-rows: 140px 180px 140px; }
}

/* ============================ ABOUT ============================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-copy p {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: .08em;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.about-quote {
  margin: 36px 0 24px;
  padding: 30px 0 30px 36px;
  border-left: 1px solid var(--gold);
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.5;
  color: var(--char);
  position: relative;
}
.about-quote::before {
  content: "“";
  position: absolute; left: 6px; top: -14px;
  font-size: 60px; color: var(--gold);
  font-family: var(--serif-en);
  line-height: 1;
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 180px;
  gap: 16px;
}
.about-photo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2e2519, #1c1813);
  /* border をアニメーションで光らせる（明/暗どちらの背景でも見える） */
  border: 2px solid rgba(201,168,76,.30);
  box-shadow:
    0 0 0 1px rgba(135, 85, 8, .32),
    0 0 28px 9px rgba(135, 85, 8, .26),
    0 0 65px 20px rgba(135, 85, 8, .13);
  animation: about-rim-breathe 6s ease-in-out infinite;
}
.about-photo:nth-child(1) { grid-column: 1 / 3; animation-delay: 0s; }
.about-photo:nth-child(2) { animation-delay: 2s; }
.about-photo:nth-child(3) { animation-delay: 4s; }
.about-photo::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 3; pointer-events: none;
  /* 内側から光が漏れる演出（背景色に依存しない） */
  box-shadow: inset 0 0 40px 10px rgba(201,168,76,.20);
  animation: inner-rim-breathe 6s ease-in-out infinite;
}
.about-photo:nth-child(2)::after { animation-delay: 2s; }
.about-photo:nth-child(3)::after { animation-delay: 4s; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .ph-cap {
  position: absolute; left: 14px; bottom: 12px;
  font-family: var(--serif-ac);
  font-size: 10px; letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
}
.about-photo .ph-pl {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: monospace;
  font-size: 10px; letter-spacing: .2em;
  color: rgba(201,168,76,.4);
  background: repeating-linear-gradient(-45deg, rgba(201,168,76,.04) 0 12px, transparent 12px 24px);
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ============================ MENU ============================ */
.menu .menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
/* スケルトンローダー — CMS ロード前のプレースホルダー */
.menu-skel {
  background: #181818;
  border: 1px solid rgba(201,168,76,.08);
  border-radius: 2px;
  min-height: 230px;
  position: relative;
  overflow: hidden;
}
.menu-skel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201,168,76,.07) 40%,
    rgba(201,168,76,.12) 50%,
    rgba(201,168,76,.07) 60%,
    transparent 100%
  );
  background-size: 250% 100%;
  animation: skel-shimmer 2s ease-in-out infinite;
}
@keyframes skel-shimmer {
  0%   { background-position: 250% 0; }
  100% { background-position: -250% 0; }
}
.menu-card {
  position: relative;
  background: linear-gradient(180deg, #1F1F1F, #161616);
  border: 1px solid var(--line);
  padding: 36px 30px 32px;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
  overflow: hidden;
}
.menu-card::after {
  content: "";
  position: absolute; left: 0; top: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.menu-card:hover::after { opacity: 1; }
.menu-card .num {
  font-family: var(--serif-ac);
  font-size: 11px; letter-spacing: .3em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.menu-card .name-jp {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: .12em;
  color: var(--cream);
  margin: 14px 0 6px;
  line-height: 1.5;
}
.menu-card .name-en {
  font-family: var(--serif-ac);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: 18px;
}
.menu-card .price-row {
  display: flex; align-items: baseline; gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 18px;
}
.menu-card .price {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: 38px;
  color: var(--gold);
  letter-spacing: .02em;
}
.menu-card .duration {
  font-family: var(--serif-ac);
  font-size: 12px;
  letter-spacing: .24em;
  color: rgba(248,244,238,.55);
  text-transform: uppercase;
}
.menu-card .desc {
  font-family: var(--sans-jp);
  font-size: 13.5px;
  color: rgba(248,244,238,.66);
  line-height: 1.9;
  letter-spacing: .05em;
}
.menu-card .badge {
  position: absolute;
  top: 18px; right: -34px;
  background: var(--gold);
  color: var(--char);
  font-family: var(--serif-ac);
  font-size: 10px;
  letter-spacing: .3em;
  padding: 4px 40px;
  text-transform: uppercase;
  transform: rotate(35deg);
  z-index: 2;
}
@media (max-width: 900px) { .menu .menu-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .menu .menu-grid { grid-template-columns: 1fr; } }

/* ============================ FEATURES ============================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feat {
  padding: 44px 36px 46px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .5s var(--ease);
}
.feat:hover { background: rgba(201,168,76,.04); }
.feat .num {
  font-family: var(--serif-en);
  font-weight: 300;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
}
.feat .num::after {
  content: "";
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
  margin-top: 16px;
  opacity: .5;
}
.feat h3 {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: .14em;
  margin: 0 0 14px;
  color: var(--char);
}
.feat p {
  margin: 0;
  font-family: var(--sans-jp);
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
  letter-spacing: .05em;
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ============================ FOR YOU ============================ */
.foryou-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.foryou-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2014, #15110d);
  border: 1px solid rgba(201,168,76,.15);
  box-shadow:
    0 0 0 1px rgba(201,168,76,.18),
    0 0 28px 6px rgba(201,168,76,.23),
    0 0 65px 16px rgba(201,168,76,.09);
  animation: photo-rim-breathe 7s ease-in-out infinite;
}
.foryou-card .img {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.85) 100%),
              repeating-linear-gradient(-45deg, rgba(201,168,76,.04) 0 12px, transparent 12px 24px);
  display: flex; align-items: center; justify-content: center;
  font-family: monospace;
  font-size: 10px; letter-spacing: .2em;
  color: rgba(201,168,76,.32);
}
.foryou-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.foryou-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.7) 70%, rgba(0,0,0,.9) 100%);
  pointer-events: none;
}
.foryou-card .copy {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 22px 26px;
  z-index: 2;
}
.foryou-card .num {
  font-family: var(--serif-ac);
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.foryou-card .label {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: .1em;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 8px;
}
.foryou-card .cap {
  font-family: var(--sans-jp);
  font-size: 12.5px;
  color: rgba(248,244,238,.7);
  line-height: 1.7;
  letter-spacing: .04em;
  margin: 0;
}
.foryou-card:nth-child(1) { animation-delay: 0s; }
.foryou-card:nth-child(2) { animation-delay: 1.75s; }
.foryou-card:nth-child(3) { animation-delay: 3.5s; }
.foryou-card:nth-child(4) { animation-delay: 5.25s; }
.foryou-card::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 10; pointer-events: none;
  box-shadow: inset 0 0 24px 5px rgba(201,168,76,.11);
  animation: inner-rim-breathe 7s ease-in-out infinite;
}
.foryou-card:nth-child(2)::after { animation-delay: 1.75s; }
.foryou-card:nth-child(3)::after { animation-delay: 3.5s; }
.foryou-card:nth-child(4)::after { animation-delay: 5.25s; }
@media (max-width: 900px) { .foryou-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foryou-grid { grid-template-columns: 1fr; } .foryou-card { aspect-ratio: 5/3; } }

/* ============================ REVIEWS ============================ */
.review-skel {
  background: #f3ede6;
  border: 1px solid rgba(26,26,26,.05);
  border-radius: 2px;
  height: 300px;
  position: relative;
  overflow: hidden;
}
.review-skel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201,168,76,.08) 40%,
    rgba(201,168,76,.13) 50%,
    rgba(201,168,76,.08) 60%,
    transparent 100%
  );
  background-size: 250% 100%;
  animation: skel-shimmer 2s ease-in-out infinite;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: var(--cream);
  border: 1px solid rgba(26,26,26,.06);
  padding: 30px 28px 28px;
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  /* カード高さを固定してグリッドを揃える */
  display: flex;
  flex-direction: column;
  height: 300px;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-soft);
}
.review .stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: .15em;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.review .stars .off { color: rgba(26,26,26,.18); }
.review .body {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.95;
  letter-spacing: .04em;
  color: var(--ink);
  margin: 0;
  /* テキストが溢れたらクリップ＋グラデーションフェード */
  flex: 1;
  overflow: hidden;
  position: relative;
}
.review .body::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 52px;
  background: linear-gradient(to bottom, transparent 0%, var(--cream) 100%);
  pointer-events: none;
}
.review .meta {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  flex-shrink: 0; /* 名前・日付エリアは圧縮しない */
  margin-top: 0;
}
.review .name {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .1em;
}
.review .date {
  font-family: var(--serif-ac);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--muted);
}
.review::before {
  content: "“";
  position: absolute;
  top: 14px; right: 22px;
  font-family: var(--serif-en);
  font-size: 64px; line-height: 1;
  color: var(--gold);
  opacity: .25;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---- レビューCTAカード（Google Places API は最大5件なので、6件目に配置） ---- */
.review.review-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(135deg, #f5efe5 0%, #ede5d3 100%);
  border: 1px dashed rgba(201,168,76,.45);
  height: 300px;
  padding: 30px 24px;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.review.review-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(201,168,76,.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.review.review-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -16px rgba(0,0,0,.18);
  border-color: rgba(201,168,76,.9);
}
.review.review-cta:hover::before { opacity: 1; }

.review-cta-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 6px;
  text-shadow: 0 1px 2px rgba(201,168,76,.2);
}
.review-cta-msg {
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
  letter-spacing: .04em;
}
.review-cta-link {
  font-family: var(--serif-ac);
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  margin-top: 8px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.review.review-cta:hover .review-cta-link {
  background: var(--gold);
  color: var(--char);
}

/* ============================ BLOG ============================ */
#blog .wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.blog-card {
  background: var(--char-2);
  color: var(--cream);
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.blog-card .image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a2014, #15110d);
  display: flex; align-items: center; justify-content: center;
  font-family: monospace;
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(201,168,76,.32);
}
.blog-card .image::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 65%;
  background:
    repeating-linear-gradient(-45deg, rgba(201,168,76,.04) 0 12px, transparent 12px 24px);
  pointer-events: none;
}
.blog-card .body {
  padding: 22px 22px 26px;
}
.blog-card .date {
  font-family: var(--serif-ac);
  font-size: 10.5px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.blog-card .cap {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .06em;
  color: var(--cream);
  margin: 0 0 16px;
  transition: color .3s var(--ease);
  text-decoration: none;
}
.blog-card .cta-lbl {
  font-family: var(--serif-ac);
  font-size: 11px;
  letter-spacing: .26em;
  color: var(--gold);
  text-transform: uppercase;
}
.blog-card:hover .cap {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}
.blog-card .tape { display: none; }
a.blog-card {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* CMS skeleton */
.cms-loading {
  min-height: 280px;
  position: relative;
}
.cms-loading::before {
  content: "";
  display: block;
  grid-column: 1 / -1;
  height: 280px;
  background: linear-gradient(90deg, rgba(255,255,255,.03), rgba(255,255,255,.07), rgba(255,255,255,.03));
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
  border: 1px solid var(--line-dark);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 1000px) { #blog .wall { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { #blog .wall { grid-template-columns: 1fr; } }

/* ============================ ACCESS ============================ */
.access-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 4vw, 60px);
}
.map-frame {
  aspect-ratio: 5 / 4;
  background: var(--char-3);
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.map-frame iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(.3) contrast(.95);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table th, .hours-table td {
  font-family: var(--serif-jp);
  font-size: 14px;
  text-align: left;
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
  letter-spacing: .12em;
}
.hours-table th {
  font-weight: 500;
  color: var(--gold);
  width: 30%;
}
.hours-table tr.today th, .hours-table tr.today td {
  background: rgba(201,168,76,.08);
}
.access-meta {
  list-style: none;
  padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.access-meta li {
  display: grid; grid-template-columns: 110px 1fr; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}
.access-meta .k {
  font-family: var(--serif-ac);
  font-size: 11px;
  letter-spacing: .28em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 3px;
}
.access-meta .v {
  font-family: var(--serif-jp);
  font-size: 14.5px;
  letter-spacing: .08em;
  color: var(--char);
  line-height: 1.7;
}
@media (max-width: 900px) { .access-grid { grid-template-columns: 1fr; } }

/* ============================ SNS ============================ */
.sns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sns-card {
  padding: 40px 36px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  display: flex; flex-direction: column;
  gap: 12px;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
  color: var(--cream);
}
.sns-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.sns-card .platform {
  font-family: var(--serif-ac);
  font-size: 11px;
  letter-spacing: .32em;
  color: var(--gold);
  text-transform: uppercase;
}
.sns-card .handle {
  font-family: var(--serif-en);
  font-weight: 300;
  font-size: 30px;
  letter-spacing: .04em;
  color: var(--cream);
  margin: 6px 0 8px;
}
.sns-card .desc {
  font-family: var(--sans-jp);
  font-size: 13.5px;
  color: rgba(248,244,238,.65);
  line-height: 1.8;
}
.sns-card .arr-go {
  align-self: flex-end;
  font-family: var(--serif-ac);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 6px;
}
@media (max-width: 700px) { .sns-grid { grid-template-columns: 1fr; } }

/* ============================ BOOKING ============================ */
.book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.book-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 38px 30px 32px;
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.book-card.featured {
  background: var(--char);
  color: var(--cream);
}
.book-card.featured h3 { color: var(--cream); }
.book-card.featured .desc { color: rgba(248,244,238,.7); }
.book-card.featured::before {
  content: "RECOMMENDED";
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--serif-ac);
  font-size: 9.5px; letter-spacing: .3em;
  background: var(--gold); color: var(--char);
  padding: 4px 10px;
}
.book-card:hover { transform: translateY(-5px); box-shadow: var(--sh-soft); }
.book-card .num {
  font-family: var(--serif-en);
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
}
.book-card h3 {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: .12em;
  margin: 6px 0 2px;
  color: var(--char);
}
.book-card .desc {
  font-family: var(--sans-jp);
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--ink-soft);
  flex: 1;
}
.book-card .btn {
  margin-top: 10px;
  align-self: flex-start;
}
@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; } }

/* ============================ FAQ ============================ */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 26px 0;
  cursor: pointer;
  background: none;
  border: 0;
  width: 100%;
  text-align: left;
  color: inherit;
  transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--gold); }
.faq-q .qmark {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
  padding-top: 2px;
}
.faq-q .qtxt {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .08em;
  line-height: 1.6;
  flex: 1;
}
.faq-q .plus {
  width: 18px; height: 18px;
  position: relative;
  flex-shrink: 0;
  margin-top: 4px;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute;
  background: var(--gold);
  left: 0; top: 50%;
  width: 100%; height: 1px;
  transition: transform .4s var(--ease);
}
.faq-q .plus::after { transform: rotate(90deg); }
.faq-item.open .faq-q .plus::after { transform: rotate(0); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s var(--ease);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner {
  overflow: hidden;
}
.faq-a-text {
  display: flex;
  gap: 22px;
  padding: 0 0 28px 46px;
}
.faq-a-text .amark {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
}
.faq-a-text p {
  margin: 0;
  font-family: var(--sans-jp);
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--ink-soft);
  letter-spacing: .05em;
}

/* ============================ CTA ============================ */
.cta {
  background:
    radial-gradient(ellipse at center, rgba(201,168,76,.12), transparent 60%),
    linear-gradient(180deg, #161210 0%, #0E0C0B 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta .lotus-bg {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  opacity: .07;
  color: var(--gold);
}
.cta-box {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
}
.cta h2 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.4;
  letter-spacing: .08em;
  color: var(--cream);
  margin: 22px 0 8px;
}
.cta h2 .it {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  display: block;
  margin-top: 4px;
}
.cta .cta-sub {
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 2;
  color: rgba(248,244,238,.7);
  letter-spacing: .1em;
  margin: 24px auto 38px;
  max-width: 620px;
}
.cta .actions {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
}
.cta .cta-note {
  font-family: var(--sans-jp);
  font-size: 12.5px;
  color: rgba(248,244,238,.45);
  margin-top: 28px;
  letter-spacing: .14em;
}

@media (max-width:480px) {
  .cta-box {
    padding: 24px 16px 28px;
    margin: 0;
    overflow: hidden;
    transform: none;
  }
  .cta .actions { flex-direction: column; align-items: stretch; }
  .cta .actions .btn { width: 100%; justify-content: center; padding: 16px 20px; }
  .cta h2 { overflow-wrap: break-word; word-break: break-all; }
  .cta .cta-note { font-size: 13px; overflow-wrap: break-word; }
}

/* ============================ FOOTER ============================ */
footer {
  background: #0B0A09;
  color: rgba(248,244,238,.6);
  padding: 70px 0 30px;
  border-top: 1px solid var(--line-dark);
}
footer .foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
footer .foot-brand .jp {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: .22em;
  color: var(--cream);
}
footer .foot-brand .en {
  font-family: var(--serif-ac);
  font-size: 10px;
  letter-spacing: .42em;
  color: var(--gold);
  margin: 6px 0 18px;
}
footer .foot-brand p {
  font-family: var(--sans-jp);
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: .04em;
  color: rgba(248,244,238,.55);
  max-width: 320px;
}
footer h4 {
  font-family: var(--serif-ac);
  font-size: 11px;
  letter-spacing: .32em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 500;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li {
  font-family: var(--sans-jp);
  font-size: 13px;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
footer ul li a:hover { color: var(--gold); }
footer .copy {
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--serif-ac);
  font-size: 11px;
  letter-spacing: .28em;
  color: rgba(248,244,238,.4);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  footer .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  footer .foot-grid { grid-template-columns: 1fr; gap: 36px; }
}
footer .produced-by {
  text-align: center;
  padding-top: 14px;
  font-family: var(--serif-ac);
  font-size: 10px;
  letter-spacing: .26em;
  color: rgba(248,244,238,.22);
  text-transform: uppercase;
}
footer .produced-by a {
  color: rgba(201,168,76,.40);
  transition: color .3s var(--ease);
}
footer .produced-by a:hover { color: var(--gold); }

/* ============================ Reveal animations ============================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-stagger.in > * {
  opacity: 1; transform: none;
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .40s; }

/* ===================================================================
   LUXURY ANIMATION SYSTEM — RAKSAA
   =================================================================== */

/* ---- CMS pending — hide fallback content until data arrives ---- */
.cms-pending {
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity .7s ease !important;
}

/* ---- Gold particle canvas (fixed, behind content) ---- */
#raksaa-particles {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ---- Hero aurora (glowing ambient light) ---- */
.hero-aurora {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.hero-aurora::before {
  content: '';
  position: absolute;
  width: min(90vw, 900px); height: min(90vw, 900px);
  top: -35%; left: 50%;
  margin-left: calc(min(90vw, 900px) / -2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.18) 0%, rgba(201,168,76,.06) 40%, transparent 70%);
  filter: blur(80px);
  animation: aurora-breathe 9s ease-in-out infinite;
}
.hero-aurora::after {
  content: '';
  position: absolute;
  width: min(50vw, 500px); height: min(50vw, 500px);
  bottom: -15%; right: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158,130,50,.14) 0%, transparent 65%);
  filter: blur(70px);
  animation: aurora-breathe 13s ease-in-out infinite 4s;
}

/* ---- Glow orbs injected into .sec-dark ---- */
.lux-glow {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.lux-glow::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; left: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 60%);
  filter: blur(90px);
  animation: orb-wander 20s ease-in-out infinite;
}
.lux-glow::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  bottom: -120px; right: 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.09) 0%, transparent 60%);
  filter: blur(70px);
  animation: orb-wander 28s ease-in-out infinite reverse;
}

/* ---- Gold sweep across dark sections ---- */
.lux-sweep {
  position: absolute; inset: 0;
  background: linear-gradient(112deg,
    transparent 15%,
    rgba(201,168,76,.055) 50%,
    transparent 85%
  );
  background-size: 300% 100%;
  animation: sweep-cross 14s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}

/* ---- Sparkle dots in hero ---- */
.sparkle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px 3px rgba(201,168,76,.55), 0 0 16px 6px rgba(201,168,76,.25);
  pointer-events: none;
  animation: sparkle-twinkle var(--sp-dur, 2.8s) ease-in-out infinite var(--sp-delay, 0s);
  z-index: 1;
}

/* ---- Image skeleton + fade-in ---- */
img.cms-fade {
  opacity: 0;
  transition: opacity .9s ease;
}
img.cms-fade.img-loaded {
  opacity: 1;
}

/* ---- Gold shimmer text ---- */
.gold-shine {
  background: linear-gradient(90deg,
    #9E8232 0%, #C9A84C 28%, #f5e48c 48%, #D8BE6F 58%, #9E8232 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  animation: gold-text-sweep 4s linear infinite;
  display: inline;
}

/* ---- Section border light ---- */
.sec-dark + section::before,
section + .sec-dark::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(201,168,76,.5) 30%, rgba(245,228,140,.8) 50%, rgba(201,168,76,.5) 70%, transparent 100%
  );
  background-size: 200% 100%;
  animation: border-flow 5s ease-in-out infinite;
}

/* ============================ Keyframes ============================ */
@keyframes aurora-breathe {
  0%, 100% { opacity: .65; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.14); }
}
@keyframes orb-wander {
  0%   { transform: translate(0,   0)   scale(1);    }
  25%  { transform: translate(60px, -50px) scale(1.1);  }
  50%  { transform: translate(-40px, 70px) scale(.93); }
  75%  { transform: translate(-80px,-30px) scale(1.06); }
  100% { transform: translate(0,   0)   scale(1);    }
}
@keyframes sweep-cross {
  0%, 100% { background-position: 300% 0; }
  50%       { background-position: -100% 0; }
}
@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg);   }
  25%       { opacity: 1; transform: scale(1) rotate(45deg);  }
  50%       { opacity: .8; transform: scale(.8) rotate(90deg); }
  75%       { opacity: 1; transform: scale(1.2) rotate(135deg); }
}
@keyframes gold-text-sweep {
  0%   { background-position: 220% center; }
  100% { background-position: -220% center; }
}
@keyframes border-flow {
  0%, 100% { background-position: 200% 0; opacity: .6; }
  50%       { background-position: -200% 0; opacity: 1; }
}
/* フォーユーカード用（暗い背景） */
@keyframes photo-rim-breathe {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(201,168,76,.18),
      0 0 22px 5px rgba(201,168,76,.20),
      0 0 55px 14px rgba(201,168,76,.08);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(201,168,76,.55),
      0 0 55px 16px rgba(201,168,76,.52),
      0 0 110px 35px rgba(255,190,60,.20);
  }
}
/* アバウト写真用（明るい背景でも見えるアンバー色） */
@keyframes about-rim-breathe {
  0%, 100% {
    border-color: rgba(201,168,76,.28);
    box-shadow:
      0 0 0 1px rgba(130, 82, 8, .22),
      0 0 20px 6px rgba(130, 82, 8, .18),
      0 0 50px 14px rgba(130, 82, 8, .09);
  }
  50% {
    border-color: rgba(201,168,76,.75);
    box-shadow:
      0 0 0 1px rgba(165, 108, 12, .52),
      0 0 45px 15px rgba(165, 108, 12, .44),
      0 0 95px 30px rgba(190, 135, 18, .20);
  }
}
@keyframes inner-rim-breathe {
  0%, 100% { opacity: .50; box-shadow: inset 0 0 22px 5px rgba(201,168,76,.10); }
  50%       { opacity: 1;   box-shadow: inset 0 0 50px 15px rgba(201,168,76,.30); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============================ Mobile Optimization (≤ 600px) ============================ */
@media (max-width: 600px) {

  /* --- Nav brand --- */
  .nav .brand .en {
    letter-spacing: .14em;
    font-size: 9px;
    max-width: calc(100vw - 100px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* --- Hero --- */
  .hero { padding: 100px 0 56px; }

  .hero-copy .h-eyebrow {
    font-size: 10px;
    letter-spacing: .14em;
    gap: 8px;
    overflow: hidden;
  }
  .hero-copy .h-eyebrow::before { width: 22px; }

  .hero-copy h1 {
    font-size: clamp(26px, 7.5vw, 36px);
    overflow-wrap: break-word;
    word-break: break-all;
    line-break: auto;
    letter-spacing: .05em;
  }

  .hero-copy .h-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-copy .h-actions .btn {
    justify-content: center;
    padding: 15px 20px;
  }

  .hero-copy .h-meta {
    gap: 16px;
    margin-top: 28px;
    padding-top: 22px;
  }

  .hero-photos {
    grid-template-rows: 88px 120px 88px;
    margin-top: 32px;
  }

  /* --- Section head --- */
  .section-title {
    overflow-wrap: break-word;
    word-break: break-all;
  }
  .eyebrow {
    letter-spacing: .22em;
    font-size: 11px;
  }

  /* --- About photos --- */
  .about-photos {
    grid-template-rows: 180px 130px;
  }

  /* --- Features --- */
  .features-list {
    grid-template-columns: 1fr;
  }

  /* --- Access hours table --- */
  .hours-table td, .hours-table th {
    padding: 10px 12px;
    font-size: 13px;
  }

  /* --- General btn sizing --- */
  .btn {
    font-size: 13px;
    letter-spacing: .10em;
  }
}
