/* Garden Bay Resort — Varkala / Kerala cliff template */
:root {
  --color-sand: #f0e4d0;
  --color-cream: #faf6ef;
  --color-sea-mist: #f5efe6;
  --color-forest: #0c4a5c;
  --color-forest-light: #16697a;
  --color-teal: #b85c38;
  --color-gold: #d4a24c;
  --color-gold-light: #edd9a8;
  --color-charcoal: #2a2420;
  --color-muted: #6b635c;
  --color-white: #ffffff;
  --color-border: rgba(12, 74, 92, 0.14);
  --color-ocean: #1a7a8c;
  --color-terracotta: #b85c38;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --shadow-sm: 0 2px 12px rgba(12, 74, 92, 0.08);
  --shadow-md: 0 10px 36px rgba(12, 74, 92, 0.12);
  --shadow-lg: 0 20px 50px rgba(12, 74, 92, 0.16);
  --radius: 10px;
  --radius-lg: 18px;
  --header-h: 76px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-charcoal);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

body.theme-varkala {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 162, 76, 0.12), transparent),
    linear-gradient(180deg, var(--color-cream) 0%, var(--color-sand) 100%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1320px, 94vw);
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 0.75rem;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.7;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 500;
  color: var(--color-forest);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--color-muted);
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-terracotta) 0%, #9a4a30 100%);
  color: var(--color-white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #c96a4a 0%, var(--color-terracotta) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-forest);
  border: 2px solid var(--color-forest);
}

.btn-outline:hover {
  background: var(--color-forest);
  color: var(--color-white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, #c08a2e 100%);
  color: var(--color-charcoal);
  box-shadow: 0 4px 20px rgba(212, 162, 76, 0.4);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.site-header.scrolled {
  border-bottom-color: rgba(184, 92, 56, 0.35);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-forest);
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo span {
  color: var(--color-terracotta);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-charcoal);
  transition: color var(--transition);
}

.nav-desktop a:hover {
  color: var(--color-terracotta);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--color-forest);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: static;
  inset: auto;
  width: 100%;
  background: var(--color-cream);
  padding: 0.75rem 0.65rem 0.75rem;
  transform: none;
  transition: none;
  z-index: 1;
  overflow: visible;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  gap: 0.25rem;
  align-items: flex-start;
  box-sizing: border-box;
  border-radius: 0 0 1rem 1rem;
  box-shadow: none;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(12, 74, 92, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-forest);
  text-align: center;
  width: auto;
  min-width: 0;
  max-width: 100%;
  flex: 0 1 auto;
}

.nav-mobile a:hover {
  background: rgba(184, 92, 56, 0.08);
}

.nav-mobile .btn {
  width: auto;
  min-width: 0;
  flex: 0 1 auto;
  margin-top: 0;
}

@media (max-width: 540px) {
  .nav-mobile {
    padding-inline: 0.5rem;
    gap: 0.2rem;
  }

  .nav-mobile a {
    font-size: 0.72rem;
    padding: 0.45rem 0.65rem;
    flex: 0 1 auto;
    min-width: 0;
  }

  .nav-mobile .btn {
    flex: 0 1 auto;
  }
}

@media (max-width: 899px) {
  .site-header {
    position: sticky;
    top: 0;
    height: auto;
    background: rgba(250, 246, 239, 0.98);
    border-bottom: 2px solid transparent;
  }

  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .nav-mobile.open {
    display: flex;
  }
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  /* Ensure mobile nav is always hidden on larger viewports even if it has the .open class */
  .nav-mobile,
  .nav-mobile.open {
    display: none !important;
  }
}

