@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@200;300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Colors */
  --primary-green: #1F3D2B;
  --primary-green-light: #2E5339;
  --primary-green-opaque: rgba(31, 61, 43, 0.95);
  --accent-gold: #C9A15C;
  --accent-gold-light: #D4AF6A;
  --accent-gold-dark: #A88241;
  --accent-gold-gradient: linear-gradient(135deg, #C9A15C 0%, #F3DCA9 50%, #C9A15C 100%);
  --accent-gold-glow: rgba(201, 161, 92, 0.4);
  --bg-cream: #F5F0E6;
  --bg-cream-light: #FAF6EC;
  --text-charcoal: #2B2B2B;
  --text-light-charcoal: #4A4A4A;
  --text-white: #FFFFFF;
  --border-gold-subtle: rgba(201, 161, 92, 0.25);
  --border-gold: rgba(201, 161, 92, 0.5);

  /* Fonts */
  --font-serif-heading: 'Playfair Display', serif;
  --font-serif-display: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;

  /* Design Tokens */
  --shadow-subtle: 0 10px 30px rgba(31, 61, 43, 0.03);
  --shadow-medium: 0 15px 40px rgba(31, 61, 43, 0.06);
  --shadow-luxury: 0 20px 50px rgba(31, 61, 43, 0.1);
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
  --border-radius-pill: 50px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-cream-light);
  color: var(--text-charcoal);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-green-light);
}

/* Watermarks & Background Textures */
.watermark-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.04;
  z-index: 1;
  background-size: 300px 300px;
  background-repeat: repeat;
}

.watermark-bamboo {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M20,95 Q40,65 50,45 Q55,35 60,15 Q55,28 48,43 Q38,60 20,95 Z' fill='%231F3D2B'/%3E%3Cpath d='M25,95 Q48,70 60,52 Q72,35 80,10 Q74,27 63,50 Q50,70 25,95 Z' fill='%231F3D2B'/%3E%3Cpath d='M40,95 Q55,80 65,68 Q75,56 90,38 Q82,50 72,66 Q62,80 40,95 Z' fill='%231F3D2B'/%3E%3C/svg%3E");
}

.watermark-lotus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cpath d='M60,20 Q65,45 60,70 Q55,45 60,20 Z' fill='%231F3D2B'/%3E%3Cpath d='M60,20 Q78,40 68,68 Q58,68 48,68 Q38,40 60,20 Z' fill='none' stroke='%231F3D2B' stroke-width='0.5'/%3E%3Cpath d='M60,35 Q90,50 70,80 Q50,80 30,50 Q60,35 60,35 Z' fill='none' stroke='%231F3D2B' stroke-width='0.5'/%3E%3Cpath d='M60,50 Q105,70 75,90 Q45,90 15,70 Q60,50 60,50 Z' fill='none' stroke='%231F3D2B' stroke-width='0.5'/%3E%3C/svg%3E");
}

/* Typography & Layout */
h1, h2, h3, h4 {
  font-family: var(--font-serif-heading);
  font-weight: 400;
  color: var(--primary-green);
  line-height: 1.3;
}

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

.uppercase-track {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
}

section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Custom Dividers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.section-header .tagline {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  gap: 15px;
}

.gold-divider .line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, rgba(201, 161, 92, 0) 0%, var(--accent-gold) 50%, rgba(201, 161, 92, 0) 100%);
}

.gold-divider .dots {
  color: var(--accent-gold);
  font-size: 1.2rem;
  letter-spacing: 5px;
  line-height: 1;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-medium);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--bg-cream-light);
  box-shadow: 0 4px 15px rgba(31, 61, 43, 0.15);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-green);
  border-color: var(--primary-green);
  box-shadow: 0 8px 25px rgba(31, 61, 43, 0.1);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent-gold-gradient);
  color: var(--primary-green);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(201, 161, 92, 0.2);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 161, 92, 0.4), 0 0 10px rgba(243, 220, 169, 0.6);
}

