* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f3ee;
  --ink: #1c1a17;
  --accent: #b35a2a;
  --accent-dark: #7a3416;
  --muted: #6d655b;
  --card: #ffffff;
  --soft: #efe6db;
  --shadow: rgba(28, 26, 23, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #fbf8f2;
  border-bottom: 1px solid #e6ded3;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 6%;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  background: var(--soft);
  color: var(--accent-dark);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
}

main {
  flex: 1;
}

.section {
  padding: 54px 6%;
}

.section.alt {
  background: var(--soft);
}

.section.bg-embers {
  background-image: linear-gradient(rgba(255, 247, 239, 0.92), rgba(255, 247, 239, 0.92)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section.dark {
  background: #2a241f;
  color: #fef6ee;
}

.section.slim {
  padding: 36px 6%;
}

.hero {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: stretch;
}

.hero-text,
.hero-media {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-media {
  background-color: #d3c2ae;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 10px;
}

h1 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 16px;
}

h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

p {
  margin-bottom: 12px;
}

.row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 22px;
  flex: 1 1 220px;
  box-shadow: 0 12px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-media {
  background-color: #d7c8b4;
  border-radius: 12px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.pill {
  display: inline-flex;
  background: #fff3e4;
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight {
  background: #fff7ef;
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 12px;
}

.image-band {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-band .media-box {
  flex: 1 1 240px;
  min-width: 220px;
  background-color: #cdbba6;
  border-radius: 14px;
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.pricing-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.form-card {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 30px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d6cbbb;
  font-size: 14px;
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  background: #1f1b17;
  color: #f5eee6;
  padding: 32px 6%;
}

.footer a {
  color: #f5eee6;
  text-decoration: underline;
}

.footer-columns {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer-column {
  flex: 1 1 200px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2b241f;
  color: #fff7ef;
  padding: 16px 6%;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 8px 14px;
}

.mono {
  font-family: "Courier New", Courier, monospace;
}

.center {
  text-align: center;
}

.tight {
  max-width: 820px;
}

.wide {
  max-width: 1100px;
}

.container {
  margin: 0 auto;
}

.notice {
  font-size: 14px;
  color: var(--muted);
}