/* Tablet adjustments (iPad widths) */
@media (min-width: 768px) and (max-width: 1199px) {
  .header-inner {
    padding: 0.5rem 0;
  }

  .nav-desktop {
    gap: 1rem;
  }

  .nav-desktop a {
    font-size: 0.9rem;
    padding: 0.25rem 0.35rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  .btn-primary {
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(12, 74, 92, 0.28) 0%,
    rgba(250, 246, 239, 0.08) 42%,
    rgba(184, 92, 56, 0.34) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1040px;
  padding-inline: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.hero-badge .stars {
  color: var(--color-gold);
  letter-spacing: 2px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  max-width: 42ch;
}

.hero-tagline {
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 920px;
  margin-bottom: 2rem;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

@media (max-width: 600px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

.hero-ctas .btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}

.hero-ctas .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-forest);
}

.hero-controls {
  display: inline-flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.hero-nav:hover,
.hero-nav:focus-visible {
  background: var(--color-white);
  color: var(--color-forest);
}

.hero-nav:disabled {
  cursor: default;
  opacity: 0.55;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-border);
  margin-top: -1px;
}

.trust-item {
  background: var(--color-white);
  padding: 1.5rem 1rem;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-forest);
  font-weight: 600;
}

.trust-item span {
  font-size: 0.8rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (min-width: 600px) {
  .trust-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* About */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-text p {
  margin-bottom: 1.25rem;
  color: var(--color-muted);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.highlight {
  padding: 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.highlight strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-forest);
  margin-bottom: 0.25rem;
}

.highlight span {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Amenities */
.amenities {
  background: var(--color-sea-mist);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
}

.amenity-card {
  background: var(--color-white);
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-teal);
}

.amenity-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.amenity-card.amenity-room-service .amenity-icon::before { content: "\1F37D"; }
.amenity-card.amenity-reception .amenity-icon::before { content: "\1F6CE"; }
.amenity-card.amenity-wifi .amenity-icon::before { content: "\1F4F6"; }
.amenity-card.amenity-linens .amenity-icon::before { content: "\1F6CF"; }
.amenity-card.amenity-toiletries .amenity-icon::before { content: "\1F9FC"; }
.amenity-card.amenity-fine-dining .amenity-icon::before { content: "\1F377"; }
.amenity-card.amenity-shared-kitchen .amenity-icon::before { content: "\1F373"; }
.amenity-card.amenity-bbq .amenity-icon::before { content: "\1F525"; }
.amenity-card.amenity-ac .amenity-icon::before { content: "\2744"; }
.amenity-card.amenity-parking .amenity-icon::before { content: "\1F697"; }
.amenity-card.amenity-tea .amenity-icon::before { content: "\2615"; }
.amenity-card.amenity-restaurants .amenity-icon::before {
  content: "\1F374";
}

.amenity-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-forest);
}

/* Rooms */
.rooms-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.room-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.room-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.room-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.05);
}

.room-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.room-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-forest);
  margin-bottom: 0.75rem;
}

.room-body p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
  flex: 1;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-teal);
  margin-bottom: 1.25rem;
}

.room-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Gallery */
.gallery {
  background: var(--color-sea-mist);
  color: var(--color-charcoal);
}

.gallery .section-title,
.gallery .section-label {
  color: var(--color-forest);
}

.gallery .section-label {
  color: var(--color-terracotta);
}

.gallery .section-desc {
  color: var(--color-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 60, 52, 0);
  transition: background var(--transition);
}

.gallery-item:hover::after {
  background: rgba(26, 60, 52, 0.25);
}

.gallery-slider {
  position: relative;
  overflow: hidden;
}

.gallery-slider-inner {
  width: 100%;
}