.btn-outline {
  border: 1px solid var(--accent-gold);
  color: var(--primary-green);
  background-color: transparent;
}

.btn-outline:hover {
  background: var(--accent-gold-gradient);
  color: var(--primary-green);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 161, 92, 0.2);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-medium);
  padding: 25px 0;
}

header.scrolled {
  background-color: rgba(245, 240, 230, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 4px 30px rgba(31, 61, 43, 0.05);
  border-bottom: 1px solid rgba(201, 161, 92, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  width: auto;
  border-radius: 0;
  border: none;
  background-color: transparent;
  padding: 0;
  transition: var(--transition-medium);
}

header.scrolled .nav-logo img {
  height: 44px;
}

.nav-logo .nav-brand-text {
  display: none;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: var(--font-serif-heading);
  font-size: 1.3rem;
  color: var(--primary-green);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-brand-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-charcoal);
  transition: var(--transition-fast);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-medium);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary-green-light);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.75rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary-green);
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding-top: 100px;
  background-color: var(--bg-cream);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(245, 240, 230, 0.4) 0%, rgba(245, 240, 230, 0.85) 100%);
  z-index: 2;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  padding: 0 20px;
}

.hero-logo-container {
  display: inline-block;
  margin-bottom: 25px;
  animation: fadeInDown 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-logo {
  max-width: 520px;
  height: auto;
  border-radius: 0;
  border: none;
  background-color: transparent;
  padding: 0;
  box-shadow: none;
}

.hero-title,
.hero-tagline {
  display: none;
}

.hero-title {
  font-family: var(--font-serif-heading);
  font-size: 4rem;
  letter-spacing: 0.05em;
  color: var(--primary-green);
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: 400;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-tagline {
  font-family: var(--font-sans);
  color: var(--accent-gold-dark);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-actions {
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--primary-green-light);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition-medium);
}

.scroll-down:hover {
  color: var(--accent-gold);
}

.scroll-down svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  animation: bounce 2s infinite;
}

/* About Us Section */
.about {
  background-color: var(--bg-cream-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-text-content {
  padding-right: 20px;
}

.about-tagline {
  color: var(--accent-gold-dark);
  margin-bottom: 10px;
  font-weight: 500;
}

.about-title {
  font-size: 2.8rem;
  margin-bottom: 25px;
}

.about-story {
  margin-bottom: 30px;
  font-size: 1.05rem;
  color: var(--text-light-charcoal);
  font-family: var(--font-serif-display);
  font-style: italic;
}

.about-desc {
  color: var(--text-charcoal);
  margin-bottom: 35px;
  font-size: 0.95rem;
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-feature-icon {
  background-color: rgba(31, 61, 43, 0.06);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(201, 161, 92, 0.2);
}

.about-feature-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-gold);
}

.about-feature-text h4 {
  font-family: var(--font-serif-heading);
  font-size: 1.1rem;
  color: var(--primary-green);
  margin-bottom: 5px;
}

.about-feature-text p {
  font-size: 0.8rem;
  color: var(--text-light-charcoal);
  line-height: 1.5;
}

.about-img-container {
  position: relative;
}

.about-img-frame {
  border-radius: var(--border-radius-lg);
  padding: 12px;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-gold-subtle);
  box-shadow: var(--shadow-luxury);
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: var(--transition-medium);
}

.about-img-frame:hover {
  border-color: var(--accent-gold);
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--border-radius-lg) - 10px);
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.about-img-frame:hover .about-img {
  transform: scale(1.03);
}

.about-badge {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: var(--primary-green);
  color: var(--bg-cream-light);
  padding: 30px 25px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--accent-gold);
  z-index: 3;
  text-align: center;
  box-shadow: var(--shadow-luxury);
}

.about-badge .years {
  font-family: var(--font-serif-heading);
  font-size: 2rem;
  color: var(--accent-gold);
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}

.about-badge .label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
}

/* Services Section */
.services {
  background-color: var(--bg-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background-color: var(--bg-cream-light);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gold-gradient);
  opacity: 0;
  transition: var(--transition-medium);
}

