* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1f23;
  background: #f5f2ee;
  line-height: 1.6;
}

a {
  color: #1d1f23;
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  display: flex;
  flex-direction: column;
  padding: 18px 6vw 10px;
  background: #ffffff;
}

.branding-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand-name {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  background: #f0ebe4;
  padding: 6px 12px;
  border-radius: 18px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 32px;
  background: #fefbf8;
}

.hero-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  flex: 1 1 360px;
  background: #d9d3cb;
  border-radius: 18px;
  overflow: hidden;
}

.primary-button,
.secondary-button,
.ghost-button {
  border: none;
  padding: 12px 18px;
  font-size: 1rem;
  cursor: pointer;
}

.primary-button {
  background: #1d1f23;
  color: #ffffff;
}

.secondary-button {
  background: #e5ded5;
  color: #1d1f23;
}

.ghost-button {
  background: transparent;
  border: 1px solid #1d1f23;
  color: #1d1f23;
}

.magazine-section {
  padding: 36px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.column {
  flex: 1 1 280px;
}

.wide-column {
  flex: 2 1 420px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background: #e1d9cf;
  border-radius: 12px;
  overflow: hidden;
}

.section-bg {
  background: #ece5dd;
  padding: 42px 6vw;
  position: relative;
  overflow: hidden;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.section-bg .section-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 900px;
}

.inline-image {
  background: #d5cdc4;
  border-radius: 12px;
  overflow: hidden;
}

.list-block {
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
}

.form-section {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  font-size: 1rem;
  border: 1px solid #c8c0b7;
  border-radius: 10px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1d1f23;
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.footer {
  margin-top: auto;
  background: #1d1f23;
  color: #ffffff;
  padding: 28px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #ffffff;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-title {
  font-size: 2.2rem;
  margin: 0;
}

.muted {
  color: #585b60;
}

.contact-block {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
}

.thanks-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  max-width: 720px;
}

.two-tone {
  background: linear-gradient(120deg, #fefbf8 0%, #f0ebe4 100%);
}
