*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1c1c1c;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #2f4f4f;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #2f4f4f;
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 6vw 12px;
  background: #f7f4ef;
}

.header-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  background: #d9e2dd;
  padding: 6px 10px;
  border-radius: 20px;
}

.hero {
  padding: 6vh 6vw 10vh;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-card {
  flex: 1 1 360px;
  background: #fff;
  border-radius: 28px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 32px rgba(26, 34, 32, 0.12);
}

.hero-image {
  width: 100%;
  height: 300px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #cbd5c0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  border: none;
  background: #2f4f4f;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: #f1e8da;
  color: #2f4f4f;
}

.button.ghost {
  background: transparent;
  border: 1px solid #2f4f4f;
  color: #2f4f4f;
}

.button:hover,
.button:active {
  filter: brightness(0.95);
}

.section {
  padding: 6vh 6vw;
}

.section.alt {
  background: #eef1ed;
}

.section.dark {
  background: #2f4f4f;
  color: #f7f4ef;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(20, 24, 22, 0.12);
}

.offset-card.dark {
  background: #243a3a;
  color: #f7f4ef;
}

.img-frame {
  flex: 1 1 320px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #d6d1c7;
  min-height: 260px;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 18px rgba(20, 24, 22, 0.12);
}

.card-image {
  width: 100%;
  height: 180px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #c9d0c5;
}

.card-image img {
  width: 100%;
  height: 100%;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.form-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(20, 24, 22, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c5c5c5;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #1f2b2b;
  color: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer a {
  color: #f7f4ef;
}

.disclaimer {
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta button {
  box-shadow: 0 12px 26px rgba(20, 24, 22, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(20, 24, 22, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 12px;
  border-radius: 16px;
  background: #e6ebe6;
  font-size: 0.85rem;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 280px;
}

.notice-box {
  background: #f1e8da;
  padding: 16px;
  border-radius: 18px;
}

.hero-bg {
  background: #edf2ef;
  border-radius: 32px;
  padding: 24px;
}

.bg-journey {
  background-color: #e4ebe3;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-focus {
  background-color: #e2e7e0;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-quiet {
  background-color: #dde3d8;
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-depth {
  background-color: #243536;
  background-image: url("https://images.unsplash.com/photo-1482192596544-9eb780fc7f66?w=1400&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}

.quote {
  font-style: italic;
  font-size: 1.05rem;
}

.highlight {
  font-weight: 700;
}

.spacer-top {
  margin-top: 18px;
}

@media (max-width: 820px) {
  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
  .cookie-banner {
    left: 16px;
    bottom: 90px;
  }
}
