@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Montserrat:wght@300;400;600;700;900&display=swap');

/* ═══════════════════════════════════════════════════════════
   NANNA 2026 – ULTRA LUXURY DESIGN SYSTEM
   競合を圧倒する最先端デザイン
═══════════════════════════════════════════════════════════ */

:root {
  --gold:            #C9A84C;
  --gold-light:      #F0D080;
  --gold-dark:       #8B6914;
  --gold-gradient:   linear-gradient(135deg, #8B6914 0%, #C9A84C 45%, #F0D080 100%);
  --gold-shine:      linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  --crimson:         #8B0000;
  --crimson-soft:    rgba(139,0,0,0.15);

  --bg-void:         #030305;
  --bg-deep:         #08080F;
  --bg-card:         rgba(15,15,25,0.7);
  --bg-glass:        rgba(255,255,255,0.04);
  --bg-glass-gold:   rgba(201,168,76,0.06);

  --text-main:       #F5F0E8;
  --text-muted:      #B8B0A0;
  --text-dim:        #605850;

  --border-light:    rgba(255,255,255,0.07);
  --border-gold:     rgba(201,168,76,0.25);
  --border-crimson:  rgba(139,0,0,0.3);

  --container-max:   1320px;
  --radius-sm:       6px;
  --radius-md:       14px;
  --radius-lg:       28px;
  --radius-full:     9999px;

  --font-serif:  'Playfair Display', 'Noto Serif JP', serif;
  --font-sans:   'Noto Sans JP', 'Montserrat', sans-serif;
  --font-en:     'Montserrat', sans-serif;

  --shadow-gold: 0 8px 40px rgba(201,168,76,0.18);
  --shadow-dark: 0 20px 60px rgba(0,0,0,0.7);
  --shadow-card: 0 4px 30px rgba(0,0,0,0.5);
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background: var(--bg-void);
  color: var(--text-main);
  overflow-x: hidden;
}
body { line-height:1.7; -webkit-font-smoothing:antialiased; }
a { text-decoration:none; }
img { display:block; max-width:100%; }

/* ── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--bg-void); }
::-webkit-scrollbar-thumb { background:var(--gold-dark); border-radius:2px; }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes shimmer {
  0%   { background-position:-200% center; }
  100% { background-position:200% center; }
}
@keyframes pulse-gold {
  0%,100% { box-shadow:0 0 0 0 rgba(201,168,76,0.4); }
  50%     { box-shadow:0 0 0 12px rgba(201,168,76,0); }
}
@keyframes float {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-12px); }
}
@keyframes gradient-x {
  0%,100% { background-position:0% 50%; }
  50%     { background-position:100% 50%; }
}
@keyframes line-grow {
  from { width:0; }
  to   { width:60px; }
}
@keyframes spin-slow {
  from { transform:rotate(0deg); }
  to   { transform:rotate(360deg); }
}

.reveal {
  opacity:0;
  transform:translateY(35px);
  transition:opacity 0.9s cubic-bezier(0.16,1,0.3,1),
             transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in-view { opacity:1; transform:translateY(0); }
.reveal-left  { opacity:0; transform:translateX(-40px); transition:opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.in-view { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(40px);  transition:opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal-right.in-view { opacity:1; transform:translateX(0); }

/* ══════════════════════════════════════════════════════════
   UTILITY
══════════════════════════════════════════════════════════ */
.container { max-width:var(--container-max); margin:0 auto; padding:0 28px; }
.section-padding { padding:130px 0; }
.text-center { text-align:center; }
.text-gold { color:var(--gold); }

.glass {
  background:var(--bg-glass);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  border:1px solid var(--border-light);
  border-radius:var(--radius-md);
}
.glass-gold {
  background:var(--bg-glass-gold);
  backdrop-filter:blur(20px);
  border:1px solid var(--border-gold);
  border-radius:var(--radius-md);
}

.text-gradient {
  background:var(--gold-gradient);
  background-size:200% auto;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:shimmer 3s linear infinite;
}

/* Section Titles */
.sec-label {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-en);
  font-size:11px;
  font-weight:700;
  letter-spacing:5px;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:18px;
}
.sec-label::before,
.sec-label::after {
  content:'';
  display:block;
  width:24px;
  height:1px;
  background:var(--gold);
  opacity:0.6;
}
.sec-title {
  font-family:var(--font-serif);
  font-size:clamp(28px,4vw,48px);
  font-weight:900;
  line-height:1.2;
  letter-spacing:1px;
  margin-bottom:18px;
}
.sec-desc {
  font-size:16px;
  color:var(--text-muted);
  max-width:680px;
  margin:0 auto 64px;
  line-height:1.95;
}

