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

:root {
  --gold:       #E6C07B;
  --gold-deep:  #C9956B;
  --brown:      #5B3A29;
  --cream:      #F9F3EB;
  --cream-dark: #EDE3D4;
  --text:       #2C1A0E;
  --text-light: #7A5C44;
  --white:      #FFFFFF;
  --green:      #2D5016;
  --green-light:#4A7C2F;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --nav-h: 80px;
  --section-pad: 100px;
  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section { padding: var(--section-pad) 0; }

/* ── TYPOGRAPHY ── */
.section__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 1rem;
}

.section__title em {
  font-style: italic;
  color: var(--gold-deep);
}

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

.ornament {
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin: 1rem 0 1.5rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--brown);
  color: var(--cream);
  border: 2px solid var(--brown);
}
.btn--primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,58,41,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(249,243,235,0.6);
}
.btn--ghost:hover {
  background: rgba(249,243,235,0.15);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.btn--small {
  padding: 0.6rem 1.4rem;
  font-size: 0.72rem;
  background: var(--brown);
  color: var(--cream);
  border: 2px solid var(--brown);
}
.btn--small:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.btn--full { width: 100%; justify-content: center; }

/* ── NAVBAR ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  transition: background 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(249,243,235,0.97);
  box-shadow: 0 2px 30px rgba(91,58,41,0.12);
  backdrop-filter: blur(12px);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  transition: color 0.4s;
}

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

.nav__logo-symbol {
  color: var(--gold);
  font-size: 1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249,243,235,0.9);
  transition: color 0.3s;
  position: relative;
}

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

.nav__links a:hover::after { width: 100%; }
.nav__links a:hover { color: var(--gold); }

.nav.scrolled .nav__links a { color: var(--text-light); }
.nav.scrolled .nav__links a:hover { color: var(--brown); }

.nav__cta {
  background: var(--brown) !important;
  color: var(--cream) !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid var(--brown);
  transition: var(--transition) !important;
}
.nav__cta:hover {
  background: var(--gold-deep) !important;
  border-color: var(--gold-deep) !important;
}
.nav__cta::after { display: none !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: var(--transition);
}
.nav.scrolled .nav__toggle span { background: var(--brown); }

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

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

.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(43,20,8,0.35) 0%,
    rgba(43,20,8,0.55) 50%,
    rgba(43,20,8,0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 800px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__divider span {
  display: block;
  width: 60px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero__sub {
  font-size: 1rem;
  color: rgba(249,243,235,0.85);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

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

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(249,243,235,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(249,243,235,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--brown);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
}

.marquee-track .dot {
  color: var(--gold);
  font-size: 0.6rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

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

.about__image-wrap {
  position: relative;
}

.about__img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 20px 20px 0 var(--gold-deep);
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 90px; height: 90px;
  background: var(--brown);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(91,58,41,0.4);
}

.about__badge-num {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about__badge-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}

.about__body {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.85;
}

.about__body strong { color: var(--brown); }

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1;
}

.stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
}

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

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

.room-card {
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(91,58,41,0.08);
  transition: transform 0.4s, box-shadow 0.4s;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(91,58,41,0.18);
}

.room-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.room-card__img-wrap img {
  transition: transform 0.6s;
}

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

.room-card__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--brown);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}

.room-card__body {
  padding: 1.8rem;
}

.room-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.room-card__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.room-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.room-card__features li {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

.room-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--cream-dark);
}

.price__from {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.price__amount {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brown);
}

.price__per {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ── AMENITIES ── */
.amenities {
  position: relative;
  padding: var(--section-pad) 0;
}

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

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

.amenities__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43,20,8,0.92) 0%, rgba(91,58,41,0.88) 100%);
}

.amenities__content {
  position: relative;
  z-index: 2;
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.amenity-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(230,192,123,0.2);
  border-radius: 2px;
  transition: var(--transition);
  background: rgba(249,243,235,0.04);
}

.amenity-item:hover {
  background: rgba(230,192,123,0.1);
  border-color: rgba(230,192,123,0.5);
  transform: translateY(-4px);
}

.amenity-item__icon {
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.amenity-item__icon svg {
  width: 100%; height: 100%;
}

.amenity-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.amenity-item p {
  font-size: 0.78rem;
  color: rgba(249,243,235,0.65);
  line-height: 1.6;
}

/* ── DINING ── */
.dining { background: var(--cream); }

.dining__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.dining__body {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.85;
}

.dining__body strong { color: var(--brown); }
.dining__body em { color: var(--gold-deep); font-style: italic; }

.dining__highlights {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.dining__highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  border-radius: 0 2px 2px 0;
}

.highlight__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.dining__highlight strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.2rem;
}

.dining__highlight p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.dining__image-wrap {
  position: relative;
}

.dining__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}

.dining__img-accent {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.4;
}

/* ── GALLERY ── */
.gallery { background: var(--cream-dark); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 1rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,20,8,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-overlay span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  font-style: italic;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial {
  padding: 2.2rem;
  background: var(--cream-dark);
  border-radius: 2px;
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(91,58,41,0.12);
}

.testimonial__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial__avatar {
  width: 40px; height: 40px;
  background: var(--brown);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial__author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--brown);
}

.testimonial__author span {
  font-size: 0.75rem;
  color: var(--text-light);
}

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

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__detail-icon {
  width: 40px; height: 40px;
  background: var(--brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact__detail-icon svg {
  width: 18px; height: 18px;
}

.contact__detail strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.3rem;
}

.contact__detail p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── FORM ── */
.contact__form-wrap {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 2px;
  box-shadow: 0 8px 40px rgba(91,58,41,0.1);
}

.form__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-dark);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form__group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
}

.form__group input,
.form__group select,
.form__group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(201,149,107,0.15);
}

.form__group textarea { resize: vertical; }

.form__note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 0.8rem;
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.footer { background: var(--brown); }

.footer__top { padding: 5rem 0 3rem; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 0.82rem;
  color: rgba(249,243,235,0.65);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 0.8rem;
}

.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(230,192,123,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--brown);
  border-color: var(--gold);
}

.footer__social svg { width: 16px; height: 16px; }

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(249,243,235,0.65);
  transition: color 0.3s;
}

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

.footer__contact p {
  font-size: 0.85rem;
  color: rgba(249,243,235,0.65);
  line-height: 1.7;
}

.footer__contact strong { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(230,192,123,0.15);
  padding: 1.5rem 0;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(249,243,235,0.45);
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--brown);
  color: var(--gold);
  padding: 1rem 1.8rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(91,58,41,0.4);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
  z-index: 9999;
  border-left: 3px solid var(--gold);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── REVEAL ANIMATIONS ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px; }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(249,243,235,0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.2rem;
    transform: translateY(-110%);
    transition: transform 0.4s;
    box-shadow: 0 8px 24px rgba(91,58,41,0.15);
  }

  .nav__links.open { transform: translateY(0); }
  .nav__links a { color: var(--text-light) !important; font-size: 0.9rem; }
  .nav__toggle { display: flex; }

  .about__grid,
  .dining__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }

  .about__img { height: 380px; }
  .about__badge { right: 1rem; }

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

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--tall,
  .gallery__item--wide { grid-column: span 1; grid-row: span 1; }
  .gallery__item { height: 200px; }

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

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

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .about__stats { gap: 1.5rem; }
  .amenities__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 1.5rem; }
}