@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600&family=Inter:wght@400;500;600&display=swap");

:root {
  --ink: #1d1b21;
  --muted: #5f5b66;
  --accent: #b54b6a;
  --accent-dark: #923a54;
  --soft: #f7f1f3;
  --light: #fff7f9;
  --shadow: rgba(29, 27, 33, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  padding: 20px 8vw 10px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.tagline {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a:hover,
.inline-link:hover {
  color: var(--accent-dark);
}

.ad-label {
  font-size: 0.82rem;
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
}

main {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.section {
  padding: 0 8vw;
}

.hero {
  color: #fff;
  padding: 80px 8vw 90px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(19, 16, 23, 0.75), rgba(19, 16, 23, 0.25));
}

.hero-content {
  position: relative;
  max-width: 560px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  margin: 0;
}

.hero-copy {
  margin: 0;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px var(--shadow);
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
}

.inline-link {
  font-weight: 500;
  text-decoration: underline;
}

.offset-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  position: relative;
}

.offset-panel .text-block {
  flex: 1 1 320px;
  max-width: 500px;
}

.offset-panel .image-frame {
  flex: 1 1 280px;
  margin-top: -40px;
  margin-left: auto;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background-color: #efe6e9;
  box-shadow: 0 16px 40px var(--shadow);
}

.asym-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.asym-card {
  flex: 1 1 230px;
  background: var(--soft);
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 28px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.asym-card h3 {
  margin: 0;
}

.floating-box {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 40px var(--shadow);
  margin: -30px auto 0;
  max-width: 720px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 30px var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.service-card button {
  margin-top: auto;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.split .panel {
  flex: 1 1 320px;
  padding: 24px;
  border-radius: 18px;
  background: var(--light);
}

.bg-soft {
  background: var(--soft);
  padding: 60px 8vw;
}

.bg-shelf {
  background-image: linear-gradient(120deg, rgba(247, 241, 243, 0.95), rgba(247, 241, 243, 0.65)),
    url("https://images.unsplash.com/photo-1619607146034-5a05296c8f9a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 24px var(--shadow);
}

.booking-form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d5ccd0;
  font-size: 1rem;
}

.booking-form button {
  align-self: flex-start;
}

.footer {
  background: #1d1b21;
  color: #f7f1f3;
  padding: 40px 8vw 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a:hover {
  color: #fff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-block {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  box-shadow: 0 20px 30px var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 20px 40px var(--shadow);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #efe6e9;
  color: var(--ink);
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1674691412909-8405f0a19940?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1658492055212-e1acbccfca5a?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1672405313394-93dff75eae32?w=1400&q=80");
}

.gallery-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.gallery-strip .image-frame {
  flex: 1 1 240px;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

.page-content {
  padding: 40px 8vw 70px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 820px) {
  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .hero {
    padding: 70px 8vw 80px;
  }

  .offset-panel .image-frame {
    margin-top: 0;
  }
}
