/* =========================================
   NISHA HOME STAY
   Premium Hospitality Website
========================================= */

:root {
  --bg: #f7f5ef;
  --surface: #ffffff;
  --dark: #18221d;
  --dark-2: #25322b;
  /* --muted: #68716b; */
  --line: #dedfd9;
  --accent: #b87545;
  --accent-dark: #925735;
  --cream: #ebe5d7;
  --white: #ffffff;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;

  --container: 1180px;
  --radius: 18px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(
    calc(100% - 48px),
    var(--container)
  );

  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

/* =========================================
   HEADER
========================================= */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;

  background: rgba(247, 245, 239, 0.88);
  backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255,255,255,0.25);

  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.nav-container {
  height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.logo-mark {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  background: var(--dark);
  color: white;

  border-radius: 50%;

  font-family: var(--serif);
  font-size: 22px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.logo-text small {
  margin-top: 5px;

  font-size: 8px;
  letter-spacing: 2.5px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav > a {
  font-size: 13px;
  font-weight: 500;
  color: #3c463f;

  transition: var(--transition);
}

.nav > a:hover {
  color: var(--accent-dark);
}

.nav-whatsapp {
  padding: 11px 18px;

  border: 1px solid var(--dark);
  border-radius: 50px;

  background: var(--dark);
  color: white !important;
}

.menu-toggle {
  display: none;

  border: 0;
  background: transparent;

  width: 42px;
  height: 42px;

  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
}

/* =========================================
   HERO
========================================= */

.hero {
  min-height: 780px;

  position: relative;

  display: flex;
  align-items: center;
background-color: #18221d;
  /* background:
    url("images/hero.webp")
    center / cover no-repeat; */
  overflow: hidden;
  color: white;
}
.hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
    opacity: 0;
    transition: opacity 0.15s ease;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(10, 18, 13, 0.78),
      rgba(10, 18, 13, 0.38),
      rgba(10, 18, 13, 0.15)
    );
    opacity: 0;
    transition: opacity 0.15s ease;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 700px;
  padding-top: 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 25px;

  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: white;
}

.hero h1 {
  max-width: 750px;

  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -2px;
}

.hero h1 em {
  color: #e7b98d;
  font-style: italic;
}

.hero-copy > p {
  max-width: 600px;

  margin: 28px 0 35px;

  font-size: 17px;
  color: rgba(255,255,255,0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 0 25px;

  border-radius: 50px;

  border: 1px solid transparent;

  font-size: 13px;
  font-weight: 600;

  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(255,255,255,0.1);
  color: white;

  border-color: rgba(255,255,255,0.45);

  backdrop-filter: blur(8px);
}

.btn-light:hover {
  background: white;
  color: var(--dark);
}

.btn-dark {
  background: var(--dark);
  color: white;
}

.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--dark);
  color: var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: white;
}

.hero-note {
  margin-top: 40px;

  display: flex;
  align-items: baseline;
  gap: 9px;
}

.hero-note strong {
  font-family: var(--serif);
  font-size: 27px;
}

.hero-note span {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

.hero-scroll {
  position: absolute;
  bottom: 35px;
  right: 40px;

  display: flex;
  align-items: center;
  gap: 14px;

  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;

  transform: rotate(90deg);
  transform-origin: right center;
}

.scroll-line {
  width: 50px;
  height: 1px;
  background: white;
}

/* =========================================
   TRUST
========================================= */

.trust-bar {
  background: white;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 28px 24px;

  display: flex;
  align-items: center;
  gap: 15px;

  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--cream);

  font-family: var(--serif);
  color: var(--accent-dark);
  font-size: 15px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 14px;
}

.trust-item span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

/* =========================================
   HEADINGS
========================================= */

