* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #262626;
  background: #ffffff;
  line-height: 1.65;
  font-size: 16px;
  letter-spacing: 0.1px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.container {
  width: min(1240px, 94%);
  margin: 0 auto;
}

.offer-bar {
  background: #1d1d1d;
  color: #ffffff;
  text-align: center;
  padding: 0.55rem 0.8rem;
  font-size: 0.82rem;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  font-family: "Times New Roman", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.nav-links a {
  font-size: 0.83rem;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: #141414;
}

.mega-parent {
  position: static;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  background: #ffffff;
  border: 1px solid #e7e7e7;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  padding: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 30;
}

.mega-parent:hover .mega-menu,
.mega-parent:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-block h4 {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.45px;
}

.mega-block a {
  display: block;
  font-size: 0.85rem;
  color: #4c4c4c;
  margin: 0.2rem 0;
}

.mega-block a:hover {
  color: #171717;
}

.seasonal-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.seasonal-track {
  display: flex;
  width: 100%;
  animation: seasonalSlide 15s infinite;
}

.seasonal-slide {
  flex: 0 0 100%;
  min-height: 430px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.seasonal-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.15));
}

.seasonal-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 540px;
  padding: 5.2rem 0 3.2rem;
}

.seasonal-content p {
  margin: 0.2rem 0 0.9rem;
  font-size: 1.04rem;
  line-height: 1.55;
}

.seasonal-kicker {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 0.23rem 0.5rem;
}

@keyframes seasonalSlide {
  0%,
  28% {
    transform: translateX(0%);
  }
  33%,
  61% {
    transform: translateX(-100%);
  }
  66%,
  94% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0%);
  }
}

.hero {
  background: #f7f3ef;
  padding: 3rem 0 2.4rem;
}

.hero-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1fr 1.1fr;
}

.hero-copy {
  background: #efe6dc;
  padding: 2.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 0.7rem;
  font-size: clamp(2.2rem, 3.9vw, 3.7rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.hero-copy p {
  margin: 0 0 1.2rem;
  max-width: 460px;
  font-size: 1.03rem;
  color: #4e4e4e;
}

.btn {
  display: inline-block;
  background: #1f1f1f;
  color: #fff;
  padding: 0.8rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: opacity 0.22s ease;
}

.btn:hover {
  opacity: 0.85;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.room-card {
  background: #fff;
}

.room-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-card h3 {
  margin: 0;
  padding: 0.62rem 0.2rem 0;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.section {
  padding: 3.2rem 0;
}

.section-compact {
  padding: 2.1rem 0 3.2rem;
}

.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 1.1rem;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  background: #fff;
}

.card-image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.card h3 {
  margin: 0.85rem 0 0.35rem;
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: 0.1px;
}

.card p {
  margin: 0;
  color: #4d4d4d;
  font-size: 0.97rem;
  line-height: 1.7;
}

.design-tag {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  color: #6a6a6a;
}

.feedback-list {
  display: grid;
  gap: 0.9rem;
  max-width: 900px;
}

.feedback-item {
  border: 1px solid #e9e9e9;
  padding: 0.95rem 1.05rem;
  background: #fff;
}

.stars {
  margin: 0 0 0.35rem;
  color: #c68d32;
  letter-spacing: 1.1px;
  font-size: 1rem;
}

.feedback-item p {
  margin: 0.25rem 0 0.35rem;
  font-size: 0.96rem;
  line-height: 1.62;
}

.feedback-item strong {
  font-size: 0.9rem;
  letter-spacing: 0.25px;
  color: #555;
}

.page-title {
  background: #f4efe9;
  padding: 2.3rem 0;
  border-bottom: 1px solid #ece4da;
}

.page-title h1 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0;
  font-size: clamp(2.1rem, 2.9vw, 2.7rem);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.contact-box {
  background: #faf8f6;
  border: 1px solid #ebe6df;
  padding: 1.2rem;
}

.site-footer {
  margin-top: 1.2rem;
  border-top: 1px solid #e4ddd5;
  background: linear-gradient(180deg, #f8f5f1, #efe9e2);
  color: #2e2e2e;
  padding: 0.75rem 0 0.45rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 0.45rem 1rem;
  align-items: start;
  padding: 0.1rem 0;
}

.footer-grid .footer-brand {
  display: none;
}

.footer-grid > div:nth-child(2) {
  order: 2;
  justify-self: end;
  text-align: center;
}

.footer-grid > div:nth-child(3) {
  order: 1;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.footer-links a {
  color: #4b443d;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #111;
  transform: translateX(3px);
}

.footer-contact {
  font-size: 0.88rem;
  font-weight: 500;
  color: #5a524a;
  line-height: 1.45;
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.footer-brand h3 {
  font-family: "Avenir Next Demi Bold", "Avenir Next", "Segoe UI", Arial, sans-serif;
  margin: 0 0 0.12rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.footer-brand p {
  margin: 0;
  max-width: 360px;
  color: #5f554b;
  font-size: 0.83rem;
  font-weight: 500;
  line-height: 1.4;
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.footer-title {
  margin: 0 0 0.22rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  color: #80756a;
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.footer-bottom {
  margin-top: 0.3rem;
  padding-top: 0.12rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #716658;
  text-align: center;
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.region-badge {
  background: #ffffff;
  border: 1px solid #ddd4ca;
  color: #484848;
  padding: 0.28rem 0.6rem;
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 0.05rem 0;
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
  }

  .hero-copy {
    padding: 1.4rem;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid #ececec;
    margin-top: 0.6rem;
    grid-template-columns: 1fr;
    padding: 0.8rem;
    display: none;
  }

  .mega-parent:hover .mega-menu,
  .mega-parent:focus-within .mega-menu {
    display: grid;
  }

  .seasonal-slide {
    min-height: 320px;
  }

  .seasonal-content {
    padding: 3rem 0 2.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .footer-grid > div:nth-child(3) {
    order: 1;
  }

  .footer-grid > div:nth-child(2) {
    order: 2;
    justify-self: start;
    text-align: left;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
