* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1f;
  background-color: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  overflow: hidden;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  position: relative;
  z-index: 2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 20px;
  background-color: #ffffff;
  border: 1px solid #e6e1d8;
}

.nav a:hover {
  background-color: #1d1d1f;
  color: #ffffff;
}

.ad-label {
  font-size: 0.8rem;
  color: #6c6c6c;
  padding: 4px 10px;
  border: 1px dashed #c5c0b6;
  border-radius: 14px;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 70vh;
  padding: 140px 6% 80px;
  background-image: url("https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fefcf9;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 17, 0.55);
}

.hero-content {
  position: relative;
  max-width: 620px;
  z-index: 1;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 14px;
  line-height: 1.15;
}

.hero p {
  margin-bottom: 22px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background-color: #ffcd6b;
  color: #1d1d1f;
}

.btn.secondary {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn:hover {
  transform: translateY(-1px);
}

.section {
  padding: 70px 6%;
  position: relative;
}

.section.alt {
  background-color: #ffffff;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.offset-card {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.12);
  position: relative;
  z-index: 1;
}

.offset-card.shift {
  margin-top: -40px;
}

.image-frame {
  background-color: #d9d3c7;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.service-card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #ece7de;
}

.service-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0;
  font-size: 0.92rem;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #2c2a28;
}

.service-card button,
.service-card a {
  align-self: flex-start;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #1d1d1f;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.quotes {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.quote-card {
  flex: 1 1 220px;
  background-color: #f3efe8;
  padding: 18px;
  border-radius: 18px;
}

.form-wrapper {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.form-wrapper form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d8d3ca;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: #6d6a64;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #1d1d1f;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 10;
  font-size: 0.9rem;
}

.footer {
  background-color: #1d1d1f;
  color: #f6f2ea;
  padding: 50px 6%;
}

.footer .footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer a {
  color: #f6f2ea;
  text-decoration: underline;
}

.disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #c8c2b9;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e2ddd3;
  z-index: 20;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 16px;
  border: 1px solid #1d1d1f;
  background-color: #1d1d1f;
  color: #ffffff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background-color: transparent;
  color: #1d1d1f;
}

.notice {
  background-color: #fef7e7;
  border-left: 4px solid #ffcd6b;
  padding: 16px;
  border-radius: 12px;
}

.page-hero {
  padding: 80px 6% 50px;
  background-color: #ffffff;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 2.2rem;
}

.page-hero p {
  max-width: 640px;
}

.visual-panel {
  background-color: #d9d3c7;
  border-radius: 22px;
  overflow: hidden;
  margin-top: 24px;
}

.visual-panel img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.legal-section {
  padding: 50px 6%;
}

.legal-section h2 {
  margin-top: 30px;
}

.contact-box {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e7e2d8;
}

.inline-link {
  text-decoration: underline;
}