.gallery-slide {
  display: none;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-slide.active {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  padding: 0.85rem 0.9rem;
  background: rgba(3, 40, 35, 0.75);
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.45;
}

.gallery-caption strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.gallery-nav {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-forest);
  border-radius: 999px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-nav:hover {
  background: var(--color-forest);
  color: var(--color-white);
}

@media (max-width: 899px) {
  .gallery-slide {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .gallery-slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .gallery-slide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Google Reviews */
.reviews {
  background: var(--color-cream);
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.reviews-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.google-review-summary {
  max-width: 760px;
  margin: 0 auto 2rem;
  padding: clamp(1.35rem, 4vw, 2rem);
  border: 1px solid rgba(26, 115, 232, 0.16);
  border-radius: 24px;
  background: #d8e7ff;
  color: #0c2f4a;
  box-shadow: 0 18px 42px rgba(12, 74, 92, 0.12);
}

.review-summary-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #0c2f4a;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 600;
}

.review-summary-link span:last-child {
  font-size: 2rem;
  line-height: 1;
}

.review-score-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0.65rem 0 0.65rem;
}

.review-score {
  color: #0c2f4a;
  font-size: clamp(2rem, 6vw, 2.7rem);
  font-weight: 500;
  line-height: 1;
}

.review-summary-stars {
  color: #fbbc05;
  font-size: clamp(1.8rem, 5vw, 2.45rem);
  letter-spacing: 0;
  line-height: 1;
}

.review-count {
  color: #17324d;
  font-size: clamp(1rem, 3vw, 1.3rem);
  line-height: 1.2;
}

.review-ai-summary {
  max-width: 640px;
  margin: 0.75rem 0 1rem;
  color: #0c2f4a;
  font-size: clamp(1rem, 2.5vw, 1.22rem);
  line-height: 1.42;
}

.review-ai-summary strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-summary-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.review-avatar-stack {
  display: flex;
  min-height: 34px;
}

.review-avatar-stack img {
  width: 34px;
  height: 34px;
  border: 2px solid #d8e7ff;
  border-radius: 50%;
  background: var(--color-white);
  object-fit: cover;
}

.review-avatar-stack img + img {
  margin-left: -10px;
}

.review-avatar-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 34px;
  margin-left: -6px;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #445b78;
  font-weight: 600;
}

.review-ai-note {
  color: #52657f;
  font-size: 0.95rem;
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.review-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.author-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
}

.author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #eee;
}

.author-info h4 {
  margin: 0;
  font-size: 1rem;
}

.review-time {
  color: #70757a;
  font-size: 0.82rem;
}

.review-card .stars {
  color: #fbbc05;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-teal);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
}

