* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1f;
  background: #f7f4f1;
  line-height: 1.6;
}

a {
  color: #1a4a5e;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #1a4a5e;
  outline-offset: 2px;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  background: #f0ebe6;
  padding: 12px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ded7d0;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.95rem;
}

.disclosure {
  font-size: 0.85rem;
  color: #5b5149;
  max-width: 420px;
}

.hero {
  background: #efeae3;
  padding: 48px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.hero-image {
  flex: 1 1 360px;
}

.hero-text {
  flex: 1 1 340px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero p {
  font-size: 1.05rem;
  margin: 0 0 20px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #1a4a5e;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}

.hero-cta:hover {
  background: #173c4b;
}

.img-frame {
  background: #d9d2cb;
  padding: 6px;
  border-radius: 12px;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.section {
  padding: 56px 32px;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 18px;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.col-wide {
  flex: 2 1 360px;
}

.col-narrow {
  flex: 1 1 220px;
}

.card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.08);
}

.card h3 {
  margin: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: #efe2d7;
  color: #5a3b2d;
  border-radius: 999px;
  font-size: 0.78rem;
}

.cta-inline {
  font-weight: 600;
  text-decoration: underline;
}

.backdrop-one {
  background-color: #e6e1da;
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1b1b1b;
}

.backdrop-two {
  background-color: #e4e7ea;
  background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #0d1a1f;
}

.overlay-panel {
  background: rgba(247, 244, 241, 0.92);
  padding: 24px;
  border-radius: 16px;
  max-width: 640px;
}

.testimonial {
  border-left: 4px solid #c1a98c;
  padding-left: 16px;
  margin: 0;
  font-style: italic;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e5ded6;
}

.pricing-card strong {
  font-size: 1.4rem;
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 30px rgba(26, 26, 26, 0.08);
}

.form-step {
  margin-bottom: 20px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid label {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc7bf;
  font-size: 0.98rem;
}

button {
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.primary-button {
  padding: 12px 18px;
  border-radius: 999px;
  background: #1a4a5e;
  color: #fff;
  font-weight: 600;
}

.primary-button:hover {
  background: #173c4b;
}

.secondary-button {
  padding: 10px 16px;
  border-radius: 999px;
  background: #efe2d7;
  color: #5a3b2d;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #1a4a5e;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 18px rgba(26, 74, 94, 0.3);
  z-index: 20;
}

.footer {
  background: #1c1f22;
  color: #f7f4f1;
  padding: 40px 32px;
  margin-top: auto;
}

.footer a {
  color: #e4d9cf;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.18);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.muted {
  color: #6a5f55;
  font-size: 0.95rem;
}

.page-header {
  padding: 36px 32px 12px;
  background: #efeae3;
}

.simple-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.simple-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plain-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #e5ded6;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.note {
  background: #efe2d7;
  padding: 12px 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 860px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    position: static;
    margin: 0 32px 32px;
    display: inline-flex;
  }

  .cookie-banner {
    right: 18px;
  }
}
