*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --cream: #f8f3ee;
  --sand: #efe4d6;
  --cocoa: #4b342e;
  --espresso: #2a1e1b;
  --rose: #b46a6a;
  --sage: #7a8a6a;
  --sun: #f3d27d;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--rose);
}

.hero {
  padding: 48px 0 64px;
  background: linear-gradient(120deg, rgba(244, 230, 216, 0.4), rgba(180, 106, 106, 0.15));
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  margin: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--espresso);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--cocoa);
}

.btn-outline {
  border-color: var(--espresso);
}

.btn-outline:hover {
  background: var(--espresso);
  color: var(--white);
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: var(--espresso);
  color: var(--white);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.85rem;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(20, 10, 6, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
}

.card.dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: none;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 2px solid var(--rose);
  padding-left: 20px;
}

.quote {
  font-style: italic;
  border-left: 4px solid var(--sun);
  padding-left: 16px;
}

.highlight {
  background: var(--sun);
  color: var(--espresso);
  padding: 20px;
  border-radius: 16px;
}

.selection-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.selection-item {
  background: var(--sand);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--cocoa);
}

.form-wrap {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(20, 10, 6, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d7cbbd;
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.inline-cta {
  color: var(--rose);
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.sticky-cta .btn {
  box-shadow: 0 16px 32px rgba(20, 10, 6, 0.2);
}

.site-footer {
  background: var(--espresso);
  color: var(--white);
  padding: 32px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.9rem;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(20, 10, 6, 0.2);
  display: none;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
}

.hero-image,
.section-image {
  border-radius: 22px;
  overflow: hidden;
}

.section-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.section-bg .card {
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .nav-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-inner > div {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-list,
  .selection-grid,
  .contact-grid {
    flex-direction: row;
  }

  .card,
  .selection-item,
  .contact-card {
    flex: 1;
  }
}
