* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #f6f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 18px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a4c3b;
  background: #efe6d8;
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
  padding: 36px 0 60px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 360px;
}

.split .media {
  flex: 1 1 360px;
  background-color: #d9d2c7;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
}

.hero-card {
  background: #111;
  color: #fff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.primary-btn {
  background: #f5b11f;
  color: #1a1a1a;
}

.secondary-btn {
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid #c7b8a8;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-1px);
}

.section {
  padding: 58px 0;
}

.section.alt {
  background: #efe6d8;
}

.section.dark {
  background: #1c1c1c;
  color: #f4f4f4;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card img {
  width: 100%;
  height: 180px;
}

.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
  color: #8d4b2e;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.form-panel {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c7b8a8;
  font-size: 1rem;
}

.footer {
  padding: 40px 0;
  font-size: 0.9rem;
  color: #3e3e3e;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background: #f5b11f;
  color: #1a1a1a;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  width: min(380px, 90%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 40px 0 20px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.address-box {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notice {
  font-size: 0.9rem;
  color: #4d4d4d;
}

@media (max-width: 860px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 20px;
  }

  .sticky-cta {
    position: static;
    display: inline-flex;
    margin: 20px auto 0;
  }
}
