/* ==========================================================================
   VATSYAYANA RESORTS — Editorial Luxury Stylesheet
   Heritage hospitality • Himalayan calm • Refined typography
   ========================================================================== */

/* ----- Design Tokens ----- */
:root {
  /* Palette — Himalayan dawn */
  --ink: #1a1f1a;
  --ink-soft: #2c322c;
  --bone: #f5f0e6;
  --paper: #faf6ec;
  --cream: #f0e8d8;
  --moss: #3d4d3a;
  --moss-deep: #2a3528;
  --terracotta: #a5572d;
  --gold: #b8893f;
  --gold-soft: #d4a857;
  --char: #4a4a45;
  --mist: #c9c2b3;
  --line: #1a1f1a1f;

  /* Typography */
  --serif-display: "Cormorant", "Cormorant Garamond", Georgia, serif;
  --serif-body: "Lora", Georgia, serif;
  --sans: "Manrope", -apple-system, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* ----- Reset ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--serif-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
a:hover {
  color: var(--moss-deep);
}

/* ----- Typography ----- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--serif-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 6vw, 5.5rem);
  font-weight: 300;
}
h2 {
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 400;
}
h3 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 500;
}
h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  margin-bottom: 1.25rem;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-block;
}

.lede {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--char);
  line-height: 1.7;
}

.dropcap::first-letter {
  font-family: var(--serif-display);
  font-size: 4.5rem;
  font-weight: 500;
  float: left;
  line-height: 0.9;
  padding: 0.4rem 0.6rem 0 0;
  color: var(--terracotta);
}

/* ----- Layout ----- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.section-tight {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-bone {
  background: var(--bone);
}
.section-cream {
  background: var(--cream);
}
.section-moss {
  background: var(--moss-deep);
  color: var(--bone);
}
.section-moss h1,
.section-moss h2,
.section-moss h3 {
  color: var(--bone);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease);
  z-index: -1;
}

.btn:hover {
  color: var(--bone);
  border-color: var(--ink);
}
.btn:hover::before {
  transform: translateY(0);
}

.btn-light {
  color: var(--bone);
  border-color: var(--bone);
}
.btn-light::before {
  background: var(--bone);
}
.btn-light:hover {
  color: var(--ink);
}

.btn-gold {
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold::before {
  background: var(--gold);
}
.btn-gold:hover {
  color: var(--ink);
}

.btn-arrow::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ----- Header ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 0;
  background: rgba(250, 246, 236, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  padding: 1rem 0;
  border-bottom-color: var(--line);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: var(--serif-display);
  color: var(--ink);
  grid-column: 2;
}

.brand-name {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-tag {
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--terracotta);
  margin-top: 0.4rem;
  text-transform: uppercase;
}
.logo-btn img{
    height: 90px;
    width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
  grid-column: 1;
  justify-self: start;
}
  .mobile-nav {
    display: none;
  }

.nav-right {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: 1.75rem;
  align-items: center;
  list-style: none;
}

.nav-menu a,
.nav-right a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 0.4rem 0;
}

.nav-menu a::after,
.nav-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease);
}

.nav-menu a:hover::after,
.nav-right a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.book-btn {
  padding: 0.7rem 1.4rem !important;
  background: var(--ink);
  color: var(--bone) !important;
  letter-spacing: 0.2em !important;
}
.book-btn::after {
  display: none;
}
.book-btn:hover {
  background: var(--terracotta);
  color: var(--bone) !important;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}
.dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--paper);
  border: 1px solid var(--line);
  min-width: 240px;
  padding: 0.75rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  box-shadow: 0 24px 48px rgba(26, 31, 26, 0.08);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown li a {
  display: block;
  padding: 0.7rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.dropdown li a:hover {
  background: var(--cream);
  color: var(--terracotta);
}
.dropdown li a::after {
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  margin: 6px 0;
  transition: all 0.3s var(--ease);
}
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ----- HERO ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

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

.hero-bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 30%,
    rgba(26, 31, 26, 0.5) 100%
  );
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--bone);
  max-width: 1100px;
  padding: 0 var(--gutter);
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--gold-soft);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}

.hero h1 {
  color: var(--bone);
  font-weight: 300;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft);
}

.hero-sub {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: rgba(245, 240, 230, 0.85);
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 0.7s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 0.9s forwards;
}

.hero-meta {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--gutter);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.7);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-meta-item::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold-soft);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----- Page Hero (inner pages) ----- */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding: 10rem 0 4rem;
  overflow: hidden;
  background: var(--moss-deep);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
}

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

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 53, 40, 0.85),
    rgba(26, 31, 26, 0.6)
  );
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  color: var(--bone);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.page-hero h1 {
  color: var(--bone);
  margin-bottom: 1rem;
}

