/* The Nature's Resort - Nature-inspired design system */

:root {
  --forest: #0f2e1a;
  --forest-mid: #1a4d2e;
  --moss: #2d6a4f;
  --sage: #3d8b63;
  /* --sage fails 4.5:1 as small text; use this for text on light surfaces */
  --sage-text: #317152;
  --leaf: #52b788;
  --leaf-pale: #d8f3dc;
  --leaf-whisper: #edf7f0;
  --earth: #6b4c3b;
  --sunlight: #d4a017;
  --sunlight-light: #f0d78c;
  --cream: #faf7f2;
  --cream-dark: #f0ebe3;
  --white: #ffffff;
  --text: #142318;
  --text-muted: #3a4f42;
  --text-soft: #516756;
  --glass: rgba(255, 255, 255, 0.88);
  --shadow-sm: 0 2px 12px rgba(15, 46, 26, 0.06);
  --shadow-md: 0 8px 32px rgba(15, 46, 26, 0.1);
  --shadow-lg: 0 20px 60px rgba(15, 46, 26, 0.14);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --gold: #d4a017;
  --gold-light: #f5e6c8;
  --gold-dark: #8b6914;
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --text-base: 1.125rem;
  --text-lead: 1.25rem;
  --line-body: 1.75;
  --line-tight: 1.25;
  --header-height: 76px;
  --header-offset: var(--header-height);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease-out);
  --readable-width: 42rem;
}

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

html {
  scroll-behavior: smooth;
  /* keep #anchor targets clear of the fixed header */
  scroll-padding-top: calc(var(--header-offset) + 1rem);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--cream);
  line-height: var(--line-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html[data-lang="si"] {
  --font-heading: "Noto Sans Sinhala", "Cormorant Garamond", Georgia, serif;
  --font-body: "Noto Sans Sinhala", "DM Sans", system-ui, sans-serif;
}

html[data-lang="si"] body {
  font-family: var(--font-body);
}

/* Compact SI nav only on desktop horizontal bar ÿ never on the mobile overlay. */
@media (min-width: 1101px) {
  html[data-lang="si"] .main-nav a {
    font-size: 0.78rem;
    padding: 0.35rem 0.4rem;
    letter-spacing: 0;
  }

  html[data-lang="si"] .btn-nav {
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
  }

  html[data-lang="si"] .header-actions {
    gap: 0.45rem;
  }

  html[data-lang="si"] .main-nav ul {
    gap: 0.1rem;
  }
}

html[data-lang="si"] .logo-text span {
  letter-spacing: 0.06em;
}

h1, h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.3;
}

p, li, dd {
  max-width: var(--readable-width);
}

.container p,
.section-header p,
.feature-card p,
.guest-card p,
.showcase-text p,
.guide-card p,
.guide-card li,
.info-callout p,
.amenities-grid li,
.contact-info-list li,
.directions-steps li,
.directions-timeline li,
.package-includes li,
.faq-answer p,
.plan-table td,
.rates-note,
.menu-note {
  max-width: none;
}

.readable-prose {
  font-size: var(--text-base);
  line-height: var(--line-body);
  color: var(--text);
}

.readable-prose p + p {
  margin-top: 1rem;
}

.readable-lead {
  font-size: var(--text-lead);
  line-height: 1.65;
  color: var(--text-soft);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232d6a4f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: var(--moss);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--forest);
}

.container {
  width: min(1180px, 90vw);
  margin-inline: auto;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: auto;
  transition: background var(--transition), box-shadow var(--transition);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.site-header.scrolled .header-inner {
  height: 68px;
}

.site-header.scrolled {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: var(--shadow-sm);
}

.site-header:not(.hero-top) {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: var(--shadow-sm);
}

.site-header.hero-top {
  background: transparent;
  box-shadow: none;
}

/* the hero video is bright and busy; a scrim keeps the nav legible over any frame */
.site-header.hero-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 46, 26, 0.72), rgba(15, 46, 26, 0));
  pointer-events: none;
}

.site-header .header-inner {
  position: relative;
  z-index: 1;
}

.site-header.hero-top .main-nav a {
  color: rgba(255, 255, 255, 0.92);
}

.site-header.hero-top .main-nav a:hover {
  color: var(--sunlight-light);
}

.site-header.hero-top .main-nav a.active {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.site-header.hero-top .logo-text {
  color: var(--white);
}

.site-header.hero-top .logo-text span {
  color: rgba(255, 255, 255, 0.75);
}

.site-header.hero-top .nav-toggle span {
  background: var(--white);
}

.site-header.hero-top .prefs-group {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-header.hero-top .pref-btn {
  color: rgba(255, 255, 255, 0.88);
}

.site-header.hero-top .pref-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.site-header.hero-top .pref-btn.is-active {
  background: rgba(255, 255, 255, 0.95);
  color: var(--forest);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.logo-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: 0.75rem;
  z-index: 2;
  flex-shrink: 0;
  min-width: 0;
  /* Pads the narrow logo out to a 44px tap target without shifting it. */
  padding-inline: 9px;
  margin-inline: -9px;
}

.logo-link img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  transition: transform var(--transition);
}

.logo-link:hover img {
  transform: scale(1.05) rotate(-3deg);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--sage-text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.header-actions .main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  padding: 0.45rem 0.65rem;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.main-nav a:hover {
  background: var(--leaf-whisper);
  color: var(--moss);
}

.main-nav a.active {
  background: var(--leaf-pale);
  color: var(--forest-mid);
}

.btn-nav {
  display: inline-flex;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  padding: 0.5rem;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--sunlight) 0%, #e8b923 100%);
  color: var(--forest);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(212, 160, 23, 0.45);
  color: var(--forest);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(4px);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--forest-mid);
  border: 2px solid var(--sage);
}

