* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1c1a;
  --muted: #5f5a55;
  --accent: #2f5d62;
  --accent-2: #c9a66b;
  --bg: #f6f2ed;
  --paper: #ffffff;
  --soft: #efe6db;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0 10px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 14px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  font-size: 15px;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 12px;
  color: var(--muted);
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #b9a99a;
  color: #fefdfb;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.55);
}

.hero-content {
  position: relative;
  padding: 120px 0 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 30px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.section {
  padding: 70px 0;
}

.section.bg-layer {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #e2d6c8;
  position: relative;
}

.section.bg-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 242, 237, 0.88);
}

.section.bg-layer .container {
  position: relative;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.asym-media {
  flex: 1 1 380px;
  min-height: 280px;
  background: #d9c8b4;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame {
  height: 260px;
  background: #d3c3b2;
  border-radius: 18px;
  overflow: hidden;
}

.note {
  padding: 16px 18px;
  background: var(--soft);
  border-radius: 14px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--paper);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(26, 20, 16, 0.08);
}

.card-media {
  height: 160px;
  background: #d4d0ca;
  border-radius: 12px;
  overflow: hidden;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.split-band {
  background: var(--paper);
  padding: 40px;
  border-radius: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-band .badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #3f2f18;
  font-size: 13px;
}

.quote-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: var(--paper);
  border-radius: 12px;
}

.form-wrap {
  background: var(--paper);
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1c4b6;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--paper);
  padding: 12px;
  border-radius: 999px;
  box-shadow: 0 15px 35px rgba(18, 15, 12, 0.18);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-cta button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

footer {
  padding: 50px 0 80px;
  background: #f0e8de;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-note {
  margin-top: 30px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--paper);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 18px 40px rgba(18, 15, 12, 0.2);
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e5ddd3;
  color: var(--ink);
}

.page-hero {
  padding: 80px 0 50px;
}

.page-hero h1 {
  font-size: 36px;
}

.simple-section {
  padding: 40px 0 60px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--paper);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.muted {
  color: var(--muted);
}

.thanks-box {
  background: var(--paper);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
