:root {
  /* Inspired by spa stones, bamboo, candlelight & water */
  --bg: #f7f9f7;
  --bg-warm: #faf8f5;
  --text: #2d3a36;
  --muted: #5f7068;
  --green: #4a7c59;
  --green-dark: #3a6347;
  --green-soft: #d4e8d8;
  --green-light: #e8f2ea;
  --accent-warm: #c9a962;
  --accent-coral: #d4907a;
  --stone: #4a5568;
  --water: #b8c9c4;
  --radius: 999px;
  --card-radius: 16px;
  --sleek-radius: 24px;
  --max: 980px;
  --shadow-sm: 0 2px 12px rgba(74, 124, 89, 0.08);
  --shadow-md: 0 8px 30px rgba(74, 124, 89, 0.12);
  --shadow-sleek: 0 12px 40px rgba(45, 58, 54, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-warm: 0 8px 32px rgba(201, 169, 98, 0.15);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, rgba(247, 249, 247, 0.92) 0%, rgba(250, 248, 245, 0.94) 100%),
              url('NH_INSPIRE_4_1768618360181.webp') center / cover fixed;
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

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

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(74, 124, 89, 0.12);
  box-shadow: 0 4px 20px rgba(74, 124, 89, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 32px;
  max-width: 1600px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand img {
  height: 110px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.25);
}

.brand-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.1;
  color: var(--green-dark);
  text-transform: uppercase;
}

.hamburger {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.hamburger .bars {
  width: 22px;
}

.hamburger .bars span {
  display: block;
  height: 3px;
  background: var(--green);
  border-radius: 3px;
  margin: 4px 0;
}

nav {
  display: none;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 10px 20px 16px;
  max-width: var(--max);
  margin: 0 auto;
}

nav.open {
  display: block;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-links a {
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.2px;
}

.nav-links a:hover {
  background: rgba(74, 124, 89, 0.08);
  color: var(--green-dark);
}

.nav-links a.active {
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 600;
}

.nav-cta {
  margin-top: 10px;
}

.external-icon {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  margin-left: 4px;
}

/* Desktop Navigation */
@media (min-width: 800px) {
  .hamburger {
    display: none;
  }

  nav {
    display: flex !important;
    border-top: none;
    padding: 0;
    flex: 1;
    justify-content: flex-end;
  }

  .nav-links {
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 10px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--green);
  color: white;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: 0;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(74, 124, 89, 0.25);
}

.btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.3);
}

.btn.wide {
  min-width: 220px;
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: var(--green-soft);
}

.btn-sm {
  padding: 12px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 18px 32px;
  font-size: 17px;
}

.btn-xl {
  padding: 22px 48px;
  font-size: 20px;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  padding: 60px 20px 50px;
  text-align: center;
  position: relative;
  margin: -1px -20px 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(74, 124, 89, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 17px;
  color: var(--green);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--green-soft);
}

h1 {
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.1;
  margin: 24px auto 18px;
  max-width: 20ch;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
}

h2 {
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  text-align: center;
}

h3 {
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.lead {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  max-width: 58ch;
  margin: 0 auto 30px;
  font-weight: 400;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section {
  padding: 40px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title p {
  color: var(--muted);
  font-size: 17px;
  max-width: 50ch;
  margin: 0 auto;
}

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(74, 124, 89, 0.08);
  border-radius: var(--card-radius);
  padding: 28px;
  box-shadow: var(--shadow-sleek);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(74, 124, 89, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-soft) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green);
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

/* Carousel Showcase - Zen stones background */
.carousel-showcase {
  background: url('NH_INSPIRE_1768618280539.jpg') center / cover no-repeat;
  border-radius: var(--sleek-radius);
  padding: 56px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sleek);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.carousel-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 58, 54, 0.5) 0%, rgba(74, 85, 104, 0.55) 100%);
  pointer-events: none;
}

/* Bamboo Background Carousel - for reviews */
.carousel-bamboo {
  background: url('NH_INSPIRE_4_1768618360181.webp') center / cover no-repeat;
  border-radius: var(--sleek-radius);
  padding: 56px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sleek);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.carousel-bamboo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.08) 0%, rgba(60, 95, 70, 0.12) 100%);
  pointer-events: none;
}