.breadcrumb {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--gold-soft);
  opacity: 0.7;
}
.breadcrumb a:hover {
  opacity: 1;
  color: var(--bone);
}
.breadcrumb span {
  margin: 0 0.6rem;
}

/* ----- Section Heading ----- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-head .eyebrow {
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin-bottom: 1rem;
}

.section-head .ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.section-head .ornament::before,
.section-head .ornament::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-head .ornament span {
  color: var(--gold);
  font-size: 0.8rem;
}

/* Asymmetric headings (left-aligned editorial) */
.editorial-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: end;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.editorial-head h2 {
  margin: 0;
}

.editorial-head .lede {
  margin: 0;
}

@media (max-width: 768px) {
  .editorial-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .responsive-grid{
    grid-column: span 2;
  }
}

/* ----- Intro / Welcome ----- */
.welcome {
  text-align: center;
  position: relative;
}

.welcome::before {
  content: "व";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif-display);
  font-size: clamp(8rem, 20vw, 16rem);
  color: var(--gold);
  opacity: 0.09;
  font-weight: 300;
  pointer-events: none;
  z-index: 0;
}

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

.welcome h2 {
  margin: 1.5rem 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.welcome h2 em {
  font-style: italic;
  color: var(--terracotta);
}

/* ----- View Tags / Marquee ----- */
.marquee {
  background: var(--moss-deep);
  color: var(--bone);
  padding: 2rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 4rem;
}

.marquee-item::after {
  content: "✦";
  color: var(--gold-soft);
  font-style: normal;
  font-size: 0.9rem;
}

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

/* ----- Stats Strip ----- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  text-align: center;
  padding: 3rem 1.5rem;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--serif-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--char);
}

@media (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat {
    border-bottom: 1px solid var(--line);
  }
  .stat:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
  .stat:nth-child(even) {
    border-right: none;
  }
}

/* ----- Accommodation Grid ----- */
.suites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.suite-card {
  background: var(--paper);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}

.suite-card:hover {
  transform: translateY(-6px);
}

.suite-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.suite-image svg {
  width: 100%;
  height: 100%;
  transition: transform 0.8s var(--ease);
}

.suite-card:hover .suite-image svg {
  transform: scale(1.05);
}

.suite-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 31, 26, 0.6), transparent 50%);
  z-index: 1;
}

.suite-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: var(--paper);
  color: var(--ink);
  padding: 0.4rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.suite-num {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  font-family: var(--serif-display);
  font-style: italic;
  color: var(--bone);
  font-size: 1.1rem;
  opacity: 0.7;
}

.suite-body {
  padding: 2rem 0.5rem;
}

.suite-body h3 {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.suite-body h3 .size {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--char);
}

.suite-body p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  color: var(--char);
}

.suite-meta {
  display: flex;
  gap: 1.25rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--char);
  margin-bottom: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.suite-link {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: all 0.3s var(--ease);
}

.suite-link:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
  gap: 1rem;
}

/* ----- Editorial Feature Block ----- */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 7rem;
}

.editorial:last-child {
  margin-bottom: 0;
}

.editorial.reverse > div:first-child {
  order: 2;
}

.editorial-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.editorial-img.wide {
  aspect-ratio: 4 / 3;
}

.editorial-img svg {
  width: 100%;
  height: 100%;
  transition: transform 1s var(--ease);
}

.editorial-img:hover svg {
  transform: scale(1.04);
}

.editorial-img-frame {
  position: relative;
  padding: 1.5rem;
}

.editorial-img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  z-index: -1;
  /* transform: translate(20px, 20px); */
}

.editorial-text .eyebrow {
  margin-bottom: 1.5rem;
}

.editorial-text h2 {
  margin-bottom: 1.5rem;
}

.editorial-text .signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--terracotta);
}

