/* =============================================
   MYSA NEST â€” style.css
   Colors from logo: Teal Green #1B6B4C, Amber/Sunset #D4750A, Warm Brown #8B5E3C
   Fonts: Apple SF Pro system stack + DM Serif Display (Apple editorial look)
   ============================================= */

/* Apple-style premium font system */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Apple SF Pro system font â€” automatically uses SF Pro on Mac/iPhone */
body {
  font-family: 'Nunito Sans', sans-serif, 'SF Pro Text', 'SF Pro Display',
    'Nunito Sans', sans-serif, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #faf8f5;
  color: #1d1d1f;
  /* Apple's exact body text color */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* ---- CSS Variables ---- */
:root {
  --teal: #1B6B4C;
  --teal-dark: #134d38;
  --teal-light: #2a8a62;
  --amber: #D4750A;
  --amber-light: #f0a832;
  --amber-dark: #a85700;
  --brown: #8B5E3C;
  --cream: #faf8f5;
  --cream-dark: #f2ede6;
  --white: #ffffff;
  --text-dark: #1d1d1f;
  /* Apple primary text */
  --text-mid: #3d3d3f;
  /* Apple secondary text */
  --text-light: #86868b;
  /* Apple tertiary text */
  --font-display: 'Nunito Sans', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --font-logo: 'Nunito Sans', sans-serif;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Utility Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(27, 107, 76, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27, 107, 76, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn-room {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 22px;
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
}

.btn-room:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1rem;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(27, 107, 76, 0.1);
  color: var(--teal);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.section-title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title.light {
  color: var(--white);
}

.section-desc {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-desc.light {
  color: rgba(255, 255, 255, 0.82);
}

.highlight {
  color: var(--teal);
}

.highlight-light {
  color: var(--amber-light);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.navbar.solid-bg {
  background: var(--teal-dark) !important;
  box-shadow: var(--shadow-sm);
  position: sticky;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-mysa,
.logo-nest {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.logo-mysa {
  color: var(--white);
  transition: color 0.4s;
}

.logo-nest {
  color: var(--amber-light);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.navbar.scrolled .logo-mysa {
  color: var(--teal);
}

.navbar.scrolled .logo-nest {
  color: var(--teal);
}

.logo-tagline {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  font-style: italic;
  transition: color 0.4s;
}

.navbar.scrolled .logo-tagline {
  color: var(--text-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .nav-link {
  color: var(--text-mid);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--teal);
  background: rgba(27, 107, 76, 0.08);
}

.nav-btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white) !important;
  padding: 7px 18px;
  border-radius: 50px;
}

.nav-btn-outline:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

.navbar.scrolled .nav-btn-outline {
  border-color: var(--teal);
  color: var(--teal) !important;
}

.nav-btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark)) !important;
  color: var(--white) !important;
  border-radius: 50px;
  padding: 9px 22px;
  box-shadow: 0 4px 14px rgba(212, 117, 10, 0.4);
}

.nav-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 117, 10, 0.5);
  background: linear-gradient(135deg, var(--amber-light), var(--amber)) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--teal-dark);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('images/hero-bg.jpg') center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(19, 77, 56, 0.82) 0%,
      rgba(27, 107, 76, 0.55) 40%,
      rgba(139, 94, 60, 0.4) 70%,
      rgba(30, 15, 5, 0.75) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 860px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.hero-title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 1;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.3));
}

.hero-title-mysa {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--white);
  display: inline;
}

.hero-title-nest {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--amber-light);
  display: inline;
  font-weight: 700;
}

