@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --ink: #1f1f1c;
  --muted: #5b5b55;
  --sand: #f4f0ea;
  --stone: #e7e1d8;
  --sage: #9aa48f;
  --rose: #c9a3a1;
  --night: #2b2b28;
  --accent: #2e5d4d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #faf8f4;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6vw 16px;
  gap: 24px;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.9rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 32px 6vw 48px;
  gap: 28px;
  position: relative;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--sand);
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(31, 31, 28, 0.08);
  max-width: 520px;
}

.hero-image {
  align-self: flex-end;
  background-color: var(--stone);
  border-radius: 28px;
  overflow: hidden;
  max-width: 640px;
}

.hero-image img {
  height: 360px;
}

.section {
  padding: 56px 6vw;
}

.section.bg-image {
  color: #fefaf4;
  border-radius: 28px;
  margin: 0 6vw 40px;
  padding: 56px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-ritual {
  background-image: url("https://images.unsplash.com/photo-1502741338009-cac2772e18bc?w=1400&q=80");
  background-color: #3f4a3f;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1400&q=80");
  background-color: #5a4c4c;
}

.bg-availability {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-color: #3b3a37;
}

.section.bg-image .cta-row {
  margin-top: 18px;
}

.section-asym {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.section-block {
  flex: 1 1 320px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(31, 31, 28, 0.06);
}

.section-block.alt {
  background: var(--stone);
}

.section-media {
  flex: 1 1 280px;
  background-color: var(--stone);
  border-radius: 24px;
  overflow: hidden;
}

.section-media img {
  height: 280px;
}

.flow-band {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--night);
  color: #fefaf4;
  padding: 40px;
  border-radius: 26px;
}

.flow-band a {
  color: #fefaf4;
  text-decoration: underline;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(31, 31, 28, 0.08);
  display: flex;
  flex-direction: column;
}

.card-media {
  background-color: var(--stone);
}

.card-media img {
  height: 180px;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover,
.link:hover {
  opacity: 0.85;
}

.link {
  text-decoration: underline;
  cursor: pointer;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rose);
  margin-top: 6px;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(31, 31, 28, 0.08);
}

.form-side {
  flex: 1 1 280px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d2c8;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background: var(--night);
  color: #f9f5ef;
  padding: 40px 6vw 56px;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.footer a {
  color: #f9f5ef;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--rose);
  color: var(--night);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(31, 31, 28, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 22px rgba(31, 31, 28, 0.14);
  max-width: 320px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--sand);
  padding: 22px;
  border-radius: 18px;
}

.reference-list {
  font-size: 0.85rem;
  color: #d9d4cd;
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-image img {
    height: 260px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
