:root {
  --ink: #1f2422;
  --muted: #5b5f5e;
  --sand: #f3efe8;
  --clay: #ded3c3;
  --sage: #d7e2d2;
  --stone: #e8e2da;
  --accent: #2f5f4d;
  --accent-2: #7a4e35;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-2);
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 18px 6vw;
  border-bottom: 1px solid var(--stone);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--sage);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.button:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: var(--white);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

main {
  flex: 1;
}

.split-section {
  display: flex;
  gap: 36px;
  padding: 64px 6vw;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.split-section .column.narrow {
  flex: 0.9;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--accent-2);
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0;
}

.image-frame {
  background: var(--clay);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.ratio-3-4 {
  aspect-ratio: 3 / 4;
}

.ratio-5-4 {
  aspect-ratio: 5 / 4;
}

.ratio-4-5 {
  aspect-ratio: 4 / 5;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-image {
  max-height: 180px;
}

.card-image img {
  height: 100%;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.layered {
  background: var(--sand);
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8vw;
  right: 8vw;
  height: 6px;
  background: var(--accent);
  border-radius: 999px;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-dark a {
  color: var(--sage);
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: var(--sage);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.form-panel {
  background: var(--white);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--stone);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 1rem;
}

textarea {
  min-height: 110px;
}

footer {
  padding: 40px 6vw;
  background: var(--stone);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 16px;
  padding: 16px 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-2);
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .hero-title {
    font-size: 2rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