.btn-outline-dark:hover {
  background: var(--leaf-whisper);
  color: var(--forest);
  border-color: var(--moss);
  transform: translateY(-3px);
}

.btn-ghost {
  background: transparent;
  color: var(--moss);
  border: 2px solid var(--leaf-pale);
}

.btn-ghost:hover {
  background: var(--leaf-whisper);
  border-color: var(--sage);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #0b7e5b, #096b45);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(11, 126, 91, 0.35);
}

.btn-whatsapp:hover {
  color: var(--white);
}

.btn-sm {
  min-height: 44px;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 46, 26, 0.55) 0%, rgba(15, 46, 26, 0.35) 40%, rgba(15, 46, 26, 0.75) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(82, 183, 136, 0.2) 0%, transparent 50%);
}

.hero-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-leaf {
  position: absolute;
  opacity: 0.15;
  animation: leafFloat 8s ease-in-out infinite;
}

.hero-leaf:nth-child(1) { top: 12%; left: 8%; width: 48px; animation-delay: 0s; }
.hero-leaf:nth-child(2) { top: 25%; right: 12%; width: 36px; animation-delay: -2s; transform: rotate(45deg); }
.hero-leaf:nth-child(3) { bottom: 30%; left: 15%; width: 42px; animation-delay: -4s; }
.hero-leaf:nth-child(4) { bottom: 20%; right: 8%; width: 55px; animation-delay: -1s; }

@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(8deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--header-offset) 1.5rem 4rem;
  max-width: 820px;
  transition: transform 0.35s var(--ease-out);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  animation: fadeDown 1s var(--ease-out);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Proximity to Colombo is the single strongest hook, so it gets the accent. */
.hero-badge-drive {
  background: rgba(244, 185, 66, 0.22);
  border-color: rgba(244, 185, 66, 0.55);
  color: var(--sunlight-light);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-logo {
  height: 72px;
  /* the width/height attrs are there for CLS; without this the attr width wins and squashes the mark */
  width: auto;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
  animation: fadeDown 1s var(--ease-out) 0.1s both;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  opacity: 0.92;
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
  animation: fadeDown 1s var(--ease-out) 0.15s both;
}

.hero h1 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  animation: fadeDown 1s var(--ease-out) 0.2s both;
}

.hero p {
  font-size: var(--text-lead);
  opacity: 0.94;
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
  animation: fadeDown 1s var(--ease-out) 0.35s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown 1s var(--ease-out) 0.5s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeDown 1s var(--ease-out) 0.8s both;
}

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

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

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Wave divider */
.wave-divider {
  position: relative;
  height: 80px;
  margin-top: -1px;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
}

.wave-divider.flip {
  transform: rotate(180deg);
  margin-top: 0;
  margin-bottom: -1px;
}

/* ===== STATS ===== */
.stats-banner {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 50%, var(--moss) 100%);
  color: var(--white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10 Q60 30 50 50 Q40 70 50 90' stroke='%23ffffff' stroke-width='0.5' fill='none' opacity='0.06'/%3E%3C/svg%3E") repeat;
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition), background var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.75rem;
  opacity: 0.9;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--sunlight-light);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.82rem;
  opacity: 0.85;
  margin-top: 0.4rem;
  font-weight: 500;
}

/* ===== SECTIONS ===== */
section {
  padding: 5.5rem 0;
  position: relative;
}

.section-nature {
  background: linear-gradient(180deg, var(--leaf-whisper) 0%, var(--cream) 100%);
}

.section-white {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-text);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.125rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.85rem;
  line-height: var(--line-tight);
  letter-spacing: -0.01em;
}

.section-header p {
  color: var(--text-soft);
  max-width: 38rem;
  margin-inline: auto;
  font-size: var(--text-base);
  line-height: 1.65;
}

.leaf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.leaf-divider::before,
.leaf-divider::after {
  content: "";
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage));
}

.leaf-divider::after {
  background: linear-gradient(90deg, var(--sage), transparent);
}

.leaf-divider svg {
  width: 22px;
  height: 22px;
  color: var(--sage);
}

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 106, 79, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--leaf));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(82, 183, 136, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--leaf-whisper), var(--leaf-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--moss);
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}

/* ===== SHOWCASE ===== */
.showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.showcase.reverse {
  direction: rtl;
}

.showcase.reverse > * {
  direction: ltr;
}

.showcase-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.showcase-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.showcase-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.showcase-image:hover img {
  transform: scale(1.04);
}

.showcase-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--sage), var(--leaf));
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.35;
}

.showcase-text .section-eyebrow {
  display: block;
  text-align: left;
}

.showcase-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--forest);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.showcase-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.showcase-text .btn {
  margin-top: 0.5rem;
}

/* ===== ROOM CARDS ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 106, 79, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.room-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

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

.room-card-body {
  padding: 1.75rem;
}

.room-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.room-card-body .price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 0.75rem 0;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.amenity-tag {
  background: var(--leaf-whisper);
  color: var(--moss);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

/* ===== RATES TABLE ===== */
.rates-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 106, 79, 0.08);
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 1rem;
}

.rates-table th,
.rates-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--leaf-whisper);
}

.rates-table th {
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}

.rates-table tr:nth-child(even) td {
  background: var(--leaf-whisper);
}

.rates-table .price-cell {
  font-weight: 700;
  color: var(--forest-mid);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.rates-note {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.meal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.meal-legend span {
  background: var(--white);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--leaf-pale);
  box-shadow: var(--shadow-sm);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 46, 26, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

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

/* ===== ATTRACTION CARDS ===== */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.attraction-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 106, 79, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* The attraction masters are square graphics with the name and drive time
   already set into the artwork, so they are shown whole rather than cropped. */
.attraction-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--leaf-whisper);
  border-bottom: 1px solid rgba(45, 106, 79, 0.08);
  transition: transform 0.5s var(--ease-out);
}

