@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0f1a16;
  --surface: #121f1a;
  --surface-light: #16251f;
  --accent: #64d39a;
  --accent-dark: #2f8d66;
  --text: #e8f5ef;
  --muted: #b4c8bf;
  --highlight: #f4d58d;
  --white: #ffffff;
}

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

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #1a2c24 0%, #0b1411 55%, #090f0d 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(12, 20, 17, 0.8);
  border-bottom: 1px solid rgba(100, 211, 154, 0.2);
  overflow: visible;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.header-content > .primary-btn {
  display: inline-flex;
}

.nav-book-link {
  display: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  object-fit: contain;
}

.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.85rem;
}

.nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
}

.primary-btn,
.ghost-btn {
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #04110b;
  box-shadow: 0 12px 25px rgba(100, 211, 154, 0.2);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(100, 211, 154, 0.3);
}

.ghost-btn {
  border: 1px solid rgba(100, 211, 154, 0.35);
  color: var(--accent);
}

.hero {
  padding: 6rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.3rem, 3.6vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pill {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(100, 211, 154, 0.12);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-card {
  background: linear-gradient(160deg, rgba(100, 211, 154, 0.16), rgba(12, 20, 17, 0.6));
  border: 1px solid rgba(100, 211, 154, 0.2);
  border-radius: 24px;
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  justify-self: center;
}

.hero-card-content {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.hero-feature-layout {
  display: grid;
  grid-template-columns: 1fr;
  width: min(100%, 280px);
  margin: 0 auto;
  align-items: center;
}

.hero-feature-image {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #000;
  border-radius: 14px;
  border: 1px solid rgba(100, 211, 154, 0.2);
  margin: 0;
}

@media (max-width: 760px) {
  .hero-feature-layout {
    grid-template-columns: 1fr;
  }
}

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

.stat-number {
  font-weight: 700;
  font-size: 1.2rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 3.6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1.8rem;
}

.section-title p {
  color: var(--muted);
  margin-top: 0.5rem;
}

.pricing-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  align-items: start;
}

.pricing-category-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 2.5rem;
  margin-bottom: 0.4rem;
  padding: 0.6rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(100, 211, 154, 0.25);
  background: linear-gradient(135deg, rgba(100, 211, 154, 0.12), rgba(12, 20, 17, 0.6));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.pricing-category-header::after {
  content: '';
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, rgba(100, 211, 154, 0.6), transparent);
}

.pricing-category-header:first-of-type {
  margin-top: 0;
}

.pricing-subcategory-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.7rem;
  margin-bottom: 0.5rem;
  padding: 0;
  background: rgba(100, 211, 154, 0.08);
  border: 1px solid rgba(100, 211, 154, 0.18);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
}

.subcategory-label {
  width: 100%;
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pricing-subcategory-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.pricing-subcategory-header p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.price-card {
  background: linear-gradient(160deg, rgba(100, 211, 154, 0.08), rgba(12, 20, 17, 0.7));
  border: 1px solid rgba(100, 211, 154, 0.18);
  border-radius: 20px;
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.price-card:hover {
  transform: translateY(-2px);
  border-color: rgba(100, 211, 154, 0.45);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
}

.price-card.price-group {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.group-header-label {
  padding: 0.9rem 1rem;
  display: grid;
  gap: 0.5rem;
  width: 100%;
  text-align: left;
}

.group-header-label .price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent);
}

.group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.group-header h4 {
  font-size: 1.05rem;
  margin: 0;
}

.group-header-label .price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent);
}

