/* ═══════════════════════════════════════
   LILOPLAYSHUFFL.SBS — NORDIC SPA STYLES
   ═══════════════════════════════════════ */

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ice-white: #f5f7f6;
  --soft-mist: #e9ece8;
  --frost-glass: rgba(255, 255, 255, 0.6);
  --frost-glass-strong: rgba(255, 255, 255, 0.85);
  --sage-green: #8fa998;
  --deep-pine: #4f6f5d;
  --warm-stone: #c9b8a5;
  --soft-clay: #d8c3a5;
  --text-primary: #2f2f2f;
  --text-secondary: #6b6b6b;
  --nordic-calm: linear-gradient(135deg, #8fa998, #e9ece8);
  --warm-relax: linear-gradient(135deg, #d8c3a5, #f5f7f6);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background-color: var(--ice-white);
  line-height: 1.7;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--frost-glass-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(143, 169, 152, 0.15);
  transition: all 0.4s ease;
  padding: 18px 0;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 40px rgba(79, 111, 93, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1001;
}

.logo-icon {
  font-size: 1.4em;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3em;
  font-weight: 600;
  color: var(--deep-pine);
  letter-spacing: -0.02em;
}

.logo-dot {
  color: var(--sage-green);
  font-weight: 400;
}

.main-nav ul {
  display: flex;
  gap: 36px;
}

.main-nav a {
  font-size: 0.92em;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage-green);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--deep-pine);
}

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

.header-cta {
  font-size: 0.85em;
  font-weight: 700;
  color: white;
  background: var(--deep-pine);
  padding: 10px 24px;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.header-cta:hover {
  background: var(--sage-green);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-pine);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--frost-glass-strong);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 20px;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2em;
  font-weight: 500;
  color: var(--deep-pine);
}

.mobile-menu a:hover {
  color: var(--sage-green);
}

.mobile-cta {
  margin-top: 20px;
  font-size: 1em;
  font-weight: 700;
  color: white !important;
  background: var(--deep-pine);
  padding: 14px 36px;
  border-radius: 50px;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-size: 0.92em;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--sage-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 111, 93, 0.2);
}