/* Divider */
.divider {
  display:block;
  width:60px;
  height:2px;
  background:var(--gold-gradient);
  margin:20px auto 40px;
  border-radius:2px;
}

/* Grids */
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:40px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-4 { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media(max-width:1024px) {
  .grid-3,.grid-4 { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:640px) {
  .grid-2,.grid-3,.grid-4 { grid-template-columns:1fr; }
  .section-padding { padding:80px 0; }
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */
.btn-gold {
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--gold-gradient);
  color:#0a0800;
  font-family:var(--font-en);
  font-weight:700;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  padding:18px 44px;
  border-radius:var(--radius-full);
  border:none;
  cursor:pointer;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow:var(--shadow-gold);
}
.btn-gold::after {
  content:'';
  position:absolute;
  inset:0;
  background:var(--gold-shine);
  background-size:200% auto;
  animation:shimmer 2.5s linear infinite;
  opacity:0.4;
}
.btn-gold:hover { transform:translateY(-3px) scale(1.02); box-shadow:0 14px 40px rgba(201,168,76,0.35); }

.btn-line {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:#06C755;
  color:#fff;
  font-weight:700;
  font-size:14px;
  padding:18px 44px;
  border-radius:var(--radius-full);
  transition:all 0.3s;
  box-shadow:0 6px 20px rgba(6,199,85,0.25);
}
.btn-line:hover { background:#05b14c; transform:translateY(-3px); box-shadow:0 12px 30px rgba(6,199,85,0.35); }

.btn-outline {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:transparent;
  color:var(--gold);
  border:1px solid var(--border-gold);
  font-size:13px;
  font-weight:600;
  padding:14px 36px;
  border-radius:var(--radius-full);
  transition:all 0.3s;
}
.btn-outline:hover { background:var(--bg-glass-gold); transform:translateY(-2px); }

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
#header {
  position:fixed;
  top:0; left:0; width:100%;
  z-index:900;
  height:80px;
  transition:all 0.5s cubic-bezier(0.16,1,0.3,1);
}
#header.scrolled {
  background:rgba(3,3,8,0.92);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border-gold);
  height:64px;
  box-shadow:0 4px 30px rgba(0,0,0,0.5);
}
.header-inner {
  max-width:var(--container-max);
  margin:0 auto;
  padding:0 32px;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* Logo */
.logo { display:flex; align-items:center; gap:12px; }
.logo-icon {
  width:42px; height:42px;
  border-radius:8px;
  background:var(--gold-gradient);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-serif);
  font-size:20px; font-weight:900;
  color:#0a0800;
}
.logo-text-wrap {}
.logo-name {
  font-family:var(--font-serif);
  font-size:26px;
  font-weight:900;
  color:#fff;
  letter-spacing:3px;
  line-height:1;
}
.logo-tagline {
  font-size:9px;
  letter-spacing:2px;
  color:var(--gold);
  display:block;
  margin-top:2px;
  font-family:var(--font-en);
  text-transform:uppercase;
}

/* Nav */
.nav-menu {
  display:flex;
  align-items:center;
  gap:36px;
}
.nav-menu a {
  color:rgba(255,255,255,0.65);
  font-size:13px;
  font-weight:500;
  letter-spacing:0.5px;
  transition:color 0.3s;
  position:relative;
}
.nav-menu a:hover { color:var(--gold); }
.nav-menu a::after {
  content:'';
  position:absolute;
  bottom:-4px; left:0;
  width:0; height:1px;
  background:var(--gold);
  transition:width 0.3s;
}
.nav-menu a:hover::after { width:100%; }
.nav-cta {
  background:var(--gold-gradient) !important;
  color:#0a0800 !important;
  font-weight:700 !important;
  padding:10px 22px;
  border-radius:var(--radius-full);
  box-shadow:var(--shadow-gold);
  font-size:13px !important;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { transform:scale(1.05); }

/* Hamburger */
.hamburger {
  display:none;
  flex-direction:column;
  gap:5px;
  background:none; border:none;
  cursor:pointer; padding:8px;
  z-index:1010;
}
.hamburger span {
  display:block; width:26px; height:2px;
  background:#fff;
  transition:all 0.4s cubic-bezier(0.16,1,0.3,1);
  border-radius:2px;
}
.hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(4px,5px); }
.hamburger.active span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(4px,-5px); }