.service-card-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  margin-bottom: 25px;
  border: 1px solid rgba(201, 161, 92, 0.15);
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(31, 61, 43, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--border-gold-subtle);
  transition: var(--transition-medium);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary-green);
  transition: var(--transition-medium);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--primary-green);
  transition: var(--transition-fast);
}

.service-price {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--accent-gold-dark);
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

/* Service Price Highlights */
.service-price-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  width: 100%;
}

.price-pill {
  background-color: rgba(201, 161, 92, 0.08);
  border: 1px solid rgba(201, 161, 92, 0.35);
  border-radius: 20px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.price-pill:hover {
  background-color: rgba(201, 161, 92, 0.15);
  border-color: rgba(201, 161, 92, 0.6);
  transform: translateY(-1px);
}

.pill-duration {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light-charcoal);
  font-weight: 600;
  opacity: 0.8;
}

.pill-amount {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-gold-dark);
}

.service-duration {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(31, 61, 43, 0.06);
  border: 1px solid rgba(31, 61, 43, 0.12);
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.service-duration:hover {
  background-color: rgba(31, 61, 43, 0.1);
  border-color: rgba(31, 61, 43, 0.25);
  transform: translateY(-1px);
}

.service-duration svg {
  width: 14px;
  height: 14px;
  fill: var(--primary-green);
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-light-charcoal);
  margin-bottom: 25px;
  line-height: 1.7;
}

.service-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-green);
}

/* Hide bottom duration footer for non-membership cards */
.service-card:not([data-category="membership"]) .service-footer {
  display: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--accent-gold);
}

.service-card:hover::before {
  opacity: 1;
}

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

.service-card:hover .service-icon {
  background-color: var(--primary-green);
  border-color: transparent;
}

.service-card:hover .service-icon svg {
  fill: var(--bg-cream-light);
}

.services-more {
  text-align: center;
  margin-top: 30px;
}

/* Gallery Section */
.gallery {
  background-color: var(--bg-cream-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  padding: 8px;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-gold-subtle);
  transition: var(--transition-medium);
  aspect-ratio: 1 / 1;
}

.gallery-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: calc(var(--border-radius-md) - 6px);
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 61, 43, 0.85);
  opacity: 0;
  transition: var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  color: var(--bg-cream-light);
  z-index: 2;
}

.gallery-overlay h4 {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 8px;
  transform: translateY(15px);
  transition: var(--transition-medium);
}

.gallery-overlay p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transform: translateY(20px);
  transition: var(--transition-medium);
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-medium);
}

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

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

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--primary-green);
  color: var(--bg-cream-light);
  padding: 120px 20px;
}

.testimonials .section-header h2 {
  color: var(--bg-cream-light);
}

.testimonials .section-header .tagline {
  color: var(--accent-gold-light);
}

.testimonials .gold-divider .line {
  background: linear-gradient(90deg, rgba(245, 240, 230, 0) 0%, var(--accent-gold-light) 50%, rgba(245, 240, 230, 0) 100%);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 350px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  width: 300%;
}

.testimonial-slide {
  width: 33.333%;
  padding: 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quote-icon {
  font-size: 5rem;
  font-family: var(--font-serif-heading);
  color: var(--accent-gold-light);
  line-height: 1;
  opacity: 0.3;
  margin-bottom: -15px;
}

.quote-text {
  font-family: var(--font-serif-display);
  font-size: 1.7rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 25px;
}

.quote-author {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold-light);
}

.quote-location {
  font-size: 0.65rem;
  color: rgba(245, 240, 230, 0.6);
  margin-top: 5px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(245, 240, 230, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background-color: var(--accent-gold-light);
  transform: scale(1.3);
}

/* Contact / Booking Section */
.booking {
  background-color: var(--bg-cream-light);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}

.booking-form-container {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-luxury);
}

.booking-form-container h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--primary-green-light);
}

input, select, textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(31, 61, 43, 0.12);
  background-color: var(--bg-cream-light);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-charcoal);
  transition: var(--transition-medium);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(201, 161, 92, 0.15);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.booking-info-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 35px;
}

