@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --bg: #f4f1ec;
  --bg-strong: #1f2a2e;
  --accent: #d36b42;
  --accent-soft: #f3d1c0;
  --text: #1c1c1c;
  --muted: #5b6268;
  --card: #ffffff;
  --line: #d6d0c8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  padding: 18px 8%;
  align-items: center;
  background: #efe9e2;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  align-items: center;
}

.ad-label {
  padding: 6px 10px;
  background: #fff0e8;
  border: 1px solid #f1c1ac;
  border-radius: 999px;
  font-size: 12px;
}

.main {
  flex: 1;
}

.split-section {
  display: flex;
  gap: 6%;
  padding: 72px 8%;
  align-items: stretch;
  background: var(--bg);
}

.split-section.alt {
  flex-direction: row-reverse;
  background: #efe9e2;
}

.split-section.deep {
  background: var(--bg-strong);
  color: #f5f2ee;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.split-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5ddd4;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.visual-soft {
  background: #e5ddd4;
}

.visual-warm {
  background: #e1d8cd;
}

.split-visual img {
  width: 100%;
  height: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.headline {
  font-size: 38px;
  margin: 0;
  font-family: "Playfair Display", serif;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.button:hover,
.button:focus-visible {
  filter: brightness(0.95);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 22px;
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line);
}

.image-frame {
  background-color: #e7dfd7;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 180px;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.inline-link:hover,
.inline-link:focus-visible {
  text-decoration: underline;
}

.highlight {
  padding: 18px 22px;
  border-radius: 16px;
  background: #fff6f1;
  border: 1px solid #f5d7c8;
}

.quote {
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: #fff;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-grid .field {
  flex: 1;
  min-width: 200px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #fff8f4;
  padding: 14px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0d8cc;
  z-index: 5;
}

.footer {
  padding: 42px 8%;
  background: #1b2326;
  color: #f2ede6;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer small {
  color: #c9c2b9;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 18px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-layout {
  display: flex;
  gap: 6%;
  padding: 64px 8%;
}

.legal-layout .legal-nav {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-layout .legal-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.contact-panel {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 20px;
}

.service-row .image-frame {
  width: 240px;
  height: 160px;
  border-radius: 16px;
}

.service-row .image-frame img {
  width: 100%;
  height: 100%;
}

.service-detail {
  flex: 1;
  min-width: 220px;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #6a2b12;
  font-size: 12px;
  font-weight: 600;
}

.notice {
  background: #fff4ef;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #f1d0c2;
}

.bg-insight {
  background-color: #2c383c;
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f5f2ee;
}

@media (max-width: 960px) {
  .split-section,
  .legal-layout {
    flex-direction: column;
  }

  .split-section.alt {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
