:root {
  color-scheme: light;
  --bg: #f4f2ee;
  --ink: #1f1f1f;
  --muted: #5b5b5b;
  --accent: #d0552b;
  --accent-dark: #a6411e;
  --card: #ffffff;
  --line: #e3ded7;
  --soft: #f0ebe4;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #d9d2c7;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.nav-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 12px;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--soft);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

main {
  flex: 1;
  padding: 30px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card-grid .card {
  flex: 1 1 260px;
}

.card-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.14rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: stretch;
}

.hero .hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-right: 10px;
}

.hero .hero-media {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #d9d2c7;
  min-height: 280px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  gap: 8px;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: var(--soft);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.inline-cta:hover,
.inline-cta:focus {
  color: var(--accent);
}

.media-split {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: stretch;
}

.media-split .media {
  flex: 1 1 280px;
  border-radius: 16px;
  overflow: hidden;
  background: #d6d0c6;
  min-height: 220px;
}

.media-split .content {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 200px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--soft);
}

.service-card img {
  border-radius: 14px;
}

.service-card .price {
  font-size: 1.1rem;
  font-weight: 700;
}

.section-bg {
  background: #efe7dd;
  border-radius: 22px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-size: cover;
  background-position: center;
}

.bg-one::before {
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
}

.bg-two::before {
  background-image: url("https://images.unsplash.com/photo-1483721310020-03333e577078?w=1400&q=80");
}

.section-bg > * {
  position: relative;
  z-index: 1;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.form-row > div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  margin-top: 28px;
  position: sticky;
  bottom: 0;
  background: #fff6ee;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.sticky-cta p {
  margin: 0;
  font-weight: 600;
}

.footer {
  padding: 30px 0 50px;
}

.footer-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.92rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: min(380px, 90vw);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 30;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-hero {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}
