/* ============================================
   GRANDSCHELS ON THE RIVER — STYLESHEET
   Palette: Emerald #0B5345 / Cream #FAF6F0 / Gold #D4A84B
   ============================================ */

/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --emerald: #0B5345;
  --emerald-dark: #073D32;
  --emerald-light: #14705A;
  --cream: #FAF6F0;
  --cream-dark: #F0E8DA;
  --gold: #D4A84B;
  --gold-light: #E8C478;
  --gold-dark: #B8912E;
  --charcoal: #1C1C1C;
  --text-dark: #1A2E2A;
  --text-mid: #3D5A53;
  --text-light: #6B8A82;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', 'Palatino Linotype', serif;
  --font-ui: 'Inter', system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(11,83,69,0.08);
  --shadow-md: 0 4px 16px rgba(11,83,69,0.10);
  --shadow-lg: 0 8px 32px rgba(11,83,69,0.12);
  --shadow-xl: 0 16px 48px rgba(11,83,69,0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION LABEL ── */
.section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--emerald-dark);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,246,240,0.5);
}

.btn--ghost:hover {
  background: rgba(250,246,240,0.12);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 0.9375rem;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 16px 0;
}

.nav.scrolled {
  background: rgba(250,246,240,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  transition: color var(--transition);
}

.nav.scrolled .nav__logo {
  color: var(--emerald);
}

.nav__logo-icon {
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(250,246,240,0.85);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__links a:hover {
  color: var(--cream);
}

.nav.scrolled .nav__links a {
  color: var(--text-mid);
}

.nav.scrolled .nav__links a:hover {
  color: var(--emerald);
}

.nav__cta {
  background: var(--gold) !important;
  color: var(--emerald-dark) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}

.nav__cta::after {
  display: none;
}

.nav__cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav__menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  padding: 4px;
}

.nav.scrolled .nav__menu-btn {
  color: var(--emerald);
}

/* ── MOBILE MENU ── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--emerald-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-overlay__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  padding: 4px;
}

.menu-overlay__links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(250,246,240,0.8);
  padding: 12px 24px;
  transition: all var(--transition);
  display: block;
}

.menu-link:hover {
  color: var(--gold);
}

.menu-link--cta {
  margin-top: 16px;
  background: var(--gold);
  color: var(--emerald-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
}

.menu-link--cta:hover {
  background: var(--gold-light);
  color: var(--emerald-dark);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--emerald-dark);
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,61,50,0.88) 0%,
    rgba(11,83,69,0.78) 40%,
    rgba(11,83,69,0.65) 70%,
    rgba(11,83,69,0.50) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 160px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  background: rgba(212,168,75,0.12);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(212,168,75,0.25);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 24px;
  max-width: 720px;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: rgba(250,246,240,0.82);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── FLOATING STAT CARDS ── */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0 24px;
  pointer-events: none;
}

.stat-card {
  background: var(--white);
  padding: 28px 36px;
  text-align: center;
  min-width: 180px;
  box-shadow: var(--shadow-xl);
  pointer-events: auto;
  position: relative;
}

.stat-card + .stat-card {
  margin-left: -1px;
}

.stat-card--1 {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--emerald);
  color: var(--cream);
}

.stat-card--2 {
  background: var(--cream);
  color: var(--text-dark);
  padding: 32px 40px;
}

.stat-card--3 {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--gold-dark);
  color: var(--cream);
}

.stat-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}

.stat-card__label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ── ABOUT ── */
.about {
  padding: 100px 0;
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.about__text {
  padding: 8px 0;
}

.about__body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
}

