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

:root {
  --green-dark: #2d4a3e;
  --green-mid: #5a7c6a;
  --green-light: #8baa8a;
  --cream: #f5f0e8;
  --cream-darker: #e8e0d4;
  --gold: #c4a87a;
  --gold-light: #e0cfa8;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --white: #ffffff;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

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

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

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

/* --- Header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

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

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

.logo img {
  height: 84px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

nav a:hover {
  color: var(--green-dark);
}

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

nav a.active {
  color: var(--green-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 50px;
}

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

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(45, 74, 62, 0.3);
}

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

.btn-gold:hover {
  background: #b8945e;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(196, 168, 122, 0.4);
}

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

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

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

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--green-dark);
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: #1a332a;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="30" r="1.5" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="70" r="0.8" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 200px 200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 80px 24px;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: absolute;
  inset: 0;
}

.hero-visual-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-visual-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 51, 42, 0.85) 0%, rgba(26, 51, 42, 0.4) 50%, rgba(26, 51, 42, 0.1) 100%);
  pointer-events: none;
}

/* --- Quick Info Bar --- */
.quick-info {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--cream-darker);
}

.quick-info .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.info-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

/* --- Section Shared --- */
section {
  padding: 100px 0;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* --- Treatments Page --- */
.treatments-hero,
.page-hero {
  padding: 180px 0 80px;
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
}

.treatments-hero h1,
.page-hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 16px;
}

.treatments-hero p,
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Service Cards --- */
.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--cream-darker);
}

.service-card:last-child {
  border-bottom: none;
}

.service-card.reverse {
  direction: rtl;
}

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

.service-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-darker);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
}

.service-image .placeholder-icon {
  font-size: 3rem;
  opacity: 0.3;
}

.service-info h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--green-dark);
}

.service-info p {
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* --- Retreats --- */
.retreat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.retreat-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.retreat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.retreat-image {
  height: 220px;
  background: var(--cream-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.retreat-body {
  padding: 32px;
}

.retreat-body .tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--green-dark);
  margin-bottom: 12px;
}

.retreat-body .tag.coming-soon {
  background: var(--gold-light);
  color: var(--text-dark);
}

.retreat-body h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.retreat-body p {
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* --- Waitlist --- */
.waitlist {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow);
  margin-top: 48px;
}

.waitlist h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.waitlist p {
  color: var(--text-mid);
  margin-bottom: 24px;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.waitlist-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--cream-darker);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.waitlist-form input:focus {
  border-color: var(--gold);
}

/* --- About Page --- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-darker);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--green-dark);
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.value-card .value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.value-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* --- Contact / Footer --- */
footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 80px 0 40px;
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  border: 2px solid var(--cream-darker);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-light);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 168, 122, 0.15);
}

.contact-form .btn {
  margin-top: 4px;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-form input:focus,
.footer-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.footer-form textarea {
  min-height: 100px;
  resize: vertical;
}

.footer-form .btn {
  width: 100%;
  margin-top: 4px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-form .btn {
  flex-shrink: 0;
}

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

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-top: 8px;
  transition: var(--transition);
}

.phone-link:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* --- Page Content --- */
.page-content {
  padding: 100px 0;
}

.page-content .section-subtitle {
  margin-bottom: 40px;
}

/* --- Locations --- */
.locations {
  background: var(--white);
}

.location-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.location-card {
  padding: 32px;
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius);
  transition: var(--transition);
}

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

.location-card h4 {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.location-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-visual {
    width: 100%;
  }
}

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

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    align-items: flex-start;
  }

  nav.open {
    right: 0;
  }

  nav a {
    font-size: 1rem;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
  }

  .mobile-overlay.open {
    display: block;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-visual-inner::after {
    background: linear-gradient(90deg, rgba(26, 51, 42, 0.9) 0%, rgba(26, 51, 42, 0.6) 100%);
  }

  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

  .service-card.reverse {
    direction: ltr;
  }

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

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

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

  .footer-form .btn {
    width: auto;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .quick-info .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .container {
    padding: 0 16px;
  }

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

/* --- FAQ Page --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--gold);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 400;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-item.open .faq-question {
  color: var(--green-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-mid);
  font-size: 0.925rem;
  line-height: 1.7;
  margin: 0;
}

/* --- Blog Page --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-image {
  height: 200px;
  background: var(--cream-darker);
  overflow: hidden;
}

.blog-body {
  padding: 28px;
}

.blog-body .tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--green-dark);
  margin-bottom: 10px;
}

.blog-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.blog-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* --- Conditions Grid (Treatments Page) --- */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.condition-category {
  background: var(--white);
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}

.condition-category:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.condition-category h4 {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.condition-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.condition-category li {
  padding: 6px 0;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  position: relative;
  padding-left: 18px;
}

.condition-category li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.condition-category li:hover {
  color: var(--green-dark);
}

@media (max-width: 768px) {
  .conditions-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 480px) {
  .conditions-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Skip to Content --- */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* --- Legal Pages (Privacy / Terms) --- */
.legal-content h2 {
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-top: 40px;
  margin-bottom: 16px;
}

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

.legal-content p {
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 0 0 16px 24px;
  color: var(--text-mid);
  line-height: 1.7;
}

.legal-content li {
  margin-bottom: 6px;
}

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

.legal-content a:hover {
  color: var(--gold);
}

.footer-legal {
  margin-top: 12px;
  font-size: 0.8rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--gold-light);
}

.footer-legal span {
  color: rgba(255,255,255,0.2);
  margin: 0 8px;
}

/* --- Cookie Consent --- */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-dark);
  color: var(--white);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
  margin: 0;
}

.cookie-consent p a {
  color: var(--gold-light);
  text-decoration: underline;
}

.cookie-consent .cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-consent .btn {
  font-size: 0.78rem;
  padding: 10px 20px;
  white-space: nowrap;
}

.cookie-consent .btn-accept {
  background: var(--gold);
  color: var(--white);
}

.cookie-consent .btn-accept:hover {
  background: #b8945e;
}

.cookie-consent .btn-necessary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}

.cookie-consent .btn-necessary:hover {
  border-color: var(--white);
  color: var(--white);
}

@media (max-width: 640px) {
  .cookie-consent .container {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}