.attraction-card:hover .attraction-card-img {
  transform: scale(1.03);
}

.attraction-best {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-text);
}

.attraction-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.attraction-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.distance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, var(--leaf-pale), var(--sunlight-light));
  color: var(--forest-mid);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}

/* ===== DINING ===== */
.dining-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.dining-brands {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.dining-brands img {
  height: 64px;
  width: auto;
}

.menu-preview {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
  transition: transform var(--transition);
}

.menu-preview:hover {
  transform: rotate(0deg) scale(1.02);
}

.restaurant-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.restaurant-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--sage);
  transition: transform var(--transition);
}

.restaurant-item:hover {
  transform: translateX(4px);
}

.restaurant-item h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 0.35rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-aside {
  min-width: 0;
}

.contact-info-list {
  list-style: none;
}

.contact-info-list li {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-info-list li > div:last-child {
  min-width: 0;
  flex: 1;
  overflow-wrap: break-word;
  word-break: normal;
}

/* Phone, email and map links ÿ readable wrap without awkward mid-word splits */
.contact-info-list a {
  display: inline;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.55;
  padding-block: 0.2rem;
}

.contact-info-list a[href^="mailto:"] {
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--leaf-whisper), var(--leaf-pale));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-profile {
  display: block;
  width: 112px;
  height: 112px;
  margin: 0 0 1.1rem;
  padding: 0.55rem;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  border: 1px solid rgba(45, 106, 79, 0.1);
  box-shadow: var(--shadow-md);
}

.contact-heading {
  font-family: var(--font-heading);
  color: var(--forest);
  margin-bottom: 1.35rem;
}

.contact-follow {
  margin-top: 1.5rem;
}

.contact-follow strong {
  color: var(--forest);
}

.contact-handles {
  font-size: 0.9375rem;
  color: var(--text-soft);
  margin: 0.35rem 0 0.75rem;
  overflow-wrap: anywhere;
}

.contact-follow .social-links {
  margin-top: 0.75rem;
}

.contact-wa-wrap {
  margin-top: 1.75rem;
}

.contact-review {
  margin-top: 2rem;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: none;
}

/* Slim write-review prompt for the contact sidebar (score lives on Reviews only). */
.contact-review .review-cta-panel {
  grid-template-columns: 1fr;
  gap: 0.85rem;
  padding: 1.15rem 1.2rem;
  margin-top: 0;
}

.contact-review .section-eyebrow,
.contact-review .readable-lead {
  display: none;
}

.contact-review .review-cta-body h2 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.contact-review .review-cta-sinhala {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
}

.contact-review .review-cta-actions {
  gap: 0.5rem;
}

.contact-review .review-cta-actions .btn {
  font-size: 0.8125rem;
  padding: 0.55rem 0.85rem;
}

.contact-form {
  background: var(--white);
  padding: 2.25rem 2.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45, 106, 79, 0.06);
  min-width: 0;
  container-type: inline-size;
  container-name: enquiry;
}

.contact-form-title {
  font-family: var(--font-heading);
  color: var(--forest);
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: var(--forest);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.05rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
  background: var(--white);
}

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

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.directions-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
  border: 1px solid rgba(45, 106, 79, 0.08);
}

.directions-box h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 1rem;
}

.directions-steps {
  list-style: none;
  counter-reset: step;
}

.directions-steps li {
  counter-increment: step;
  padding-left: 2.75rem;
  position: relative;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.directions-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--moss), var(--sage));
  color: white;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CTA ===== */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(15, 46, 26, 0.92), rgba(45, 106, 79, 0.88)),
    url('../assets/images/hero/tea-estate.jpg') center/cover;
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
}

.cta-banner h2 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.85rem;
}

.cta-banner p {
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-inline: auto;
}

.cta-banner .btn-primary {
  margin: 0 0.5rem 0.5rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 1.5rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--sunlight), var(--sage));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .footer-logo-full {
  display: block;
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand img:not(.footer-logo-full) {
  height: 56px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.7;
  max-width: 320px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.15rem !important;
  font-style: italic;
  opacity: 0.92 !important;
  color: var(--leaf-pale);
  margin-bottom: 0.65rem !important;
}

.footer-handles {
  font-size: 0.8125rem !important;
  opacity: 0.65 !important;
  margin-top: 0.75rem !important;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
  /* Phone and mail links are tapped on a phone, so give them a taller hit area
     than the text line without pushing the lines apart. */
  display: inline-block;
  padding-block: 5px;
  margin-block: -5px;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-links .footer-heading,
.footer-social .footer-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 1.15rem;
  color: var(--white);
}

.footer-links ul {
  list-style: none;
  columns: 2;
  column-gap: 1.75rem;
}

.footer-links li {
  margin-bottom: 0.15rem;
  break-inside: avoid;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
}

.footer-links a:hover {
  color: var(--leaf);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition), background var(--transition);
}

.social-links a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

.social-links img {
  width: 22px;
  height: 22px;
  border-radius: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
}

/* ===== PAGE HEADER ===== */
.page-header {
  margin-top: var(--header-offset);
  background:
    linear-gradient(135deg, rgba(15, 46, 26, 0.88), rgba(45, 106, 79, 0.82)),
    url('../assets/images/hero/tea-estate.jpg') center/cover;
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem 4rem;
  position: relative;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.page-header h1 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 5vw, 3.35rem);
  font-weight: 700;
  position: relative;
  z-index: 1;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.page-header p,