.section-label {
  display: inline-block;

  margin-bottom: 16px;

  color: var(--accent-dark);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 55px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.section-content h2,
.nearby-content h2,
.international-copy h2,
.food-content h2,
.faq-intro h2,
.booking-copy h2,
.location-header h2 {
  font-family: var(--serif);

  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;

  font-weight: 500;
  letter-spacing: -1.5px;
}

.section-heading h2 em,
.section-content h2 em,
.nearby-content h2 em,
.international-copy h2 em,
.food-content h2 em,
.faq-intro h2 em,
.booking-copy h2 em,
.location-header h2 em {
  color: var(--accent-dark);
  font-style: italic;
}

.section-heading p {
  max-width: 650px;

  margin: 20px auto 0;

  color: var(--muted);
  font-size: 15px;
}

/* =========================================
   ABOUT
========================================= */

.about-section {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 90px;
  align-items: center;
}

.section-image {
  position: relative;
}

.image-frame {
  height: 600px;
  overflow: hidden;

  border-radius: 5px 80px 5px 5px;
}

.image-frame img {
  height: 100%;
}

.experience-card {
  position: absolute;
  right: -25px;
  bottom: 35px;

  padding: 25px;

  display: flex;
  align-items: center;
  gap: 15px;

  background: var(--dark);
  color: white;

  border-radius: 5px;
}

.experience-card strong {
  font-family: var(--serif);
  font-size: 45px;
  line-height: 1;
}

.experience-card span {
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-content .lead {
  margin: 25px 0 18px;

  font-size: 17px;
  color: #3f4942;
}

.section-content > p:not(.lead) {
  color: var(--muted);
  font-size: 14px;
}

.about-highlights {
  margin: 32px 0;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.about-highlights div {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 12px;
  font-weight: 600;
}

.about-highlights span {
  color: var(--accent);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--dark);

  font-size: 12px;
  font-weight: 700;

  border-bottom: 1px solid var(--dark);
  padding-bottom: 5px;

  transition: var(--transition);
}

.text-link:hover {
  gap: 15px;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* =========================================
   STAY
========================================= */

.stay-section {
  background: white;
}

.stay-showcase {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr;
  gap: 18px;
}

.stay-main-image,
.small-image {
  position: relative;
  overflow: hidden;
}

.stay-main-image {
  height: 610px;
}

.stay-main-image img {
  height: 100%;
  transition: transform 0.8s ease;
}

.stay-main-image:hover img,
.small-image:hover img {
  transform: scale(1.04);
}

.image-caption {
  position: absolute;
  inset: auto 25px 25px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: white;
}

.image-caption span {
  font-family: var(--serif);
  font-size: 18px;
}

.image-caption strong {
  padding: 10px 15px;

  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);

  border-radius: 50px;

  font-size: 11px;
}

.stay-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.small-image {
  min-height: 0;
}

.small-image img {
  height: 100%;
  transition: transform 0.8s ease;
}

.small-image > span {
  position: absolute;
  left: 20px;
  bottom: 20px;

  padding: 8px 13px;

  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);

  border-radius: 50px;

  color: white;

  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stay-features {
  margin-top: 70px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--line);
}

.feature-card {
  padding: 30px 30px 0;
  border-right: 1px solid var(--line);
}

.feature-card:first-child {
  padding-left: 0;
}

.feature-card:last-child {
  border-right: 0;
}

.feature-number {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 18px;
}

.feature-card h3 {
  margin: 12px 0 8px;
  font-family: var(--serif);
  font-size: 23px;
}

.feature-card p {
  color: var(--muted);
  font-size: 13px;
}

/* =========================================
   AMENITIES
========================================= */

.amenities-section {
  background: var(--cream);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.amenity {
  min-height: 200px;

  padding: 28px;

  border-right: 1px solid rgba(24,34,29,0.13);
  border-bottom: 1px solid rgba(24,34,29,0.13);
}

.amenity:nth-child(4n) {
  border-right: 0;
}

.amenity:nth-last-child(-n+4) {
  border-bottom: 0;
}

.amenity > span {
  display: block;

  margin-bottom: 30px;

  color: var(--accent-dark);

  font-size: 25px;
}

.amenity h3 {
  margin-bottom: 5px;

  font-family: var(--serif);
  font-size: 20px;
}

.amenity p {
  color: var(--muted);
  font-size: 12px;
}

/* =========================================
   PRICING
========================================= */

.pricing-section {
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;

  padding: 42px 35px;

  background: white;

  border: 1px solid var(--line);

  border-radius: var(--radius);

  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(24,34,29,0.08);
}

.price-card.featured {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}

.popular {
  position: absolute;
  top: 20px;
  right: 20px;

  padding: 6px 10px;

  background: var(--accent);

  border-radius: 50px;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
}

.price-guests {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-dark);
}

.featured .price-guests {
  color: #e2b68d;
}

.price {
  margin: 22px 0 4px;

  font-family: var(--serif);
  font-size: 60px;
  line-height: 1;
}

.price small {
  font-family: var(--sans);
  font-size: 25px;
}

.price-period {
  font-size: 11px;
  color: var(--muted);
}

.featured .price-period {
  color: rgba(255,255,255,0.6);
}

.price-divider {
  height: 1px;

  margin: 28px 0;

  background: var(--line);
}

.featured .price-divider {
  background: rgba(255,255,255,0.14);
}

.price-card p {
  min-height: 50px;

  color: var(--muted);
  font-size: 13px;
}

.featured p {
  color: rgba(255,255,255,0.7);
}

.price-link {
  display: inline-block;

  margin-top: 25px;

  font-size: 12px;
  font-weight: 700;

  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.long-stay {
  margin-top: 25px;

  padding: 35px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  background: var(--cream);

  border-radius: var(--radius);
}

.long-stay h3 {
  margin-bottom: 5px;

  font-family: var(--serif);
  font-size: 28px;
}

.long-stay p {
  color: var(--muted);
  font-size: 13px;
}

/* =========================================
   NEARBY
========================================= */

.nearby-section {
  background: white;
}

.nearby-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  gap: 90px;
  align-items: center;
}

.nearby-content > p {
  max-width: 520px;

  margin: 22px 0 30px;

  color: var(--muted);
  font-size: 14px;
}

.nearby-links {
  border-top: 1px solid var(--line);
}

.nearby-links a {
  padding: 18px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid var(--line);

  transition: var(--transition);
}

.nearby-links a:hover {
  padding-inline: 8px;
  color: var(--accent-dark);
}

.nearby-links strong,
.nearby-links span {
  display: block;
}

.nearby-links strong {
  font-family: var(--serif);
  font-size: 18px;
}

.nearby-links span {
  margin-top: 2px;

  color: var(--muted);
  font-size: 10px;
}

.nearby-links > a > span {
  font-size: 18px;
}

.nearby-image {
  position: relative;

  height: 650px;

  overflow: hidden;

  border-radius: 100px 5px 5px 5px;
}

.nearby-image img {
  height: 100%;
}

.location-badge {
  position: absolute;
  left: 25px;
  bottom: 25px;

  padding: 15px 18px;

  display: flex;
  gap: 12px;

  background: white;

  border-radius: 10px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.location-badge > span {
  font-size: 20px;
}

.location-badge strong,
.location-badge small {
  display: block;
}

.location-badge strong {
  font-size: 13px;
}

.location-badge small {
  margin-top: 2px;

  color: var(--muted);
  font-size: 10px;
}

/* =========================================
   INTERNATIONAL
========================================= */

.international-section {
  min-height: 560px;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      90deg,
      rgba(18,30,23,0.9),
      rgba(18,30,23,0.48)
    ),
    url("images/international.webp")
    center / cover no-repeat;

  color: white;
}

.international-copy {
  max-width: 600px;
}

.international-copy h2 {
  margin-bottom: 20px;
}

.international-copy h2 em {
  color: #e4b58b;
}

.international-copy p {
  max-width: 530px;

  margin-bottom: 16px;

  color: rgba(255,255,255,0.82);
}

.small-copy {
  font-size: 12px !important;
  color: var(--muted);
}

/* =========================================
   FOOD
========================================= */

.food-section {
  background: var(--cream);
}

.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 90px;
  align-items: center;
}