.toggle-icon {
  font-size: 0.8rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.price-variants {
  display: grid;
  gap: 0.6rem;
  padding: 0.8rem 1rem 0.9rem;
  margin-top: 0.5rem;
  background: rgba(100, 211, 154, 0.06);
  border-top: 1px solid rgba(100, 211, 154, 0.12);
  border-radius: 0 0 16px 16px;
  max-height: 1000px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.price-variants.hidden {
  max-height: 0;
  padding: 0 1rem;
  margin-top: 0;
  border-color: transparent;
  opacity: 0;
  visibility: hidden;
}

.subcategory-services {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin-bottom: 0.8rem;
  max-height: 9999px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.subcategory-services.hidden {
  max-height: 0;
  margin-bottom: 0;
  opacity: 0;
  visibility: hidden;
}

.price-variant {
  background: rgba(12, 20, 17, 0.7);
  border: 1px solid rgba(100, 211, 154, 0.18);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.variant-name {
  font-size: 0.9rem;
  color: var(--text);
  flex: 1;
}

.price-variant .price {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.9rem;
  white-space: nowrap;
}

.price-card h4 {
  font-size: 1rem;
}

.price-card .price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
}

.muted {
  color: var(--muted);
  font-size: 0.8rem;
}

.service-image-btn {
  justify-self: start;
  background: transparent;
  border: 1px solid rgba(100, 211, 154, 0.28);
  color: var(--accent);
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.service-image-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(100, 211, 154, 0.6);
  background: rgba(100, 211, 154, 0.08);
}

.price-card.price-group .service-image-btn {
  margin: 0 1rem 0.9rem;
}

.service-image-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.service-image-modal.is-open {
  display: flex;
}

.service-image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 9, 8, 0.76);
  backdrop-filter: blur(5px);
}

.service-image-modal-content {
  position: relative;
  z-index: 1;
  width: min(1040px, 96vw);
  background: var(--surface-light);
  border: 1px solid rgba(100, 211, 154, 0.2);
  border-radius: 18px;
  padding: 1.2rem;
}

.service-image-modal-title {
  margin: 0 2.2rem 0.9rem 0;
  color: var(--accent);
  font-size: 1.05rem;
}

.service-image-modal-row {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.service-image-modal-item {
  width: min(300px, 42vw);
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(100, 211, 154, 0.2);
  background: #000;
  object-fit: cover;
  flex: 0 0 auto;
}

.service-image-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(100, 211, 154, 0.3);
  background: rgba(100, 211, 154, 0.08);
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.alt-section {
  background: rgba(255, 255, 255, 0.02);
}

#products {
  background: rgba(255, 255, 255, 0.01);
}

.products-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 2rem;
}

.products-filters {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 0.6rem 1.2rem;
  border: 2px solid rgba(100, 211, 154, 0.3);
  background: rgba(100, 211, 154, 0.05);
  color: var(--text);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Manrope', sans-serif;
}

.filter-btn:hover {
  border-color: rgba(100, 211, 154, 0.6);
  background: rgba(100, 211, 154, 0.12);
}

.filter-btn.active {
  border-color: var(--accent);
  background: rgba(100, 211, 154, 0.25);
  color: var(--accent);
  box-shadow: 0 0 12px rgba(100, 211, 154, 0.3);
}

.product-card {
  background: linear-gradient(160deg, rgba(100, 211, 154, 0.08), rgba(12, 20, 17, 0.7));
  border: 1px solid rgba(100, 211, 154, 0.18);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(100, 211, 154, 0.45);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.25);
}

.product-image {
  width: 100%;
  height: 160px;
  background: rgba(12, 20, 17, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.product-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.product-category {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card h4 {
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--text);
  margin: 0;
}

.product-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
}

.product-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 0.8rem;
}

.products-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.page-btn {
  background: rgba(12, 20, 17, 0.7);
  border: 1px solid rgba(100, 211, 154, 0.3);
  color: var(--text);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  min-width: 42px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-btn:hover {
  border-color: rgba(100, 211, 154, 0.7);
  color: var(--accent);
  transform: translateY(-1px);
}

.page-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #04110b;
  border-color: transparent;
  box-shadow: 0 12px 20px rgba(100, 211, 154, 0.25);
}