/* Full-width container for expanded carousels */
.full-width-container {
  width: 100%;
  max-width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.carousel-full-width {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  border-radius: var(--sleek-radius);
}

.hero-full-width {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.section-full-width {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.carousel-bamboo h2 {
  color: white;
  margin: 0 0 8px 0;
  font-size: 28px;
  position: relative;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.carousel-bamboo > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin: 0 0 24px 0;
  position: relative;
}

.carousel-bamboo .spotlight-nav button {
  background: transparent !important;
  backdrop-filter: none !important;
  border: none !important;
  color: white !important;
  box-shadow: none !important;
}

.carousel-bamboo .spotlight-nav button:hover {
  background: transparent !important;
  border: none !important;
  color: white !important;
  transform: scale(1.1);
}

.carousel-bamboo .spotlight-card {
  background: white !important;
  border: 1px solid #e0e0e0 !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: none;
  opacity: 0.95 !important;
}

.carousel-bamboo .spotlight-card:hover {
  background: white !important;
  opacity: 1 !important;
}

.carousel-bamboo .spotlight-card.active {
  background: white !important;
  border-color: #ccc !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  opacity: 1 !important;
}

.carousel-bamboo .review-text {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

.carousel-bamboo .review-header h4 {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
}

.carousel-showcase h2 {
  color: white;
  margin: 0 0 8px 0;
  font-size: 28px;
  position: relative;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-showcase > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin: 0;
  position: relative;
}

.carousel-showcase .spotlight-nav button {
  background: transparent !important;
  backdrop-filter: none !important;
  border: none !important;
  color: white !important;
  box-shadow: none !important;
}

.carousel-showcase .spotlight-nav button:hover {
  background: transparent !important;
  border: none !important;
  color: white !important;
  transform: scale(1.1);
}

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

.btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--green);
}

/* Social Links Row */
.social-links-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  transition: var(--transition);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.3px;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.social-link svg {
  width: 36px;
  height: 36px;
}

/* Big Green Section - Zen spa gradient */
.big-green {
  background: linear-gradient(135deg, var(--green) 0%, #5a9968 50%, var(--green-dark) 100%);
  border-radius: var(--sleek-radius);
  padding: 56px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sleek);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.big-green::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('NH_INSPIRE_2_1768618280539.webp') center / cover no-repeat;
  opacity: 0.12;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.big-green .inner-pill {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.big-green h2 {
  color: white;
  margin-bottom: 10px;
  position: relative;
}

.big-green p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
  position: relative;
}

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

.big-green .btn:hover {
  background: #f0f0f0;
}

/* Review Hub */
.review-hub {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.review-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.review-btn:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: var(--shadow-md);
}

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

/* Staff Profile */
.staff-profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

@media (min-width: 768px) {
  .staff-profile {
    grid-template-columns: 280px 1fr;
  }
}

.staff-image {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  border-radius: var(--card-radius);
  background: linear-gradient(135deg, var(--green-soft), var(--bg));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.staff-image-placeholder {
  color: var(--green);
}

.staff-info h1 {
  margin-bottom: 6px;
  text-align: left;
}

.staff-title {
  color: var(--green);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 16px;
}

.staff-bio {
  margin-bottom: 20px;
}

.staff-bio p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.staff-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.specialty-tag {
  padding: 8px 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
}

/* Reviews Carousel */
.reviews-section {
  padding: 40px 0;
  background: white;
}

.reviews-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.carousel-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.carousel-track:active {
  cursor: grabbing;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 86%;
  max-width: 86%;
  scroll-snap-align: start;
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .review-card {
    min-width: 46%;
    max-width: 46%;
  }
}

@media (min-width: 1024px) {
  .review-card {
    min-width: 31%;
    max-width: 31%;
  }
}

/* Infinite Marquee */
.marquee-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 120s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Spotlight Carousel (centered card with peek) - legacy */
.spotlight-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.spotlight-track {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.spotlight-card {
  flex: 0 0 300px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--card-radius);
  padding: 24px;
  box-shadow: var(--shadow-md);
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s ease;
}

.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sleek);
  border-color: rgba(74, 124, 89, 0.15);
}

.spotlight-card.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: var(--shadow-sleek);
  border-color: rgba(74, 124, 89, 0.1);
}

.spotlight-card .review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.spotlight-card .review-avatar {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.spotlight-card .review-meta h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.spotlight-card .review-date {
  font-size: 13px;
  color: var(--muted);
}

.spotlight-card .review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: #fbbf24;
}

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

.spotlight-card .review-text {
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
}

.spotlight-card .review-source {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.spotlight-card .review-source svg {
  width: 14px;
  height: 14px;
  color: #4285f4;
}

.spotlight-card .badge {
  margin-top: 14px;
}

.spotlight-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.spotlight-nav button {
  width: 50px;
  height: 50px;
  border-radius: 0;
  border: 0 !important;
  background: rgba(0,0,0,0) !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: white !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.spotlight-nav button:hover {
  border: 0 !important;
  color: white !important;
  background: rgba(0,0,0,0) !important;
  transform: scale(1.15);
}

.spotlight-nav button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.spotlight-nav button svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

@media (min-width: 640px) {
  .spotlight-card {
    flex: 0 0 380px;
  }
}

@media (min-width: 900px) {
  .spotlight-card {
    flex: 0 0 420px;
  }
}

/* Instagram Card Styles - Zen spa theme */
.ig-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.ig-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.96);
}

.ig-card.active {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.ig-card.active .ig-icon {
  color: var(--green-dark);
}

.ig-card.active .ig-title {
  color: var(--text);
}

.ig-card.active .ig-desc {
  color: var(--muted);
}

.ig-card.active .ig-link {
  background: var(--green);
  color: white;
}

.ig-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 14px;
  background: rgba(74, 124, 89, 0.1);
  border-radius: 50%;
}

.ig-card.active .ig-icon {
  background: rgba(74, 124, 89, 0.15);
}

.ig-icon svg {
  width: 36px;
  height: 36px;
}

.ig-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px 0;
  letter-spacing: -0.3px;
}

