@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Josefin+Sans:wght@300;400;500;600&display=swap");

:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-deep: #0c0905;
  --ink: #f7f1e3;
  --ink-dim: rgba(247, 241, 227, 0.7);
  --amber: #f2b84b;
  --amber-bright: #fbd27e;
  --amber-dark: #5f3b10;
  --rose: #c73d58;
  --shadow: rgba(0, 0, 0, 0.7);
  --radius: 20px;
  --header-height: 72px;
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Josefin Sans", "Trebuchet MS", sans-serif;
  background: radial-gradient(circle at top, rgba(242, 184, 75, 0.12), transparent 45%),
    linear-gradient(180deg, #070707 0%, #0a0602 55%, #050505 100%);
  color: var(--ink);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

.page {
  position: relative;
  overflow-x: hidden;
}

.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

.container.wide {
  width: min(1200px, 100% - 32px);
}

.container.narrow {
  width: min(920px, 100% - 32px);
}

.section {
  padding: 96px 0;
  position: relative;
}

.scroll-offset {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-family: "Cinzel", "Georgia", serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 16px;
  color: var(--ink);
}

.section-lede {
  margin: 12px auto 0;
  max-width: 520px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}

.title-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.title-mark span {
  width: 10px;
  height: 10px;
  background: var(--amber);
  transform: rotate(45deg);
}

.title-mark span:nth-child(2) {
  width: 72px;
  height: 1px;
  transform: none;
  background: var(--amber);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  transition: var(--transition);
}

.brand:hover {
  opacity: 0.8;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(242, 184, 75, 0.6);
  background: rgba(0, 0, 0, 0.5);
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-title {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--ink);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--amber);
}

.menu-toggle {
  display: none;
  color: var(--ink);
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle.is-open .icon-menu {
  display: none;
}

.menu-toggle.is-open .icon-close {
  display: block;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px 28px;
  background: rgba(0, 0, 0, 0.9);
  border-top: 1px solid rgba(242, 184, 75, 0.2);
}

.mobile-nav.is-open {
  display: flex;
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slides {
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.hero-backdrop.blur {
  filter: blur(30px) saturate(1.4);
  transform: scale(1.08);
  opacity: 0.65;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-overlay.warm {
  background: rgba(121, 25, 25, 0.2);
  mix-blend-mode: multiply;
}

.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(251, 191, 36, 0.12), transparent 45%);
}

.hero-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.6));
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  height: 100%;
}

.hero-title-panel {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  font-family: "Cinzel", "Georgia", serif;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  letter-spacing: 0.2em;
  padding: 24px 36px;
}

.hero-title-tint {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(242, 184, 75, 0.4);
  z-index: -1;
}

.hero-title-text {
  display: block;
  color: var(--ink);
}

.hero-text-left {
  transform: translateX(-12px);
}

.hero-text-right {
  transform: translateX(12px);
}

@keyframes hero-text-left-in {
  from {
    opacity: 0;
    transform: translateX(-48px);
  }
  to {
    opacity: 1;
    transform: translateX(-12px);
  }
}

@keyframes hero-text-right-in {
  from {
    opacity: 0;
    transform: translateX(48px);
  }
  to {
    opacity: 1;
    transform: translateX(12px);
  }
}

.hero-slide.is-active[data-kind="stage"] .hero-text-left {
  animation: hero-text-left-in 0.9s ease both;
}

.hero-slide.is-active[data-kind="stage"] .hero-text-right {
  animation: hero-text-right-in 0.9s ease both;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  padding: 12px;
  color: var(--amber);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.hero-nav:hover {
  background: rgba(0, 0, 0, 0.75);
  color: var(--amber-bright);
}

.hero-nav.prev {
  left: 24px;
}

.hero-nav.next {
  right: 24px;
}

.hero-indicators {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.hero-dot.is-active {
  width: 36px;
  background: var(--amber);
}

.hero-corner {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(242, 184, 75, 0.3);
  z-index: 4;
}

.hero-corner.top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.hero-corner.top-right {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.hero-corner.bottom-left {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.hero-corner.bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.band-intro {
  position: relative;
  overflow: hidden;
}

.band-intro-bg,
.band-intro-overlay {
  position: absolute;
  inset: 0;
}

.band-intro-bg {
  background-position: center;
  background-size: cover;
  opacity: 0.9;
}

.band-intro-overlay {
  background: rgba(0, 0, 0, 0.25);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.intro-logo {
  position: relative;
  display: grid;
  place-items: center;
}

.intro-logo img {
  width: min(360px, 100%);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.intro-logo .glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.2), transparent 60%);
  filter: blur(20px);
}

.intro-copy h2 {
  font-family: "Cinzel", "Georgia", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 16px;
}

.intro-copy p {
  color: var(--ink-dim);
  line-height: 1.7;
}

.cta {
  margin-top: 24px;
  padding: 12px 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c73d58, #9f2342);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: white;
  box-shadow: 0 12px 30px rgba(199, 61, 88, 0.35);
  transition: var(--transition);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(199, 61, 88, 0.5);
}

.band-bio {
  background: linear-gradient(180deg, #050505 0%, rgba(242, 184, 75, 0.08) 45%, #050505 100%);
}

.deco-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(242, 184, 75, 0.25);
}

.deco-corner.top-left {
  top: 40px;
  left: 40px;
  border-right: none;
  border-bottom: none;
}

.deco-corner.top-right {
  top: 40px;
  right: 40px;
  border-left: none;
  border-bottom: none;
}

.deco-corner.bottom-left {
  bottom: 40px;
  left: 40px;
  border-right: none;
  border-top: none;
}

.deco-corner.bottom-right {
  bottom: 40px;
  right: 40px;
  border-left: none;
  border-top: none;
}

.bio-card {
  position: relative;
  padding: 48px;
  border: 2px solid rgba(242, 184, 75, 0.25);
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.75), rgba(5, 5, 5, 0.85));
  clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
}

.card-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 2px solid rgba(242, 184, 75, 0.6);
}