.info-card {
  display: flex;
  gap: 20px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-gold-dark);
}

.info-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.info-text h4 {
  font-size: 1.15rem;
  color: var(--primary-green);
  margin-bottom: 6px;
}

.info-text p {
  font-size: 0.85rem;
  color: var(--text-light-charcoal);
  line-height: 1.6;
}

.map-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold-subtle);
  height: 240px;
  position: relative;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
}

.map-card:hover {
  border-color: var(--accent-gold);
}

.map-placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(90%) sepia(20%) hue-rotate(80deg);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 61, 43, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin {
  background: var(--bg-cream-light);
  border: 1.5px solid var(--accent-gold);
  padding: 10px 18px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--primary-green);
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: pulse 2.5s infinite;
}

.map-pin svg {
  width: 12px;
  height: 12px;
  fill: var(--accent-gold-dark);
}

/* Success Modal / State */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 61, 43, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-medium);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--bg-cream-light);
  border: 1px solid var(--accent-gold);
  border-radius: var(--border-radius-lg);
  padding: 50px 40px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-luxury);
  transform: scale(0.9);
  transition: var(--transition-medium);
}

.modal.active .modal-content {
  transform: scale(1);
}

.success-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(31, 61, 43, 0.06);
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.modal-content h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.modal-content p {
  font-size: 0.9rem;
  color: var(--text-light-charcoal);
  margin-bottom: 30px;
}

/* Footer */
footer {
  background-color: var(--primary-green);
  color: var(--bg-cream-light);
  padding: 80px 20px 30px;
  border-top: 2px solid var(--accent-gold);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  margin-bottom: 25px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  border-radius: 8px;
  background-color: var(--bg-cream-light);
  padding: 8px 16px;
  border: 1px solid rgba(201, 161, 92, 0.35);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.footer-logo img:hover {
  border-color: rgba(201, 161, 92, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.footer-logo .nav-brand-text {
  display: none;
}

.footer-logo .nav-brand-name {
  color: var(--bg-cream-light);
  font-size: 1.6rem;
}

.footer-logo .nav-brand-sub {
  color: var(--accent-gold-light);
}

.footer-about-text {
  font-size: 0.85rem;
  color: rgba(245, 240, 230, 0.7);
  line-height: 1.7;
}

.footer-title {
  font-size: 1.2rem;
  color: var(--accent-gold-light);
  margin-bottom: 25px;
  letter-spacing: 0.05em;
  font-family: var(--font-serif-heading);
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--accent-gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(245, 240, 230, 0.7);
  font-size: 0.85rem;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-gold-light);
  transform: translateX(5px);
}

.footer-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(245, 240, 230, 0.7);
}

.footer-hours-list span {
  float: right;
  color: var(--accent-gold-light);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(245, 240, 230, 0.06);
  border: 1px solid rgba(245, 240, 230, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-cream-light);
  text-decoration: none;
  transition: var(--transition-medium);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon:hover {
  background-color: var(--accent-gold-light);
  color: var(--primary-green);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 230, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(245, 240, 230, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: rgba(245, 240, 230, 0.5);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--bg-cream-light);
}

/* Animations Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 161, 92, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(201, 161, 92, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 161, 92, 0);
  }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .about-grid, .booking-grid {
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 15px;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  /* Navigation */
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-green-opaque);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: var(--transition-medium);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(31, 61, 43, 0.15);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    color: var(--bg-cream-light);
    font-size: 0.9rem;
  }
  
  .nav-cta {
    display: none; /* Move to mobile nav or show outline style */
  }

  /* Hamburger transform when menu active */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--bg-cream-light);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: var(--bg-cream-light);
  }
  
  /* Hero */
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
  }
  
  /* About Grid */
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-text-content {
    padding-right: 0;
  }
  .about-badge {
    bottom: -15px;
    left: 15px;
  }
  
  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  /* Gallery Grid */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Booking Grid */
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .booking-form-container {
    padding: 30px 20px;
  }
  
  /* Footer Grid */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .about-badge {
    position: static;
    margin-top: 20px;
    border-radius: var(--border-radius-md);
  }
}