@media(max-width:1024px) {
  .nav-menu { display:none; }
  .hamburger { display:flex; }
}

/* Mobile Nav */
.mobile-overlay {
  position:fixed; inset:0;
  background:rgba(0,0,0,0.75);
  backdrop-filter:blur(8px);
  z-index:950;
  opacity:0; pointer-events:none;
  transition:opacity 0.4s;
}
.mobile-overlay.active { opacity:1; pointer-events:auto; }

.mobile-nav {
  position:fixed;
  top:0; right:-100%; width:min(360px,85vw); height:100%;
  background:rgba(5,5,12,0.98);
  border-left:1px solid var(--border-gold);
  z-index:960;
  transition:right 0.5s cubic-bezier(0.16,1,0.3,1);
  padding:100px 24px 50px;
  overflow-y:auto;
}
.mobile-nav.active { right:0; }
.mobile-nav-inner a {
  display:block;
  color:var(--text-main);
  font-size:15px;
  font-weight:700;
  margin-bottom:16px;
  transition:color 0.3s;
  border-bottom:1px solid var(--border-light);
  padding-bottom:12px;
}
.mobile-nav-inner a:hover { color:var(--gold); }
.mobile-nav-cta {
  margin-top:40px;
  display:flex; flex-direction:column; gap:14px;
}
.mobile-nav-cta a { width:100%; text-align:center; margin-bottom:12px; border-bottom:none; padding:14px 16px !important; font-size:14px; box-sizing: border-box; }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.home-hero {
  position:relative;
  height:100vh;
  min-height:720px;
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  overflow:hidden;
}
.home-hero-bg {
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  filter:brightness(0.32) saturate(0.8);
  transform:scale(1.05);
  transition:transform 8s ease-out;
  z-index:0;
}
.home-hero-overlay {
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, transparent 0%, rgba(3,3,8,0.6) 70%, rgba(3,3,8,0.95) 100%),
    linear-gradient(to bottom, rgba(3,3,8,0.3) 0%, transparent 40%, rgba(3,3,8,0.9) 100%);
  z-index:1;
}
.hero-content {
  position:relative;
  z-index:10;
  padding:0 24px;
  max-width:1000px;
}
.hero-badge {
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(201,168,76,0.12);
  border:1px solid var(--border-gold);
  border-radius:var(--radius-full);
  padding:8px 20px;
  font-size:11px;
  font-family:var(--font-en);
  font-weight:700;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:32px;
  animation:fadeUp 0.8s 0.2s both;
}
.hero-badge-dot {
  width:6px; height:6px;
  border-radius:50%;
  background:var(--gold);
  animation:pulse-gold 2s infinite;
}
.hero-title {
  font-family:var(--font-serif);
  font-size:clamp(42px,8vw,90px);
  font-weight:900;
  line-height:1.08;
  letter-spacing:-1px;
  margin-bottom:28px;
  animation:fadeUp 0.8s 0.4s both;
}
.hero-title .gold { color:var(--gold); display:block; }
.hero-desc {
  font-size:clamp(15px,2vw,18px);
  color:var(--text-muted);
  line-height:2;
  max-width:700px;
  margin:0 auto 48px;
  animation:fadeUp 0.8s 0.55s both;
}
.hero-btns {
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  animation:fadeUp 0.8s 0.7s both;
}
.hero-stats {
  display:flex;
  justify-content:center;
  gap:60px;
  margin-top:70px;
  animation:fadeUp 0.8s 0.85s both;
  flex-wrap:wrap;
}
.stat-item { text-align:center; }
.stat-num {
  font-family:var(--font-serif);
  font-size:44px;
  font-weight:900;
  color:var(--gold);
  display:block;
  line-height:1;
}
.stat-label {
  font-size:12px;
  color:var(--text-muted);
  letter-spacing:1px;
  margin-top:6px;
  display:block;
}
.hero-scroll {
  position:absolute;
  bottom:36px; left:50%;
  transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center;
  gap:8px;
  font-size:10px;
  letter-spacing:3px;
  color:var(--gold);
  font-family:var(--font-en);
  z-index:10;
  opacity:0.7;
  animation:float 3s ease infinite;
}
.hero-scroll-line {
  width:1px; height:50px;
  background:linear-gradient(to bottom, var(--gold), transparent);
}

