/* ============================================================
   Bar Laetus – Shooting LP  |  style.css
   Dark luxury theme  ·  Gold accent  ·  Serif typography
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --gold-dark:   #a07830;
  --bg:          #0e0d0b;
  --bg2:         #141210;
  --bg3:         #1a1713;
  --surface:     #1f1c18;
  --surface2:    #26231e;
  --text:        #d4cfc8;
  --text-muted:  #7a7570;
  --text-light:  #ede9e3;
  --white:       #ffffff;
  --line-green:  #06c755;

  --font-serif:  'Cormorant Garamond', 'Noto Serif JP', serif;
  --font-sans:   'Montserrat', 'Noto Serif JP', sans-serif;
  --font-jp:     'Noto Serif JP', serif;

  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow:      0 8px 40px rgba(0,0,0,0.6);
  --radius:      4px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-jp);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ---------- Utility ---------- */
.container    { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center  { text-align: center; }
.gold         { color: var(--gold); }

.label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 24px;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0 28px;
}

.section {
  padding: 100px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(201,168,76,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-line {
  background: var(--line-green);
  color: #fff;
  border-color: var(--line-green);
  font-size: 0.95rem;
  padding: 16px 40px;
}
.btn-line:hover {
  background: #05b04a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6,199,85,0.3);
}

.btn-full { width: 100%; justify-content: center; margin-top: 24px; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(14,13,11,0.75);
  backdrop-filter: blur(8px);
  transition: background var(--transition), backdrop-filter var(--transition);
}

.header.scrolled {
  background: rgba(14,13,11,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.nav-list {
  display: flex;
  gap: 32px;
}
.nav-list a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-list a:hover { color: var(--gold); }

.header-cta { padding: 10px 22px; font-size: 0.75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 1px;
  background: var(--text-light);
  transition: all var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none !important;
  background: rgba(14,13,11,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 20px 32px 32px;
  transition: all var(--transition);
}
.mobile-nav.open {
  display: block !important;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 12px; }
.mobile-nav li a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition);
}
.mobile-nav li a:hover { color: var(--gold); }
.mobile-nav .btn { border: 1px solid var(--gold); margin-top: 8px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.5);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,13,11,0.3) 0%,
    rgba(14,13,11,0.15) 40%,
    rgba(14,13,11,0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 860px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 28px;
}
.hero-title .gold { font-weight: 400; }

.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 2;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
.scroll-indicator span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.1%{ transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- About ---------- */
.about { background: var(--bg2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  z-index: 1;
  pointer-events: none;
}
.about-img-wrap img {
  width: 100%; height: 520px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }

.about-text p {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.about-text strong { color: var(--gold-light); }

/* ---------- Why ---------- */
.why { background: var(--bg3); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.why-card {
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  transition-delay: var(--delay, 0s);
}
.why-card:hover {
  border-color: rgba(201,168,76,0.4);
  background: var(--surface2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.why-icon { font-size: 1.6rem; margin-bottom: 16px; }
.why-card h3 {
  font-family: var(--font-jp);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; }

/* ---------- Media / TV ---------- */
.media { background: var(--bg); }

.media-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 48px;
}

.media-video {
  max-width: 800px;
  margin: 0 auto;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 12px 48px rgba(0,0,0,0.6);
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.yt-thumb-link {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 12px 48px rgba(0,0,0,0.6);
}

.yt-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.yt-thumb-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.yt-thumb-link:hover .yt-thumb-wrap img {
  transform: scale(1.04);
}

.yt-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(0,0,0,0.3);
  transition: background var(--transition);
}
.yt-thumb-link:hover .yt-play-overlay {
  background: rgba(0,0,0,0.45);
}

.yt-play-icon {
  width: 72px; height: 52px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
  transition: transform 0.3s ease;
}
.yt-thumb-link:hover .yt-play-icon {
  transform: scale(1.15);
}

.yt-play-label {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ---------- Gallery ---------- */
.gallery { background: var(--bg2); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4/3;
  transition-delay: var(--delay, 0s);
}
.gallery-item.large {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(14,13,11,0.85), transparent);
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 24px 12px 12px;
  transform: translateY(4px);
  opacity: 0;
  transition: all var(--transition);
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox overlay */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--gold); }

/* ---------- Plans ---------- */
.plans { background: var(--bg); }

.plans-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 48px;
  margin-top: -8px;
}
.plans-footnote {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 28px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan-card {
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
  transition-delay: var(--delay, 0s);
}
.plan-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.plan-card.featured {
  border-color: var(--gold);
  background: var(--surface2);
}

.plan-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.plan-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.plan-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 6px;
}
.plan-price span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-jp);
}

.plan-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.plan-features { display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text);
  line-height: 1.6;
}
.plan-features li i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 0.7rem;
}

/* ---------- Specs ---------- */
.specs { background: var(--bg3); }

.specs-table {
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.spec-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.spec-row:last-child { border-bottom: none; }

.spec-key {
  padding: 18px 24px;
  background: var(--surface);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  border-right: 1px solid rgba(201,168,76,0.1);
  display: flex;
  align-items: flex-start;
  font-family: var(--font-jp);
}

.spec-val {
  padding: 18px 28px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.9;
}

/* ---------- Access ---------- */
.access { background: var(--bg2); }

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.access-name { color: var(--text-light); font-weight: 500; margin-bottom: 16px !important; }
.access-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.access-hint {
  font-size: 0.82rem !important;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.access-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: var(--shadow);
}
.access-map iframe {
  display: block;
  filter: grayscale(80%) invert(90%) contrast(0.85);
}

/* ---------- Contact ---------- */
.contact { background: var(--bg); }

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 2;
  margin-bottom: 40px;
}

.contact-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.contact-instagram {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.contact-instagram a {
  color: var(--gold);
  transition: color var(--transition);
}
.contact-instagram a:hover { color: var(--gold-light); }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg3);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 48px 24px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.footer-address {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- Scroll Reveal Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.3s; }
.fade-up:nth-child(2) { animation-delay: 0.55s; }
.fade-up:nth-child(3) { animation-delay: 0.75s; }
.fade-up:nth-child(4) { animation-delay: 0.95s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .about-grid  { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap img { height: 340px; }

  .why-grid  { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .access-grid { grid-template-columns: 1fr; gap: 40px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero-title { font-size: clamp(1.6rem, 8vw, 2.4rem); }

  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; aspect-ratio: 4/3; }

  .spec-row { grid-template-columns: 1fr; }
  .spec-key { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }

  .hero-btns, .contact-btns { flex-direction: column; align-items: center; }
  .btn-line, .btn-outline { width: 100%; justify-content: center; }
}
