@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@500;700&display=swap");

:root {
  --ink: #1d1a17;
  --ink-soft: #443a34;
  --sand: #f4efe7;
  --sand-dark: #e9dfd3;
  --olive: #7d7a4c;
  --accent: #d46e46;
  --accent-dark: #b55433;
  --plum: #5a4156;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 0;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-group {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.brand {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.cta-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.section {
  padding: 78px 0;
  position: relative;
}

.section--hero {
  background: linear-gradient(135deg, rgba(244, 239, 231, 0.7), rgba(217, 110, 70, 0.12)),
    url("https://images.unsplash.com/photo-1490645935967-10de6ba17061?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--ink);
}

.section--dark {
  background: var(--ink);
  color: var(--sand);
}

.section--soft {
  background: var(--sand-dark);
}

.section--plum {
  background: var(--plum);
  color: var(--white);
}

.magazine-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.col-narrow {
  flex: 1 1 260px;
  max-width: 360px;
}

.col-wide {
  flex: 2 1 420px;
  min-width: 280px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 4vw, 3.6rem);
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 520px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  background: var(--white);
  padding: 22px;
  border-radius: 20px;
  flex: 1 1 220px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 14px;
  height: 150px;
  object-fit: cover;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}

.split-highlight {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  background: var(--white);
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  color: var(--accent-dark);
}

.pricing-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.service-picker {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-option button {
  background: transparent;
  border: 1px solid var(--accent-dark);
  color: var(--accent-dark);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-family: inherit;
}

footer {
  padding: 54px 0 70px;
  background: var(--ink);
  color: var(--sand);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  color: var(--ink);
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-reject {
  background: var(--sand-dark);
}

.utility-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.highlight {
  background: var(--white);
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent-dark);
}

.contact-card {
  background: var(--white);
  padding: 18px 20px;
  border-radius: 16px;
  flex: 1 1 240px;
}

@media (max-width: 780px) {
  .nav-group {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