.page-header .readable-lead {
  color: var(--white);
  opacity: 0.95;
  margin-top: 0.85rem;
  position: relative;
  z-index: 1;
  font-size: var(--text-lead);
  line-height: 1.65;
  max-width: 38rem;
  margin-inline: auto;
}

.page-header .section-eyebrow,
.cta-banner .section-eyebrow,
.hero .section-eyebrow {
  color: var(--leaf-pale);
  position: relative;
  z-index: 1;
}

.page-header a,
.cta-banner p a {
  color: var(--leaf-pale);
  text-decoration-color: rgba(216, 243, 220, 0.5);
}

.page-header a:hover,
.cta-banner p a:hover {
  color: var(--white);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.65); }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  animation: none;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 46, 26, 0.94);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .main-nav a {
    font-size: 0.8125rem;
    padding: 0.4rem 0.55rem;
  }

  .main-nav ul {
    gap: 0.1rem;
  }

  .btn-nav {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  /* Horizontal nav no longer fits - switch to the overlay menu. */
  .nav-toggle {
    display: block;
    z-index: 1102;
  }

  .btn-nav {
    display: none;
  }

  /* Keep actions (toggle + overlay) above the logo so the menu covers the mark. */
  .header-actions {
    z-index: 3;
  }

  /* Overlay must escape the header flex row so it covers the viewport. */
  .header-actions .main-nav {
    flex: none;
    min-width: 0;
    justify-content: center;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    height: 100vh;
    right: auto;
    bottom: auto;
    margin: 0;
    background: rgba(15, 46, 26, 0.97);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 1100;
    pointer-events: none;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    max-height: calc(100dvh - 6rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
  }

  .main-nav a {
    color: var(--white) !important;
    font-size: 1.2rem !important;
    padding: 0.8rem 1.5rem !important;
    min-height: 48px;
    letter-spacing: 0;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--sunlight-light) !important;
  }

  .site-header {
    z-index: 1101;
  }

  /* Hide chrome under the open overlay; keep the close (X) control. */
  .site-header:has(.main-nav.open) .logo-link,
  .site-header:has(.main-nav.open) .prefs-group {
    visibility: hidden;
    pointer-events: none;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-toggle.open span {
    background: var(--white);
  }
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .showcase {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .showcase.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-header {
    margin-top: var(--header-offset);
    padding: 4rem 1.25rem 3rem;
  }

  .logo-text {
    display: none;
  }

  .contact-grid,
  .footer-grid,
  .dining-hero {
    grid-template-columns: 1fr;
  }

  .review-cta-visual {
    max-width: 220px;
    margin-inline: auto;
  }

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

  section {
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .showcase-image img {
    height: 280px;
  }
}

.gallery-item.reveal:nth-child(1) { transition-delay: 0.03s; }
.gallery-item.reveal:nth-child(2) { transition-delay: 0.06s; }
.gallery-item.reveal:nth-child(3) { transition-delay: 0.09s; }
.gallery-item.reveal:nth-child(4) { transition-delay: 0.12s; }
.gallery-item.reveal:nth-child(5) { transition-delay: 0.15s; }
.gallery-item.reveal:nth-child(6) { transition-delay: 0.18s; }
.gallery-item.reveal:nth-child(7) { transition-delay: 0.21s; }
.gallery-item.reveal:nth-child(8) { transition-delay: 0.24s; }

.room-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.room-card.reveal:nth-child(3) { transition-delay: 0.24s; }

.cta-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
  background: transparent;
}

.cta-banner .btn-outline:hover {
  background: var(--white);
  color: var(--forest);
}

/* ===== VIDEO HERO ===== */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.has-video .hero-bg {
  display: none;
}

/* ===== QUICK LINKS ===== */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 106, 79, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--text);
}

.quick-link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: var(--moss);
}

.quick-link-icon {
  margin-bottom: 0.65rem;
  color: var(--moss);
  display: flex;
  align-items: center;
  justify-content: center;
}

.guest-card .guest-icon {
  margin-bottom: 0.75rem;
  color: var(--moss);
  display: flex;
}

.quick-link-card span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== GUEST TYPES ===== */
.guest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.guest-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 106, 79, 0.06);
  transition: transform var(--transition);
}

.guest-card:hover {
  transform: translateY(-4px);
}

.guest-card .guest-icon {
  margin-bottom: 0.75rem;
  color: var(--moss);
  display: flex;
}

.guest-card h3 {
  font-family: var(--font-heading);
  color: var(--forest);
  margin-bottom: 0.4rem;
}

.guest-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ===== PACKAGE CARDS ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45, 106, 79, 0.08);
  display: flex;
  flex-direction: column;
}

.package-card-image {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.package-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-card-image img[src*="menu-"] {
  object-fit: contain;
  background: var(--cream);
}

.package-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--sunlight);
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--forest);
}

.package-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--moss);
  margin: 0.5rem 0 1rem;
}

.package-price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.package-includes {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.package-includes li {
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.package-includes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

/* ===== MENU PAGE ===== */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.menu-tab {
  min-height: 44px;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--leaf-pale);
  background: var(--white);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-muted);
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--moss);
  border-color: var(--moss);
  color: var(--white);
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
}

.menu-category {
  margin-bottom: 2.5rem;
}

.menu-category h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--leaf-pale);
}

.menu-items {
  display: grid;
  gap: 0.15rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.85rem 0.25rem;
  border-bottom: 1px dashed rgba(45, 106, 79, 0.15);
}

.menu-item-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

.menu-item-price {
  font-weight: 700;
  color: var(--forest-mid);
  white-space: nowrap;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.menu-note {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-soft);
  margin-top: 2rem;
  line-height: 1.65;
  max-width: 36rem;
  margin-inline: auto;
}

