* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1a17;
  --muted: #6f6660;
  --sand: #f6f1ec;
  --linen: #efe7de;
  --clay: #d8c7b9;
  --accent: #b67758;
  --accent-dark: #915a3d;
  --soft: #fbf8f5;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  background: var(--soft);
  padding: 18px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid var(--clay);
  padding: 4px 8px;
  border-radius: 999px;
}

.hero {
  background: var(--linen);
  padding: 48px 0 64px;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-media {
  flex: 1 1 360px;
  background: var(--clay);
  border-radius: 20px;
  overflow: hidden;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--sand);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-media,
.split-copy {
  flex: 1 1 320px;
}

.split-media {
  background: var(--clay);
  border-radius: 18px;
  overflow: hidden;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.card {
  flex: 1 1 220px;
  background: white;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(32, 20, 12, 0.08);
}

.card-media {
  background: var(--linen);
  border-radius: 12px;
  overflow: hidden;
}

.tag {
  display: inline-block;
  background: var(--linen);
  color: var(--accent-dark);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
}

.quote {
  font-style: italic;
  background: white;
  border-left: 3px solid var(--accent);
  padding: 16px;
  border-radius: 12px;
  margin: 0;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--clay);
  padding-bottom: 10px;
}

.pricing-item strong {
  font-weight: 700;
}

.form-block {
  background: white;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 36px rgba(32, 20, 12, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--clay);
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background: var(--accent-dark);
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(32, 20, 12, 0.2);
}

.footer {
  background: #191412;
  color: #f4f0eb;
  padding: 36px 0;
}

.footer a {
  color: #f4f0eb;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.legal {
  font-size: 0.85rem;
  color: #d5ccc4;
}

.banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(32, 20, 12, 0.18);
  display: none;
  z-index: 30;
}

.banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.banner-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}

.banner-actions .accept {
  background: var(--accent);
  color: white;
}

.banner-actions .reject {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: white;
}

.bg-story .container {
  backdrop-filter: blur(1px);
  background: rgba(25, 20, 18, 0.72);
  padding: 34px;
  border-radius: 18px;
}

.bg-soft {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-soft .container {
  background: rgba(251, 248, 245, 0.92);
  padding: 32px;
  border-radius: 18px;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.page-hero {
  background: var(--linen);
  padding: 40px 0;
}

.page-hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero-media {
  flex: 1 1 300px;
  background: var(--clay);
  border-radius: 16px;
  overflow: hidden;
}

.page-hero-copy {
  flex: 1 1 300px;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.muted {
  color: var(--muted);
}
