:root {
  --bg-dark: #0e0a0a;
  --bg-accent: #4c0026;
  --bg-soft: #160f17;
  --text-light: #f7f0e6;
  --text-muted: #d6c8b6;
  --gold: #d4af37;
  --accent: #a0043c;
  --container: min(1200px, 92vw);
  --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Mulish", "Segoe UI", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

header.hero {
  position: relative;
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at top, #6b0936, #070407 55%);
  overflow: hidden;
}

header.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../textures/grunge.png") center/cover;
  opacity: 0.2;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero__copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  font-size: 0.8rem;
  color: var(--gold);
}

.hero__copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  margin: 0.4rem 0 1rem;
}

.hero__copy .lead {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.hero__cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  padding: 0.85rem 1.8rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  text-align: center;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), #f7d778);
  color: #2c1b03;
  box-shadow: var(--shadow-xl);
}

.btn--outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-light);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero__card {
  background: rgba(0, 0, 0, 0.45);
  padding: 2.5rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero__card img {
  width: 180px;
  margin: 0 auto;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  font-size: 0.95rem;
}

.hero__highlights span {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

section {
  padding: 4.5rem 0;
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.section-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 0 1.5rem;
}

.story {
  --parallax-offset: 0px;
  position: relative;
  background-color: var(--bg-soft);
  background-image: linear-gradient(rgba(8, 4, 5, 0.78), rgba(8, 4, 5, 0.78)),
    url("../bg_01.jpg");
  background-size: cover;
  background-position: center
    calc(50% + var(--parallax-offset, 0px));
  background-repeat: no-repeat;
  overflow: hidden;
}

.story__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: start;
}

.story__card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.story__card h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.story__text {
  max-height: 260px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.story__text.is-expanded {
  max-height: 1200px;
}

.story__toggle {
  margin-top: 1.5rem;
  background: none;
  border: none;
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
}

.gallery {
  background: linear-gradient(180deg, #13070f, #1a0f1c);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.gallery__item {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3 / 4;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.2rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent);
  font-weight: 600;
}

.monthly-menu {
  --parallax-offset: 0px;
  position: relative;
  background-color: var(--bg-soft);
  background-image: linear-gradient(
      130deg,
      rgba(8, 4, 6, 0.9),
      rgba(10, 5, 9, 0.8)
    ),
    url("../bg_02a.jpg"),
    url("../bg_02b.jpg");
  background-size: cover, 50% 100%, 50% 100%;
  background-position:
    center calc(50% + var(--parallax-offset, 0px)),
    left calc(50% + var(--parallax-offset, 0px)),
    right calc(50% + var(--parallax-offset, 0px));
  background-repeat: no-repeat;
  overflow: hidden;
}

.monthly-menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: center;
}

.monthly-menu__card {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.info-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta {
  background: linear-gradient(140deg, #6b0027, #270814);
}

.cta__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.cta__card {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 22px;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta__card h3 {
  margin-top: 0;
}

.footer {
  background: #050203;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.payments span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.9rem;
  border-radius: 14px;
}

@media (max-width: 768px) {
  header.hero {
    padding-top: 4rem;
  }
  .hero__card {
    padding: 1.5rem;
  }
  .story__grid,
  .monthly-menu__grid {
    grid-template-columns: 1fr;
  }
  .monthly-menu {
    background-image: linear-gradient(
        130deg,
        rgba(8, 4, 6, 0.9),
        rgba(10, 5, 9, 0.8)
      ),
      url("../bg_02a.jpg");
    background-size: cover;
    background-position: center
      calc(50% + var(--parallax-offset, 0px));
  }
}

@media (min-width: 769px) {
  .story {
    background-attachment: fixed;
  }
  .monthly-menu {
    background-attachment: fixed, fixed, fixed;
  }
}