/* ===== GALLERY FILTERS ===== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  min-height: 44px;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--leaf-pale);
  background: var(--white);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-muted);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.gallery-item.hidden {
  display: none;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 106, 79, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.35rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  line-height: 1.5;
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--sage);
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-item.open .faq-answer {
  max-height: 520px;
}

.faq-answer p {
  padding: 0 1.5rem 1.35rem;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
  max-width: none;
}

/* ===== ABOUT / TIMELINE ===== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.story-highlights {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.story-highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--leaf-whisper);
  border-radius: var(--radius-sm);
}

.story-highlight-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.story-highlight strong {
  display: block;
  color: var(--forest);
  margin-bottom: 0.2rem;
}

.story-highlight span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.brand-duo {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.brand-duo img {
  height: 80px;
  width: auto;
}

/* ===== EVENTS ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: linear-gradient(145deg, var(--forest) 0%, var(--forest-mid) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.event-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.event-card p {
  opacity: 0.88;
  font-size: 0.92rem;
  line-height: 1.65;
}

.event-card .btn {
  margin-top: 1.25rem;
}

/* ===== REVIEW STRIP (legacy) ===== */
.review-strip {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45, 106, 79, 0.08);
}

/* ===== GOOGLE REVIEWS ===== */
.google-review-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.google-review-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.25rem;
}

.google-score-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45, 106, 79, 0.08);
}

.star {
  display: inline-flex;
  line-height: 0;
  vertical-align: middle;
}

.star-empty {
  opacity: 0.28;
}

.star-half {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  overflow: hidden;
  vertical-align: middle;
}

.star-half-under {
  display: block;
  opacity: 0.28;
  line-height: 0;
}

.star-half-over {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  line-height: 0;
}

.google-score-stars .star-half,
.review-score-stars .star-half,
.review-card-stars .star-half {
  width: 18px;
  height: 18px;
}

.google-score-stars {
  display: flex;
  gap: 0.15rem;
  color: #e6a817;
  margin-bottom: 0.25rem;
}

.google-score-stars svg {
  width: 18px;
  height: 18px;
}

.google-score-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--forest);
  line-height: 1.1;
  display: block;
}

.google-score-label {
  font-size: 0.8125rem;
  color: var(--text-soft);
}

.google-score-stats {
  text-align: center;
}

.google-score-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--forest);
  line-height: 1.1;
}

.google-score-stats span {
  font-size: 0.9375rem;
  color: var(--text-soft);
}

.google-review-note {
  max-width: 36rem;
  margin-inline: auto;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.review-carousel {
  position: relative;
  margin-bottom: 2.5rem;
}

.review-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.review-carousel-track {
  display: flex;
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}

.review-card {
  flex: 0 0 100%;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45, 106, 79, 0.08);
  min-height: 280px;
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf-pale), var(--sage));
  color: var(--forest);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card-meta {
  flex: 1;
  min-width: 0;
}

.review-name {
  display: block;
  font-size: 1rem;
  color: var(--forest);
}

.review-location {
  font-size: 0.8125rem;
  color: var(--text-soft);
}

.review-google-badge {
  flex-shrink: 0;
  opacity: 0.9;
}

.review-card-stars {
  display: flex;
  gap: 0.15rem;
  color: #e6a817;
  margin-bottom: 0.65rem;
}

.review-card-stars svg {
  width: 18px;
  height: 18px;
}

.review-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.review-text {
  color: var(--text-soft);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: none;
  font-style: italic;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.review-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--leaf-whisper);
  color: var(--forest-mid);
}

.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--forest);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), background var(--transition);
}

.review-nav:hover {
  background: var(--leaf-whisper);
  transform: translateY(-50%) scale(1.06);
}

.review-prev { left: -0.75rem; }
.review-next { right: -0.75rem; }

.review-dots {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 0.5rem;
}

/* The visible dot is drawn by ::before so the button itself can stay a
   44px tap target without changing how the control looks. */
.review-dot {
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
}

.review-dot::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream-dark);
  transition: transform var(--transition), background var(--transition);
}

.review-dot.active::before {
  background: var(--moss);
  transform: scale(1.2);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.review-grid .review-card {
  flex: unset;
  min-height: auto;
}

.review-cta-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--leaf-whisper) 0%, var(--white) 100%);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(45, 106, 79, 0.1);
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
}

.review-cta-panel.review-cta-actions-only {
  grid-template-columns: 1fr;
}

.review-cta-compact {
  margin-top: 0;
}


.review-cta-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--forest);
  margin-bottom: 0.65rem;
}

.review-cta-sinhala {
  font-size: 0.9375rem;
  color: var(--sage-text);
  margin: 0.75rem 0 1.25rem;
  font-weight: 500;
}

.review-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== SOCIAL PREVIEWS ===== */
.social-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.social-preview-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45, 106, 79, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  color: inherit;
}

.social-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.social-preview-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.social-preview-media::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(to top, rgba(8, 28, 16, 0.82) 0%, rgba(8, 28, 16, 0.35) 55%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.social-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.social-preview-card:hover .social-preview-media img {
  transform: scale(1.05);
}

.social-preview-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(15, 46, 26, 0.82);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
}

.social-preview-badge img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.social-play-btn {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 46, 26, 0.25);
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}

.social-preview-tiktok:hover .social-play-btn {
  opacity: 1;
}

.social-preview-stats {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.85rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.85rem 1.5rem;
  pointer-events: none;
}