.hero-subtitle {
  font-family: 'Nunito Sans', sans-serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* ===== HERO BOOKING WIDGET ===== */
.booking-widget {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  text-align: left;
}

.bw-tabs {
  display: flex;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 16px;
}

.bw-tab {
  background: transparent;
  border: none;
  padding: 18px 24px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #888;
  cursor: pointer;
  transition: 0.2s;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bw-tab:hover {
  color: #444;
}

.bw-tab.active {
  color: #e51e53;
  border-bottom: 2px solid #e51e53;
}

.bw-inputs {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  gap: 16px;
}

.bw-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bw-group label {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 4px;
  font-weight: 600;
  text-transform: capitalize;
}

.bw-group input, .bw-group select {
  border: none;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  width: 100%;
  outline: none;
  background: transparent;
  cursor: pointer;
}

.bw-group input::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
}

.bw-divider {
  width: 1px;
  height: 44px;
  background: rgba(0,0,0,0.08);
}

.bw-btn {
  background: #e51e53;
  color: #fff;
  border: none;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 50px; /* Pill shape like image */
  cursor: pointer;
  letter-spacing: 0.5px;
  font-family: 'Nunito Sans', sans-serif;
  transition: 0.2s;
  margin-left: auto;
}

.bw-btn:hover {
  background: #c21342;
}

@media (max-width: 768px) {
  .bw-inputs {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .bw-divider {
    width: 100%;
    height: 1px;
  }
  .bw-btn {
    margin-top: 10px;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeInUp 1s 1s both;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--amber-light);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 1.6s infinite;
}

@keyframes scrollAnim {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateX(-50%) translateY(16px);
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Floating particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  from {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  to {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* ===== VALUE BANNER ===== */
.value-banner {
  background: var(--cream-dark);
  padding: 28px 0;
  border-top: 1px solid rgba(27, 107, 76, 0.08);
  border-bottom: 1px solid rgba(27, 107, 76, 0.08);
}

.value-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--white);
  border: 1.5px solid rgba(27, 107, 76, 0.12);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.value-pill i {
  color: var(--amber);
}

.value-pill-sep {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
}

.highlight-pill {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 18px rgba(27, 107, 76, 0.3);
}

.highlight-pill i {
  color: var(--amber-light);
}

/* ===== WHO FOR SECTION ===== */
.who-for-section {
  padding: 100px 0;
  background: var(--cream);
}

.who-for-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 28px;
  padding-bottom: 20px; /* space for box-shadow on hover */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.who-for-grid::-webkit-scrollbar {
  display: none;
}

.who-for-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27, 107, 76, 0.06);
  transition: var(--transition);
  flex: 0 0 calc(33.333% - 19px);
  scroll-snap-align: start;
}

.who-for-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.who-for-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.who-for-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.who-for-card:hover .who-for-img img {
  transform: scale(1.08);
}

.who-for-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 77, 56, 0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
}

.who-for-overlay span {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}

.who-for-body {
  padding: 24px 24px 28px;
}

.who-for-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 14px;
  background: rgba(27, 107, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.2rem;
  transition: var(--transition);
}

.who-for-card:hover .who-for-icon {
  background: var(--teal);
  color: var(--white);
}

.who-for-body h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.who-for-body p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.68;
}

/* ===== WHY SECTION â€” SPLIT LAYOUT WITH IMAGES ===== */
.why-section {
  padding: 100px 0;
  background: var(--cream-dark);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-img-col {
  position: relative;
  padding-right: 20px;
  padding-bottom: 28px;
}

.why-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-lg);
}

.why-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream-dark);
}

.why-img-sub img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.why-img-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(212, 117, 10, 0.4);
  text-align: center;
}

.badge-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.72rem;
  line-height: 1.3;
  margin-top: 2px;
  font-weight: 500;
}

.why-text-col .section-tag {
  margin-bottom: 12px;
}

.why-intro {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
  margin: 16px 0 28px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.wp-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(27, 107, 76, 0.08);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.why-point:hover .wp-icon {
  background: var(--teal);
  color: var(--white);
}

.wp-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.wp-text p {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ===== ROOMS SECTION ===== */
.rooms-section {
  padding: 100px 0;
  background: var(--cream);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27, 107, 76, 0.06);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.room-card.featured {
  border: 2px solid var(--teal);
}

.room-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  width: 100%;
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-img {
  transform: scale(1.07);
}

.room-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(27, 107, 76, 0.9);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.room-badge.popular {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  box-shadow: 0 4px 14px rgba(212, 117, 10, 0.4);
}

.room-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 77, 56, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.room-card:hover .room-overlay {
  opacity: 1;
}

.room-body {
  padding: 28px 28px 32px;
}

.room-bird-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.room-name {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.room-bird-inspiration {
  color: var(--teal);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 12px;
}

.room-desc {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.room-features {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.room-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-mid);
  background: rgba(27, 107, 76, 0.06);
  padding: 5px 12px;
  border-radius: 50px;
}

.room-features span i {
  color: var(--teal);
  font-size: 0.75rem;
}

/* ===== FACILITIES â€” FULL SPLIT LAYOUT ===== */
.facilities-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 55%, #2a6e53 100%);
  overflow: hidden;
}

.facilities-bg-overlay {
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.facilities-grid-full {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.facilities-img-col {
  position: relative;
}

.fac-img-stack {
  position: relative;
  padding-right: 24px;
  padding-bottom: 24px;
}

.fac-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 600px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.fac-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid rgba(27, 107, 76, 0.8);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.facilities-list-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fac-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.fac-item:last-child {
  border-bottom: none;
}

.fac-item:hover {
  padding-left: 8px;
}

.fac-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--amber-light);
  transition: var(--transition);
}

.fac-item:hover .fac-icon {
  background: var(--amber);
  color: var(--white);
}

.fac-text h4 {
  color: var(--white);
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.fac-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.83rem;
  line-height: 1.55;
}

/* ===== LONG STAY BANNER â€” WITH BG IMAGE ===== */
.longstay-banner {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
}

.longstay-bg-img {
  position: absolute;
  inset: 0;
}

.longstay-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.longstay-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 87, 0, 0.93) 0%, rgba(212, 117, 10, 0.88) 50%, rgba(168, 87, 0, 0.93) 100%);
}