/* Inner page hero (shorter) */
.page-hero {
  position:relative;
  padding:180px 0 100px;
  text-align:center;
  overflow:hidden;
}
.page-hero-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:brightness(0.25) saturate(0.7);
  z-index:0;
}
.page-hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(3,3,8,0.5) 0%, rgba(3,3,8,0.85) 100%);
  z-index:1;
}
.page-hero-content { position:relative; z-index:2; }

/* ══════════════════════════════════════════════════════════
   BENTO GRID
══════════════════════════════════════════════════════════ */
.bento-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-auto-rows:220px;
  gap:16px;
  max-width:var(--container-max);
  margin:0 auto;
  padding:0 28px;
}
.bento-item {
  background:var(--bg-card);
  border:1px solid var(--border-light);
  border-radius:var(--radius-md);
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  position:relative;
  overflow:hidden;
  transition:all 0.5s cubic-bezier(0.16,1,0.3,1);
  cursor:default;
}
.bento-item::before {
  content:'';
  position:absolute; inset:0;
  background:var(--gold-gradient);
  opacity:0;
  transition:opacity 0.4s;
}
.bento-item:hover {
  border-color:var(--border-gold);
  transform:translateY(-6px) scale(1.01);
  box-shadow:var(--shadow-card), 0 0 0 1px var(--border-gold);
}
.bento-item:hover::before { opacity:0.04; }
.bento-item.large { grid-column:span 2; grid-row:span 2; }
.bento-item.wide  { grid-column:span 2; }
.bento-item.tall  { grid-row:span 2; }
.bento-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0.22;
  transition:opacity 0.4s, transform 0.6s;
  z-index:0;
}
.bento-item:hover .bento-bg { opacity:0.32; transform:scale(1.05); }
.bento-inner { position:relative; z-index:1; }
.bento-num {
  font-family:var(--font-en);
  font-size:52px;
  font-weight:900;
  color:var(--gold);
  opacity:0.8;
  line-height:1;
  margin-bottom:12px;
  display:block;
}
.bento-h { font-size:20px; font-weight:700; margin-bottom:10px; }
.bento-p { font-size:13px; color:var(--text-muted); line-height:1.8; }

@media(max-width:1024px) {
  .bento-grid { grid-template-columns:repeat(2,1fr); }
  .bento-item.large { grid-column:span 2; grid-row:span 1; }
}
@media(max-width:640px) {
  .bento-grid { grid-template-columns:1fr; grid-auto-rows:auto; }
  .bento-item.large,.bento-item.wide { grid-column:span 1; }
  .bento-item.tall { grid-row:span 1; }
}

/* ══════════════════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════════════════ */
.feature-card {
  background:var(--bg-card);
  border:1px solid var(--border-light);
  border-radius:var(--radius-md);
  padding:36px 30px;
  transition:all 0.4s cubic-bezier(0.16,1,0.3,1);
  position:relative;
  overflow:hidden;
}
.feature-card::after {
  content:'';
  position:absolute;
  bottom:0; left:0;
  width:100%; height:2px;
  background:var(--gold-gradient);
  transform:scaleX(0);
  transition:transform 0.4s;
  transform-origin:left;
}
.feature-card:hover { border-color:var(--border-gold); transform:translateY(-6px); box-shadow:var(--shadow-card); }
.feature-card:hover::after { transform:scaleX(1); }
.feature-icon {
  width:56px; height:56px;
  border-radius:12px;
  background:var(--bg-glass-gold);
  border:1px solid var(--border-gold);
  display:flex; align-items:center; justify-content:center;
  font-size:24px;
  margin-bottom:20px;
}
.feature-title { font-size:18px; font-weight:700; margin-bottom:10px; }
.feature-desc { font-size:14px; color:var(--text-muted); line-height:1.9; }

/* Area Cards */
.area-card {
  background:var(--bg-card);
  border:1px solid var(--border-light);
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.area-card:hover { border-color:var(--border-gold); transform:translateY(-6px); box-shadow:var(--shadow-card); }
.area-card .a-img { width:100%; height:200px; overflow:hidden; }
.area-card .a-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s; }
.area-card:hover .a-img img { transform:scale(1.08); }
.area-card-body { padding:24px; }
.area-card-body h4 { font-size:18px; color:var(--gold); margin-bottom:8px; }
.area-card-body p { font-size:13px; color:var(--text-muted); margin-bottom:18px; line-height:1.8; }

