* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1b18;
  --muted: #5f5a52;
  --paper: #f6f1ea;
  --sand: #e8dfd3;
  --clay: #d2c3b3;
  --accent: #7a5b3a;
  --accent-dark: #5f472e;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover,
button:hover {
  color: var(--white);
  background: var(--accent-dark);
}

button,
.btn {
  border: none;
  background: var(--accent);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.page {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background: var(--white);
  border-bottom: 1px solid var(--sand);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 6% 20px 6%;
}

.hero-visual {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.hero-visual .hero-image {
  flex: 1.2;
  border-radius: 28px;
  overflow: hidden;
  background: var(--clay);
}

.hero-visual .hero-copy {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.floating-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(18, 16, 13, 0.12);
  max-width: 360px;
  align-self: flex-end;
  margin-right: 6%;
  position: relative;
  top: -40px;
}

.section {
  padding: 0 6%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.split .panel {
  flex: 1;
  min-width: 260px;
}

.offset {
  position: relative;
  padding: 40px 6%;
  background: var(--sand);
}

.offset::before {
  content: "";
  position: absolute;
  top: -30px;
  right: 10%;
  width: 180px;
  height: 180px;
  background: var(--clay);
  border-radius: 24px;
  z-index: 0;
}

.offset .split {
  position: relative;
  z-index: 1;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 240px;
  padding: 20px;
  border-radius: 22px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(16, 14, 12, 0.08);
}

.card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background: var(--white);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  max-width: 280px;
}

.form-shell {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-shell form {
  flex: 1.2;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: 20px;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--clay);
  font-size: 0.95rem;
  background: #fffdf9;
}

.form-shell textarea {
  min-height: 110px;
}

.image-frame {
  background: var(--clay);
  border-radius: 20px;
  overflow: hidden;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  padding: 40px 6% 60px 6%;
  background: #f0e7db;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 360px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.banner.show {
  display: flex;
}

.banner .banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
}

.headline {
  font-size: 2.3rem;
  font-weight: 700;
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
}

.highlight {
  background: var(--white);
  padding: 8px 12px;
  border-radius: 14px;
  display: inline-block;
}

.tag {
  font-size: 0.85rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.simple-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simple-table .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 16px;
}

.page-hero-small {
  padding: 20px 6% 0 6%;
}

.page-hero-small .split {
  align-items: center;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero-visual {
    flex-direction: column;
  }

  .floating-card {
    align-self: center;
    margin-right: 0;
    top: 0;
  }

  .sticky-cta {
    position: static;
    width: 100%;
  }

  .banner {
    right: 12px;
    left: 12px;
  }
}
