* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f3ee;
  --ink: #2c2a27;
  --muted: #6b6359;
  --accent: #a44b2b;
  --accent-dark: #7b361f;
  --paper: #ffffff;
  --sand: #efe4d6;
  --leaf: #3e4a3f;
}

body {
  margin: 0;
  font-family: "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,
button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header {
  padding: 24px 5vw 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 360px;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  padding: 80px 5vw 100px;
  background-color: #e9ded1;
  background-image: url("https://images.unsplash.com/photo-1643482081334-0b860cca9167?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHw0N3x8U2xvdmVuc2thJTIwcG90aWNhJTIwYnJleiUyMHNsYWRrb3JqYSUyQyUyMGtpJTIwb3N0YW5lJTIwbWVoa2ElMjBpbiUyMGRpJUM1JUExZSVDNCU4RGF8c2x8MHwwfHx8MTc4NDUzNjE5NHww&ixlib=rb-4.1.0&q=80&w=1080");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 241, 233, 0.85);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-panel {
  flex: 1 1 260px;
  background: var(--paper);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 14px;
  color: var(--leaf);
  font-weight: 600;
}

.section {
  padding: 70px 5vw;
}

.section-alt {
  background: var(--sand);
}

.split {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: var(--paper);
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transform: translateY(-18px);
}

.media-wrap {
  flex: 1 1 280px;
  background: #d9c9b6;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.story-card {
  flex: 1 1 220px;
  background: var(--paper);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #eadfd2;
}

.service-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  background: var(--leaf);
  color: #fff;
  padding: 26px 30px;
  border-radius: 16px;
}

.cta-strip a {
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 18px;
  border-radius: 999px;
}

.form-shell {
  background: var(--paper);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7c8b8;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent-dark);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-dark);
  font-weight: 600;
}

.testimonial {
  font-style: italic;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  z-index: 5;
}

footer {
  padding: 50px 5vw 80px;
  background: #201e1b;
  color: #d6ccc2;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-links a {
  color: #d6ccc2;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  color: var(--ink);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 60px 5vw;
  background: #efe5d7;
}

.page-hero-inner {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-block {
  background: var(--paper);
  padding: 26px;
  border-radius: 16px;
  border: 1px solid #e5d6c7;
}

.contact-card {
  background: var(--paper);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e5d6c7;
  max-width: 520px;
}

@media (max-width: 720px) {
  .hero-text h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
    padding: 10px 14px;
  }
}