.food-image {
  height: 520px;
  overflow: hidden;

  border-radius: 5px 70px 5px 5px;
}

.food-image img {
  height: 100%;
}

.food-content p {
  max-width: 500px;

  margin: 24px 0;

  color: var(--muted);
  font-size: 15px;
}

/* =========================================
   REVIEWS
========================================= */

.reviews-section {
  background: white;
}

.rating-display {
  margin-top: 25px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.rating-display strong {
  font-family: var(--serif);
  font-size: 30px;
}

.rating-display span {
  color: var(--accent);
  letter-spacing: 2px;
}

.rating-display small {
  color: var(--muted);
  font-size: 11px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  padding: 35px;

  background: var(--bg);

  border-radius: var(--radius);
}

.review-stars {
  color: var(--accent);
  letter-spacing: 2px;
}

.review-card p {
  min-height: 145px;

  margin: 22px 0;

  color: #3f4942;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;

  padding-top: 18px;

  border-top: 1px solid var(--line);
}

.review-author > span {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  background: var(--cream);
  border-radius: 50%;

  font-size: 11px;
  font-weight: 700;
}

.review-author strong,
.review-author small {
  display: block;
}

.review-author strong {
  font-size: 12px;
}

.review-author small {
  color: var(--muted);
  font-size: 9px;
}

.reviews-cta {
  margin-top: 40px;
  text-align: center;
}

/* =========================================
   GALLERY
========================================= */

.gallery-section {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;

  grid-auto-rows: 280px;

  gap: 12px;
}

.gallery-item {
  position: relative;

  padding: 0;

  overflow: hidden;

  border: 0;
  border-radius: 5px;

  background: transparent;
}

.gallery-item.gallery-large {
  grid-row: span 2;
}

.gallery-item img {
  height: 100%;

  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      transparent 55%,
      rgba(0,0,0,0.55)
    );
}