.value-item svg {
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* ── ROOMS ── */
.rooms {
  padding: 100px 0;
  background: var(--cream-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-sub {
  margin: 0 auto;
}

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.room-card__img-wrap {
  overflow: hidden;
  height: 240px;
}

.room-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-card__img-wrap img {
  transform: scale(1.05);
}

.room-card__body {
  padding: 28px;
}

.room-card__title {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.room-card__desc {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.room-card__features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-card__features li {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--emerald);
  background: rgba(11,83,69,0.07);
  padding: 6px 12px;
  border-radius: 100px;
}

.rooms__note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
}

/* ── AMENITIES ── */
.amenities {
  padding: 100px 0;
  background: var(--emerald);
}

.amenities__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.amenities__left {
  max-width: 440px;
}

.amenities__desc {
  font-size: 1.05rem;
  color: rgba(250,246,240,0.78);
  line-height: 1.75;
  margin-bottom: 32px;
}

.amenities__right {
  display: flex;
  justify-content: center;
}

.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 480px;
}

.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(250,246,240,0.07);
  border: 1px solid rgba(250,246,240,0.1);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: all var(--transition);
}

.amenity-item:hover {
  background: rgba(250,246,240,0.12);
  transform: translateY(-3px);
}

.amenity-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,168,75,0.15);
  border-radius: var(--radius-sm);
}

.amenity-item__label {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.4;
}

/* ── AREA ── */
.area {
  padding: 100px 0;
  background: var(--cream);
}

.area__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.area__body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
}

.area__highlights {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.highlight-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.highlight-item__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-item__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.highlight-item__desc {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.area__image-col {
  position: relative;
  padding-top: 40px;
}

.area__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.area__img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.area__img-stack {
  position: absolute;
  bottom: 0;
  right: -30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}

.area__img-stack img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* ── TESTIMONIAL ── */
.testimonial {
  padding: 80px 0;
  background: var(--emerald-dark);
}

.testimonial__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__quote-icon {
  margin-bottom: 24px;
  opacity: 0.6;
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 24px;
}

.testimonial__attribution {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* ── CONTACT ── */
.contact {
  padding: 100px 0;
  background: var(--cream-dark);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact__body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-detail__label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact-detail__value {
  font-size: 0.9375rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-detail__value a {
  color: var(--emerald);
  transition: color var(--transition);
}

.contact-detail__value a:hover {
  color: var(--gold-dark);
}

.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid rgba(11,83,69,0.12);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(11,83,69,0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  margin: 0 auto 16px;
}

.form-success__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 8px;
}

.form-success__text {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  color: rgba(250,246,240,0.7);
  padding: 64px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250,246,240,0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer__logo-icon {
  color: var(--gold);
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 320px;
  color: rgba(250,246,240,0.55);
}

.footer__heading {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links ul,
.footer__contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a,
.footer__contact a {
  font-size: 0.9375rem;
  color: rgba(250,246,240,0.6);
  transition: color var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--gold);
}

.footer__contact li {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: rgba(250,246,240,0.35);
}

/* ── SCROLL REVEAL (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about__grid,
  .amenities__inner,
  .area__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image-wrap {
    max-width: 500px;
  }

  .rooms__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area__image-col {
    order: -1;
    max-width: 500px;
  }

  .area__img-stack {
    right: -16px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__menu-btn {
    display: flex;
  }

  .hero__content {
    padding: 100px 24px 140px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .hero__stats {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 16px 24px;
  }

  .stat-card {
    border-radius: 0 !important;
    width: 100%;
    max-width: 400px;
    padding: 20px 24px;
  }

  .stat-card + .stat-card {
    margin-left: 0;
  }

  .stat-card--1,
  .stat-card--3 {
    border-radius: var(--radius-md) var(--radius-md) 0 0 !important;
  }

  .stat-card:last-child {
    border-radius: 0 0 var(--radius-md) var(--radius-md) !important;
  }

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

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

  .area__img-main img {
    height: 320px;
  }

  .area__img-stack {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -60px;
    margin-left: auto;
  }

  .area__img-stack img {
    width: 100%;
    height: 200px;
  }

  .contact__form-wrap {
    padding: 28px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .about,
  .rooms,
  .amenities,
  .area,
  .contact {
    padding: 64px 0;
  }

  .hero__headline {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
}
