* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1c1a;
  --muted: #5e5a55;
  --sand: #f6f1eb;
  --stone: #ece4da;
  --night: #121110;
  --accent: #6a4d2e;
  --accent-soft: #e6d6c7;
  --line: #d6c9bc;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbf9f6;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header {
  padding: 24px 6%;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-disclosure {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 360px;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

main {
  padding: 36px 6% 60px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  min-width: 260px;
}

.split .media {
  flex: 1 1 320px;
  min-width: 260px;
}

.image-frame {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.hero-frame {
  min-height: 360px;
}

.section-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-media {
  height: 150px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
}

.btn-ghost {
  background: var(--accent-soft);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
}

.inline-link {
  text-decoration: underline;
}

.form-panel {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.banner {
  background: var(--night);
  color: #fff;
  padding: 16px 6%;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.banner .banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.banner button {
  background: #fff;
  color: var(--night);
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 32px 6%;
  background: var(--sand);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal {
  font-size: 0.9rem;
  color: var(--muted);
}

.bg-market {
  background-color: #d9d0c7;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 320px;
}

.bg-arrival {
  background-color: #e0d6cc;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 320px;
}

@media (max-width: 900px) {
  .sticky-cta {
    position: static;
    margin: 0 6% 24px;
    display: inline-flex;
  }

  header {
    position: static;
  }
}