.gallery-item span {
  position: absolute;

  left: 20px;
  bottom: 17px;

  z-index: 2;

  color: white;

  font-size: 11px;
  font-weight: 600;
}

/* =========================================
   FAQ
========================================= */

.faq-section {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;

  gap: 100px;
}

.faq-intro p {
  margin: 25px 0;

  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;

  padding: 24px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;

  border: 0;
  background: transparent;

  color: var(--dark);

  text-align: left;
  font-size: 14px;
  font-weight: 600;
}

.faq-question > span:last-child {
  font-size: 22px;
  font-weight: 400;

  transition: var(--transition);
}

.faq-item.active .faq-question > span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding-bottom: 24px;

  color: var(--muted);
  font-size: 13px;
}

/* =========================================
   BOOKING
========================================= */

.booking-section {
  padding: 110px 0;

  background: var(--cream);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  gap: 90px;
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 120px;
}

.booking-copy > p {
  max-width: 480px;

  margin: 25px 0;

  color: var(--muted);
  font-size: 15px;
}

.booking-contact {
  display: grid;
  gap: 22px;

  margin-top: 40px;
}

.booking-contact span,
.booking-contact strong,
.booking-contact a {
  display: block;
}

.booking-contact span {
  margin-bottom: 5px;

  color: var(--accent-dark);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
}

.booking-contact a,
.booking-contact strong {
  font-family: var(--serif);
  font-size: 20px;
}

.booking-form {
  padding: 40px;

  background: white;

  border-radius: 18px;

  box-shadow: 0 20px 60px rgba(24,34,29,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 16px;
}

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

.form-group label {
  display: block;

  margin-bottom: 8px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 14px 15px;

  background: #fafaf7;

  border: 1px solid var(--line);
  border-radius: 8px;

  outline: none;

  color: var(--dark);

  transition: var(--transition);
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,117,69,0.1);
}

.btn-full {
  width: 100%;
  border: 0;
}

.form-note {
  margin-top: 15px;

  color: var(--muted);

  font-size: 9px;
  text-align: center;
}

/* =========================================
   LOCATION
========================================= */

.location-section {
  background: var(--bg);
}