/* ==========================================================================
   Multi-Page Specific Layouts
   ========================================================================== */

.nav-link.active {
  color: var(--primary-green-light);
}

.nav-link.active::after {
  width: 80%;
}

/* Page Header Banner */
.page-header {
  background-color: var(--bg-cream);
  padding: 160px 20px 80px;
  text-align: center;
  border-bottom: 1px solid var(--border-gold-subtle);
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-size: 3.5rem;
  color: var(--primary-green);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.page-header .breadcrumbs {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold-dark);
  margin-top: 15px;
}

.page-header .breadcrumbs a {
  color: var(--text-charcoal);
  text-decoration: none;
  transition: var(--transition-fast);
}

.page-header .breadcrumbs a:hover {
  color: var(--accent-gold);
}

.page-header .breadcrumbs span {
  margin: 0 10px;
  color: var(--accent-gold);
}

/* Sub-page layouts */
.sub-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.sub-intro p {
  font-size: 1.15rem;
  font-family: var(--font-serif-display);
  font-style: italic;
  color: var(--text-light-charcoal);
  line-height: 1.8;
}

/* Filter Controls */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

.filter-btn {
  padding: 12px 28px;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--border-radius-pill);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-medium);
  color: var(--text-charcoal);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-gold-gradient);
  color: var(--primary-green);
  border-color: transparent;
  box-shadow: var(--shadow-medium);
}

/* Visibility toggling */
.gallery-item.hidden, .service-card.hidden {
  display: none !important;
}

/* Stars Rating */
.stars {
  color: var(--accent-gold-light);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.stars.interactive span {
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.stars.interactive span.active {
  color: var(--accent-gold-light);
}

/* Service Detail lists */
.service-detail-list {
  list-style: none;
  margin-top: 18px;
  text-align: left;
  width: 100%;
}

.service-detail-list li {
  font-size: 0.8rem;
  margin-bottom: 8px;
  color: var(--text-light-charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-detail-list li svg {
  width: 12px;
  height: 12px;
  fill: var(--accent-gold);
  flex-shrink: 0;
}

/* Testimonial Page Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.review-card {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-subtle);
  position: relative;
  transition: var(--transition-medium);
}

.review-card:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-medium);
}

.review-card h4 {
  font-family: var(--font-serif-heading);
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: var(--primary-green);
}

.review-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-charcoal);
}

/* Ingredients Section style */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.ingredient-card {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--border-radius-md);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition-medium);
}

.ingredient-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.ingredient-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(31, 61, 43, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid var(--border-gold-subtle);
  transition: var(--transition-medium);
}

.ingredient-card:hover .ingredient-icon-wrap {
  background-color: var(--primary-green);
  border-color: transparent;
}

.ingredient-icon-wrap svg {
  width: 32px;
  height: 32px;
  fill: var(--accent-gold-dark);
  transition: var(--transition-medium);
}

.ingredient-card:hover .ingredient-icon-wrap svg {
  fill: var(--bg-cream-light);
}

.ingredient-card h4 {
  font-family: var(--font-serif-heading);
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary-green);
}

.ingredient-card p {
  font-size: 0.8rem;
  color: var(--text-light-charcoal);
  line-height: 1.5;
}

/* Testimonial Submission Form Container */
.submit-review-container {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-luxury);
  margin-top: 80px;
}

.submit-review-container h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Responsive adjust for new subpage designs */
@media (max-width: 1024px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 120px 15px 50px;
  }
  .page-header h1 {
    font-size: 2.5rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .submit-review-container {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .ingredients-grid {
    grid-template-columns: 1fr;
  }
  .filter-btn {
    padding: 8px 20px;
    font-size: 0.75rem;
  }
}

/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 35px;
  right: 35px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  background-color: #20BA5A;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 6px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #FFFFFF;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 25px;
    right: 25px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}


