/* AWABIHARI — Option A: Cinematic Void (production) */
:root {
  --bg: #061018;
  --text: #f7f3ea;
  --muted: rgba(247, 243, 234, 0.72);
  --gold: #d4b87a;
  --gold-2: #e8d296;
  --ink: #1a1408;
  --stroke: rgba(255, 255, 255, 0.28);
  --glass: rgba(255, 255, 255, 0.1);
  --glass-2: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.theme-cinematic {
  margin: 0;
  min-height: 100vh;
  font-family: Outfit, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: 78px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: #000; color: #fff; padding: .6rem 1rem; z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Scenes */
.scene {
  position: fixed; inset: 0; z-index: -2;
  background-image:
    linear-gradient(180deg, rgba(6,16,24,.2) 0%, rgba(6,16,24,.45) 50%, rgba(6,16,24,.82) 100%),
    url("https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: background-image .8s ease, filter .8s ease;
  animation: drift 32s ease-in-out infinite alternate;
  filter: saturate(1.06) contrast(1.04);
}
.scene-shade {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 420px at 78% 12%, rgba(212,184,122,.16), transparent 60%),
    radial-gradient(700px 420px at 12% 78%, rgba(20,110,95,.18), transparent 55%);
}
@keyframes drift {
  from { transform: scale(1.05) translate3d(0,0,0); }
  to { transform: scale(1.1) translate3d(-1.2%, -1%, 0); }
}

.glass {
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  border: 1px solid var(--stroke);
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.25);
}

/* Nav */
.glass-nav {
  position: fixed; top: .9rem; left: 50%; transform: translateX(-50%);
  z-index: 40;
  width: min(980px, calc(100% - 1.25rem));
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .45rem .5rem .45rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
}
.brand-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: .2em;
  font-size: .95rem;
  font-weight: 600;
}
.nav-links { display: none; gap: .15rem; }
.nav-links a {
  padding: .55rem .85rem; border-radius: 999px;
  font-size: .8rem; font-weight: 500; opacity: .88;
}
.nav-links a:hover { background: rgba(255,255,255,.1); opacity: 1; }
.nav-end { display: flex; align-items: center; gap: .45rem; }
.lang {
  display: inline-flex; border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; overflow: hidden;
}
.lang button {
  border: 0; background: transparent; color: var(--text);
  padding: .35rem .55rem; font-size: .72rem; font-weight: 700;
}
.lang button[aria-pressed="true"] { background: rgba(255,255,255,.16); }
.nav-burger {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06); color: #fff;
}
.mobile-sheet {
  position: fixed; top: 5rem; left: 50%; transform: translateX(-50%);
  z-index: 39; width: min(360px, calc(100% - 1.5rem));
  border-radius: 1.25rem; padding: .6rem;
  display: grid; gap: .2rem;
}
.mobile-sheet[hidden] { display: none !important; }
.mobile-sheet a {
  padding: .85rem 1rem; border-radius: .9rem; font-weight: 550;
}
.mobile-sheet a:hover { background: rgba(255,255,255,.08); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 999px;
  padding: .9rem 1.3rem;
  font-weight: 650; font-size: .92rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: .55rem 1rem; font-size: .8rem; }
.btn-block { width: 100%; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(212,184,122,.28);
}
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}

/* Hero */
.hero-stage {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + 1.5rem) 1rem 8.5rem;
  position: relative;
}
.hero-glass {
  width: min(860px, 100%);
  text-align: center;
  padding: clamp(1.8rem, 4.5vw, 3.2rem);
  border-radius: 2rem;
}
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 1rem;
}
.kicker i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,184,122,.18);
}
.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.7rem, 8vw, 5.2rem);
  line-height: .95;
  letter-spacing: -.02em;
  margin: 0 0 .9rem;
}
.display em {
  display: block;
  font-style: italic;
  color: rgba(247,243,234,.84);
  font-size: .72em;
  margin-top: .18em;
}
.display-sm {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  margin: .4rem 0 .8rem;
}
.hero-line {
  margin: 0 auto 1.5rem;
  max-width: 28ch;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
}
.hero-actions { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }

.scene-rail {
  position: absolute; right: .8rem; top: 50%; transform: translateY(-50%);
  display: none; gap: .55rem; flex-direction: column;
}
.rail-chip {
  writing-mode: vertical-rl; transform: rotate(180deg);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  color: var(--muted);
  border-radius: 999px;
  padding: 1rem .5rem;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
}
.rail-chip.active, .rail-chip:hover {
  color: #fff; border-color: rgba(212,184,122,.5);
}

