* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2328;
  background: #f7f5f1;
  line-height: 1.6;
}

a {
  color: #1f2328;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #6a5b3a;
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  background: #f0e8dd;
  border-bottom: 1px solid #dfd3c2;
  padding: 18px 6vw;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a4f3a;
  background: #f6efe6;
  border: 1px dashed #c8b8a2;
  padding: 6px 10px;
}

.masthead {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px 6vw 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn,
.btn-outline,
.btn-light {
  border: none;
  padding: 12px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn {
  background: #1f2328;
  color: #f7f5f1;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1f2328;
  color: #1f2328;
}

.btn-light {
  background: #f6efe6;
  color: #1f2328;
}

.hero-image {
  flex: 1 1 320px;
  min-height: 320px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-color: #d9cbb7;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #1f2328;
}

.hero-image p {
  background: rgba(246, 239, 230, 0.9);
  padding: 12px 16px;
  border-radius: 16px;
  margin: 0;
  font-weight: 600;
}

.section {
  padding: 36px 6vw;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 18px;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.columns.reverse {
  flex-direction: row-reverse;
}

.column {
  flex: 1 1 280px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card h3 {
  margin: 0;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #6a4f2f;
}

.image-frame {
  background-color: #e3d4c5;
  border-radius: 16px;
  overflow: hidden;
}

.media-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.highlight-band {
  background: #f2e6d7;
  border-radius: 24px;
  padding: 24px;
  background-size: cover;
  background-position: center;
}

.quote {
  font-style: italic;
  margin: 0;
}

.form-shell {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7c9b8;
  font-size: 1rem;
  background: #fbfaf8;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  background: #1f2328;
  color: #f6efe6;
  padding: 28px 6vw;
}

.footer a {
  color: #f6efe6;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #f0e8dd;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1f2328;
  color: #f7f5f1;
  padding: 10px 14px;
  border-radius: 30px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.sticky-cta button {
  border: none;
  background: #f6efe6;
  color: #1f2328;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.plain-section {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.small-note {
  font-size: 0.9rem;
  color: #5b5240;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
}

.bg-notes {
  background-image: url("https://images.unsplash.com/photo-1458642849426-cfb724f15ef7?w=1400&q=80");
}
