/* ============================================================
   INFERNO — HOME
   ============================================================ */

.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 24px 80px;
}

/* Signature moment: slow-igniting ember glow behind the wordmark */
.hero-ember{
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%, -50%) scale(0.85);
  background: radial-gradient(circle, rgba(212,184,118,0.35) 0%, rgba(212,184,118,0.12) 35%, transparent 65%);
  opacity: 0;
  filter: blur(10px);
  animation: ember-ignite 2.8s ease-out 0.2s forwards, ember-pulse 3.5s ease-in-out 3s infinite;
  pointer-events: none;
}
@keyframes ember-ignite{
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
  55%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1.05); }
}
@keyframes ember-pulse{
  0%, 100% { opacity: 0.45; transform: translate(-50%, -50%) scale(1.02); }
  50%      { opacity: 0.65; transform: translate(-50%, -50%) scale(1.09); }
}

.hero-mark{
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  opacity: 0;
  animation: fade-up 1s ease 0.3s forwards, flame-flicker 1.6s ease-in-out 1.4s infinite;
  transform-origin: 50% 100%;
}


.hero-word{
  position: relative;
  z-index: 2;
  font-family: var(--font-script);
  font-size: clamp(72px, 13vw, 148px);
  line-height: 1;
  color: var(--ink);
  opacity: 0;
  animation: fade-up 1.1s ease 0.5s forwards, word-glow 3.5s ease-in-out 1.8s infinite;
}

.hero-tagline{
  position: relative;
  z-index: 2;
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 14px;
  opacity: 0;
  animation: fade-up 1s ease 0.75s forwards;
}

.hero-line{
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 21px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 32px auto 0;
  opacity: 0;
  animation: fade-up 1s ease 0.95s forwards;
}

.hero-ctas{
  position: relative;
  z-index: 2;
  display: flex;
  gap: 18px;
  margin-top: 44px;
  opacity: 0;
  animation: fade-up 1s ease 1.15s forwards;
}

@keyframes fade-up{
  from{ opacity: 0; transform: translateY(18px); }
  to{ opacity: 1; transform: translateY(0); }
}

.hero-scroll{
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  opacity: 0;
  animation: fade-up 1s ease 1.4s forwards;
}

/* ---- Section shell ---- */
.section{
  padding: 120px 0;
  position: relative;
  z-index: 1;
}
.section-head{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-head h2{
  font-size: clamp(34px, 5vw, 52px);
  margin: 14px 0 18px;
}
.section-head p{
  color: var(--ink-soft);
  font-size: 19px;
}

[data-reveal]{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }

/* ---- One spot, three vibes ---- */
.vibes{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.vibe{
  background: var(--cream);
  padding: 56px 40px;
  text-align: center;
}
.vibe .eyebrow{ display: block; margin-bottom: 14px; }
.vibe h3{ font-size: 30px; margin-bottom: 14px; }
.vibe p{ color: var(--ink-soft); font-size: 17px; }

@media (max-width: 800px){
  .vibes{ grid-template-columns: 1fr; }
}

/* ---- Menu highlight ---- */
.highlight{
  background: var(--cream-deep);
}
.highlight-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}
.highlight-item{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dotted var(--line);
}
.highlight-item h4{
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-body);
  font-style: italic;
}
.highlight-item span{
  font-family: var(--font-label);
  font-size: 15px;
  color: var(--gold-deep);
  white-space: nowrap;
}
.highlight-cta{
  text-align: center;
  margin-top: 56px;
}

@media (max-width: 700px){
  .highlight-grid{ grid-template-columns: 1fr; }
}

/* ---- Events teaser ---- */
.events-teaser{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.event-card{
  border: 1px solid var(--line);
  padding: 36px 30px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.event-card:hover{ border-color: var(--gold); transform: translateY(-4px); }
.event-card .eyebrow{ display: block; margin-bottom: 12px; }
.event-card h3{ font-size: 24px; margin-bottom: 10px; }
.event-card p{ color: var(--ink-soft); font-size: 16px; }

@media (max-width: 900px){
  .events-teaser{ grid-template-columns: 1fr; }
}

/* ---- Visit ---- */
.visit{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.visit-details .eyebrow{ display: block; margin-bottom: 16px; }
.visit-details h2{ font-size: 38px; margin-bottom: 24px; }
.visit-row{
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.visit-row span:first-child{ color: var(--gold-deep); text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; }
.visit-map{
  border: 1px solid var(--line);
  min-height: 340px;
  overflow: hidden;
}
.visit-map iframe{ width: 100%; height: 100%; min-height: 340px; border: 0; filter: sepia(0.15) saturate(0.8); }

@media (max-width: 800px){
  .visit{ grid-template-columns: 1fr; }
}
