/* ===================================================================
   SERENITY WELLNESS SPA - Tranquil, Luxurious & Healing
   =================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  /* Colors */
  --primary: #9CAF88;
  --primary-dark: #7A8F6A;
  --primary-light: #B8C9A8;
  --secondary: #D4A5A5;
  --secondary-dark: #C08E8E;
  --secondary-light: #E8C4C4;
  --accent: #C9A962;
  --accent-dark: #A88B4A;
  --accent-light: #DCC48A;
  --cream: #FDF8F3;
  --cream-dark: #F5EDE3;
  --plum: #4A3C4A;
  --plum-light: #6B5A6B;
  --white: #FFFFFF;
  --gray-light: #F7F4F0;
  --gray: #8B8589;
  --gray-dark: #5C5559;
  --text: #3D3539;
  --text-light: #6B6167;

  /* Typography */
  --font-heading: 'Cormorant Infant', Georgia, serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-padding: 6rem 0;
  --container-width: 1200px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(74, 60, 74, 0.06);
  --shadow-md: 0 4px 20px rgba(74, 60, 74, 0.08);
  --shadow-lg: 0 8px 40px rgba(74, 60, 74, 0.12);
  --shadow-glow: 0 0 40px rgba(156, 175, 136, 0.2);

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-gentle: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--plum);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding);
}

.section-cream {
  background: var(--cream);
}

.section-white {
  background: var(--white);
}

.section-sage {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.section-plum {
  background: var(--plum);
}

.section-plum h2,
.section-plum h3,
.section-plum p {
  color: var(--cream);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header .overline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1.5rem;
}

.section-header p {
  font-size: 1.125rem;
}

/* --- Curved Dividers --- */
.curve-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
}

.curve-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.curve-divider-top {
  transform: rotate(180deg);
}

.curve-cream {
  fill: var(--cream);
}

.curve-white {
  fill: var(--white);
}

.curve-sage {
  fill: var(--primary-light);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--plum);
  color: var(--cream);
}

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

.btn-outline-light:hover {
  background: var(--cream);
  color: var(--plum);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 0.9375rem;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 60, 74, 0.08);
  transition: var(--transition-normal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--plum);
  letter-spacing: -0.02em;
}

.logo-text span {
  display: block;
  font-size: 0.625rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: -2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--plum);
}

.header-cta .btn {
  padding: 0.75rem 1.5rem;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, var(--secondary-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(156, 175, 136, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(212, 165, 165, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.hero-overline::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--primary);
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero h1 span {
  font-style: normal;
  color: var(--primary-dark);
}

.hero-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image-main {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-image-accent {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.hero-image-accent span {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.hero-image-accent small {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.25rem;
}

/* Floating elements */
.floating-leaf {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--primary);
  opacity: 0.15;
  border-radius: 0 50% 50% 50%;
  transform: rotate(45deg);
  animation: float 6s ease-in-out infinite;
}

.floating-leaf:nth-child(1) {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.floating-leaf:nth-child(2) {
  top: 60%;
  right: 5%;
  width: 40px;
  height: 40px;
  animation-delay: 2s;
}

.floating-leaf:nth-child(3) {
  bottom: 20%;
  left: 45%;
  width: 30px;
  height: 30px;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(-20px);
  }
}

/* --- Services Overview --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-gentle);
  border: 1px solid rgba(74, 60, 74, 0.05);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.service-icon svg {
  width: 36px;
  height: 36px;
  color: var(--primary-dark);
  transition: var(--transition-normal);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-dark);
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

.service-link:hover {
  color: var(--plum);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* --- Featured Package --- */
.featured-package {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.featured-image {
  position: relative;
}

.featured-image-main {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.featured-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.featured-content .overline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.featured-content h2 {
  margin-bottom: 1.5rem;
}

.featured-content > p {
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

.featured-includes {
  margin-bottom: 2rem;
}

.featured-includes h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 1rem;
}

.featured-includes ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.featured-includes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text);
}

.featured-includes li svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.featured-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.featured-price .amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--plum);
}

.featured-price .duration {
  font-size: 0.9375rem;
  color: var(--gray);
}

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  background: rgba(253, 248, 243, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(253, 248, 243, 0.2);
}

.why-icon svg {
  width: 32px;
  height: 32px;
  color: var(--cream);
}

.why-item h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.why-item p {
  font-size: 0.9375rem;
  color: rgba(253, 248, 243, 0.8);
  line-height: 1.6;
}

/* --- Team Preview --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.team-card {
  text-align: center;
}

.team-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.team-image::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.team-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  display: block;
}

.team-card p {
  font-size: 0.9375rem;
  max-width: 280px;
  margin: 0 auto;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--primary-light);
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
  border-radius: 50%;
}

.testimonial-info h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 0.125rem;
}

.testimonial-info span {
  font-size: 0.8125rem;
  color: var(--gray);
}

/* --- Gift Certificates --- */
.gift-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gift-content .overline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.gift-content h2 {
  margin-bottom: 1.5rem;
}

.gift-content > p {
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

.gift-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.gift-option {
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  text-align: center;
  transition: var(--transition-normal);
  cursor: pointer;
}

.gift-option:hover,
.gift-option.selected {
  border-color: var(--accent);
  background: rgba(201, 169, 98, 0.05);
}

.gift-option span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--plum);
}

.gift-option small {
  font-size: 0.75rem;
  color: var(--gray);
}

.gift-visual {
  position: relative;
}

.gift-card-preview {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.gift-card-preview::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.2) 0%, transparent 70%);
}

