:root {
  --c-bg: #fbf6f3;
  --c-bg-soft: #f6e8e6;
  --c-bg-deep: #ecd5d2;
  --c-accent: #bd818a;
  --c-accent-hover: #a3676f;
  --c-accent-soft: #e8c4c2;
  --c-text: #453733;
  --c-text-soft: #8c7873;
  --c-white: #ffffff;
  --c-border: #e6d5cf;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .font-display {
  font-family: 'Playfair Display', serif;
  color: var(--c-text);
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-accent);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--c-accent);
  color: #fff;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background-color 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 20px -8px rgba(163, 103, 111, 0.55);
}
.btn-primary:hover { background-color: var(--c-accent-hover); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: transparent;
  color: var(--c-accent);
  border: 1.5px solid var(--c-accent-soft);
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.btn-secondary:hover { background-color: var(--c-bg-soft); border-color: var(--c-accent); transform: translateY(-1px); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Organic blob frame for the hero portrait — the page's signature element */
.blob-frame {
  position: relative;
  isolation: isolate;
}
.blob-shape {
  border-radius: 62% 38% 55% 45% / 48% 45% 55% 52%;
  overflow: hidden;
  animation: blob-breathe 14s ease-in-out infinite;
  box-shadow: 0 30px 60px -20px rgba(189, 129, 138, 0.35);
}
@keyframes blob-breathe {
  0%, 100% { border-radius: 62% 38% 55% 45% / 48% 45% 55% 52%; }
  50% { border-radius: 45% 55% 40% 60% / 55% 40% 60% 45%; }
}
.blob-shape img { width: 100%; height: 100%; object-fit: cover; }
.blob-ring {
  position: absolute;
  inset: -18px;
  border: 1.5px dashed var(--c-accent-soft);
  border-radius: 60% 40% 52% 48% / 45% 52% 48% 55%;
  z-index: -1;
  animation: blob-breathe 14s ease-in-out infinite reverse;
}

/* Soft wave divider between sections */
.wave-divider { display: block; width: 100%; height: auto; }

/* FAQ accordion */
details.faq-item { border-bottom: 1px solid var(--c-border); }
details.faq-item summary { cursor: pointer; list-style: none; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item .faq-icon { transition: transform 0.3s ease; }
details.faq-item[open] .faq-icon { transform: rotate(45deg); }
details.faq-item[open] summary { color: var(--c-accent); }

/* Cookie banner */
#cookie-banner {
  transition: transform 0.4s ease;
}
#cookie-banner.hidden-banner {
  transform: translateY(120%);
}

.card-hover { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -18px rgba(69, 55, 51, 0.18); }

.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1.5px;
  background: var(--c-accent);
  transition: width 0.25s ease;
}
.nav-link:hover::after { width: 100%; }