.ig-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  font-weight: 600;
  margin: 0 0 20px 0;
}

.ig-author {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  padding: 12px 20px;
  background: white;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(74, 124, 89, 0.12);
  transition: var(--transition);
}

.ig-card.active .ig-link {
  background: white;
  color: var(--green-dark);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.review-meta h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.review-date {
  font-size: 13px;
  color: var(--muted);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
  color: #fbbf24;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.reviews-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.reviews-nav button:hover {
  border-color: var(--green);
  color: var(--green);
}

.reviews-nav button svg {
  width: 20px;
  height: 20px;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.reviews-dot.active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(24, 169, 87, 0.12);
  color: #0a6f33;
  font-weight: 800;
  font-size: 12px;
}

/* Prose / Content */
.prose {
  max-width: 74ch;
  margin: 0 auto;
  color: #111827;
}

.prose p {
  color: #374151;
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 16px;
}

.prose strong {
  color: #111827;
}

.prose h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

/* Values List */
.values-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
}

.values-list svg {
  width: 26px;
  height: 26px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.values-list strong {
  display: block;
  font-size: 17px;
  margin-bottom: 4px;
}

.values-list p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Link Row */
.link-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
footer {
  padding: 40px 20px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: var(--max);
  margin: 0 auto 30px;
  text-align: left;
}

.footer-section h4 {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

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

.footer-links a {
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--green);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--green);
  color: white;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-4 {
  margin-top: 32px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-4 {
  margin-bottom: 32px;
}

/* Page Layout */
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet (768px and below) */
@media (max-width: 768px) {
  h1 {
    font-size: 40px;
    margin: 20px auto 14px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }

  .lead {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .header-inner {
    padding: 12px 16px;
  }

  .brand img {
    height: 70px;
  }

  .brand-title {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .hero {
    padding: 40px 16px 36px;
  }

  .pill {
    font-size: 14px;
    padding: 10px 18px;
  }

  .btn {
    padding: 14px 22px;
    font-size: 15px;
  }

  .btn-xl {
    padding: 18px 36px;
    font-size: 17px;
  }

  .btn.wide {
    min-width: 180px;
  }

  .full-width-container {
    padding: 0 12px;
  }

  .carousel-showcase,
  .carousel-bamboo {
    padding: 36px 16px;
    border-radius: 20px;
  }

  .social-links-row {
    gap: 20px;
    padding: 0 16px;
    justify-content: center;
  }

  .social-link {
    font-size: 28px;
    padding: 10px 16px;
  }

  .spotlight-card {
    flex: 0 0 260px;
    padding: 20px;
  }

  .big-green {
    padding: 36px 20px;
    border-radius: 20px;
  }

  .staff-info h1 {
    text-align: center;
  }

  .staff-title {
    text-align: center;
  }

  footer {
    padding: 30px 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }
}

/* Mobile (520px and below) */
@media (max-width: 520px) {
  h1 {
    font-size: 32px;
    line-height: 1.15;
    margin: 16px auto 12px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .lead {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .header-inner {
    padding: 10px 12px;
  }

  .brand {
    gap: 12px;
  }

  .brand img {
    height: 50px;
    border-radius: 8px;
  }

  .brand-title {
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .hero {
    padding: 28px 12px 24px;
  }

  .pill {
    font-size: 12px;
    padding: 8px 14px;
    flex-direction: column;
    gap: 4px;
  }

  .pill span {
    margin-left: 0 !important;
  }

  .btn {
    padding: 12px 18px;
    font-size: 14px;
  }

  .btn-xl {
    padding: 16px 28px;
    font-size: 16px;
  }

  .btn.wide {
    min-width: 160px;
  }

  .nav-links a {
    padding: 12px 14px;
    font-size: 15px;
  }

  .full-width-container {
    padding: 0 8px;
  }

  .carousel-showcase,
  .carousel-bamboo {
    padding: 28px 12px;
    border-radius: 16px;
  }

  .carousel-showcase h2,
  .carousel-bamboo h2 {
    font-size: 22px;
  }

  .carousel-showcase > p,
  .carousel-bamboo > p {
    font-size: 14px;
  }

  .social-links-row {
    flex-direction: column;
    gap: 12px;
    padding: 0 12px;
  }

  .social-link {
    font-size: 24px;
    padding: 8px 12px;
  }

  .spotlight-carousel {
    padding: 12px 0;
  }

  .spotlight-card {
    flex: 0 0 240px;
    padding: 18px;
    border-radius: 16px;
  }

  .spotlight-card .review-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .spotlight-card .review-avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .spotlight-card .review-meta h4 {
    font-size: 14px;
  }

  .spotlight-card .review-date {
    font-size: 12px;
  }

  .spotlight-card .review-text {
    font-size: 14px;
    line-height: 1.55;
  }

  .spotlight-nav {
    gap: 10px;
    margin-top: 16px;
  }

  .spotlight-nav button {
    width: 40px;
    height: 40px;
  }

  .spotlight-nav button svg {
    width: 18px;
    height: 18px;
  }

  .big-green {
    padding: 28px 16px;
    border-radius: 16px;
  }

  .big-green .inner-pill {
    font-size: 13px;
    padding: 10px 16px;
  }

  .ig-card {
    padding: 18px;
  }

  .ig-icon {
    width: 56px;
    height: 56px;
  }

  .ig-icon svg {
    width: 28px;
    height: 28px;
  }

  .ig-title {
    font-size: 18px;
  }

  .ig-desc {
    font-size: 14px;
  }

  .ig-link {
    font-size: 13px;
    padding: 10px 16px;
  }

  .staff-profile {
    gap: 20px;
  }

  .staff-image {
    max-width: 200px;
  }

  .staff-bio p {
    font-size: 15px;
  }

  .specialty-tag {
    padding: 6px 12px;
    font-size: 13px;
  }

  .section {
    padding: 28px 0;
  }

  .section-title p {
    font-size: 15px;
  }

  .card {
    padding: 20px;
    border-radius: 16px;
  }

  .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .review-hub {
    gap: 8px;
  }

  .review-btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  .prose p {
    font-size: 15px;
    line-height: 1.75;
  }

  .values-list li {
    padding: 16px;
    gap: 12px;
    border-radius: 16px;
  }

  .values-list svg {
    width: 22px;
    height: 22px;
  }

  .values-list strong {
    font-size: 15px;
  }

  .values-list p {
    font-size: 14px;
  }

  footer {
    padding: 24px 12px;
    margin-top: 28px;
  }

  .footer-section h4 {
    font-size: 14px;
  }

  .footer-links a {
    font-size: 13px;
  }
}

/* Extra small mobile (360px and below) */
@media (max-width: 360px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 20px;
  }

  .brand-title {
    font-size: 12px;
  }

  .brand img {
    height: 40px;
  }

  .btn-xl {
    padding: 14px 24px;
    font-size: 15px;
  }

  .social-link {
    font-size: 20px;
  }

  .spotlight-card {
    flex: 0 0 220px;
    padding: 14px;
  }
}

/* ========================================
   SERVICES PAGE STYLES
======================================== */

.services-filter-bar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(74, 124, 89, 0.12);
  border-radius: var(--sleek-radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}

.filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1px solid rgba(74, 124, 89, 0.2);
  border-radius: 12px;
  font-size: 15px;
  background: white;
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.sort-select {
  padding: 12px 16px;
  border: 1px solid rgba(74, 124, 89, 0.2);
  border-radius: 12px;
  font-size: 15px;
  background: white;
  cursor: pointer;
  min-width: 180px;
}

.sort-select:focus {
  outline: none;
  border-color: var(--green);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.filter-pill {
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  background: var(--green-light);
  color: var(--muted);
}

.filter-pill:hover {
  background: var(--green-soft);
}

.filter-pill.active {
  background: var(--green);
  color: white;
}

.clear-btn {
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  margin-left: auto;
}

.clear-btn:hover {
  color: var(--text);
}

.results-count {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(74, 124, 89, 0.1);
  border-radius: var(--sleek-radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.service-category-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.service-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.service-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
}

.service-price {
  font-weight: 600;
  color: var(--text);
}

.service-short {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-actions {
  display: flex;
  gap: 10px;
}

.service-btn-primary {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  background: var(--green);
  color: white;
}

.service-btn-primary:hover {
  background: var(--green-dark);
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: var(--green-light);
  border-radius: var(--sleek-radius);
}

.no-results p {
  color: var(--muted);
  margin-bottom: 16px;
}

/* About page styles */
.accent-warm-bg {
  background: rgba(201, 169, 98, 0.1);
}

/* Services page responsive */
@media (max-width: 768px) {
  .filter-row {
    flex-direction: column;
  }
  
  .search-input,
  .sort-select {
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .services-filter-bar {
    padding: 16px;
  }
  
  .filter-pills {
    gap: 6px;
  }
  
  .filter-pill {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .service-card {
    padding: 20px;
  }
}

/* ============================================
   iOS & Mobile Touch Optimizations
   ============================================ */

/* Ensure smooth animations on iOS */
.marquee-track {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

/* Touch-friendly tap targets */
@media (max-width: 768px) {
  .marquee-container {
    padding: 16px 0;
    -webkit-overflow-scrolling: touch;
  }
  
  .marquee-track {
    gap: 16px;
    animation-duration: 100s;
  }
  
  .spotlight-card {
    flex: 0 0 280px;
    min-height: auto;
  }
  
  /* Ensure buttons are touch-friendly (min 44px) */
  .btn,
  .hamburger,
  .nav-links a {
    min-height: 44px;
    min-width: 44px;
  }
}

@media (max-width: 520px) {
  .marquee-track {
    gap: 12px;
    animation-duration: 90s;
  }
  
  .spotlight-card {
    flex: 0 0 260px;
  }
  
  /* Tighter mask for smaller screens */
  .marquee-container {
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  }
}

/* Prevent text selection during scroll on iOS */
.marquee-container {
  -webkit-user-select: none;
  user-select: none;
}

/* Safe area insets for iPhone notch */
@supports (padding: env(safe-area-inset-bottom)) {
  footer {
    padding-bottom: calc(30px + env(safe-area-inset-bottom));
  }
  
  .header-inner {
    padding-top: env(safe-area-inset-top);
  }
}