.longstay-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.longstay-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.longstay-banner h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 14px;
}

.longstay-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.longstay-perks-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.longstay-perks-row span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
}

.longstay-perks-row i {
  color: var(--white);
  font-size: 0.85rem;
}

.longstay-banner .btn-primary {
  background: var(--white);
  color: var(--amber-dark);
  border-color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.longstay-banner .btn-primary:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 100px 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  grid-auto-rows: 220px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px 16px;
  background: linear-gradient(to top, rgba(19, 77, 56, 0.85), transparent);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 0;
  background: var(--cream-dark);
}

.testimonials-track-wrap {
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px 24px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 340px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27, 107, 76, 0.08);
}

.testi-stars {
  color: var(--amber);
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.92rem;
}

.testi-author small {
  color: var(--text-light);
  font-size: 0.8rem;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(27, 107, 76, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  background: url('images/groups-of-birds-header.png') center 25% / cover no-repeat;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(8, 30, 20, 0.88) 0%,
      rgba(15, 60, 42, 0.80) 50%,
      rgba(8, 30, 20, 0.92) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 2.6rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.social-chip:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: #0d2e1f;
  color: rgba(255, 255, 255, 0.8);
}

.footer-top {
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.footer-brand .logo-mysa {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.9rem;
  color: var(--amber-light);
}

.footer-brand .logo-nest {
  color: var(--white);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.footer-links-col h4,
.footer-contact-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links-col a:hover {
  color: var(--amber-light);
  transform: translateX(4px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-item i {
  color: var(--amber-light);
  margin-top: 2px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-item span,
.contact-item a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  line-height: 1.4;
}

.contact-item a:hover {
  color: var(--amber-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}

.footer-bottom-links a:hover {
  color: var(--amber-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .who-for-card {
    flex: 0 0 calc(50% - 14px);
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-img-col {
    padding-right: 0;
    padding-bottom: 32px;
  }

  .why-img-sub {
    width: 160px;
  }

  .facilities-grid-full {
    grid-template-columns: 1fr;
  }

  .fac-img-stack {
    padding-right: 0;
    padding-bottom: 0;
  }

  .fac-img-main {
    height: 360px;
  }

  .fac-img-secondary {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    height: 100vh;
    width: 75%;
    max-width: 300px;
    background: var(--teal-dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 90px 24px 40px;
    transition: right 0.35s ease;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.2);
    z-index: 99;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links .nav-link,
  .nav-links .nav-btn-outline,
  .nav-links .nav-btn-primary {
    color: rgba(255, 255, 255, 0.9) !important;
    width: 100%;
    display: block;
    padding: 12px 16px;
    border-radius: 10px;
  }

  .nav-links .nav-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  .nav-links .nav-btn-primary {
    margin-top: 8px;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
    z-index: 100;
  }

  .navbar.scrolled .nav-toggle span {
    background: var(--teal-dark);
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    border-radius: 30px;
    padding: 12px 10px;
    justify-content: space-between;
    width: 100%;
  }

  .hero-stats .stat-item {
    flex: 1;
    min-width: 0;
  }

  .hero-stats .stat-num {
    font-size: 1.2rem;
  }

  .hero-stats .stat-label {
    font-size: 0.55rem;
    word-break: break-word;
  }

  .stat-divider {
    width: 1px;
    height: 30px;
  }

  .value-pills {
    flex-direction: column;
    gap: 12px;
  }

  .value-pill-sep {
    display: none;
  }

  .who-for-card {
    flex: 0 0 calc(90% - 14px);
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item.large {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .longstay-perks-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .longstay-banner h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item.large {
    grid-column: span 1;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .why-img-sub {
    display: none;
  }

  .why-img-badge {
    top: -10px;
    left: -10px;
    padding: 10px 12px;
  }
}

/* ===== APPLE FONT: LOGO OVERRIDE ===== */
.logo-mysa {
  font-family: 'Nunito Sans', sans-serif !important;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer-brand .logo-mysa {
  font-family: 'Nunito Sans', sans-serif !important;
  font-style: italic;
}

.logo-nest {
  font-family: 'Nunito Sans', sans-serif, 'SF Pro Display', 'Nunito Sans', sans-serif, 'Helvetica Neue', sans-serif !important;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-tagline {
  font-family: 'Nunito Sans', sans-serif, 'SF Pro Text', 'Nunito Sans', sans-serif, 'Helvetica Neue', sans-serif !important;
  font-style: normal;
  letter-spacing: 0.04em;
  font-weight: 400;
}


/* ===== APPLE PREMIUM TYPOGRAPHY REFINEMENTS ===== */
/* Headings - DM Serif Display with Apple editorial tightness */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  /* DM Serif Display is best at regular weight - Apple rarely uses bold serif */
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text-dark);
}

/* Hero title - exaggerated Apple-style large heading */
.hero-title {
  letter-spacing: -0.04em !important;
  font-weight: 400;
}

.hero-title-mysa {
  font-family: 'Nunito Sans', sans-serif !important;
  font-style: italic;
  letter-spacing: -0.02em;
}

.hero-title-nest {
  font-family: 'Nunito Sans', sans-serif !important;
  font-style: normal;
  letter-spacing: -0.04em;
}

/* Section titles */
.section-title {
  font-family: 'Nunito Sans', sans-serif !important;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

/* Apple-style body text */
p,
li,
span,
a,
label,
input,
textarea,
select,
button {
  font-family: 'Nunito Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Apple-style caption/small text */
.section-tag,
.room-bird-inspiration,
.plan-duration,
.mem-tagline,
.breadcrumb,
.hero-badge,
.stat-label,
.astat-label {
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* Apple-style number display */
.stat-num,
.astat-num,
.badge-num {
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: -0.03em;
}

/* Navbar - SF Pro like Apple nav */
.nav-link,
.logo-tagline {
  font-family: 'Nunito Sans', sans-serif !important;
  letter-spacing: -0.005em;
}

/* Card headings */
.room-name,
.mv-card h3,
.who-for-body h3,
.plan-card h3,
.mem-tier,
.aws-item h4,
.wp-text h4,
.fac-text h4 {
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: -0.02em;
}

/* Footer logo */
.footer-brand .logo-mysa {
  font-family: 'Nunito Sans', sans-serif !important;
  font-style: italic;
}

.footer-brand .logo-nest {
  font-family: 'Nunito Sans', sans-serif !important;
  letter-spacing: -0.04em;
  font-weight: 800;
}

/* CTA heading */
.cta-content h2 {
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: -0.03em;
}

/* Page hero heading */
.page-hero-content h1 {
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: -0.03em;
}

/* =========================================================
   MYSA NEST  DESIGN OVERRIDES
   Font: Nunito Sans | Fixed backgrounds | Heading weights
   ========================================================= */

/* ---- HERO SECTION  FIXED BACKGROUND & OVERLAY ---- */
/* Force a clean, single solid background image  no room bleed */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('images/sunset-nest.png') center center / cover no-repeat fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

/* Clear overlay at top for image text, dark at bottom for stats readability */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.8) 100%);
  z-index: 0;
}

/* Enhance text visibility against the bright sunset background */
.hero-title,
.hero-subtitle,
.hero-desc {
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* ---- PAGE HERO BACKGROUNDS (about, contact etc.) ---- */
.page-hero {
  position: relative;
  min-height: 380px;
  background: url('images/groups-of-birds-header.png') center 25% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  isolation: isolate;
  border-bottom: 3px solid var(--amber-light);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(8, 30, 20, 0.88) 0%,
      rgba(15, 60, 42, 0.80) 50%,
      rgba(8, 30, 20, 0.92) 100%);
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 70px 24px;
}

/* Ensure page hero text is always visible */
.page-hero-content h1,
.page-hero-content p,
.breadcrumb,
.breadcrumb a {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
}

.page-hero-content .highlight {
  color: var(--amber-light);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ---- SECTIONS ï¿½ CLEAN LIGHT BACKGROUNDS ---- */
.why-section {
  background: #f7f5f2;
}

.rooms-section {
  background: #ffffff;
}

.gallery-section {
  background: #f7f5f2;
}

.testimonials-section {
  background: #ffffff;
}

/* ---- HEADING FONT ï¿½ NUNITO SANS, LIGHT + BREEZY ---- */
/* All headings: Nunito Sans, lighter weight, tighter tracking */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title,
.hero-subtitle,
.room-name,
.cta-content h2,
.longstay-banner h2,
.contact-form-card h3,
.mv-card h3,
.who-for-body h3,
.aws-item h4,
.wp-text h4,
.fac-text h4,
.plan-card h3,
.mem-tier,
.founder-info h3,
.page-hero-content h1 {
  font-family: 'Nunito Sans', sans-serif !important;
  font-weight: 300;
  /* Light ï¿½ breezy, professional */
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* Section titles ï¿½ slightly larger, weight 300 */
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300 !important;
  letter-spacing: -0.025em;
}

/* Hero title ï¿½ very large, still light */
.hero-title {
  font-size: clamp(4rem, 11vw, 7.5rem);
  font-weight: 300 !important;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

/* Hero NEST word ï¿½ slightly bolder to contrast with script Mysa */
.hero-title-nest {
  font-weight: 700 !important;
  letter-spacing: -0.05em;
}

.hero-title-mysa {
  font-weight: 300 !important;
  font-style: italic;
  letter-spacing: -0.01em;
}

/* Why-section point headings */
.wp-text h4 {
  font-weight: 600 !important;
  font-size: 0.97rem;
  letter-spacing: -0.01em;
}

/* Card headings ï¿½ slightly bolder for readability */
.room-name,
.who-for-body h3,
.mv-card h3,
.mem-tier,
.plan-card h3 {
  font-weight: 600 !important;
  letter-spacing: -0.02em;
}

/* Facility & amenity headings */
.fac-text h4,
.facility-card h4,
.prem-body h4 {
  font-weight: 600 !important;
  letter-spacing: -0.01em;
}

/* ---- BODY TEXT ï¿½ NUNITO SANS 400 ---- */
p,
li,
span,
a,
label,
input,
textarea,
select,
button,
td,
th {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
}

/* Subtle text & secondary labels weight 300 */
.section-desc,
.room-desc,
.who-for-body p,
.mv-card p,
.fac-text p,
.wp-text p,
.aws-item p,
.hero-desc,
.about-text p,
.team-bio,
.aws-intro,
.longstay-banner p {
  font-weight: 300;
  line-height: 1.78;
  letter-spacing: 0.005em;
}

/* Tags & labels ï¿½ 600 for punchy caps */
.section-tag,
.room-badge,
.gallery-caption,
.value-pill,
.who-for-overlay span,
.stat-label,
.astat-label,
.hero-badge {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* CTA heading ï¿½ bigger, still light */
.cta-content h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300 !important;
  letter-spacing: -0.03em;
}

/* Long-stay banner heading */
.longstay-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300 !important;
  letter-spacing: -0.02em;
}

/* Page hero h1 */
.page-hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300 !important;
  letter-spacing: -0.03em;
}

/* ---- LOGO STYLING ---- */
.logo-mysa {
  font-family: 'Nunito Sans', sans-serif !important;
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.logo-nest {
  font-family: 'Nunito Sans', sans-serif !important;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.logo-tagline {
  font-family: 'Nunito Sans', sans-serif !important;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.06em;
  font-size: 0.68rem;
  opacity: 0.8;
}

/* Nav links */
.nav-link {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* Buttons */
.btn {
  font-family: 'Nunito Sans', sans-serif !important;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Stat numbers */
.stat-num,
.astat-num,
.badge-num {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Hero subtitle italic */
.hero-subtitle {
  font-weight: 300 !important;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ---- FACILITIES SECTION TEXT VISIBILITY ---- */
.fac-text h4 {
  color: #ffffff;
}

.fac-text p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
}

/* ===== FAQ ACCORDION (Drop-down style) ===== */
.faq-accordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
  align-items: start;
  /* critical: stops details boxes from stretching vertically */
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 768px) {
  .faq-accordion {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(27, 107, 76, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.faq-item[open] {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(27, 107, 76, 0.08);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--teal-dark);
  cursor: pointer;
  list-style: none;
  /* Hide default triangle */
  position: relative;
  transition: background 0.2s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--amber);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq-item[open] .faq-question {
  background: rgba(27, 107, 76, 0.03);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--text-mid);
  line-height: 1.7;
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.faq-item[open] .faq-answer {
  animation: faqPills 0.4s ease-out forwards;
}

@keyframes faqPills {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Adjust hero background position for tablet and mobile to make the bird visible */
@media (max-width: 1024px) {
  .hero {
    background-position: 25% center !important;
    background-attachment: scroll !important;
  }
  .hero-particles {
    display: none !important;
  }
}