* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1d1f23;
  background: #f7f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e4e1dd;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #5f6065;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.nav a:hover,
.nav a:focus {
  border-color: #1d1f23;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: #101820;
  color: #f9f6f2;
}

.hero-content,
.hero-image {
  flex: 1 1 50%;
  min-width: 280px;
}

.hero-content {
  padding: 70px 7vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  background-color: #1a2834;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1d1f23;
  background: #f9f6f2;
  color: #1d1f23;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.primary {
  background: #d46b4f;
  border-color: #d46b4f;
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: #f9f6f2;
  border-color: #f9f6f2;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 50%;
  min-width: 280px;
  padding: 60px 6vw;
}

.split-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9e1d8;
}
.bg-ink {
  background-color: #1a2834;
}

.bg-mist {
  background-color: #e1e7eb;
}

.bg-sand {
  background-color: #f0e2d4;
}

.bg-stone {
  background-color: #e5dcd4;
}

.bg-sage {
  background-color: #dfe4d9;
}

.bg-navy {
  background-color: #1e2732;
}

.bg-cream {
  background-color: #fdf7f1;
}

.bg-graphite {
  background-color: #1f232c;
}

.bg-mocha {
  background-color: #d8c8b6;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f1e5d7;
  font-size: 0.8rem;
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(15, 16, 20, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 16px;
}

.card .price {
  font-weight: 700;
  color: #d46b4f;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding-left: 18px;
  position: relative;
}

.detail-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d46b4f;
}

.form-wrap {
  background: #11151c;
  color: #f9f6f2;
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d8d5d1;
  font-size: 1rem;
}

.inline-link {
  border-bottom: 1px solid currentColor;
}

.testimonial {
  background: #fdf7f1;
  border-radius: 16px;
  padding: 20px;
  margin-top: 12px;
}

.highlight {
  background: #f1e5d7;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #d46b4f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.footer {
  padding: 40px 6vw;
  background: #0f1115;
  color: #e5e0da;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.footer a {
  color: #e5e0da;
  border-bottom: 1px solid transparent;
}

.footer a:hover,
.footer a:focus {
  border-color: #e5e0da;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 16, 20, 0.08);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 12;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #1d1f23;
  background: #f9f6f2;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #1d1f23;
  color: #fff;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 320px;
}

.page-title {
  margin: 0 0 12px;
  font-size: 2.4rem;
}

.section-title {
  margin: 0 0 12px;
  font-size: 1.7rem;
}

.muted {
  color: #6a6c72;
}

.spacing {
  padding: 60px 6vw;
}

.note {
  font-size: 0.9rem;
  color: #f7eee5;
}

@media (max-width: 860px) {
  .hero-content,
  .hero-image,
  .split-text,
  .split-media {
    flex: 1 1 100%;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
