
:root {
  --base: #fff5ee;
  --surface: #f6e4d6;
  --ink: #8b5143;
  --accent: #8b5143;
  --accent-soft: #f8be7e;
  --line: #e5c7b8;
  --petal: #f7b5b5;
  --logo-black: #000000;
  --logo-gray: #545454;
  --max: 1120px;
  --shadow: 0 24px 60px rgba(139, 81, 67, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: var(--base);
  line-height: 1.6;
  min-height: 100vh;
}

main {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: visible;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin: 0.4rem 0 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.65rem;
  margin-bottom: 0.4rem;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--accent);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.72rem 1.15rem;
  font-weight: 500;
}

.btn-primary {
  background: var(--accent);
  color: var(--base);
}

.btn-primary:hover {
  background: #714236;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(246, 228, 214, 0.65);
}

.section {
  margin: 0;
  padding: 3rem 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--base);
}

#space {
  background: var(--surface) !important;
  border-radius: 24px;
  margin: 3rem 1.5rem !important;
  padding: 3rem 1.5rem !important;
  width: calc(100% - 3rem) !important;
}

.section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.section-title-wrap {
  margin-bottom: 1.2rem;
}

.rituals-title-row {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.15rem;
  background: rgba(255, 249, 245, 0.88);
  position: relative;
}

.card span {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.price-list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.price-list li {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.approach-title-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.approach-title-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.approach-title-row h2 {
  min-width: 0;
  flex: 0 0 auto;
  max-width: 450px;
  text-wrap: balance;
}

.approach-logo-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-logo {
  width: min(380px, 36vw);
  min-width: 240px;
  height: auto;
}

.quote-block {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 1.35rem;
  font-family: "Cormorant Garamond", serif;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.quote-block p {
  margin: 0;
  text-align: center;
}

.studio-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
}

.studio-media,
.studio-details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  padding: 1rem;
}

.studio-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.studio-media {
  display: grid;
  place-items: center;
  position: relative;
  background: transparent;
  padding: 0;
  overflow: hidden;
  min-height: 220px;
  border: none;
}

.studio-logo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
}

.cta {
  border: none;
  border-radius: 24px;
  padding: 2rem;
  background: var(--surface);
  margin: 0 auto;
  max-width: calc(100% - 3rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.contact-details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 249, 245, 0.86);
  padding: 1.2rem;
}

.appointment-btn {
  margin-top: 0.85rem;
  font-size: 1rem;
  padding: 0.85rem 1.35rem;
}

.cta a {
  color: var(--accent);
  text-decoration: none;
}

.cta a.btn-primary {
  color: var(--base);
}

.cta a:hover {
  text-decoration: underline;
}

.map-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 249, 245, 0.9);
  padding: 0.9rem;
  display: grid;
  gap: 0.8rem;
}

#contact-map {
  height: 260px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.map-open-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.62rem 1rem;
  background: rgba(246, 228, 214, 0.72);
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.map-open-link:hover {
  background: rgba(246, 228, 214, 0.95);
  text-decoration: none;
}

.leaflet-control-zoom a {
  color: var(--ink);
}

.leaflet-touch .leaflet-bar a {
  background: rgba(255, 245, 238, 0.96);
  border-bottom: 1px solid var(--line);
}

.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  font-size: 0.92rem;
}

.footer-links a {
  color: inherit;
  text-decoration: underline;
}

.rdv-link {
  color: inherit;
  text-decoration: underline;
}

.bio-text {
  font-weight: 500;
  line-height: 1.9;
}

.floating-back-btn {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #6f3f35;
  border-radius: 999px;
  padding: 0.74rem 1.15rem;
  background: var(--accent);
  color: var(--base);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(139, 81, 67, 0.32);
}

.floating-back-btn:hover {
  background: #714236;
}

.privacy-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.privacy-page-logo {
  height: 88px;
  width: auto;
}

.privacy-lead {
  margin: 0 0 1rem;
  font-weight: 500;
}

.privacy-stack {
  display: grid;
  gap: 1rem;
}

.privacy-stack a {
  color: var(--ink);
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .card-grid,
  .split,
  .studio-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2rem 1.2rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 1.5rem 1rem;
  }

  h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
}

@media (max-width: 720px) {
  .approach-title-row {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.8rem;
  }

  .approach-logo-wrap {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .approach-title-row h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .approach-logo {
    width: min(170px, 48vw);
    min-width: 0;
  }

  .section {
    padding: 1.2rem 0.8rem;
  }

  .cta {
    padding: 1.4rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