.review-author span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.review-stars {
  color: #f4b400;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.review-actions-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.95rem;
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.review-actions-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.review-action-button {
  display: inline-block;
  padding: 0.8rem 1.1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-action-button:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.view-reviews-button {
  background: #202124;
  color: var(--color-white);
}

.rate-us-button {
  background: #fbbc05;
  color: #202124;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.visit-planner {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.maps-embed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.maps-embed-wrap iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.visit-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.35rem, 4vw, 2rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.visit-panel-label {
  margin-bottom: 0.45rem;
  color: var(--color-terracotta);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visit-panel h3 {
  margin-bottom: 0.55rem;
  color: var(--color-forest);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  line-height: 1.2;
}

.visit-panel p {
  color: var(--color-muted);
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.visit-actions .btn {
  flex: 1 1 190px;
  padding-inline: 1.15rem;
}

.visit-details {
  display: grid;
  gap: 0.9rem;
}

.visit-details div {
  padding-top: 0.9rem;
  border-top: 1px solid var(--color-border);
}

.visit-details dt {
  margin-bottom: 0.2rem;
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit-details dd {
  color: var(--color-forest);
  font-weight: 600;
}

.places-panel {
  justify-content: flex-start;
}

.places-list {
  display: grid;
  gap: 0.7rem;
  max-height: 420px;
  overflow: auto;
  padding-right: 0.25rem;
}

.places-list a {
  display: block;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(240, 228, 208, 0.34);
  transition: var(--transition);
}

.places-list a:hover {
  border-color: rgba(184, 92, 56, 0.45);
  background: rgba(212, 162, 76, 0.16);
  transform: translateY(-2px);
}

.places-list span {
  display: block;
  color: var(--color-forest);
  font-weight: 700;
  line-height: 1.25;
}

.places-list small {
  display: block;
  margin-top: 0.2rem;
  color: var(--color-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.visit-cta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  grid-column: 1 / -1;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.visit-cta h2 {
  margin: 0 0 0.55rem;
  color: var(--color-forest);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.18;
}

.visit-cta p {
  max-width: 720px;
  margin: 0;
  color: var(--color-muted);
}

.visit-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  width: 100%;
}

.visit-cta-actions .btn {
  flex: 1 1 190px;
}

.faq {
  background: var(--color-cream);
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  margin-bottom: 0.55rem;
  color: var(--color-forest);
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.25;
}

.faq-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .locate-us .visit-planner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
  }

  .locate-us .maps-embed-wrap {
    grid-column: 1 / -1;
  }

  .locate-us .visit-panel {
    height: 100%;
  }

  .visit-cta {
    flex-direction: row;
    align-items: center;
  }

  .visit-cta-actions {
    justify-content: flex-end;
    width: auto;
    min-width: 390px;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 767px) {
  .contact-grid {
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border: 1px solid rgba(184, 92, 56, 0.28);
  box-shadow: 0 6px 16px rgba(12, 74, 92, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-forest);
  flex-shrink: 0;
}

.contact-icon img {
  width: 24px;
  height: 24px;
}

.contact-item h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item p {
  font-size: 1rem;
  color: var(--color-forest);
  font-weight: 500;
}

.contact-form {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.contact-form > .btn {
  display: flex;
  width: min(100%, 512px);
  min-height: 52px;
  margin-inline: auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-cream);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-teal);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 500px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-message {
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
}

.form-message.error {
  display: block;
  background: #ffebee;
  color: #c62828;
}

/* Footer */
.site-footer {
  background: var(--color-forest);
  color: rgba(255, 255, 255, 0.85);
  padding: 1.75rem 0 1rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 600px) {
  .footer-grid {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: 0.45rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 380px;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: 0.55rem;
}

.footer-col a {
  display: inline-flex;
  font-size: 0.9rem;
  padding: 0.25rem 0;
  margin-right: 0.85rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.social-links a:hover {
  background: var(--color-gold);
  color: var(--color-forest);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* —— Varkala template: hero & location —— */
.hero-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 0.75rem;
}

.hero-location-icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: var(--color-gold);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 110-5 2.5 2.5 0 010 5z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  vertical-align: -2px;
}

.hero-badge {
  border: 1px solid rgba(237, 217, 168, 0.4);
}

.trust-bar {
  background: var(--color-forest);
}

.trust-item {
  background: transparent;
  color: var(--color-white);
}

.trust-item strong {
  color: var(--color-gold-light);
  font-family: var(--font-display);
}

.trust-item span {
  color: rgba(255, 255, 255, 0.75);
}

/* Discover Varkala */
.discover {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--color-sea-mist);
}

.beach-cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .beach-cards {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .beach-card-featured {
    transform: translateY(-8px);
  }
}

.beach-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.beach-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.beach-card-featured {
  border-color: rgba(184, 92, 56, 0.35);
  box-shadow: var(--shadow-md);
}

.beach-card-featured .beach-card-body h3 {
  color: var(--color-terracotta);
}

.beach-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.beach-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.beach-card:hover .beach-card-image img {
  transform: scale(1.06);
}

.beach-card-body {
  padding: 1.35rem 1.25rem 1.5rem;
}

.beach-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-forest);
  margin-bottom: 0.5rem;
}

.beach-card-body p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Section accents */
.about {
  background: var(--color-cream);
}

.rooms {
  background: var(--color-cream);
}

.locate-us {
  background: var(--color-sea-mist);
}

.contact {
  background: var(--color-sea-mist);
}

.about-image {
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--color-border);
}

.about-image::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 3rem;
  height: 3rem;
  background: var(--color-gold);
  opacity: 0.25;
  border-radius: 50%;
  pointer-events: none;
}

.about-image {
  position: relative;
}

.highlight strong {
  color: var(--color-terracotta);
}

.amenity-card:hover {
  border-color: var(--color-terracotta);
}

.room-tag {
  color: var(--color-terracotta);
}

.room-card {
  border-top: 3px solid var(--color-gold);
}

.gallery {
  background: var(--color-sea-mist);
}

.gallery .section-label::before,
.gallery .section-label::after {
  background: var(--color-gold);
}

.site-footer {
  background: #062f3a;
}

.footer-col h4 {
  color: var(--color-gold-light);
}

@media (max-width: 899px) {
  .hide-mobile {
    display: none;
  }
}