.btn-secondary {
  background: var(--frost-glass);
  color: var(--deep-pine);
  border: 1.5px solid rgba(143, 169, 152, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  border-color: var(--sage-green);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 42px;
  font-size: 1em;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(245, 247, 246, 0.3) 0%,
    rgba(245, 247, 246, 0.6) 40%,
    rgba(245, 247, 246, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.85em;
  font-weight: 600;
  color: var(--deep-pine);
  background: var(--frost-glass);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(143, 169, 152, 0.2);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.hero-content h1 {
  font-size: 3.5em;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.15em;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll span {
  font-size: 0.75em;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--sage-green);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 30px; }
  50% { opacity: 1; height: 50px; }
}

/* === PAGE HERO === */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 120px 24px 60px;
}

.page-hero-content h1 {
  font-size: 3em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.page-hero-content p {
  font-size: 1.1em;
  color: var(--text-secondary);
}

.page-hero-small {
  min-height: 35vh;
  background: var(--nordic-calm);
}

.page-hero-small .page-hero-content {
  padding-top: 140px;
}

.spa-detail-hero .page-hero-content {
  text-align: left;
  max-width: 1200px;
  width: 100%;
  padding-left: 48px;
}

.back-link {
  display: inline-block;
  font-size: 0.85em;
  font-weight: 600;
  color: var(--deep-pine);
  background: var(--frost-glass);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(143, 169, 152, 0.2);
}

.back-link:hover {
  background: white;
}

/* === SECTION TAGS === */
.section-tag {
  display: inline-block;
  font-size: 0.8em;
  font-weight: 700;
  color: var(--deep-pine);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: 2.6em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05em;
  color: var(--text-secondary);
}

/* === INTRO SECTION === */
.intro-section {
  padding: 120px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text h2 {
  font-size: 2.4em;
  margin-bottom: 20px;
}

.intro-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1.02em;
}

.intro-image {
  position: relative;
}

.intro-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.intro-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  background: var(--nordic-calm);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

/* === FEATURES STRIP === */
.features-strip {
  padding: 80px 0;
  background: var(--soft-mist);
}

.features-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.feature-item {
  text-align: center;
  flex: 1;
  min-width: 160px;
  padding: 24px;
}

.feature-icon {
  font-size: 2em;
  display: block;
  margin-bottom: 12px;
}

.feature-item h3 {
  font-size: 1.15em;
  margin-bottom: 4px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
}

.feature-item p {
  font-size: 0.85em;
  color: var(--text-secondary);
}

/* === SPA CARDS (LARGE) === */
.spas-preview {
  padding: 120px 0;
}

.spa-card-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  padding: 40px;
  background: var(--frost-glass);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(143, 169, 152, 0.1);
  backdrop-filter: blur(10px);
}

.spa-card-large:last-child {
  margin-bottom: 0;
}

.spa-card-large.reverse {
  direction: rtl;
}

.spa-card-large.reverse > * {
  direction: ltr;
}

.spa-card-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.spa-card-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.spa-card-large:hover .spa-card-image img {
  transform: scale(1.03);
}

.spa-rank {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3em;
  font-weight: 700;
  color: white;
  opacity: 0.8;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.spa-card-content {
  padding: 20px 0;
}

.spa-location {
  font-size: 0.82em;
  font-weight: 600;
  color: var(--sage-green);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}

.spa-card-content h3 {
  font-size: 2.2em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.spa-card-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.98em;
}

.spa-highlights {
  margin-bottom: 20px;
}

.spa-highlights li {
  font-size: 0.9em;
  color: var(--text-secondary);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.spa-highlights li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--sage-green);
  font-size: 0.7em;
}

.spa-best {
  display: inline-block;
  font-size: 0.82em;
  font-weight: 700;
  color: var(--deep-pine);
  background: rgba(143, 169, 152, 0.12);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

/* === SPA GRID (Spas Page) === */
.spas-grid-section {
  padding: 100px 0;
}

.spas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
}

.spa-grid-card {
  background: var(--frost-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(143, 169, 152, 0.1);
  transition: all 0.4s ease;
}

.spa-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(79, 111, 93, 0.1);
}

.spa-grid-image {
  position: relative;
  overflow: hidden;
}

.spa-grid-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.spa-grid-card:hover .spa-grid-image img {
  transform: scale(1.05);
}

.spa-grid-rank {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2em;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.spa-grid-body {
  padding: 32px;
}

.spa-grid-body h3 {
  font-size: 1.6em;
  margin-bottom: 12px;
}

.spa-grid-body p {
  font-size: 0.95em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.spa-grid-body .spa-best {
  display: block;
  margin-bottom: 20px;
}

/* === SPA DETAIL === */
.spa-detail-section {
  padding: 100px 0;
}

.spa-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.spa-detail-main h2 {
  font-size: 2em;
  margin-bottom: 16px;
  margin-top: 48px;
}

.spa-detail-main h2:first-child {
  margin-top: 0;
}

.spa-detail-main p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1.02em;
}

.spa-services-list {
  margin-bottom: 16px;
  padding-left: 0;
}

.spa-services-list li {
  font-size: 0.95em;
  color: var(--text-secondary);
  padding: 6px 0 6px 24px;
  position: relative;
}

.spa-services-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--sage-green);
  font-size: 0.75em;
  top: 8px;
}

.sidebar-card {
  background: var(--frost-glass);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid rgba(143, 169, 152, 0.1);
}

.sidebar-card h4 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--deep-pine);
  margin-bottom: 16px;
}

.sidebar-info li {
  font-size: 0.9em;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid rgba(143, 169, 152, 0.08);
}

.sidebar-info li:last-child {
  border-bottom: none;
}

.sidebar-info strong {
  color: var(--text-primary);
}

.sidebar-highlights li {
  font-size: 0.9em;
  color: var(--text-secondary);
  padding: 5px 0;
}

.sidebar-cta {
  background: var(--nordic-calm);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}

.sidebar-cta h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4em;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.sidebar-cta p {
  font-size: 0.9em;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* === OTHER SPAS === */
.other-spas-section {
  padding: 80px 0;
  background: var(--soft-mist);
}

.other-spas-section h2 {
  font-size: 2em;
  text-align: center;
  margin-bottom: 32px;
}

.other-spas-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.other-spa-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2em;
  font-weight: 500;
  color: var(--deep-pine);
  background: var(--frost-glass);
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid rgba(143, 169, 152, 0.15);
  transition: all 0.3s ease;
}

