* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d232a;
  background: #f8f6f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.inline-link {
  text-decoration: underline;
}

header {
  background: #efe9df;
  padding: 24px 6vw 16px;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  color: #6a4c2f;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  padding: 60px 6vw;
  color: #fefcf9;
  background-color: #3b3f45;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 20, 24, 0.55);
}

.hero-content {
  position: relative;
  max-width: 520px;
}

.hero p {
  max-width: 480px;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #f2b544;
  color: #1d232a;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #fefcf9;
  color: #1d232a;
  border: 1px solid #1d232a;
}

main {
  padding: 40px 0 80px;
}

.section {
  padding: 48px 6vw;
}

.section.alt {
  background: #f1ece4;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.image-frame {
  background: #dcd2c6;
  padding: 12px;
  border-radius: 16px;
}

.image-frame img {
  width: 100%;
  height: 320px;
  border-radius: 12px;
}

.image-frame.small {
  padding: 8px;
  border-radius: 14px;
  background: #e6ddd2;
}

.image-frame.small img {
  width: 120px;
  height: 90px;
  border-radius: 10px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.price {
  font-weight: 700;
  color: #704b28;
}

.quote {
  padding: 24px;
  background: #1d232a;
  color: #fefcf9;
  border-radius: 20px;
}

.quote .inline-link {
  text-decoration: underline;
}

.form-panel {
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8bfb3;
  font-size: 1rem;
  background: #faf9f7;
}

.status {
  font-size: 0.9rem;
  color: #6a4c2f;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  background: #fefcf9;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e0d6cb;
}

footer {
  background: #1d232a;
  color: #fefcf9;
  padding: 40px 6vw;
}

footer a {
  text-decoration: underline;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-columns div {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 20;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.page-hero {
  padding: 48px 6vw;
  background: #efe9df;
}

.page-hero .split img {
  height: 260px;
}

.legal {
  max-width: 860px;
  margin: 0 auto;
}

.reference-list {
  font-size: 0.9rem;
  color: #d8cfc4;
}