/* Filmstrip */
.filmstrip {
  width: min(1100px, calc(100% - 1.5rem));
  margin: -3.5rem auto 2rem;
  display: grid;
  gap: .75rem;
  position: relative;
  z-index: 2;
}
.film {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  min-height: 140px;
  border-radius: 1.35rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease;
}
.film:hover { transform: translateY(-3px); border-color: rgba(212,184,122,.45); }
.film-shot {
  min-height: 140px;
  background-size: cover;
  background-position: center;
}
.s-remo {
  background-image:
    linear-gradient(180deg, rgba(6,16,24,.05), rgba(6,16,24,.35)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=80");
}
.s-water {
  background-image:
    linear-gradient(180deg, rgba(6,16,24,.05), rgba(6,16,24,.35)),
    url("https://images.unsplash.com/photo-1540541338287-41700207dee6?auto=format&fit=crop&w=1200&q=80");
}
.s-craft {
  background-image:
    linear-gradient(180deg, rgba(6,16,24,.05), rgba(6,16,24,.35)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80");
}
.film-meta {
  padding: 1.1rem 1.15rem;
  display: grid;
  align-content: center;
  gap: .25rem;
}
.film-meta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.55rem;
}
.film-meta span {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.link-gold {
  margin-top: .45rem;
  color: var(--gold);
  font-size: .86rem;
  font-weight: 600;
  width: fit-content;
}

/* About */
.about-band {
  width: min(900px, calc(100% - 1.5rem));
  margin: 1rem auto 2rem;
}
.about-glass {
  border-radius: 1.6rem;
  padding: 1.5rem 1.35rem;
  text-align: center;
}
.about-kicker {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.muted { color: var(--muted); }
.trust-pills {
  display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem;
  margin-top: 1rem;
}
.trust-pills span {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: .4rem .8rem;
  font-size: .78rem;
  color: var(--muted);
  background: rgba(255,255,255,.05);
}

/* Enquire */
.enquire-stage {
  width: min(980px, calc(100% - 1.5rem));
  margin: 0 auto 2.5rem;
}
.enquire-grid {
  display: grid;
  gap: .85rem;
}
.enquire-copy, .enquire-form {
  border-radius: 1.5rem;
  padding: 1.25rem;
}
.contact-mini {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 1rem;
  font-weight: 600;
}
.contact-mini a { color: var(--gold); }
.fields {
  display: grid;
  gap: .75rem;
  margin-bottom: .9rem;
}
label { display: grid; gap: .3rem; font-size: .78rem; font-weight: 600; color: rgba(247,243,234,.86); }
input, select, textarea {
  width: 100%;
  border-radius: .9rem;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.22);
  padding: .85rem .95rem;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(212,184,122,.55);
  box-shadow: 0 0 0 3px rgba(212,184,122,.12);
}
.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: .65rem;
  font-weight: 500;
  color: var(--muted);
}
.consent input { width: 16px; height: 16px; margin-top: .2rem; accent-color: var(--gold); }
.form-status { min-height: 1.2rem; margin-top: .7rem; font-size: .88rem; font-weight: 600; }
.form-status.ok { color: #b7e0c8; }
.form-status.err { color: #ffb4b4; }

/* Footer */
.site-footer {
  width: min(980px, calc(100% - 1.5rem));
  margin: 0 auto 1.2rem;
  border-radius: 1.35rem;
  padding: 1.1rem 1.2rem;
  display: grid;
  gap: .7rem;
}
.site-footer strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: .16em;
  font-size: 1.05rem;
}
.site-footer p { margin: .25rem 0 0; color: var(--muted); font-size: .86rem; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-links a { color: var(--gold); font-weight: 600; font-size: .9rem; }
.fineprint { font-size: .75rem !important; opacity: .8; }

/* Sticky mobile */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: .45rem;
  padding: .65rem .7rem calc(.65rem + env(safe-area-inset-bottom));
  background: rgba(6,16,24,.82);
  border-top: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}
.sticky-bar .btn { border-radius: .9rem; padding: .8rem .4rem; font-size: .84rem; }

.toast {
  position: fixed; top: 5.2rem; left: 50%; transform: translateX(-50%) translateY(-10px);
  z-index: 60; opacity: 0; pointer-events: none;
  padding: .65rem 1rem; border-radius: 999px;
  background: rgba(10,20,28,.75);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(14px);
  font-size: .82rem; transition: .28s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (min-width: 820px) {
  body.theme-cinematic { padding-bottom: 0; }
  .sticky-bar { display: none; }
  .nav-links { display: flex; }
  .nav-burger { display: none; }
  .scene-rail { display: flex; }
  .filmstrip { grid-template-columns: repeat(3, 1fr); margin-top: -2rem; }
  .film { grid-template-columns: 1fr; min-height: 280px; }
  .film-shot { min-height: 180px; }
  .enquire-grid { grid-template-columns: .9fr 1.1fr; align-items: stretch; }
  .fields { grid-template-columns: 1fr 1fr; }
  .fields .full { grid-column: 1 / -1; }
  .site-footer {
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
  }
  .fineprint { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scene { animation: none; }
  .btn, .film { transition: none; }
}
