* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f3ef;
  --ink: #1f1c1a;
  --muted: #6d6660;
  --accent: #c8874e;
  --accent-dark: #8c5a32;
  --light: #ffffff;
  --shadow: rgba(31, 28, 26, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  background-color: #e6ddd4;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  padding: 6px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 90px 0 120px;
  color: var(--light);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 20, 18, 0.55);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
}

.hero-subtitle {
  font-size: 18px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-space {
  margin-top: 24px;
}

.btn {
  border: none;
  background: var(--accent);
  color: var(--light);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--light);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--light);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.offset {
  margin-top: -40px;
}

.text-block {
  flex: 1 1 55%;
}

.media-block {
  flex: 1 1 45%;
  display: flex;
  justify-content: flex-start;
}

.media-frame {
  background: #e6ddd4;
  padding: 14px;
  border-radius: 24px;
  box-shadow: 0 18px 40px var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.tag {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.callout {
  background: #1f1c1a;
  color: var(--light);
  padding: 26px;
  border-radius: 22px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: var(--light);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 30px var(--shadow);
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid var(--accent-dark);
}

.form-wrap {
  background: var(--light);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 18px 36px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  border: 1px solid #d7ccc2;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  background: #faf8f6;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  display: flex;
  justify-content: center;
  padding: 10px 0 24px;
  z-index: 2;
}

.sticky-cta .btn {
  box-shadow: 0 10px 24px var(--shadow);
}

.footer {
  background: #1a1715;
  color: var(--light);
  padding: 60px 0;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-note {
  margin-top: 24px;
}

.legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d2cbc3;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--light);
  color: var(--ink);
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: 0 14px 30px var(--shadow);
  max-width: 360px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 4;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1515948725-edac7b5bb0fc?w=1400&q=80");
}

.ambient-bg {
  background-image: url("https://images.unsplash.com/photo-1553604588-20fc10d843a7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--light);
}

.page-hero {
  padding: 70px 0 50px;
}

.page-hero .split {
  align-items: flex-start;
}

.page-hero img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
}

.note-box {
  background: #efe7de;
  padding: 18px;
  border-radius: 16px;
}

.contact-blocks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  background: var(--light);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 26px var(--shadow);
  flex: 1 1 240px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .offset {
    margin-top: 0;
  }

  .hero {
    padding: 70px 0 90px;
  }
}