.editorial-text .signature::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 900px) {
  .editorial {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
  .editorial.reverse > div:first-child {
    order: 0;
  }
}

/* ----- Experience Pillars ----- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.pillar {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.pillar:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
  transform: translateY(-4px);
}

.pillar:hover h4,
.pillar:hover .pillar-num {
  color: var(--gold-soft);
}
.pillar:hover p {
  color: rgba(245, 240, 230, 0.8);
}

.pillar-num {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  display: block;
  transition: color 0.3s var(--ease);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  color: var(--terracotta);
}

.pillar h4 {
  margin-bottom: 0.75rem;
  transition: color 0.3s var(--ease);
}
.pillar p {
  font-size: 0.9rem;
  line-height: 1.7;
  transition: color 0.3s var(--ease);
}

/* ----- Wedding Banner ----- */
.banner-wedding {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: var(--bone);
  padding: 6rem var(--gutter);
}

.banner-wedding-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-wedding::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 53, 40, 0.7),
    rgba(165, 87, 45, 0.4)
  );
  z-index: 1;
}

.banner-wedding-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.banner-wedding h2 {
  color: var(--bone);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.banner-wedding .lede {
  color: rgba(245, 240, 230, 0.9);
}

/* ----- Testimonial Slider ----- */
.testimonials-section {
  background: var(--cream);
  position: relative;
}

.testimonial-card {
  background: var(--paper);
  padding: 3rem 2.5rem;
  border: 1px solid var(--line);
  position: relative;
  height: 100%;
}

.testimonial-quote {
  font-family: var(--serif-display);
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.testimonial-text {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  font-family: var(--serif-display);
  font-size: 1.2rem;
  font-weight: 500;
}

.testimonial-name {
  font-family: var(--serif-display);
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 500;
}

.testimonial-source {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--char);
}

/* ----- FAQ Section (AEO-optimized) ----- */
.faq-section {
  background: var(--bone);
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.faq-aside {
  position: sticky;
  top: 8rem;
}

.faq-aside .eyebrow {
  margin-bottom: 1.5rem;
}

.faq-aside h2 {
  margin-bottom: 1.5rem;
}

.faq-list {
  list-style: none;
}

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

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.75rem 3rem 1.75rem 0;
  font-family: var(--serif-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: color 0.3s var(--ease);
}

.faq-question:hover {
  color: var(--terracotta);
}

.faq-q-num {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--terracotta);
  flex-shrink: 0;
  padding-top: 0.5rem;
  min-width: 30px;
}

.faq-q-text {
  flex: 1;
  line-height: 1.4;
}

.faq-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

.faq-toggle::before {
  width: 12px;
  height: 1px;
}
.faq-toggle::after {
  width: 1px;
  height: 12px;
}

.faq-item.open .faq-toggle {
  background: var(--ink);
  transform: translateY(-50%) rotate(180deg);
}

.faq-item.open .faq-toggle::before,
.faq-item.open .faq-toggle::after {
  background: var(--bone);
}

.faq-item.open .faq-toggle::after {
  transform: scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s var(--ease),
    padding 0.5s var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 1.75rem;
}

.faq-answer-inner {
  padding-left: calc(30px + 1.5rem);
  font-family: var(--serif-body);
  color: var(--char);
  font-size: 1rem;
  line-height: 1.8;
}

.faq-answer-inner p {
  margin-bottom: 0.75rem;
}
.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .faq-aside {
    position: static;
  }
  .faq-question {
    font-size: 1.1rem;
    padding-right: 2.5rem;
  }
  .faq-answer-inner {
    padding-left: calc(30px + 1rem);
    font-size: 0.95rem;
  }
}

/* ----- Gallery Mosaic ----- */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}

.gallery-tile {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--moss-deep);
}

.gallery-tile svg,
.gallery-tile img {
  width: 100%;
  height: 100%;
  transition: transform 0.8s var(--ease);
}

.gallery-tile:hover svg,
.gallery-tile:hover img {
  transform: scale(1.08);
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 31, 26, 0);
  transition: background 0.4s var(--ease);
}

.gallery-tile:hover::after {
  background: rgba(26, 31, 26, 0.2);
}

.gallery-tile.tall {
  grid-row: span 2;
}
.gallery-tile.wide {
  grid-column: span 2;
}
.gallery-tile.large {
  grid-row: span 2;
  grid-column: span 2;
}

@media (max-width: 768px) {
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-tile.large {
    grid-column: span 2;
  }
}

