@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --bs-sage: #7A8F7A;
  --bs-sage-dark: #5E7260;
  --bs-sand: #E8DFD0;
  --bs-sand-light: #F5F0E8;
  --bs-teal: #1F4A4A;
  --bs-teal-dark: #163535;
  --bs-ivory: #FAF8F5;
  --bs-white: #FFFFFF;
  --bs-text: #2C3E3E;
  --bs-text-light: #5A6B6B;
  --bs-font-display: 'Cormorant Garamond', Georgia, serif;
  --bs-font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --bs-radius: 4px;
  --bs-shadow: 0 8px 32px rgba(31, 74, 74, 0.12);
  --bs-transition: 0.3s ease;
  --bs-max-width: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--bs-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--bs-text);
  background: var(--bs-ivory);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--bs-teal);
  text-decoration: none;
  transition: color var(--bs-transition);
}

a:hover {
  color: var(--bs-sage);
}

h1, h2, h3, h4 {
  font-family: var(--bs-font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--bs-teal);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }

/* ── Header ── */
.bs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(122, 143, 122, 0.15);
  transition: background var(--bs-transition);
}

.bs-header-inner {
  max-width: var(--bs-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.bs-logo {
  font-family: var(--bs-font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bs-teal);
  letter-spacing: 0.02em;
}

.bs-logo span {
  color: var(--bs-sage);
  font-weight: 400;
  font-style: italic;
}

.bs-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.bs-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bs-text);
}

.bs-nav a:hover,
.bs-nav a.bs-active {
  color: var(--bs-sage);
}

.bs-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.bs-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bs-teal);
  transition: var(--bs-transition);
}

.bs-burger.bs-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.bs-burger.bs-open span:nth-child(2) { opacity: 0; }
.bs-burger.bs-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.bs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.bs-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.bs-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(31, 74, 74, 0.45) 0%,
    rgba(31, 74, 74, 0.25) 50%,
    rgba(31, 74, 74, 0.55) 100%
  );
}

.bs-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
  color: var(--bs-white);
}

.bs-hero-content h1 {
  color: var(--bs-white);
  margin-bottom: 1rem;
}

.bs-hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.92;
}

.bs-hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bs-sand);
  margin-bottom: 1.5rem;
}

/* ── Buttons ── */
.bs-btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--bs-font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  cursor: pointer;
  transition: all var(--bs-transition);
  border-radius: var(--bs-radius);
}

.bs-btn-primary {
  background: var(--bs-sage);
  color: var(--bs-white);
}

.bs-btn-primary:hover {
  background: var(--bs-sage-dark);
  color: var(--bs-white);
}

.bs-btn-outline {
  background: transparent;
  color: var(--bs-white);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.bs-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--bs-white);
}

.bs-btn-dark {
  background: var(--bs-teal);
  color: var(--bs-white);
}

.bs-btn-dark:hover {
  background: var(--bs-teal-dark);
  color: var(--bs-white);
}

/* ── Sections ── */
.bs-section {
  padding: 5rem 2rem;
}

.bs-section-alt {
  background: var(--bs-sand-light);
}

.bs-container {
  max-width: var(--bs-max-width);
  margin: 0 auto;
}

.bs-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.bs-section-header p {
  color: var(--bs-text-light);
  font-size: 1.05rem;
}

.bs-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bs-sage);
  margin-bottom: 0.75rem;
}

/* ── Grid ── */
.bs-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.bs-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── Cards ── */
.bs-card {
  background: var(--bs-white);
  border-radius: var(--bs-radius);
  overflow: hidden;
  box-shadow: var(--bs-shadow);
  transition: transform var(--bs-transition);
}

.bs-card:hover {
  transform: translateY(-4px);
}

.bs-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.bs-card-body {
  padding: 1.75rem;
}

.bs-card-body h3 {
  margin-bottom: 0.5rem;
}

.bs-card-body p {
  color: var(--bs-text-light);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.bs-card-price {
  font-family: var(--bs-font-display);
  font-size: 1.3rem;
  color: var(--bs-sage);
  font-weight: 600;
}

/* ── Page Hero ── */
.bs-page-hero {
  position: relative;
  padding: 10rem 2rem 5rem;
  text-align: center;
  background: var(--bs-teal);
  color: var(--bs-white);
  overflow: hidden;
}

.bs-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.bs-page-hero-content {
  position: relative;
  z-index: 1;
}

.bs-page-hero h1 {
  color: var(--bs-white);
  margin-bottom: 0.75rem;
}

.bs-page-hero p {
  font-weight: 300;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto;
}

/* ── About split ── */
.bs-about-img {
  border-radius: var(--bs-radius);
  box-shadow: var(--bs-shadow);
}

.bs-feature-list {
  list-style: none;
  margin-top: 1.5rem;
}

.bs-feature-list li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.bs-feature-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--bs-sage);
  font-size: 0.6rem;
  top: 0.85rem;
}

/* ── CTA Banner ── */
.bs-cta {
  position: relative;
  padding: 5rem 2rem;
  text-align: center;
  overflow: hidden;
}

.bs-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.bs-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(31, 74, 74, 0.7);
}

.bs-cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  color: var(--bs-white);
}

