* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1a17;
  --muted: #615b56;
  --accent: #c85a2d;
  --accent-dark: #a64722;
  --sand: #f4efe8;
  --mist: #f9f7f2;
  --olive: #7b7a55;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 6vw 16px;
  border-bottom: 1px solid #e2dbd1;
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px dashed #c9c0b6;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom: 2px solid var(--accent);
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--sand);
}

.section.bg-notes {
  background: linear-gradient(
      rgba(244, 239, 232, 0.88),
      rgba(244, 239, 232, 0.88)
    ),
    url("https://images.unsplash.com/photo-1512058564366-18510be2db19?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section.dark {
  background: #1f1b17;
  color: #f8f4ee;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--olive);
}

.hero {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-media {
  flex: 1 1 360px;
  min-width: 300px;
  position: relative;
  background: #f1e7dc;
  padding: 16px;
  border-radius: 18px;
}

.hero-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 14px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
}

.button.outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.split .card,
.split .panel {
  flex: 1 1 280px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(27, 26, 23, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-image {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  background: #efe7dc;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel {
  background: var(--mist);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f0e6da;
  font-size: 0.85rem;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #efe6d8;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.2rem;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.image-band {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-band .image-block {
  flex: 1 1 260px;
  min-width: 220px;
  background: #efe7dc;
  border-radius: 14px;
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.form-shell {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #efe6d8;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid #d9d2c7;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.footer {
  background: #181513;
  color: #f2ede6;
  padding: 40px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.footer small {
  color: #cfc7bc;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 18px;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid #e0d7cb;
  border-radius: 14px;
  padding: 18px;
  max-width: 360px;
  box-shadow: 0 18px 40px rgba(15, 14, 12, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
}

.cookie-actions .button.outline {
  background: transparent;
}

.legal-block {
  background: #f7f1e8;
  border-radius: 16px;
  padding: 24px;
}

.two-column {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 300px;
}

.quiet {
  color: var(--muted);
}
