:root {
  --ink: #1f2328;
  --muted: #5d6672;
  --accent: #2f6f6f;
  --accent-dark: #245757;
  --sand: #f4f1ed;
  --stone: #e7e2db;
  --mist: #eef1f2;
  --clay: #d9cfc4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}

.site-header {
  padding: 20px 0 10px;
  border-bottom: 1px solid var(--stone);
  background: #ffffff;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 360px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  padding: 40px 0 70px;
  background: var(--sand);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
}

.hero-image {
  min-height: 380px;
  background-color: #c9c1b7;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
}

.hero-image.home {
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80");
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  padding: 12px 22px;
  border-radius: 30px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.btn.secondary:hover {
  background: rgba(47, 111, 111, 0.1);
}

.section {
  padding: 70px 0;
}

.section.muted {
  background: var(--mist);
}

.section.clay {
  background: var(--clay);
}

.section-background {
  background-color: #d2cbc2;
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--stone);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  background-color: #d6d0c7;
}

.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-image {
  background-color: #dcd7cf;
  border-radius: 18px;
  overflow: hidden;
}

.inline-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.form-shell {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--stone);
  padding: 26px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 30px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.site-footer {
  padding: 40px 0 60px;
  background: #111413;
  color: #f5f1ec;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-grid a {
  color: #f5f1ec;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.disclaimer {
  font-size: 0.88rem;
  color: #d9d4cc;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--stone);
  padding: 16px;
  max-width: 320px;
  z-index: 11;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--stone);
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .nav-bar {
    align-items: flex-start;
  }

  .ad-label {
    order: 3;
    width: 100%;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