.gift-card-preview h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.5rem;
  position: relative;
}

.gift-card-preview p {
  font-size: 0.875rem;
  color: rgba(253, 248, 243, 0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}

.gift-ribbon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.gift-ribbon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--plum);
  color: var(--cream);
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(253, 248, 243, 0.1);
}

.footer-brand .logo-text {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.footer-brand .logo-text span {
  color: rgba(253, 248, 243, 0.7);
}

.footer-brand p {
  color: rgba(253, 248, 243, 0.8);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(253, 248, 243, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--cream);
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  font-size: 0.9375rem;
  color: rgba(253, 248, 243, 0.7);
}

.footer-column a:hover {
  color: var(--cream);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(253, 248, 243, 0.7);
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  font-size: 0.875rem;
  color: rgba(253, 248, 243, 0.6);
}

.footer-bottom a {
  color: rgba(253, 248, 243, 0.6);
}

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

.footer-legal {
  display: flex;
  gap: 2rem;
}

/* --- About Page --- */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(156, 175, 136, 0.1) 0%, transparent 70%);
}

.page-hero .overline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.page-hero h1 {
  margin-bottom: 1.5rem;
}

.page-hero p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Story Section */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-image {
  height: 500px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.story-content h2 {
  margin-bottom: 1.5rem;
}

.story-content p {
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}

.story-signature {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--plum);
  margin-top: 2rem;
}

/* Philosophy Cards */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.philosophy-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(74, 60, 74, 0.05);
}

.philosophy-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.philosophy-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

/* Facility Grid */
.facility-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
  height: 500px;
}

.facility-item {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.facility-item:first-child {
  grid-row: span 2;
}

.facility-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--plum);
  box-shadow: var(--shadow-sm);
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  text-align: center;
}

.product-image {
  height: 180px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
}

.product-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.875rem;
}

/* --- Services Page --- */
.services-menu {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-category {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-dark);
}

.category-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.category-header h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.category-header p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.service-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.service-item:hover {
  background: var(--cream-dark);
}

.service-item-info h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.service-item-info p {
  font-size: 0.9375rem;
  margin-bottom: 0;
  max-width: 500px;
}

.service-item-price {
  text-align: right;
  flex-shrink: 0;
}

.service-item-price .price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--plum);
  display: block;
}

.service-item-price .duration {
  font-size: 0.8125rem;
  color: var(--gray);
}

/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition-normal);
}

.package-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.package-card.featured {
  border-color: var(--accent);
  position: relative;
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.package-duration {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.package-price {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.package-price .amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--plum);
}

.package-includes {
  margin-bottom: 2rem;
}

.package-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--text);
}

.package-includes svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.package-card .btn {
  width: 100%;
}

/* Add-ons */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.addon-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-normal);
}

.addon-card:hover {
  background: var(--cream-dark);
}

.addon-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.addon-card p {
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}

.addon-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark);
}

/* Memberships */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.membership-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--cream-dark);
  transition: var(--transition-normal);
}

.membership-card:hover {
  border-color: var(--secondary);
}

.membership-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.membership-price {
  margin-bottom: 1.5rem;
}

.membership-price .amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--plum);
}

.membership-price .period {
  font-size: 0.875rem;
  color: var(--gray);
}

.membership-perks {
  text-align: left;
  margin-bottom: 2rem;
}

.membership-perks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--text);
}

.membership-perks svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

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

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

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

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-card h3 svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.info-card p,
.info-card address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

.info-card a {
  color: var(--primary-dark);
  font-weight: 500;
}

.info-card a:hover {
  color: var(--plum);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
}

.hours-list .day {
  color: var(--plum);
  font-weight: 500;
}

.hours-list .time {
  color: var(--text-light);
}

/* Map placeholder */
.map-placeholder {
  height: 300px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--white);
  opacity: 0.7;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.faq-item {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
}

.faq-item h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--plum);
}

.faq-item p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* New Client Info */
.new-client-info {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: var(--white);
}

.new-client-info h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.new-client-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.checklist svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-overline {
    justify-content: center;
  }

  .hero-overline::before {
    display: none;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .services-grid,
  .team-grid,
  .testimonials-grid,
  .philosophy-grid,
  .packages-grid,
  .membership-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-package,
  .gift-section,
  .story-section,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .facility-item {
    height: 200px;
  }

  .facility-item:first-child {
    grid-row: auto;
    grid-column: span 2;
    height: 250px;
  }

  .products-grid,
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    gap: 0;
    z-index: 99;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 2rem;
    width: 100%;
    text-align: center;
  }

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

  .header-cta {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }

  .services-grid,
  .team-grid,
  .testimonials-grid,
  .philosophy-grid,
  .packages-grid,
  .membership-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-accent {
    width: 140px;
    height: 140px;
    bottom: -20px;
    left: -10px;
  }

  .hero-image-accent span {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .products-grid,
  .addons-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gift-options {
    justify-content: center;
  }

  .featured-includes ul {
    grid-template-columns: 1fr;
  }

  .service-item {
    flex-direction: column;
    gap: 1rem;
  }

  .service-item-price {
    text-align: left;
  }

  .service-category {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .btn-lg {
    padding: 1rem 1.5rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .gift-option {
    flex: 1;
    min-width: 80px;
  }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