/* Price Cards */
.price-group {
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  max-width:760px;
  margin:0 auto;
}
.price-card {
  background:var(--bg-card);
  border:1px solid var(--border-light);
  border-radius:var(--radius-lg);
  padding:50px;
  position:relative;
  overflow:hidden;
}
.price-card.featured {
  background:linear-gradient(135deg, rgba(15,12,5,0.95), rgba(25,20,8,0.95));
  border-color:var(--border-gold);
  box-shadow:var(--shadow-gold), inset 0 0 60px rgba(201,168,76,0.04);
}
.price-card.featured::before {
  content:'';
  position:absolute; top:0; left:0; right:0;
  height:2px;
  background:var(--gold-gradient);
}
.price-recommend {
  display:inline-block;
  background:var(--gold-gradient);
  color:#0a0800;
  font-size:11px;
  font-weight:900;
  letter-spacing:2px;
  padding:5px 16px;
  border-radius:var(--radius-full);
  margin-bottom:20px;
  font-family:var(--font-en);
  text-transform:uppercase;
}
.price-name { font-size:16px; font-weight:700; margin-bottom:24px; }
.price-amount {
  display:flex;
  align-items:baseline;
  gap:6px;
  margin-bottom:10px;
}
.price-yen {
  font-family:var(--font-en);
  font-size:48px;
  font-weight:900;
  color:var(--gold);
  line-height:1;
}
.price-detail { font-size:14px; color:var(--text-muted); }
.price-list {
  list-style:none;
  margin-top:32px;
  display:flex; flex-direction:column; gap:14px;
}
.price-list li {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  color:var(--text-muted);
}
.price-list li::before {
  content:'✦';
  color:var(--gold);
  font-size:10px;
  flex-shrink:0;
}
.price-note {
  margin-top:20px;
  font-size:12px;
  color:var(--text-dim);
  line-height:2;
}