.social-preview-stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.social-preview-stat strong {
  font-size: clamp(1.65rem, 4.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.social-preview-stat em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.88;
}

.social-preview-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.social-preview-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.social-preview-body p {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: none;
  margin-bottom: 0.65rem;
}

.social-preview-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--moss);
}

/* Facebook Page Plugin is a fixed 500px widget - lock the frame so it cannot
   collapse when adapt_container_width mis-measures the parent. */
.facebook-embed-wrap {
  width: 500px;
  max-width: 100%;
  height: var(--social-pair-body);
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  line-height: 0;
  flex: 1 1 auto;
}

.facebook-embed-wrap iframe {
  width: 500px !important;
  max-width: 100%;
  height: var(--social-pair-body) !important;
  display: block;
  border: 0;
}

/* Matched pair: same header line, same body height, both columns filled. */
.social-pair {
  --social-pair-body: 720px;
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 1.75rem;
  align-items: stretch;
  margin-top: 2.75rem;
}

.social-pair-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.social-pair-panel > .yt-shelf-head {
  margin-top: 0;
  margin-bottom: 1.1rem;
  min-height: 2.5rem;
  flex: 0 0 auto;
}

.social-pair-fb {
  width: 500px;
  max-width: 100%;
  height: 100%;
}

.social-pair-yt {
  height: 100%;
  min-width: 0;
}

.social-pair-yt .yt-shelf {
  flex: 1 1 auto;
  height: var(--social-pair-body);
  min-height: var(--social-pair-body);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  align-content: stretch;
}

.social-pair-yt .yt-card {
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.social-pair-yt .yt-thumb {
  flex: 1 1 auto;
  aspect-ratio: auto;
  min-height: 0;
}

.social-pair-yt .yt-card-body {
  flex: 0 0 auto;
}

@media (max-width: 1100px) {
  .social-pair {
    grid-template-columns: minmax(280px, 500px) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .social-pair {
    --social-pair-body: 560px;
    grid-template-columns: 1fr;
  }

  .social-pair-fb {
    width: min(500px, 100%);
    margin-inline: auto;
  }

  .facebook-embed-wrap {
    width: 100%;
  }

  .facebook-embed-wrap iframe {
    width: 100% !important;
  }

  .social-pair-yt .yt-shelf {
    height: auto;
    min-height: 0;
    grid-template-rows: auto auto;
  }

  .social-pair-yt .yt-thumb {
    aspect-ratio: 16 / 10;
  }
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  color: #e6a817;
}

.footer-contact {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.7;
  opacity: 0.9;
}

.footer-contact svg {
  vertical-align: -2px;
  margin-right: 0.25rem;
}

.footer-review-btn {
  margin-top: 1rem;
  color: var(--sunlight-light) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

.footer-review-btn:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: var(--white) !important;
}

.story-highlight-icon svg {
  color: var(--moss);
}

.promo-grid-wide {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem 1.5rem;
  max-width: 800px;
  margin-inline: auto;
}

/* Four room types, so the home grid is capped to keep rows even instead of
 * leaving a lone card stranded on a second line. */
#home-rooms {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 1180px;
  margin-inline: auto;
}

.room-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Second heading inside a section, for grouping related blocks without
 * spending another full section on them. */
.subsection-head {
  text-align: center;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  color: var(--forest);
  margin: 3.5rem 0 1.5rem;
}

.dining-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 270px));
  justify-content: center;
  gap: 1.25rem;
  list-style: none;
  margin: 2rem auto 0;
  max-width: 1150px;
  padding: 0;
}

.dining-summary li {
  background: var(--white);
  border: 1px solid rgba(45, 106, 79, 0.1);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.dining-summary strong {
  display: block;
  color: var(--forest);
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.dining-summary span {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.amenities-grid li {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
  list-style: none;
}

.amenities-grid li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moss);
}

.review-strip p {
  color: var(--text-soft);
  max-width: 38rem;
  margin: 0 auto 1.5rem;
  font-size: var(--text-lead);
  line-height: 1.65;
}

.review-cta {
  border: 1px solid rgba(45, 106, 79, 0.1);
}

.review-cta p {
  color: var(--text-soft);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.promo-grid img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 220px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.promo-grid img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .about-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .stat-item .stat-number {
    font-size: 2rem;
  }
}

/* ===== ACCESSIBILITY & POLISH ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 1rem;
}

.icon-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-heading svg {
  color: var(--moss);
  flex-shrink: 0;
}

.contact-icon {
  color: var(--moss);
  display: flex;
  align-items: flex-start;
}

.event-card h3,
.restaurant-item h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #25d366;
  color: white;
  text-align: center;
  padding: 0.85rem 1rem;
  font-weight: 600;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-book-bar svg {
  vertical-align: -4px;
}

@media (max-width: 768px) {
  .mobile-book-bar {
    display: flex;
  }

  .whatsapp-float {
    display: none;
  }

  body {
    padding-bottom: 3.5rem;
  }
}

.btn:focus-visible,
.main-nav a:focus-visible,
.nav-toggle:focus-visible,
.filter-btn:focus-visible,
.menu-tab:focus-visible,
.faq-question:focus-visible,
.gallery-item:focus-visible,
.pref-btn:focus-visible,
.preview-selectable:focus-visible,
.meal-plan-chip:focus-visible,
.preview-thumb:focus-visible,
.review-dot:focus-visible,
.review-prev:focus-visible,
.review-next:focus-visible,
a:focus-visible {
  outline: 2px solid var(--sunlight);
  outline-offset: 2px;
}

/* ===== GUEST GUIDE & INFO HUB ===== */
.essentials-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(135deg, var(--leaf-whisper) 0%, var(--white) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(45, 106, 79, 0.1);
  box-shadow: var(--shadow-sm);
}

.essential-item {
  text-align: center;
  padding: 0.5rem 0.25rem;
}

.essential-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.essential-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-soft);
  line-height: 1.35;
}

