@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  color-scheme: light;
  --cream: #f7f4f2;
  --ink: #1f1b16;
  --accent: #e1573a;
  --accent-dark: #b7482f;
  --soft: #ffffff;
  --sage: #efe9e4;
  --shadow: 0 20px 40px rgba(31, 27, 22, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

header {
  padding: 24px 6vw 0;
}

.navbar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px 2px 14px 2px;
  background: linear-gradient(135deg, var(--accent), #ffb199);
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}

.brand-tag {
  font-size: 0.9rem;
  margin: 2px 0 0;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 500;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  padding: 72px 6vw;
  position: relative;
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  background: var(--ink);
  color: var(--cream);
}

.section.layered::before {
  content: '';
  position: absolute;
  inset: 8% 6vw auto auto;
  height: 120px;
  width: 180px;
  border-radius: 50%;
  background: rgba(225, 87, 58, 0.15);
  z-index: 0;
}

.section > * {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .content h1,
.split .content h2 {
  margin-top: 0;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent);
}

.media img {
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-image {
  min-height: 320px;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--soft);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 32px rgba(31, 27, 22, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card img {
  border-radius: 16px;
  height: 160px;
  object-fit: cover;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  background: var(--sage);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--soft);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  background: var(--ink);
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
}

.testimonial {
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 27, 22, 0.2);
  font-size: 1rem;
  font-family: inherit;
  background: var(--soft);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

footer {
  background: var(--ink);
  color: var(--cream);
  padding: 48px 6vw;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--soft);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image {
  background-image: url('https://images.unsplash.com/photo-1478737270239-2f02b77fc618?auto=format&fit=crop&w=1400&q=80');
}

.bg-soft {
  background: url('https://images.unsplash.com/photo-1478737270239-2f02b77fc618?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  border-radius: 22px;
  min-height: 260px;
}

@media (min-width: 900px) {
  header {
    padding: 28px 6vw 0;
  }

  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 20px);
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
