:root {
  --ink: #1c1c1c;
  --muted: #5f5f5f;
  --bg: #f6f4f1;
  --accent: #c46b4f;
  --accent-dark: #8f4a34;
  --soft: #efe7e1;
  --deep: #2a2f3a;
  --card: #ffffff;
  --line: #ded7d0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:focus,
a:hover {
  text-decoration: underline;
}

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

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 12px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 16px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 70px 6vw 40px;
  background-color: #2a2f3a;
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 24, 0.66);
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1 1 320px;
  max-width: 560px;
}

.hero-card {
  flex: 1 1 260px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 24px;
  border-radius: 16px;
  align-self: flex-end;
  margin-bottom: -30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 22px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.button.ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.section {
  padding: 64px 6vw;
}

.section.offset {
  background: #fff;
  margin: 0 6vw;
  border-radius: 28px;
  padding: 48px 5vw;
  box-shadow: 0 18px 40px rgba(26, 22, 18, 0.08);
}

.section.splash {
  background: var(--soft);
  position: relative;
  overflow: hidden;
}

.section.splash::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(196, 107, 79, 0.18);
}

.section.backdrop {
  background-color: #3a414c;
  background-image: url("https://images.unsplash.com/photo-1475721027785-f74eccf877e2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.section.backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 28, 35, 0.72);
}

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

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.flex.split > * {
  flex: 1 1 280px;
}

.asym {
  align-items: flex-start;
}

.asym .image-card {
  flex: 1 1 320px;
  background: #efe7e1;
  padding: 18px;
  border-radius: 18px;
}

.asym .text-card {
  flex: 1 1 340px;
  margin-top: 24px;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  flex: 1 1 240px;
  min-width: 220px;
}

.card img {
  border-radius: 12px;
  margin-bottom: 14px;
  width: 100%;
  height: 180px;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 14px;
  background: var(--deep);
  color: #fff;
  font-size: 0.8rem;
}

.pricing {
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin: 18px 0;
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(20, 20, 20, 0.08);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}

.footer {
  padding: 36px 6vw 48px;
  background: #fff;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

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

.footer-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 0 6vw 24px;
  background: var(--deep);
  color: #fff;
  padding: 12px 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 14px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.media-block {
  background: #e5ded7;
  padding: 16px;
  border-radius: 18px;
}

.media-block img {
  width: 100%;
  height: 260px;
  border-radius: 14px;
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
}

.notice-box {
  background: var(--soft);
  border-radius: 16px;
  padding: 18px;
  margin-top: 18px;
}

.section.backdrop a {
  color: #fff;
}
