/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-image {
  position: absolute;
  left: 0;
  width: 100%;
  height: 130%;
  top: -22%;
  object-fit: cover;
  object-position: 48% 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 90rem 70rem at clamp(12rem, 22vw, 20rem) calc(100% - 10rem),
      rgba(255, 248, 245, 0.55) 0%,
      rgba(255, 248, 245, 0.32) 28%,
      rgba(255, 248, 245, 0.14) 48%,
      rgba(255, 248, 245, 0.05) 65%,
      transparent 78%
    ),
    linear-gradient(
      270deg,
      rgba(255, 248, 245, 0.42) 0%,
      rgba(255, 248, 245, 0.18) 28%,
      rgba(255, 248, 245, 0.06) 52%,
      transparent 72%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(var(--space-lg), 4vw, var(--space-3xl));
  padding-top: var(--space-xl);
  padding-bottom: clamp(var(--space-2xl), 6vh, var(--space-4xl));
  text-align: left;
}

.hero__content > .hero__eyebrow,
.hero__content > .hero__title,
.hero__content > .hero__subtitle,
.hero__content > .hero__actions,
.hero__content > .hero__meta {
  max-width: 34rem;
}

.hero__eyebrow {
  display: inline-block;
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-blush-dark);
}

.hero__title {
  margin-bottom: var(--space-lg);
  color: var(--color-cocoa);
}

.hero__title em {
  font-style: italic;
  color: var(--color-blush-dark);
}

.hero__subtitle {
  font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
  color: var(--color-cocoa-muted);
  margin-bottom: var(--space-2xl);
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: flex-start;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
  justify-content: flex-start;
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.hero__meta-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cocoa-soft);
}

.hero__meta-value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-cocoa);
}

.hero .deco-float--1 {
  width: 120px;
  height: 120px;
  top: 18%;
  right: 12%;
}

.hero .deco-float--2 {
  width: 80px;
  height: 80px;
  bottom: 22%;
  right: 28%;
}

.hero .deco-float--3 {
  width: 60px;
  height: 60px;
  top: 35%;
  right: 6%;
}

/* Styles section */
.styles-section {
  position: relative;
  overflow: hidden;
}

.styles-section .deco-float--1 {
  width: 100px;
  height: 100px;
  top: 8%;
  left: 4%;
}

.styles-section .deco-float--2 {
  width: 70px;
  height: 70px;
  bottom: 12%;
  right: 6%;
}

/* Before/After section */
.ba-section {
  position: relative;
}

.ba-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.ba-section__text .section-header {
  text-align: left;
  margin-inline: 0;
  margin-bottom: var(--space-xl);
}

.ba-section__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.ba-section__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.ba-section__feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-blush-light);
  border-radius: var(--radius-full);
  color: var(--color-cocoa);
}

.ba-section__feature-text strong {
  display: block;
  color: var(--color-cocoa);
  margin-bottom: var(--space-xs);
}

.ba-section__feature-text span {
  font-size: var(--text-sm);
  color: var(--color-cocoa-muted);
}

.ba-section .deco-float--1 {
  width: 90px;
  height: 90px;
  top: 10%;
  right: 4%;
}

/* Pricing + Artist */
.pricing-artist {
  position: relative;
}

.pricing-artist__pricing {
  margin-bottom: var(--space-4xl);
}

.pricing-artist .deco-float--1 {
  width: 110px;
  height: 110px;
  bottom: 15%;
  left: 3%;
}

/* Ambiance strip */
.ambiance-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-3xl);
}

.ambiance-strip__image {
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

/* Booking section */
.booking-section {
  position: relative;
  overflow: hidden;
}

.booking-section .deco-float--1 {
  width: 85px;
  height: 85px;
  top: 12%;
  left: 8%;
}

.booking-section .deco-float--2 {
  width: 55px;
  height: 55px;
  bottom: 18%;
  right: 10%;
}

.booking-section__intro {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}

/* Interior highlight */
.interior-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: var(--space-3xl);
  box-shadow: var(--shadow-lg);
}

.interior-banner__image {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.interior-banner__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  background: linear-gradient(transparent, rgba(44, 24, 16, 0.8));
  color: var(--color-ivory);
}

.interior-banner__caption h3 {
  color: var(--color-ivory);
  font-size: var(--text-xl);
}

.interior-banner__caption p {
  color: rgba(255, 248, 245, 0.85);
  font-size: var(--text-sm);
}

/* Responsive */
@media (max-width: 992px) {
  .ba-section__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .ba-section__text .section-header {
    text-align: center;
    margin-inline: auto;
  }

  .ba-section__features {
    max-width: 480px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .hero__bg-image {
    height: 135%;
    top: -20%;
    object-position: 40% 28%;
  }

  .hero__overlay {
    background:
      radial-gradient(
        ellipse 55rem 48rem at 30% calc(100% - 8rem),
        rgba(255, 248, 245, 0.5) 0%,
        rgba(255, 248, 245, 0.28) 30%,
        rgba(255, 248, 245, 0.12) 50%,
        rgba(255, 248, 245, 0.04) 68%,
        transparent 80%
      ),
      linear-gradient(
        270deg,
        rgba(255, 248, 245, 0.38) 0%,
        rgba(255, 248, 245, 0.16) 32%,
        rgba(255, 248, 245, 0.05) 55%,
        transparent 75%
      );
  }

  .hero__content {
    text-align: left;
    margin-inline: auto;
    padding-inline: var(--space-lg);
    padding-bottom: var(--space-2xl);
  }

  .hero__subtitle {
    margin-inline: 0;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__meta {
    justify-content: flex-start;
    margin-top: var(--space-xl);
  }

  .hero .deco-float {
    display: none;
  }

  .ambiance-strip {
    grid-template-columns: 1fr;
  }

  .interior-banner__image {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .time-slots {
    grid-template-columns: repeat(3, 1fr);
  }
}
