@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Source+Sans+3:wght@300;400;600&display=swap");

:root {
  --bg: #f6f2ee;
  --ink: #1f1a16;
  --muted: #6f635b;
  --accent: #6d4c3d;
  --accent-soft: #dac9bd;
  --surface: #ffffff;
  --surface-alt: #efe6df;
  --line: #d9c9be;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-note {
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  letter-spacing: 0.3px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px 6%;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 15px;
}

.nav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.nav a:focus,
.nav a:hover {
  border-bottom: 1px solid var(--accent);
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: var(--accent-soft);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px 6% 32px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-text h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.hero-text p {
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-media {
  flex: 1 1 320px;
  display: flex;
  justify-content: flex-end;
}

.hero-media .frame {
  background: var(--accent-soft);
  padding: 14px;
  border-radius: 24px;
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: "Montserrat", sans-serif;
}

.btn {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 48px 6%;
}

.section-alt {
  background: var(--surface);
}

.section-band {
  background: var(--surface-alt);
  position: relative;
  overflow: hidden;
}

.section-band::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 20px;
  width: 220px;
  height: 220px;
  background: var(--accent-soft);
  border-radius: 50%;
  opacity: 0.4;
}

.asym-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.asym-grid .col {
  flex: 1 1 260px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 220px;
  min-width: 220px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  background-color: var(--accent-soft);
}

.card h3 {
  margin: 16px 0 8px;
  font-family: "Montserrat", sans-serif;
}

.price {
  font-weight: 700;
  color: var(--accent);
  margin-top: 8px;
}

.inline-image {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.inline-image .image-box {
  background-color: var(--accent-soft);
  padding: 12px;
  border-radius: 18px;
  flex: 1 1 260px;
}

.inline-image .image-box img {
  width: 100%;
  height: 220px;
  border-radius: 12px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-note {
  font-size: 14px;
  color: var(--muted);
}

.message {
  font-size: 14px;
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 30;
}

.footer {
  margin-top: auto;
  padding: 32px 6%;
  background: var(--surface);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
  max-width: 720px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 12px;
  max-width: 320px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
  z-index: 40;
  display: none;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

.hero-bg {
  background: linear-gradient(120deg, rgba(246, 242, 238, 0.8), rgba(246, 242, 238, 0.95)),
    url("https://images.unsplash.com/photo-1501045661006-fcebe0257c3f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.mini-hero {
  padding: 48px 6%;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.mini-hero img {
  width: 360px;
  height: 220px;
  border-radius: 16px;
  background-color: var(--accent-soft);
}

.image-frame {
  background-color: var(--accent-soft);
  padding: 10px;
  border-radius: 18px;
}

.image-frame img {
  width: 360px;
  height: 220px;
  border-radius: 14px;
}

.services-hero {
  background: linear-gradient(120deg, rgba(239, 230, 223, 0.9), rgba(239, 230, 223, 0.98)),
    url("https://images.unsplash.com/photo-1495433324511-bf8e92934d90?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 14px 18px;
  border-radius: 14px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  flex: 1 1 240px;
}

@media (max-width: 880px) {
  .hero-text h1 {
    font-size: 36px;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
