* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6%;
  background-color: #f2efe9;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background-color: #1c1c1c;
  color: #f7f5f2;
  font-size: 0.82rem;
  border-radius: 999px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 110px 6% 130px;
  position: relative;
  color: #fdfcf9;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 18, 16, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.6vw, 3.8rem);
  letter-spacing: 0.01em;
}

.hero p {
  font-size: 1.1rem;
  max-width: 620px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-primary,
.button-secondary {
  padding: 12px 20px;
  border-radius: 28px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-primary {
  background-color: #e4c06b;
  color: #1c1c1c;
}

.button-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

section {
  padding: 80px 6%;
}

.section-alt {
  background-color: #ffffff;
}

.section-dark {
  background-color: #1e1d1b;
  color: #f7f5f2;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual {
  flex: 1 1 320px;
}

.figure-frame {
  background-color: #d9d3c7;
  padding: 12px;
  border-radius: 18px;
}

.figure-frame img {
  width: 100%;
  height: 360px;
  border-radius: 12px;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.magazine-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.magazine-columns .column {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote-card {
  padding: 24px;
  border-radius: 20px;
  background-color: #efe9e1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote-card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
}

.trust-bg {
  background-image: url("https://images.unsplash.com/photo-1517832207067-4db24a2ae47c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.trust-overlay {
  background-color: rgba(28, 28, 28, 0.78);
  padding: 60px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
}

.sticky-cta {
  position: sticky;
  top: 0;
  z-index: 5;
  background-color: #f7f0e2;
  padding: 16px 6%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e4d6be;
}

.sticky-cta a {
  padding: 10px 18px;
  border-radius: 24px;
  background-color: #1c1c1c;
  color: #f7f5f2;
}

.form-section {
  background-color: #ffffff;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfc6b7;
  background-color: #fefdfb;
}

textarea {
  min-height: 120px;
}

.form-message {
  min-height: 24px;
  color: #8d3a2f;
  font-weight: 600;
}

.submit-btn {
  background-color: #2f2b27;
  color: #f7f5f2;
  padding: 12px 20px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

footer {
  padding: 50px 6%;
  background-color: #1c1c1c;
  color: #f7f5f2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d8d1c5;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 360px;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 14px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background-color: #1c1c1c;
  color: #f7f5f2;
}

.cookie-reject {
  background-color: #e5ded2;
  color: #1c1c1c;
}

.policy-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 860px;
}

.policy-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.contact-card {
  flex: 1 1 220px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.06);
}

.contact-card h3 {
  margin-bottom: 8px;
}