.location-header {
  margin-bottom: 40px;

  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.map-wrapper {
  position: relative;

  height: 520px;

  overflow: hidden;

  border-radius: 20px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;

  border: 0;

  filter: grayscale(0.15);
}

.address-card {
  position: absolute;
  left: 25px;
  bottom: 25px;

  padding: 17px 20px;

  display: flex;
  align-items: center;
  gap: 12px;

  background: white;

  border-radius: 10px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.address-card > span {
  font-size: 20px;
}

.address-card strong {
  font-size: 12px;
}

.address-card p {
  color: var(--muted);
  font-size: 10px;
}

/* =========================================
   FOOTER
========================================= */

.footer {
  padding: 75px 0 25px;

  background: var(--dark);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;

  gap: 50px;
}

.logo-footer .logo-mark {
  background: white;
  color: var(--dark);
}

.logo-footer .logo-text strong {
  color: white;
}

.logo-footer .logo-text small {
  color: rgba(255,255,255,0.5);
}

.footer-brand p {
  max-width: 280px;

  margin-top: 22px;

  color: rgba(255,255,255,0.55);

  font-size: 12px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h4 {
  margin-bottom: 8px;

  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;

  color: #e0b187;
}

.footer-column a,
.footer-column span {
  color: rgba(255,255,255,0.62);

  font-size: 12px;

  transition: var(--transition);
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;

  display: flex;
  justify-content: space-between;

  border-top: 1px solid rgba(255,255,255,0.12);

  color: rgba(255, 255, 255, 0.784);

  font-size: 9px;
}

/* =========================================
   MOBILE CTA
========================================= */

.mobile-cta {
  display: none;
}

/* =========================================
   LIGHTBOX
========================================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;

  display: none;
  place-items: center;

  padding: 30px;

  background: rgba(0,0,0,0.92);
}

.lightbox.active {
  display: grid;
}

.lightbox img {
  /* width: auto; */
  max-width: 98vw;
  max-height: 88vh;

  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;

  border: 0;
  background: transparent;

  color: white;

  font-size: 42px;
}

/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal {
  opacity: 0;
  transform: translateY(25px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

  .nav {
    gap: 15px;
  }

  .about-grid,
  .nearby-grid,
  .food-grid,
  .booking-grid,
  .faq-grid {
    gap: 50px;
  }

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

  .amenity:nth-child(4n) {
    border-right: 1px solid rgba(24,34,29,0.13);
  }

  .amenity:nth-child(2n) {
    border-right: 0;
  }

  .amenity:nth-last-child(-n+4) {
    border-bottom: 1px solid rgba(24,34,29,0.13);
  }

  .amenity:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

}

@media (max-width: 780px) {

  .container {
    width: min(
      calc(100% - 32px),
      var(--container)
    );
  }

  .section {
    padding: 75px 0;
  }

  .nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;

    padding: 25px;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;

    background: white;

    border-radius: 15px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  }

  .nav.active {
    display: flex;
  }

  .nav > a {
    padding: 12px;
  }

  .nav-whatsapp {
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 720px;
  }

  .hero-copy {
    padding-top: 80px;
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 65px);
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-scroll {
    display: none;
  }

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

  .trust-item {
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .about-grid,
  .nearby-grid,
  .food-grid,
  .booking-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .image-frame {
    height: 450px;
  }

  .experience-card {
    right: 15px;
  }

  .stay-showcase {
    grid-template-columns: 1fr;
  }

  .stay-main-image {
    height: 450px;
  }

  .stay-side {
    height: 400px;
  }

  .stay-features {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card:first-child {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .pricing-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .long-stay {
    align-items: flex-start;
    flex-direction: column;
  }

  .nearby-image {
    height: 450px;
  }

  .international-section {
    min-height: 600px;
  }

  .food-image {
    height: 400px;
  }

  .review-card p {
    min-height: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.gallery-large {
    grid-row: span 2;
  }

  .booking-copy {
    position: static;
  }

  .location-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-wrapper {
    height: 430px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 999;

    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;

    background: white;

    box-shadow: 0 -5px 25px rgba(0,0,0,0.12);
  }

  .mobile-cta a {
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    font-size: 12px;
    font-weight: 800;
  }

  .mobile-cta a + a {
    border-left: 1px solid var(--line);
  }

  .mobile-cta .mobile-book {
    background: var(--dark);
    color: white;
  }

  body {
    padding-bottom: 58px;
  }
  .footer-credit {
    margin-top: 40px;
    padding: 20px;
  }

  .footer-credit p {
    display: block;
    margin-bottom: 8px;
  }

}

@media (max-width: 480px) {

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .trust-item {
    padding: 20px 12px;
  }

  .trust-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .amenity {
    min-height: 170px;
    padding: 20px;
  }

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

  .gallery-item.gallery-large {
    grid-row: span 1;
  }

  .gallery-item {
    height: 260px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 25px 20px;
  }

  .address-card {
    left: 12px;
    right: 12px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

}
