﻿:root {
  color-scheme: only light;
  --bg: #f7f2ed;
  --bg-alt: #efe4da;
  --text: #2a201b;
  --muted: #6b5a4e;
  --accent: #c0815f;
  --accent-dark: #8f5e46;
  --card: #ffffff;
  --shadow: 0 20px 50px rgba(42, 32, 27, 0.12);
  --radius: 28px;
}

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

body {
  font-family: "Work Sans", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #f3e6d8 0%, #f7f2ed 45%, #f0e8e0 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

.hero {
  padding: 32px 8vw 96px;
  min-height: 90vh;
  display: flex;
  flex-direction: row; /* Changed to row for side-by-side */
  align-items: center; /* Center vertically */
  justify-content: space-between; /* Space out content */
  gap: 40px;
  background: radial-gradient(circle at top left, #f3e6d8 0%, #f7f2ed 45%, #f0e8e0 100%);
  position: relative;
  overflow: hidden;
}

@media (max-width: 960px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
    justify-content: center;
  }
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 32px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 10;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  animation: fadeUp 1s ease both 0.2s;
}

.hero-image img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(192, 129, 95, 0.2));
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: perspective(1000px) rotateY(0deg);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
}

.logo .divider {
  margin: 0 35px; /* Increased to ~35px (~1cm visual gap total) as requested */
  color: var(--accent); 
  font-weight: 300;
  opacity: 0.5; /* Muted opacity to make it lighter */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero-content {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeUp 0.9s ease both;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 4.3rem);
  line-height: 1.1;
}

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

.cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  box-shadow: 0 15px 25px rgba(192, 129, 95, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(192, 129, 95, 0.4);
}

.button.outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  box-shadow: none;
}

.button.small {
  padding: 10px 20px;
}

.link {
  font-weight: 600;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link::after {
  content: "→";
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.hero-metrics div {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(4px);
}

.hero-metrics span {
  font-size: 1.6rem;
  font-weight: 600;
}

.hero-metrics p {
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  padding: 96px 8vw;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section-header {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.section-header p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 24px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card h3 {
  font-size: 1.3rem;
}

.tag {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4e1d5;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.8rem;
}

.highlight {
  background: linear-gradient(120deg, #f3e6d8 0%, #efe4da 100%);
}

.ritual-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ritual-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.testimonials {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial {
  background: #fff9f4;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.testimonial blockquote {
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial figcaption {
  color: var(--muted);
  font-size: 0.9rem;
}

.plans {
  background: #fdfaf7;
}

.plan-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.plan {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.plan ul li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.plan.featured {
  border: 2px solid var(--accent);
  transform: translateY(-10px);
}

.contact {
  padding-bottom: 120px;
}

.contact-card {
  background: var(--accent-dark);
  color: #fff;
  border-radius: 32px;
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  box-shadow: var(--shadow);
}

.contact-info p {
  margin-bottom: 8px;
  color: #f7eae2;
}

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

.form input,
.form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  margin-top: 8px;
}

.form button {
  align-self: flex-start;
}

.footer {
  padding: 48px 8vw 64px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(107, 90, 78, 0.2);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.footer-bottom a {
  color: var(--accent-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: center; /* Center nav items */
    padding: 20px;
    text-align: center;
    position: relative; /* Not fixed/absolute on mobile sometimes better, but keeping style consistent */
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
  }

  .hero {
    gap: 40px;
    padding-top: 140px; /* Space for nav */
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .plan.featured {
    transform: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 120px 20px 60px; /* Reduced side padding */
  }
  
  /* Remove 3D effect on mobile */
  .hero-image img {
      transform: none !important;
  }
  
  .hero h1 {
      font-size: 2.5rem;
  }

  .cta-row {
    flex-direction: column;
    align-items: center; /* Center buttons */
    width: 100%;
  }
  
  .button, .link {
      width: 100%;
      justify-content: center;
  }

  .contact-card {
    padding: 24px;
    border-radius: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .section {
      padding: 60px 20px;
  }
}
