.villa-hero {
  min-height: 100svh;
  padding: 8.5rem 1.5rem 5rem;
  background: #20211e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  justify-items: center;
  gap: clamp(1.75rem, 3vw, 3rem);
}

.villa-hero__logo {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  color: var(--gold-light);
  text-align: center;
}

.villa-hero__crest {
  width: clamp(6rem, 11vw, 9.5rem);
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 1;
  background: radial-gradient(circle at 50% 35%, rgba(201, 168, 76, 0.18), rgba(0, 0, 0, 0.1));
  box-shadow: 0 0 0 10px rgba(201, 168, 76, 0.05);
}

.villa-hero__logo p,
.section-kicker {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.villa-hero__image {
  width: min(100%, 70rem);
  aspect-ratio: 16 / 6.3;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.34);
  background: #111;
}

.villa-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.villa-hero__copy {
  width: min(100%, 52rem);
  display: grid;
  justify-items: center;
  gap: 1.35rem;
  text-align: center;
}

.villa-hero__copy h1 {
  max-width: 14ch;
  margin: 0;
  color: #fff8ed;
  font-family: var(--font-body);
  font-size: clamp(2.45rem, 5.6vw, 5.2rem);
  line-height: 1.08;
  font-weight: 400;
}

.villa-hero__copy p {
  max-width: 48rem;
  margin: 0;
  color: rgba(255, 248, 237, 0.8);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

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

.hero-phone {
  display: grid;
  gap: 0.25rem;
  min-width: 13rem;
  padding: 1.05rem 1.3rem;
  background: #b4aa8b;
  color: #fff;
  font-weight: 700;
}

.hero-phone:hover {
  color: #1f211e;
  background: #d0c49f;
}

.hero-phone span {
  font-size: 0.95rem;
}

.daily-offer,
.image-story,
.reservation-band,
.opening-card {
  background: #20211e;
}

.daily-offer {
  padding: 5rem 0 4rem;
  text-align: center;
}

.daily-offer h2,
.image-story h2,
.reservation-band h2,
.opening-card h2 {
  margin: 0.55rem 0 1.8rem;
  color: #fff8ed;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2.5rem;
}

.offer-grid article {
  display: grid;
  align-content: end;
  min-height: 27rem;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  background: #10110f;
}

.offer-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 0.4s ease;
}

.offer-grid article:hover img {
  transform: scale(1.04);
}

.offer-grid article::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.82));
}

.offer-grid div {
  position: relative;
  z-index: 1;
  padding: 1.4rem;
  text-align: left;
}

.offer-grid h3 {
  margin: 0 0 0.55rem;
  color: #fff8ed;
  font-family: var(--font-body);
  font-size: 1.2rem;
}

.offer-grid p,
.image-story p,
.reservation-band p {
  color: rgba(255, 248, 237, 0.78);
}

.image-story {
  padding: 4rem 0 5rem;
}

.image-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.image-story__copy p {
  font-size: 1.05rem;
}

.story-facts {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.story-facts div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.story-facts dt {
  color: var(--gold-light);
  font-weight: 700;
}

.story-facts dd {
  margin: 0;
  color: rgba(255, 248, 237, 0.82);
}

.story-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 16rem;
  gap: 1rem;
}

.story-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.story-gallery img:first-child {
  grid-row: span 2;
}

.reservation-band {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.reservation-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.reservation-band h2,
.reservation-band p {
  margin-bottom: 0;
}

.opening-card {
  padding: 5rem 0 1rem;
}

.opening-card__inner {
  max-width: 46rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.14);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

.opening-card h2 {
  text-align: center;
}

.hours-grid {
  display: grid;
  gap: 0.7rem;
}

.hours-grid div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.hours-grid strong {
  color: #fff8ed;
}

.hours-grid span {
  color: #20211e;
  background: #fff8ed;
  border-radius: 8px;
  padding: 0.45rem 1rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .villa-hero {
    padding-top: 7rem;
  }

  .villa-hero__image {
    aspect-ratio: 4 / 3;
  }

  .offer-grid,
  .image-story__grid {
    grid-template-columns: 1fr;
  }

  .offer-grid article {
    min-height: 22rem;
  }

  .reservation-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .villa-hero {
    padding-inline: 1rem;
  }

  .villa-hero__actions,
  .villa-hero__actions .btn,
  .hero-phone {
    width: 100%;
  }

  .story-facts div,
  .hours-grid div {
    grid-template-columns: 1fr;
  }

  .story-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 14rem;
  }

  .story-gallery img:first-child {
    grid-row: span 1;
  }
}