.guide-hub {
  display: grid;
  gap: 2rem;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center;
  gap: 1.25rem;
  max-width: 1100px;
  margin-inline: auto;
}

.guide-card {
  max-width: 380px;
  justify-self: center;
  overflow-wrap: break-word;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 106, 79, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.guide-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--leaf-whisper), var(--leaf-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss);
  margin-bottom: 1rem;
}

.guide-card h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.guide-card > p {
  flex: 1 0 auto;
}

.guide-card p,
.guide-card li {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
  max-width: none;
}

.guide-card ul {
  list-style: none;
  margin-top: 0.75rem;
}

.guide-card li {
  padding: 0.35rem 0;
  padding-left: 1.1rem;
  position: relative;
}

.guide-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.guide-card .guide-highlight {
  display: inline-block;
  margin-top: 0.85rem;
  padding: 0.45rem 0.85rem;
  background: var(--leaf-whisper);
  border-radius: var(--radius-pill);
  font-weight: 700;
  color: var(--forest-mid);
  font-size: 0.9375rem;
}

.guide-card a.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
  margin-top: 0.35rem;
  font-weight: 600;
  font-size: 0.9375rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.info-callout {
  background: linear-gradient(135deg, var(--leaf-whisper) 0%, var(--white) 100%);
  border: 1px solid rgba(45, 106, 79, 0.12);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.5rem;
  margin-bottom: 2rem;
}

.info-callout-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.info-callout p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
  max-width: none;
  margin: 0;
}

.plan-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 106, 79, 0.08);
  margin-top: 1rem;
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.9875rem;
}

.plan-table th,
.plan-table td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--leaf-whisper);
  vertical-align: top;
}

.plan-table th {
  background: var(--forest);
  color: var(--white);
  font-weight: 600;
}

.plan-table code {
  background: var(--leaf-whisper);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--forest-mid);
  font-size: 0.875rem;
}

.plan-table .plan-price {
  font-weight: 700;
  color: var(--forest-mid);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.directions-timeline {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
}

.directions-timeline li {
  position: relative;
  padding: 0 0 1.5rem 3rem;
  max-width: none;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.directions-timeline li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--moss));
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.directions-timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0.9375rem;
  top: 2.25rem;
  bottom: 0;
  width: 2px;
  background: var(--leaf-pale);
}

.guide-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.guide-nav a {
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1.5px solid var(--leaf-pale);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-soft);
  transition: all var(--transition);
}

.guide-nav a:hover,
.guide-nav a.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.guest-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
}

.guest-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.package-card-body h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
}

.package-includes li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.menu-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.menu-cards-grid img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition);
}

.menu-cards-grid img:hover {
  transform: scale(1.02);
}





/* ===== HERO CREATIVITY ===== */
.hero-light-rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(212, 240, 180, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 85% 40%, rgba(212, 160, 23, 0.08) 0%, transparent 45%);
  animation: lightRayPulse 12s ease-in-out infinite alternate;
}

@keyframes lightRayPulse {
  from { opacity: 0.75; }
  to { opacity: 1; }
}

.hero-fireflies {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-petal {
  position: absolute;
  top: -5%;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  animation: petalFall linear infinite;
  z-index: 1;
}

.hero-petal svg {
  width: 100%;
  height: 100%;
}

@keyframes petalFall {
  0% { transform: translateY(-10vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.5; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

.scroll-leaf-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1001;
  background: rgba(15, 46, 26, 0.08);
  pointer-events: none;
}

.scroll-leaf-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--sage), var(--sunlight), var(--leaf));
  transition: width 0.1s linear;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-video-wrap video {
    display: none;
  }

  .scroll-leaf-progress,
  .hero-fireflies,
  .hero-petal,
  .hero-light-rays {
    display: none !important;
  }
}

/* ===== LATE MOBILE OVERRIDES =====
   These selectors have base rules further down the file, so their responsive
   overrides must come after them to win on source order. */
@media (max-width: 768px) {
  .plan-table {
    font-size: 0.875rem;
  }

  .plan-table th,
  .plan-table td {
    padding: 0.75rem 0.65rem;
  }

  .review-cta-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .review-cta-visual {
    max-width: 220px;
    margin-inline: auto;
  }

  .review-nav {
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
  }

  .review-prev { left: 0.25rem; }
  .review-next { right: 0.25rem; }

  .review-card {
    padding: 1.5rem 1.25rem;
    min-height: 260px;
  }

  .facebook-embed-wrap iframe {
    width: 100% !important;
    height: 560px !important;
  }
}

/* Landmark wrapper for the floating WhatsApp / booking controls.
   Must not create a box of its own - children are fixed-positioned. */
.floating-actions {
  display: contents;
}


/* ===== HOME GALLERY PREVIEW TILES ===== */
.promo-tile {
  position: relative;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.promo-tile img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition);
}

.promo-tile:hover img {
  transform: scale(1.04);
}

.promo-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.75rem 1rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(to top, rgba(9, 32, 18, 0.88), rgba(9, 32, 18, 0));
}

/* ===== ABOUT: PRESS HISTORY ===== */
.press-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: center;
}

.press-figure {
  margin: 0;
}

.press-figure img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.press-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-soft);
  text-align: center;
}

.press-text p {
  color: var(--text-soft);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ===== REVIEWS: RATING CARD ===== */
.review-score-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--leaf-pale), var(--white));
  border: 1px solid rgba(45, 106, 79, 0.12);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.review-score-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  color: var(--forest);
}

.review-score-stars {
  display: inline-flex;
  gap: 0.15rem;
  color: var(--gold-dark);
}

