* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ef;
  --ink: #1e1b18;
  --accent: #8b3f2a;
  --accent-light: #d9b49c;
  --muted: #6f645c;
  --paper: #ffffff;
  --sand: #efe4d6;
  --shadow: 0 18px 40px rgba(22, 18, 15, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: var(--paper);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 90px 6vw 80px;
  background: linear-gradient(120deg, rgba(238, 230, 220, 0.8), rgba(255, 255, 255, 0.9)),
    url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  min-height: 72vh;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.82);
  padding: 34px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  align-self: flex-start;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn.ghost {
  background: #fff;
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.12);
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.section.alt {
  background: var(--paper);
}

.section.sand {
  background: var(--sand);
}

.section-title {
  font-size: 32px;
  margin: 0;
}

.split {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .visual {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.floating-card {
  background: var(--paper);
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}

.offset-panel {
  background: var(--accent);
  color: #fff;
  padding: 32px;
  border-radius: 24px;
  margin-left: auto;
  max-width: 520px;
  transform: translateY(-24px);
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  font-size: 12px;
}

.card-list {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.card img {
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  font-style: italic;
}

.price-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.price-item {
  flex: 1 1 260px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.highlight {
  background: var(--accent-light);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-panel {
  background: #fff;
  padding: 30px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-shell {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.footer {
  background: #151110;
  color: #fff;
  padding: 40px 6vw 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 260px;
  font-size: 14px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.page-hero {
  padding: 60px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-hero h1 {
  margin: 0;
  font-size: 36px;
}

.page-hero p {
  max-width: 620px;
  color: var(--muted);
}

@media (min-width: 900px) {
  .hero-content {
    margin-left: 6vw;
  }
}
