* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f5f2;
  --ink: #1d1d1f;
  --muted: #5c5c62;
  --accent: #d7843a;
  --soft: #efe9e2;
  --panel: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 8vw 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-title {
  font-weight: 700;
  font-size: 1.4rem;
}

.brand-sub {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  max-width: 220px;
  color: var(--muted);
  text-align: right;
}

.section {
  padding: 60px 8vw;
}

.section.soft {
  background: var(--soft);
}

.section.panel {
  background: var(--panel);
}

.split {
  display: flex;
  align-items: stretch;
  gap: 48px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-visual {
  flex: 1;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

h1, h2, h3 {
  line-height: 1.2;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.2rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta-row.spaced {
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 28px;
  font-weight: 600;
}

.link-inline {
  text-decoration: underline;
  font-weight: 600;
  color: var(--accent);
}

.image-frame {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #d8d1c7;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 260px;
  background: var(--panel);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.highlight {
  background-image: url("https://images.unsplash.com/photo-1773517458976-b258cfe784ea?w=1400&q=80");
  background-color: #3b332c;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 18, 0.55);
}

.highlight .split-text,
.highlight .split-visual {
  position: relative;
  z-index: 1;
}

.form-card {
  background: var(--panel);
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input, select, textarea {
  padding: 10px 12px;
  border: 1px solid #c9c3bb;
  border-radius: 10px;
  font-size: 1rem;
  background: #fff;
}

button {
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #1b1a17;
  color: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
}

.banner.hidden {
  display: none;
}

.banner-actions {
  display: flex;
  gap: 12px;
}

.banner-actions button {
  padding: 8px 16px;
  border-radius: 20px;
  background: #fff;
  color: #1b1a17;
  font-weight: 600;
}

.footer {
  padding: 40px 8vw 60px;
  background: #121110;
  color: #f3f0ea;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  z-index: 40;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.divider {
  height: 1px;
  background: #d5cfc7;
  margin: 20px 0;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
    max-width: none;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