.bs-cta-content h2 {
  color: var(--bs-white);
  margin-bottom: 1rem;
}

.bs-cta-content p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* ── Contact ── */
.bs-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.bs-contact-info {
  background: var(--bs-teal);
  color: var(--bs-white);
  padding: 2.5rem;
  border-radius: var(--bs-radius);
}

.bs-contact-info h3 {
  color: var(--bs-sand);
  margin-bottom: 1.5rem;
}

.bs-contact-item {
  margin-bottom: 1.25rem;
}

.bs-contact-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bs-sage);
  margin-bottom: 0.25rem;
}

.bs-contact-item a {
  color: var(--bs-sand);
}

.bs-contact-item a:hover {
  color: var(--bs-white);
}

.bs-form-group {
  margin-bottom: 1.25rem;
}

.bs-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  color: var(--bs-text);
}

.bs-form-group input,
.bs-form-group textarea,
.bs-form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--bs-sand);
  border-radius: var(--bs-radius);
  font-family: var(--bs-font-body);
  font-size: 0.95rem;
  background: var(--bs-white);
  color: var(--bs-text);
  transition: border-color var(--bs-transition);
}

.bs-form-group input:focus,
.bs-form-group textarea:focus,
.bs-form-group select:focus {
  outline: none;
  border-color: var(--bs-sage);
}

.bs-form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ── Privacy ── */
.bs-privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.bs-privacy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.bs-privacy-content h2:first-child {
  margin-top: 0;
}

.bs-privacy-content ul {
  margin: 0 0 1rem 1.5rem;
}

.bs-privacy-content li {
  margin-bottom: 0.4rem;
}

/* ── Footer ── */
.bs-footer {
  background: var(--bs-teal-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 2rem 2rem;
}

.bs-footer-grid {
  max-width: var(--bs-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.bs-footer h4 {
  color: var(--bs-sand);
  font-family: var(--bs-font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.bs-footer ul {
  list-style: none;
}

.bs-footer li {
  margin-bottom: 0.5rem;
}

.bs-footer a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.bs-footer a:hover {
  color: var(--bs-sand);
}

.bs-footer-brand {
  font-family: var(--bs-font-display);
  font-size: 1.4rem;
  color: var(--bs-white);
  margin-bottom: 0.75rem;
}

.bs-footer-bottom {
  max-width: var(--bs-max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ── Cookie Banner ── */
.bs-cookie {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  max-width: 380px;
  background: var(--bs-white);
  border-radius: var(--bs-radius);
  box-shadow: 0 12px 40px rgba(31, 74, 74, 0.2);
  padding: 1.5rem;
  display: none;
  border-left: 4px solid var(--bs-sage);
}

.bs-cookie.bs-show {
  display: block;
}

.bs-cookie h4 {
  font-family: var(--bs-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.bs-cookie p {
  font-size: 0.82rem;
  color: var(--bs-text-light);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.bs-cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.bs-cookie-actions .bs-btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.72rem;
}

/* ── Stats ── */
.bs-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 3rem 0;
}

.bs-stat-num {
  font-family: var(--bs-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bs-sage);
  line-height: 1;
}

.bs-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bs-text-light);
  margin-top: 0.5rem;
}

/* ── Ritual timeline ── */
.bs-ritual-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.bs-ritual-item:nth-child(even) {
  direction: rtl;
}

.bs-ritual-item:nth-child(even) > * {
  direction: ltr;
}

.bs-ritual-img {
  border-radius: var(--bs-radius);
  box-shadow: var(--bs-shadow);
}

.bs-ritual-steps {
  list-style: none;
  counter-reset: ritual;
  margin-top: 1rem;
}

.bs-ritual-steps li {
  counter-increment: ritual;
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--bs-text-light);
}

.bs-ritual-steps li::before {
  content: counter(ritual);
  position: absolute;
  left: 0;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--bs-sage);
  color: var(--bs-white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0.55rem;
}

/* ── Responsive 900px ── */
@media (max-width: 900px) {
  .bs-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bs-ivory);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--bs-sand);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--bs-transition);
  }

  .bs-nav.bs-open {
    transform: translateY(0);
    opacity: 1;
  }

  .bs-burger {
    display: flex;
  }

  .bs-grid-2,
  .bs-grid-3,
  .bs-contact-grid,
  .bs-ritual-item {
    grid-template-columns: 1fr;
  }

  .bs-ritual-item:nth-child(even) {
    direction: ltr;
  }

  .bs-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bs-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .bs-card-img {
    height: 200px;
  }
}

/* ── Responsive 560px ── */
@media (max-width: 560px) {
  .bs-header-inner {
    padding: 0 1.25rem;
  }

  .bs-section {
    padding: 3.5rem 1.25rem;
  }

  .bs-page-hero {
    padding: 8rem 1.25rem 3.5rem;
  }

  .bs-footer-grid {
    grid-template-columns: 1fr;
  }

  .bs-footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .bs-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .bs-cookie {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .bs-hero-content {
    padding: 1.5rem;
  }

  .bs-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 0.75rem;
  }

  .bs-cta-content .bs-btn {
    display: inline-block;
    width: auto;
  }
}
