@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&family=Playfair+Display:wght@500;700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --deep: #1b1a1f;
  --ink: #26232d;
  --soft: #f6f2ee;
  --accent: #d9684f;
  --accent-dark: #b14f3d;
  --sage: #cad4c6;
  --sand: #f0e6dc;
  --white: #ffffff;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 18px 8px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.92rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(27, 26, 31, 0.08);
}

.hero {
  padding: 40px 18px 70px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 40px;
  width: 220px;
  height: 220px;
  background: url("../images/pattern-confetti.svg") center/cover no-repeat;
  opacity: 0.65;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 520px;
}

.hero-image {
  margin-top: 26px;
  border-radius: 28px 10px 40px 14px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(26, 20, 29, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 60px 18px;
  position: relative;
}

.section--offset {
  background: var(--sand);
  padding-left: 24px;
  padding-right: 12px;
}

.section--dark {
  background: var(--deep);
  color: var(--white);
}

.section--pattern {
  background: var(--soft) url("../images/detail-floral.svg") right bottom/240px no-repeat;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: #d9cccc;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 22px 40px rgba(24, 22, 30, 0.12);
  transform: translateX(-12px);
}

.offset-card--right {
  transform: translateX(12px);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.list-item span {
  font-weight: 700;
  color: var(--accent);
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 15px 30px rgba(20, 18, 26, 0.12);
}

.service-card img {
  width: 100%;
  border-radius: 18px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 18px 36px rgba(30, 26, 36, 0.12);
}

.quote {
  font-style: italic;
  background: rgba(255, 255, 255, 0.12);
  padding: 16px;
  border-radius: 16px;
}

.form-wrap {
  background: var(--white);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 26px 40px rgba(30, 24, 34, 0.18);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(38, 35, 45, 0.2);
  font-family: inherit;
  background: var(--soft);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-inline {
  color: var(--accent-dark);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.footer {
  padding: 40px 18px;
  background: var(--deep);
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 90px;
  background: var(--white);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 16px 32px rgba(24, 20, 30, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .hero {
    padding: 60px 60px 90px;
  }

  .top-nav {
    padding: 32px 60px 12px;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-text {
    max-width: 460px;
  }

  .section-grid,
  .services,
  .gallery {
    flex-direction: row;
  }

  .section-grid > * {
    flex: 1;
  }

  .services .service-card,
  .gallery .gallery-item {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
  }

  .two-col > * {
    flex: 1;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 380px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .section {
    padding: 80px 80px;
  }

  .section--offset {
    padding-left: 120px;
  }

  .offset-card {
    transform: translateX(-32px);
  }

  .offset-card--right {
    transform: translateX(32px);
  }
}
