* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2225;
  --muted: #5f666b;
  --cream: #f6f2ed;
  --sand: #e9e1d7;
  --clay: #c9b8a3;
  --forest: #2f3a32;
  --accent: #8d4d3d;
  --soft-white: #fcfbf9;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft-white);
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 18px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 220px;
  text-align: right;
}

.hero {
  display: flex;
  gap: 48px;
  align-items: stretch;
  padding: 36px 0 64px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-image {
  flex: 1 1 420px;
  background: var(--sand);
  padding: 18px;
}

.hero-image img {
  border-radius: 18px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.15;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: 0.95rem;
  border: none;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--forest);
  color: var(--forest);
}

.section {
  padding: 72px 0;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 320px;
}

.split .visual-block {
  flex: 1 1 360px;
  background: var(--sand);
  padding: 16px;
}

.visual-block img {
  border-radius: 16px;
}

.offset {
  margin-left: 5vw;
}

.bg-archive {
  background-image: url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-archive .overlay {
  background: rgba(20, 22, 24, 0.6);
  padding: 70px 0;
}

.bg-contrast {
  background-image: url("https://images.unsplash.com/photo-1441716844725-09cedc13a4e7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-contrast .overlay {
  background: rgba(44, 40, 34, 0.72);
  padding: 70px 0;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--cream);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.img-wrap {
  background: var(--clay);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.form-shell {
  background: var(--sand);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row input,
.form-row select {
  flex: 1 1 220px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #cfc6bc;
  font-size: 0.95rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--forest);
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 20;
}

.sticky-cta a {
  color: #fff;
  font-size: 0.9rem;
}

.site-footer {
  padding: 50px 0 70px;
  border-top: 1px solid #e5ded6;
  margin-top: 50px;
}

.footer-note {
  margin-top: 18px;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: var(--forest);
  color: #fff;
}

.cookie-reject {
  background: #ece7e1;
  color: var(--forest);
}

.page-hero {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 40px 0 30px;
  flex-wrap: wrap;
}

.page-hero .hero-image {
  flex: 1 1 360px;
}

.page-hero .hero-text {
  flex: 1 1 320px;
}

.contact-card {
  background: var(--cream);
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

@media (max-width: 760px) {
  .offset {
    margin-left: 0;
  }

  .ad-label {
    text-align: left;
    max-width: unset;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
