/* Base */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background: #f7f4f1;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: #1f1f1f;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}

/* Layout */
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}
.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: auto;
  align-items: center;
}
.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background: #e6ded6;
  border-radius: 999px;
}
.cta-btn {
  background: #1f1f1f;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
}
.cta-outline {
  background: transparent;
  color: #1f1f1f;
  border: 1px solid #1f1f1f;
  padding: 10px 16px;
  border-radius: 999px;
}

/* Magazine sections */
.mag-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 0 20px;
}
.mag-hero-text {
  flex: 1 1 320px;
}
.mag-hero-media {
  flex: 1 1 420px;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  background-color: #d8cfc6;
}
.hero-media {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
}
.section-bg {
  background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d8cfc6;
}
.section-bg .overlay {
  background: rgba(31, 31, 31, 0.72);
  color: #ffffff;
  padding: 40px;
  border-radius: 18px;
}
.section {
  padding: 40px 0;
}
.section-alt {
  background: #efe9e3;
}
.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.col-2 {
  flex: 1 1 320px;
}
.col-3 {
  flex: 1 1 240px;
}
.panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.panel-spaced {
  margin-top: 20px;
}
.panel-tight {
  padding: 16px;
}
.img-wrap {
  background: #ded5cc;
  border-radius: 16px;
  overflow: hidden;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-image {
  height: 240px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price {
  font-weight: 700;
  color: #0f2b26;
}
.highlight {
  background: #1f1f1f;
  color: #fff;
  padding: 24px;
  border-radius: 18px;
}
.inline-link {
  text-decoration: underline;
}

/* Form */
.form-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-block label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.form-block input,
.form-block select,
.form-block textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7bfb7;
  background: #fff;
  font: inherit;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #0f2b26;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 10;
}

/* Footer */
footer {
  margin-top: auto;
  background: #1f1f1f;
  color: #f7f4f1;
  padding: 32px 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links a {
  color: #f7f4f1;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 20;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

/* Utility */
.muted {
  color: #5b5b5b;
}
.section-title {
  font-size: 1.6rem;
  margin: 0 0 12px;
}
.small {
  font-size: 0.9rem;
}
.center {
  text-align: center;
}
.hero-tag {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #3b3b3b;
}