.products-footer {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid rgba(100, 211, 154, 0.15);
}

.products-footer p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.eco-section {
  background: linear-gradient(135deg, rgba(100, 211, 154, 0.08), rgba(12, 20, 17, 0.4));
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.eco-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.eco-list li::before {
  content: '✓';
  margin-right: 0.6rem;
  color: var(--accent);
}

.eco-card {
  background: var(--surface-light);
  border-radius: 22px;
  padding: 2rem;
  border: 1px solid rgba(100, 211, 154, 0.18);
}

.eco-badges {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.eco-badges span {
  background: rgba(100, 211, 154, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.team-section-label {
  margin: 2rem 0 1.5rem;
  text-align: center;
}

.team-section-label h3 {
  color: var(--accent);
  font-size: 1.3rem;
}

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

.team-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.6rem;
  text-align: center;
  border: 1px solid rgba(100, 211, 154, 0.12);
  display: grid;
  gap: 0.6rem;
  justify-items: center;
}

.team-more-btn {
  border: 1px solid rgba(100, 211, 154, 0.35);
  color: var(--accent);
  background: transparent;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.team-more-btn:hover {
  background: rgba(100, 211, 154, 0.12);
  transform: translateY(-1px);
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(100, 211, 154, 0.2);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Portrait image for team members */
.team-avatar {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(100,211,154,0.14);
  margin: 0 auto 0.6rem;
  display: block;
}

.team-email {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.team-email a {
  color: var(--accent);
}

.team-media {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 0.4rem;
}

.video-toggle {
  background: transparent;
  border: 1px solid rgba(100,211,154,0.25);
  color: var(--accent);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.profile-video {
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}

.video-popup-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.video-popup-modal.is-open {
  display: flex;
}

.video-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 9, 8, 0.78);
  backdrop-filter: blur(4px);
}

.video-popup-content {
  position: relative;
  z-index: 1;
  width: min(880px, 94vw);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(100, 211, 154, 0.25);
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
}

.video-popup-player {
  display: block;
  width: 100%;
  max-height: 80vh;
  background: #000;
}

.video-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 480px) {
  .team-avatar {
    width: 64px;
    height: 64px;
  }
}

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

.gallery-item {
  background: var(--surface);
  border-radius: 16px;
  padding: 2.4rem 1rem;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(100, 211, 154, 0.3);
}

.reviews {
  background: rgba(100, 211, 154, 0.04);
}

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

.review-card {
  background: var(--surface-light);
  border-radius: 18px;
  padding: 1.5rem;
}

.reviewer {
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 600;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.calendar-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: none;
  color: #1a1a1a;
}

.calendar-card h3 {
  color: #1a1a1a;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.day-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.day-btn {
  border: 1.5px solid #e5e7eb;
  background: #f9fafb;
  color: #374151;
  padding: 0.6rem;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.day-btn:hover {
  border-color: var(--accent);
  background: rgba(100, 211, 154, 0.08);
}

.day-btn.active {
  background: var(--accent);
  color: #07110d;
  font-weight: 600;
  border-color: var(--accent);
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 0.6rem;
}

.time-slot {
  padding: 10px;
  min-height: 44px;
  min-width: 80px;
  border-radius: 10px;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  color: #374151;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

.time-slot:hover {
  border-color: var(--accent);
  background: rgba(100, 211, 154, 0.08);
}

.time-slot.active {
  background: var(--accent);
  color: #07110d;
  font-weight: 600;
  border-color: var(--accent);
}

.booking-form {
  background: var(--surface);
  border-radius: 22px;
  padding: 2rem;
  border: 1px solid rgba(100, 211, 154, 0.2);
  display: grid;
  gap: 1rem;
}

.booking-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(100, 211, 154, 0.2);
  background: rgba(12, 20, 17, 0.6);
  color: var(--text);
}

.booking-form textarea {
  resize: vertical;
}

.booking-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.booking-success {
  margin-top: 0.5rem;
  color: var(--accent);
  font-weight: 600;
}

.booking-confirming {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
}

.booking-confirming-text {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.booking-spinner {
  width: 2.2rem;
  height: 2.2rem;
  border: 3px solid rgba(100, 211, 154, 0.25);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: booking-spin 0.8s linear infinite;
}

@keyframes booking-spin {
  to { transform: rotate(360deg); }
}

.booking-error-text {
  color: #ff6b6b;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.contact-card {
  background: var(--surface);
  padding: 1.8rem;
  border-radius: 20px;
  border: 1px solid rgba(100, 211, 154, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  color: #64d39a;
  background: rgba(100, 211, 154, 0.08);
  border: 1px solid rgba(100, 211, 154, 0.25);
  transition: background 0.2s ease, color 0.2s ease;
  width: fit-content;
}

.social-link:hover {
  background: rgba(100, 211, 154, 0.18);
  color: #8ee8b8;
}

.social-icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.footer {
  padding: 2rem 0;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(100, 211, 154, 0.2);
}

.team-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.team-modal.is-open {
  display: flex;
}

.team-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 9, 8, 0.7);
  backdrop-filter: blur(6px);
}

.team-modal-content {
  position: relative;
  width: min(520px, 92vw);
  background: var(--surface-light);
  border-radius: 20px;
  border: 1px solid rgba(100, 211, 154, 0.2);
  padding: 2rem;
  z-index: 1;
  display: grid;
  gap: 0.8rem;
}

.team-modal-role {
  color: var(--accent);
  font-weight: 600;
}

.team-modal-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.team-modal-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.team-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(100, 211, 154, 0.25);
  background: rgba(100, 211, 154, 0.1);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ── Nav Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-dropdown-label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-dropdown > .nav-dropdown-label:hover {
  color: var(--accent);
}

.nav-dropdown-arrow {
  font-size: 0.55rem;
  transition: transform 0.25s;
}

.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  background: rgba(18, 31, 26, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(100, 211, 154, 0.22);
  border-radius: 14px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.22s, visibility 0.22s, transform 0.22s;
  z-index: 100;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

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

.nav-dropdown-menu a {
  padding: 0.55rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(100, 211, 154, 0.12);
  color: var(--accent);
}

/* ── Keune Page Styles ── */
.keune-hero {
  padding: 4rem 0 2rem;
  text-align: center;
}

.keune-hero h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.keune-hero p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.keune-brand-strip {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.keune-brand-img {
  width: min(280px, 30vw);
  border-radius: 16px;
  border: 1px solid rgba(100, 211, 154, 0.15);
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.keune-brand-img:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(100, 211, 154, 0.4);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.keune-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.keune-card {
  background: linear-gradient(160deg, rgba(100, 211, 154, 0.06), rgba(12, 20, 17, 0.75));
  border: 1px solid rgba(100, 211, 154, 0.15);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.keune-card:hover {
  transform: translateY(-6px);
  border-color: rgba(100, 211, 154, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.keune-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: linear-gradient(135deg, #0d1a14, #0f1f18);
  padding: 1.2rem;
  transition: transform 0.4s ease;
}

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

.keune-card-body {
  padding: 1.2rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.keune-card-body h4 {
  font-size: 1.05rem;
  color: var(--text);
  margin: 0;
}

.keune-card-cat {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.keune-card-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.keune-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s, transform 0.3s;
}

.keune-card:hover .keune-card-badge {
  opacity: 1;
  transform: translateX(0);
}

/* Keune detail modal */
.keune-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10002;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.keune-modal.is-open {
  display: flex;
}

.keune-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 9, 8, 0.82);
  backdrop-filter: blur(8px);
}

.keune-modal-body {
  position: relative;
  z-index: 1;
  max-width: min(720px, 94vw);
  max-height: 90vh;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(100, 211, 154, 0.2);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.keune-modal-scroll {
  overflow-y: auto;
  max-height: 90vh;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.keune-modal-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
}

.keune-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.keune-modal-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Subproducts table */
.keune-modal-subproducts {
  padding: 0 1.5rem 1.5rem;
}

.keune-sub-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.keune-sub-table thead th {
  text-align: left;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgba(100, 211, 154, 0.2);
}

.keune-sub-table tbody tr {
  transition: background 0.2s;
}

.keune-sub-table tbody tr:hover {
  background: rgba(100, 211, 154, 0.06);
}

.keune-sub-table tbody td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

.keune-sub-name {
  color: #fff;
  font-weight: 500;
  font-size: 0.88rem;
}

.keune-sub-name-mn {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.keune-sub-vol {
  color: var(--muted);
  white-space: nowrap;
  font-size: 0.85rem;
}

.keune-sub-price {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.95rem;
  text-align: right;
}

.keune-modal-image-wrap {
  line-height: 0;
}

.keune-modal-body img {
  display: block;
  width: 100%;
  height: auto;
}

.keune-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.keune-modal-close:hover {
  background: rgba(100, 211, 154, 0.3);
}

/* Keune overall poster */
.keune-poster {
  text-align: center;
  padding: 2rem 0 0;
}

.keune-poster h3 {
  margin-bottom: 1.2rem;
  color: var(--accent);
}

.keune-poster img {
  width: min(900px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(100, 211, 154, 0.15);
}

@media (max-width: 900px) {
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(12, 20, 17, 0.97);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(100, 211, 154, 0.2);
    border-bottom: 1px solid rgba(100, 211, 154, 0.2);
    padding: 0.75rem 1.5rem 1rem;
    gap: 0;
    z-index: 100;
  }
  .nav.nav-open {
    display: flex;
  }
  .nav.nav-open > a,
  .nav.nav-open > .nav-dropdown > .nav-dropdown-label {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(100, 211, 154, 0.1);
    font-size: 1rem;
    color: var(--muted);
  }
  .nav.nav-open > a:hover,
  .nav.nav-open > .nav-dropdown > .nav-dropdown-label:hover {
    color: var(--accent);
  }
  .nav.nav-open > .nav-dropdown {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(100, 211, 154, 0.1);
  }
  .nav.nav-open .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0.5rem 1rem;
    border: none;
    background: transparent;
    min-width: unset;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(100, 211, 154, 0.4);
    border-radius: 8px;
    color: var(--text, #e8f5ef);
    font-size: 1.4rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    transition: border-color 0.2s, color 0.2s;
    margin-left: auto;
  }
  .nav-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
  }
  .header-content > .primary-btn {
    display: none;
  }
  .nav.nav-open > .nav-book-link {
    display: block;
    margin-top: 0.5rem;
    padding: 0.65rem 1.25rem;
    border: 1px solid var(--accent);
    border-radius: 8px;
    background: rgba(100, 211, 154, 0.12);
    color: var(--accent) !important;
    font-weight: 600;
    text-align: center;
  }
  .nav.nav-open > .nav-book-link:hover {
    background: rgba(100, 211, 154, 0.25);
  }
}

@media (max-width: 600px) {
  .keune-modal-header {
    padding: 1.5rem 1rem 0.75rem;
  }
  .keune-modal-title {
    font-size: 1.2rem;
  }
  .keune-modal-subproducts {
    padding: 0 0.75rem 1rem;
  }
  .keune-sub-table {
    font-size: 0.8rem;
  }
  .keune-sub-table thead th {
    font-size: 0.7rem;
    padding: 0.5rem 0.4rem;
  }
  .keune-sub-table tbody td {
    padding: 0.5rem 0.4rem;
  }
  .keune-sub-name {
    font-size: 0.8rem;
  }
  .keune-sub-name-mn {
    font-size: 0.7rem;
  }
  .keune-sub-price {
    font-size: 0.85rem;
  }
}
