/* ============================
   HOME PAGE STYLES
============================ */

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

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.04);
  animation: heroZoom 8s ease forwards;
}

.hero__img--active {
  opacity: 1;
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1.0);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(26, 18, 8, 0.72) 0%,
      rgba(26, 18, 8, 0.38) 45%,
      rgba(26, 18, 8, 0.65) 100%);
}

/* grain texture */
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--ivory);
  padding: 0 6vw;
  animation: fadeUp 1.4s ease forwards;
}

.hero__eyebrow {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
}

.hero__logo-wrap {
  margin-bottom: 1.8rem;
  display: flex;
  justify-content: center;
}

.hero__logo-wrap img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.hero__tagline {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: rgba(245, 239, 224, 0.75);
  letter-spacing: 0.12em;
  margin-top: 0.3rem;
}

.hero__divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.8rem auto;
}

.hero__desc {
  font-size: 0.82rem;
  color: rgba(245, 239, 224, 0.75);
  letter-spacing: 0.08em;
  max-width: 480px;
  margin: 0 auto 2.2rem;
}

.hero__actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 6vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(245, 239, 224, 0.45);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(245, 239, 224, 0.45), transparent);
  animation: scrollPulse 2.2s ease infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(0.7);
  }
}

.hero__dots {
  position: absolute;
  bottom: 2.5rem;
  right: 6vw;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(245, 239, 224, 0.3);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ── INTRO ── */
.intro {
  padding: 9rem 6vw;
  background: var(--white);
}

.intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.intro__text h2 {
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.intro__text p {
  margin-bottom: 2rem;
}

.intro__visual {
  position: relative;
  height: 580px;
}

.intro__img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 85%;
  overflow: hidden;
}

.intro__img-main img {
  transition: transform 1s ease;
}

.intro__img-main:hover img {
  transform: scale(1.04);
}

.intro__img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 48%;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 20px 60px rgba(26, 18, 8, 0.12);
}

.intro__badge {
  position: absolute;
  bottom: 12%;
  right: -2%;
  background: var(--gold);
  color: var(--ivory);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 120px;
  height: 120px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(184, 146, 42, 0.35);
}

.intro__badge .script {
  font-size: 2.2rem;
  color: var(--ivory);
  display: block;
  line-height: 1;
}

.intro__badge span:last-child {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── OFFERINGS ── */
.offerings {
  padding: 0 6vw 9rem;
  background: var(--white);
}

.offerings__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 3px;
}

.offering-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: var(--ivory-dark);
}

.offering-card__img {
  height: 420px;
  overflow: hidden;
}

.offering-card__img img {
  transition: transform 0.9s ease;
}

.offering-card:hover .offering-card__img img {
  transform: scale(1.07);
}

.offering-card--featured .offering-card__img {
  height: 480px;
}

.offering-card__body {
  padding: 2.5rem 2rem;
}

.offering-card__body h3 {
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.offering-card__body p {
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
}

/* ── EVASION ── */
.evasion {
  background: var(--ivory);
  overflow: hidden;
}

.evasion__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.evasion__media {
  position: relative;
  overflow: hidden;
}

.evasion__media img {
  height: 100%;
  min-height: 500px;
}

.evasion__media-overlay {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  color: var(--ivory);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.evasion__content {
  padding: 7rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.evasion__content h2 {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.evasion__content p {
  margin-bottom: 1.2rem;
}

.evasion__content .btn {
  margin-top: 1.5rem;
  align-self: flex-start;
}

/* ── GALLERY TEASER ── */
.gallery-teaser {
  padding: 9rem 6vw;
  background: var(--dark);
}

.gallery-teaser__header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-teaser__header h2 {
  color: var(--ivory);
}

.gallery-teaser__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}

.g-item {
  overflow: hidden;
}

.g-item img {
  height: 260px;
  transition: transform 0.8s ease;
}

.g-item:hover img {
  transform: scale(1.06);
}

.g-item--tall {
  grid-row: span 2;
}

.g-item--tall img {
  height: 100%;
  min-height: 524px;
}

.g-item--wide {
  grid-column: span 2;
}

.g-item--wide img {
  height: 260px;
}

/* ── HAPPY HOUR ── */
.happy-hour {
  padding: 8rem 6vw;
  background: var(--white);
}

.happy-hour__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.happy-hour__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

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

.happy-hour__list li {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: var(--brown-mid);
}

.happy-hour__list li strong {
  color: var(--gold);
  font-weight: 600;
}

.happy-hour__days {
  background: var(--ivory-mid);
  padding: 1.2rem;
  text-align: center;
  margin: 1.5rem 0;
  border-left: 3px solid var(--gold);
}

.happy-hour__days strong {
  color: var(--dark);
  font-size: 1rem;
}

.happy-hour__tag {
  font-style: italic;
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 1rem;
}

.happy-hour__visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.happy-hour__visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.happy-hour__visual:hover img {
  transform: scale(1.02);
}

.happy-hour__visual::after {
  content: '';
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid rgba(184,146,42,0.3);
  pointer-events: none;
}

@media (max-width: 900px) {
  .happy-hour__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .happy-hour__visual::after {
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

/* ── RESPONSIVE HOME ── */
@media (max-width: 900px) {
  .intro__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .intro__visual {
    height: 340px;
  }

  .offerings__inner {
    grid-template-columns: 1fr;
  }

  .offering-card--featured .offering-card__img {
    height: 360px;
  }

  .evasion__inner {
    grid-template-columns: 1fr;
  }

  .evasion__content {
    padding: 4rem 2rem;
  }

  .gallery-teaser__grid {
    grid-template-columns: 1fr 1fr;
  }

  .g-item--tall {
    grid-row: auto;
  }

  .g-item--wide {
    grid-column: auto;
  }
}