:root {
  color-scheme: light;
  --ink: #1b1b1d;
  --muted: #5f646b;
  --accent: #c46d3b;
  --accent-dark: #9f532a;
  --bg: #f6f3f0;
  --paper: #ffffff;
  --sand: #efe5dc;
  --stone: #e4e1dc;
  --shadow: rgba(25, 25, 28, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 24px 6vw 96px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 8px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  justify-content: flex-end;
  text-align: right;
  font-size: 14px;
}

.site-nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-color: var(--accent);
}

.section {
  background: var(--paper);
  padding: 36px;
  border-radius: 18px;
  box-shadow: 0 20px 50px var(--shadow);
}

.section.sand {
  background: var(--sand);
}

.section.stone {
  background: var(--stone);
}

.section.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section .text-stack {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section .media-stack {
  flex: 1 1 320px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-card {
  flex: 1 1 340px;
  background: var(--paper);
  padding: 36px;
  border-radius: 22px;
  box-shadow: 0 18px 45px var(--shadow);
}

.hero-media {
  flex: 1 1 340px;
  border-radius: 26px;
  overflow: hidden;
  background: #d7c7bb;
  box-shadow: 0 18px 45px var(--shadow);
}

.img-cover {
  object-fit: cover;
  height: 100%;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(32px, 4vw, 52px);
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  box-shadow: 0 16px 40px var(--shadow);
}

.card .card-media {
  background: #d8d2c8;
}

.card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 16px;
  margin: 0;
}

.list li {
  color: var(--muted);
}

.offset-left {
  margin-left: 8vw;
}

.offset-right {
  margin-right: 8vw;
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

blockquote {
  margin: 0;
  padding: 18px 22px;
  background: var(--paper);
  border-left: 4px solid var(--accent);
  box-shadow: 0 12px 30px var(--shadow);
  flex: 1 1 240px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d4cfc9;
  font-size: 15px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.form-grid input {
  flex: 1 1 220px;
}

.form-status {
  font-size: 14px;
  color: var(--accent-dark);
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  align-self: flex-end;
  background: var(--paper);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 34px var(--shadow);
  margin-right: 4vw;
}

.footer {
  background: #141414;
  color: #f4f1ed;
  padding: 36px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: #f4f1ed;
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.footer p {
  color: #d8d2cb;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--paper);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 20px 50px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.banner-hidden {
  display: none;
}

.bg-abstract {
  background-color: #3f3b37;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-abstract p {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .sticky-cta {
    align-self: center;
  }
}