.card-corner.top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.card-corner.bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.bio-quote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  text-align: center;
  color: var(--ink);
}

.divider {
  height: 1px;
  margin: 32px 0;
  background: linear-gradient(90deg, transparent, rgba(242, 184, 75, 0.4), transparent);
}

.bio-subtitle {
  text-align: center;
  color: var(--ink-dim);
}

.bio-grid {
  margin-top: 40px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
}

.bio-item h3 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin: 16px 0 8px;
  color: var(--amber-bright);
}

.bio-item p {
  color: var(--ink-dim);
  font-size: 0.9rem;
}

.icon-frame {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(242, 184, 75, 0.5);
  display: grid;
  place-items: center;
  transform: rotate(45deg);
  margin: 0 auto;
}

.icon-frame .icon {
  transform: rotate(-45deg);
}

.photo-gallery {
  background: linear-gradient(180deg, #050505 0%, #101010 50%, #050505 100%);
}

.gallery-topline,
.booking-topline {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: min(420px, 60%);
  background: linear-gradient(90deg, transparent, rgba(242, 184, 75, 0.6), transparent);
}

.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 2px solid rgba(242, 184, 75, 0.2);
  transition: var(--transition);
  background: #111;
  padding: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:hover {
  border-color: rgba(242, 184, 75, 0.7);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0);
}

.booking-section {
  background: linear-gradient(180deg, #050505 0%, rgba(242, 184, 75, 0.12) 45%, #050505 100%);
}

.booking-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.info-card,
.form-card {
  position: relative;
  padding: 32px;
  border: 2px solid rgba(242, 184, 75, 0.25);
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.75), rgba(5, 5, 5, 0.85));
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.info-card h3 {
  margin-top: 0;
  font-family: "Cinzel", "Georgia", serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

.info-list {
  display: grid;
  gap: 20px;
}

.info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.info-item span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  color: var(--amber-bright);
  margin-bottom: 6px;
}

.info-item a,
.info-item p {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}

.note-card {
  padding: 24px;
  border: 1px solid rgba(242, 184, 75, 0.2);
  background: rgba(8, 6, 4, 0.6);
  border-radius: 12px;
  color: var(--ink-dim);
  line-height: 1.7;
}

.form-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-card span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  color: var(--amber-bright);
}

.form-card input,
.form-card select,
.form-card textarea {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(242, 184, 75, 0.35);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  transition: border-color 0.2s ease;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.submit {
  width: 100%;
  padding: 14px 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  border-radius: 6px;
  border: 2px solid rgba(242, 184, 75, 0.6);
  background: linear-gradient(90deg, #f2b84b, #c7851d);
  color: #1a1206;
  box-shadow: 0 16px 30px rgba(90, 58, 12, 0.45);
  transition: var(--transition);
}

.submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(141, 90, 22, 0.6);
}

.form-note {
  min-height: 20px;
  margin: 8px 0 0;
  color: var(--amber-bright);
  font-size: 0.85rem;
}

.site-footer {
  background: #050505;
  border-top: 2px solid rgba(242, 184, 75, 0.2);
  padding: 48px 0 32px;
  position: relative;
}

.footer-mark {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  gap: 12px;
  padding: 8px 16px;
  background: #050505;
}

.footer-mark span {
  width: 10px;
  height: 10px;
  background: var(--amber);
  transform: rotate(45deg);
}

.footer-mark span:nth-child(2) {
  width: 72px;
  height: 1px;
  transform: none;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink-dim);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-dim);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--amber);
}

.footer-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
}

.footer-dots span {
  width: 6px;
  height: 6px;
  background: rgba(242, 184, 75, 0.5);
}

.footer-dots .diamond {
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  background: var(--amber);
}

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(6px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(1100px, 90vw);
  max-height: 80vh;
  border: 2px solid rgba(242, 184, 75, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--amber);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--amber);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 999px;
  padding: 10px;
}

.lightbox-nav.prev {
  left: 24px;
}

.lightbox-nav.next {
  right: 24px;
}

.lightbox-count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 16px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-nav.prev,
  .hero-nav.next {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .bio-card,
  .info-card,
  .form-card {
    clip-path: none;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding: 0 16px;
  }

  .brand-title {
    display: none;
  }

  .hero-title-panel {
    padding: 18px 20px;
  }

  .hero-dot.is-active {
    width: 28px;
  }

  .section-title h2 {
    letter-spacing: 0.12em;
  }

  .cta,
  .submit {
    letter-spacing: 0.12em;
  }
}