/* Cancel table */
.cancel-table {
  width:100%;
  border-collapse:collapse;
  margin-top:30px;
}
.cancel-table th {
  background:var(--bg-glass-gold);
  color:var(--gold);
  padding:14px 20px;
  text-align:left;
  font-size:13px;
  font-weight:600;
}
.cancel-table td {
  padding:14px 20px;
  border-bottom:1px solid var(--border-light);
  font-size:14px;
  color:var(--text-muted);
}
.cancel-table tr:last-child td { border-bottom:none; }
.cancel-pct { color:var(--gold); font-weight:700; }
.cancel-pct.danger { color:#e05555; }

/* ══════════════════════════════════════════════════════════
   SIMULATOR
══════════════════════════════════════════════════════════ */
.sim-card {
  background:linear-gradient(135deg, rgba(10,8,3,0.95), rgba(18,14,5,0.95));
  border:1px solid var(--border-gold);
  border-radius:var(--radius-lg);
  padding:60px;
  max-width:860px;
  margin:0 auto;
  box-shadow:var(--shadow-gold);
  position:relative;
  overflow:hidden;
}
.sim-card::before {
  content:'';
  position:absolute; top:0; left:0; right:0;
  height:2px;
  background:var(--gold-gradient);
}
.sim-inputs { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:20px; margin-bottom:40px; }
.sim-field label { display:block; font-size:11px; font-weight:700; letter-spacing:2px; color:var(--gold); margin-bottom:10px; font-family:var(--font-en); text-transform:uppercase; }
.sim-field input,.sim-field select {
  width:100%;
  background:rgba(0,0,0,0.5);
  border:1px solid var(--border-gold);
  color:#fff;
  padding:15px 18px;
  border-radius:10px;
  font-size:16px;
  font-family:var(--font-sans);
  transition:border-color 0.3s;
  -webkit-appearance:none;
}
.sim-field input:focus,.sim-field select:focus { outline:none; border-color:var(--gold); }
.sim-result {
  text-align:center;
  padding:40px;
  background:rgba(201,168,76,0.05);
  border-radius:16px;
  border:1px dashed rgba(201,168,76,0.3);
}
.sim-result-label { font-size:12px; color:var(--text-muted); letter-spacing:2px; margin-bottom:12px; }
.sim-result-num {
  font-family:var(--font-serif);
  font-size:56px;
  font-weight:900;
  color:var(--gold);
  line-height:1;
}
.sim-note { font-size:11px; color:var(--text-dim); margin-top:12px; }
@media(max-width:640px) { .sim-card { padding:36px 24px; } }

/* ══════════════════════════════════════════════════════════
   GALLERY GRID
══════════════════════════════════════════════════════════ */
.gallery-masonry {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.gallery-item {
  position:relative;
  overflow:hidden;
  border-radius:10px;
  cursor:pointer;
}
.gallery-item:nth-child(3n+1) { grid-row:span 2; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.gallery-item:hover img { transform:scale(1.08); }
.gallery-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity:0;
  transition:opacity 0.4s;
  display:flex; align-items:flex-end; padding:16px;
}
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-caption { font-size:12px; color:rgba(255,255,255,0.9); }
@media(max-width:1024px) { .gallery-masonry { grid-template-columns:repeat(3,1fr); } }
@media(max-width:640px) { .gallery-masonry { grid-template-columns:repeat(2,1fr); } .gallery-item:nth-child(3n+1) { grid-row:span 1; } }

/* Cast Cards */
.cast-card {
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-md);
  cursor:pointer;
  aspect-ratio:3/4;
}
.cast-card img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.cast-card:hover img { transform:scale(1.06); }
.cast-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  display:flex; align-items:flex-end;
  padding:24px;
}
.cast-name { font-family:var(--font-serif); font-size:20px; font-weight:700; }
.cast-tag { font-size:11px; color:var(--gold); margin-top:4px; letter-spacing:1px; }

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq-wrap { max-width:900px; margin:0 auto; }
.faq-category { margin-bottom:60px; }
.faq-cat-title {
  display:flex;
  align-items:center;
  gap:14px;
  font-size:14px;
  font-weight:700;
  color:var(--gold);
  letter-spacing:3px;
  font-family:var(--font-en);
  text-transform:uppercase;
  margin-bottom:24px;
  padding-bottom:14px;
  border-bottom:1px solid var(--border-gold);
}
.faq-cat-title::before {
  content:'';
  display:block; width:4px; height:20px;
  background:var(--gold-gradient);
  border-radius:2px;
}
.faq-item {
  background:var(--bg-card);
  border:1px solid var(--border-light);
  border-radius:10px;
  margin-bottom:10px;
  overflow:hidden;
  transition:border-color 0.3s;
}
.faq-item:hover { border-color:var(--border-gold); }
.faq-item summary {
  padding:22px 24px;
  cursor:pointer;
  font-weight:600;
  font-size:15px;
  list-style:none;
  position:relative;
  padding-right:50px;
  transition:color 0.3s;
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary:hover { color:var(--gold); }
.faq-item summary::after {
  content:'+';
  position:absolute;
  right:22px; top:50%;
  transform:translateY(-50%);
  font-size:20px;
  color:var(--gold);
  transition:transform 0.3s;
  font-weight:300;
}
.faq-item[open] summary::after { transform:translateY(-50%) rotate(45deg); }
.faq-item[open] { border-color:var(--border-gold); background:var(--bg-glass-gold); }
.faq-item p {
  padding:0 24px 22px;
  font-size:14px;
  color:var(--text-muted);
  line-height:2;
}

/* ══════════════════════════════════════════════════════════
   STEPS (Flow)
══════════════════════════════════════════════════════════ */
.steps { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:0; position:relative; }
.steps::before {
  content:'';
  position:absolute;
  top:40px; left:0; right:0;
  height:2px;
  background:var(--gold-gradient);
  opacity:0.3;
}
.step-item {
  padding:0 32px;
  position:relative;
  text-align:center;
}
.step-circle {
  width:80px; height:80px;
  border-radius:50%;
  background:var(--bg-card);
  border:2px solid var(--border-gold);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 28px;
  font-family:var(--font-en);
  font-size:26px;
  font-weight:900;
  color:var(--gold);
  position:relative;
  z-index:1;
  transition:all 0.4s;
}
.step-item:hover .step-circle { background:var(--gold-gradient); color:#0a0800; box-shadow:var(--shadow-gold); }
.step-title { font-size:18px; font-weight:700; margin-bottom:12px; }
.step-desc { font-size:14px; color:var(--text-muted); line-height:1.9; }
@media(max-width:768px) { .steps { grid-template-columns:1fr; } .steps::before { display:none; } .step-item { padding:0 16px; margin-bottom:40px; } }

/* ══════════════════════════════════════════════════════════
   RICH TEXT CONTENT
══════════════════════════════════════════════════════════ */
.rich-text h3 { font-family:var(--font-serif); font-size:24px; color:var(--gold); margin:48px 0 16px; }
.rich-text h4 { font-size:18px; color:#fff; margin:32px 0 12px; }
.rich-text p  { color:var(--text-muted); font-size:15px; line-height:2.2; margin-bottom:20px; }
.rich-text ul { color:var(--text-muted); font-size:15px; line-height:2; padding-left:20px; margin-bottom:20px; }
.rich-text li { margin-bottom:8px; }
.rich-text strong { color:#fff; font-weight:700; }
.rich-text table { border-collapse:collapse; width:100%; margin:24px 0; }
.rich-text th { background:var(--bg-glass-gold); color:var(--gold); padding:14px 18px; text-align:left; font-size:13px; }
.rich-text td { padding:14px 18px; border-bottom:1px solid var(--border-light); color:var(--text-muted); font-size:14px; }

/* Breadcrumb */
.breadcrumb {
  list-style:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  color:var(--text-dim);
  margin-bottom:20px;
}
.breadcrumb a { color:var(--text-dim); transition:color 0.3s; }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb .sep { color:var(--text-dim); opacity:0.5; }
.breadcrumb .current { color:var(--gold); }

/* ══════════════════════════════════════════════════════════
   FIXED CTA BAR
══════════════════════════════════════════════════════════ */
.fixed-cta {
  position:fixed;
  bottom:0; left:0; width:100%;
  height:72px;
  display:flex;
  z-index:800;
  border-top:1px solid var(--border-gold);
}
.cta-line {
  flex:1; display:flex; align-items:center; justify-content:center; gap:10px;
  background:#06C755;
  color:#fff;
  font-weight:700; font-size:15px;
  text-decoration:none;
  transition:filter 0.3s;
}
.cta-reserve {
  flex:1; display:flex; align-items:center; justify-content:center; gap:10px;
  background:var(--gold-gradient);
  color:#0a0800;
  font-weight:700; font-size:15px;
  text-decoration:none;
  transition:filter 0.3s;
}
.cta-line:hover,.cta-reserve:hover { filter:brightness(1.1); }
body { padding-bottom:72px; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
#footer {
  background:#000;
  border-top:1px solid var(--border-gold);
  padding-top:90px;
}
.footer-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:60px;
  padding-bottom:80px;
}
.footer-logo-name { font-family:var(--font-serif); font-size:28px; font-weight:900; }
.footer-tagline { font-size:11px; color:var(--gold); letter-spacing:3px; margin:6px 0 16px; display:block; }
.footer-about { font-size:12px; color:var(--text-dim); line-height:2.2; }
.footer-h { font-size:11px; font-weight:700; letter-spacing:3px; color:var(--gold); font-family:var(--font-en); text-transform:uppercase; margin-bottom:22px; }
.footer-links { list-style:none; }
.footer-links li { margin-bottom:12px; }
.footer-links a { font-size:13px; color:var(--text-muted); transition:color 0.3s; }
.footer-links a:hover { color:var(--gold); }
.footer-contact-item { font-size:13px; color:var(--text-muted); margin-bottom:10px; line-height:1.7; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.05);
  padding:28px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}
.footer-copy { font-size:11px; color:var(--text-dim); }
.footer-legal { display:flex; gap:24px; }
.footer-legal a { font-size:11px; color:var(--text-dim); transition:color 0.3s; }
.footer-legal a:hover { color:var(--gold); }
@media(max-width:1024px) { .footer-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:640px) { .footer-grid { grid-template-columns:1fr; } .footer-bottom { flex-direction:column; text-align:center; } }

/* ══════════════════════════════════════════════════════════
   BG SECTIONS
══════════════════════════════════════════════════════════ */
.bg-alt { background:var(--bg-deep); border-top:1px solid var(--border-light); border-bottom:1px solid var(--border-light); }
.bg-gradient-radial { background:radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%); }

/* Content Section default */
.content-section { padding:120px 0; }

/* Number decorations */
.num-deco {
  font-family:var(--font-en);
  font-size:120px;
  font-weight:900;
  color:rgba(201,168,76,0.05);
  position:absolute;
  top:-20px; right:-10px;
  line-height:1;
  user-select:none;
  pointer-events:none;
}