.other-spa-link:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 111, 93, 0.1);
}

/* === QUOTE SECTION === */
.quote-section {
  padding: 100px 0;
  background: var(--soft-mist);
}

.quote-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5em;
  color: var(--sage-green);
  line-height: 0.5;
  display: block;
  margin-bottom: 16px;
  opacity: 0.5;
}

.quote-block blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8em;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 20px;
}

.quote-block cite {
  font-size: 0.9em;
  color: var(--text-secondary);
  font-style: normal;
  font-weight: 600;
}

/* === CTA SECTION === */
.cta-section {
  padding: 100px 0;
}

.cta-block {
  text-align: center;
  background: var(--warm-relax);
  padding: 80px 60px;
  border-radius: var(--radius-xl);
  max-width: 800px;
  margin: 0 auto;
}

.cta-block h2 {
  font-size: 2.6em;
  margin-bottom: 16px;
}

.cta-block p {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* === ABOUT SECTION === */
.about-section {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-content h2 {
  font-size: 2em;
  margin-bottom: 16px;
  margin-top: 40px;
}

.about-content h2:first-child {
  margin-top: 0;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1.02em;
}

.about-values li {
  padding: 8px 0;
  font-size: 0.98em;
  color: var(--text-secondary);
}

.about-values strong {
  color: var(--text-primary);
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 120px;
}

.about-images img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* === CONTACT === */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.2em;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1.02em;
}

.contact-details {
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(143, 169, 152, 0.1);
}

.contact-item span {
  font-size: 1.4em;
}

.contact-item p {
  font-size: 0.95em;
  color: var(--text-secondary);
}

.contact-form-wrap {
  background: var(--frost-glass);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(143, 169, 152, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85em;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid rgba(143, 169, 152, 0.2);
  border-radius: var(--radius-sm);
  background: white;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95em;
  color: var(--text-primary);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sage-green);
  box-shadow: 0 0 0 4px rgba(143, 169, 152, 0.1);
}

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

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success span {
  font-size: 3em;
  display: block;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.8em;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-secondary);
}

/* === LEGAL PAGES === */
.legal-section {
  padding: 80px 0;
}

.legal-container {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.6em;
  margin-bottom: 12px;
  margin-top: 36px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-size: 0.98em;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.legal-content li {
  font-size: 0.95em;
  color: var(--text-secondary);
  padding: 4px 0;
  list-style: disc;
}

.legal-content a {
  color: var(--deep-pine);
  text-decoration: underline;
}

/* === FOOTER === */
.site-footer {
  background: var(--soft-mist);
  padding: 80px 0 40px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9em;
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.7;
}

.footer-links h4 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.8em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--deep-pine);
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.9em;
  color: var(--text-secondary);
}

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

.footer-bottom {
  border-top: 1px solid rgba(143, 169, 152, 0.15);
  padding-top: 28px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82em;
  color: var(--text-secondary);
}

/* === REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro-image img {
    height: 380px;
  }

  .spa-card-large {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px;
  }

  .spa-card-large.reverse {
    direction: ltr;
  }

  .spa-card-image img {
    height: 320px;
  }

  .spa-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .spa-detail-sidebar {
    order: -1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    position: static;
    flex-direction: row;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.4em;
  }

  .hero-content p {
    font-size: 1em;
  }

  .page-hero-content h1 {
    font-size: 2.2em;
  }

  .spa-detail-hero .page-hero-content {
    padding-left: 24px;
    text-align: center;
  }

  .section-header h2 {
    font-size: 2em;
  }

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

  .features-row {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    min-width: auto;
  }

  .quote-block blockquote {
    font-size: 1.4em;
  }

  .cta-block {
    padding: 48px 28px;
  }

  .cta-block h2 {
    font-size: 2em;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .about-images {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .other-spas-row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.9em;
  }

  .page-hero-content h1 {
    font-size: 1.8em;
  }

  .spa-card-content h3 {
    font-size: 1.7em;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-scroll {
    display: none;
  }
}