/* ----- Contact ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
}

.contact-info-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.contact-info-block:last-child {
  border-bottom: none;
}

.contact-info-block h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.contact-info-block p {
  font-family: var(--serif-body);
  font-size: 1rem;
}

.contactForm {
  background: var(--paper);
  padding: 3rem;
  border: 1px solid var(--line);
}

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

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

.form-group label {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--char);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--serif-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--terracotta);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contactForm {
    padding: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ----- Tabs ----- */
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--line);
}

.tab-btn {
  padding: 1.25rem 2rem;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--char);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s var(--ease);
}

.tab-btn:hover {
  color: var(--ink);
}

.tab-btn.active {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s var(--ease);
}
.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----- Speakable Block (AEO) ----- */
.speakable-summary {
  background: var(--cream);
  padding: 2rem 2.5rem;
  border-left: 3px solid var(--terracotta);
  margin: 3rem 0;
  font-family: var(--serif-body);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--ink-soft);
}

.speakable-summary::before {
  content: "In Brief";
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-style: normal;
  margin-bottom: 0.75rem;
}

/* ----- Quick Facts (AEO key/value) ----- */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 2.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
}

.fact dt {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

.fact dd {
  font-family: var(--serif-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
}

/* ----- Map ----- */
.map-embed {
  width: 100%;
  height: 480px;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}

/* ----- Footer ----- */
.site-footer {
  background: var(--ink);
  color: var(--mist);
  padding: 6rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(245, 240, 230, 0.1);
}

.footer-brand {
  font-family: var(--serif-display);
}

.footer-brand-name {
  font-size: 2rem;
  font-weight: 400;
  color: var(--bone);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.footer-brand-tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
}

.footer-top p {
  font-size: 0.95rem;
  color: var(--mist);
}

.footer-top h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1.5rem;
}

.footer-top ul {
  list-style: none;
}

.footer-top li {
  margin-bottom: 0.7rem;
}

.footer-top a {
  color: var(--mist);
  font-size: 0.9rem;
  font-family: var(--serif-body);
}

.footer-top a:hover {
  color: var(--gold-soft);
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-row a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245, 240, 230, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--mist);
  transition: all 0.3s var(--ease);
}

.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(201, 194, 179, 0.6);
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ----- WhatsApp Float ----- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: #fff;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ----- Reveal Animation ----- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Responsive Nav ----- */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 1.25rem;
  }
  .nav-menu a {
    font-size: 0.65rem;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    grid-column: 1;
    justify-self: start;
  }

  .logo-btn{
    display: flex;
    justify-content: space-between;
  }
  .nav-wrap {
    grid-template-columns: 1fr;
  }

  .brand {
    grid-column: 2;
    justify-self: end;
    align-items: flex-end;
  }

  .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 88%;
    max-width: 380px;
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 2.5rem 2rem;
    gap: 0;
    transition: right 0.4s var(--ease);
    grid-column: auto;
    overflow-y: auto;
    z-index: 99;
  } 
  .mobile-nav li,
  .nav-right li {
    list-style: none;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav li a{
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    position: relative;
    padding: 0.625rem 0;
  }

  .mobile-nav.open,
  .nav-right.open {
    right: 0;
  }


  .mobile-nav a,
  .nav-right a {
    display: block;
    padding: 1.2rem 0;
    font-size: 0.85rem;
  }

  .nav-right,.nav-menu{
    /* padding-top: 0;
    height: auto;
    position: static;
    flex-direction: row;
    gap: 1rem; */
    display: none;
  }
  .nav-right li {
    width: auto;
    border: none;
  }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
    border: none;
    padding-left: 1rem;
    display: none;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }
  
  .mobile-nav .has-dropdown:hover .dropdown{
        transform: translateX(0%) translateY(0);
  }
}

@media (max-width: 480px) {
    .stats,.suites-grid,.grid-template-columns {
        grid-template-columns:1fr !important;
    }
    .logo-btn img {
    height: 80px;}
  
  .btn{
    padding: 0.5rem 2rem;
  }
  .gallery-mosaic {
        grid-template-columns: 1fr;
    }
    .contact-info-block {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }
  .form-group label {
    margin-bottom: 0rem;
  }
  .form-group input, .form-group textarea, .form-group select {
    padding: 0.8rem 0 0.5rem;
  }
  .form-row {
      gap: 1rem;
  }
  .form-group {
    margin-bottom: 1rem;}
}

/* ----- Utility ----- */
.text-center {
  text-align: center;
}
.mt-3 {
  margin-top: 3rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