.review-score-stars svg {
  width: 20px;
  height: 20px;
}

.review-score-count {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-soft);
}

@media (max-width: 768px) {
  .press-feature {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .press-figure img {
    max-height: 420px;
  }

  .promo-tile img {
    height: 190px;
  }
}

/* ============================================================
   Live channel data (js/social.js)
   ============================================================ */

.social-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.social-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 1rem 0.75rem;
  min-height: 88px;
  justify-content: center;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(45, 106, 79, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  color: inherit;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.social-stat:hover,
.social-stat:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.social-stat-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--forest);
}

.social-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--stone);
}

.yt-shelf-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 2.75rem 0 1.1rem;
}

.yt-shelf-head h3 {
  margin: 0;
  font-size: 1.25rem;
}

.yt-shelf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 260px));
  justify-content: center;
  gap: 1.1rem;
}

.yt-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(45, 106, 79, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  color: inherit;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.yt-card:hover,
.yt-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.yt-thumb {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--leaf-whisper);
}

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

.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.yt-play svg {
  width: 54px;
  height: 54px;
  padding: 0.6rem 0.5rem 0.6rem 0.7rem;
  background: rgba(200, 32, 32, 0.92);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  transition: transform var(--transition);
}

.yt-card:hover .yt-play svg {
  transform: scale(1.08);
}

.yt-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.85rem 0.95rem 1rem;
}

.yt-title {
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-meta {
  font-size: 0.8rem;
  color: var(--stone);
}

.tt-shelf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 180px));
  justify-content: center;
  gap: 1rem;
}

.tt-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(45, 106, 79, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  color: inherit;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.tt-card:hover,
.tt-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: inherit;
}

.tt-thumb {
  position: relative;
  display: block;
  aspect-ratio: 9 / 14;
  background: var(--leaf-whisper);
  overflow: hidden;
}

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

.tt-play {
  position: absolute;
  inset: auto 50% 18% auto;
  transform: translateX(50%);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(15, 15, 15, 0.78);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  transition: transform var(--transition);
}

.tt-card:hover .tt-play {
  transform: translateX(50%) scale(1.08);
}

.tt-views {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 1;
  padding: 0.2rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #fff;
  background: rgba(10, 10, 10, 0.72);
  border-radius: 4px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.tt-card-body {
  padding: 0.75rem 0.85rem 0.95rem;
}

.tt-title {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.6rem;
}

.ig-tile {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--leaf-whisper);
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.ig-tile:hover img {
  transform: scale(1.05);
}

.social-updated {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--stone);
}

@media (max-width: 600px) {
  .social-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-stat-value {
    font-size: 1.45rem;
  }

  .yt-shelf {
    grid-template-columns: 1fr 1fr;
  }

  .tt-shelf {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yt-title {
    font-size: 0.9rem;
  }
}

/* ============================================================
   Enquiry builder (js/enquiry.js)
   ============================================================ */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.35rem;
}

.form-row > .form-group {
  min-width: 0;
}

/* Prefer readable selects/dates over cramped side-by-side pairs. */
@container enquiry (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.label-optional {
  font-weight: 400;
  color: var(--text-soft);
}

.stepper {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: stretch;
  border: 1px solid rgba(45, 106, 79, 0.22);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
}

.stepper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border: none;
  background: var(--leaf-whisper);
  color: var(--forest);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition);
}

.stepper-btn:hover,
.stepper-btn:focus-visible {
  background: var(--leaf-pale);
}

.stepper input {
  border: none;
  border-radius: 0;
  text-align: center;
  font-weight: 600;
  -moz-appearance: textfield;
  appearance: textfield;
}

.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.stepper input:focus {
  outline: 2px solid var(--leaf);
  outline-offset: -2px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  font-weight: 500;
  cursor: pointer;
}

.checkbox-label input {
  width: 20px;
  height: 20px;
  accent-color: var(--leaf);
  flex: none;
}

.field-error {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #b3261e;
}

input[aria-invalid='true'],
select[aria-invalid='true'] {
  border-color: #b3261e;
}

/* A running recap so the guest can see exactly what will be sent. */
.enquiry-summary:not(:empty) {
  margin: 1.75rem 0;
  padding: 1.35rem 1.5rem;
  background: var(--leaf-whisper);
  border: 1px solid rgba(45, 106, 79, 0.14);
  border-radius: var(--radius-sm);
}

.enquiry-summary-head {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
}

.enquiry-summary-list {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.enquiry-summary-row {
  display: grid;
  grid-template-columns: minmax(7rem, 0.4fr) minmax(0, 1fr);
  gap: 0.75rem 1.25rem;
  align-items: baseline;
  font-size: 0.975rem;
  line-height: 1.45;
}

.enquiry-summary-row dt {
  color: var(--text-soft);
  font-weight: 500;
}

.enquiry-summary-row dd {
  margin: 0;
  font-weight: 600;
  text-align: left;
  overflow-wrap: anywhere;
}

.enquiry-estimate {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px dashed rgba(45, 106, 79, 0.25);
}

.enquiry-estimate-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
}

.enquiry-estimate-value {
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1.15;
  color: var(--forest);
}

.enquiry-estimate-note,
.enquiry-note {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 36rem;
}

.enquiry-note-warn {
  margin-top: 0.7rem;
  padding: 0.6rem 0.75rem;
  background: rgba(244, 185, 66, 0.16);
  border-radius: var(--radius-sm);
  color: var(--text);
}

.enquiry-sent {
  margin-top: 0.9rem;
  padding: 0.7rem 0.85rem;
  background: rgba(45, 106, 79, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  text-align: center;
  color: var(--forest);
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
