* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #1f1c19;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.top-bar {
  background: #1f1c19;
  color: #f7f4ef;
  padding: 14px 0;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  font-size: 0.92rem;
}

.ad-label {
  font-size: 0.85rem;
  background: #f1b64a;
  color: #1f1c19;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 70px 0 90px;
}

.hero-grid {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1 1 48%;
  min-height: 360px;
  background: #e2d8c6;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.hero-copy {
  flex: 1 1 42%;
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 18px 45px rgba(31, 28, 25, 0.12);
  position: relative;
  top: 30px;
}

.hero-copy h1 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: #1f1c19;
  color: #f7f4ef;
}

.btn-secondary {
  background: #f1b64a;
  color: #1f1c19;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(31, 28, 25, 0.18);
}

.section {
  padding: 80px 0;
}

.section-offset {
  position: relative;
}

.offset-card {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.offset-card.reverse {
  flex-direction: row-reverse;
}

.offset-text {
  flex: 1 1 45%;
}

.offset-image {
  flex: 1 1 45%;
  background: #d9d3c7;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.offset-image img {
  width: 100%;
  height: 100%;
}

.highlight-panel {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(31, 28, 25, 0.1);
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.quote-strip {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.quote {
  flex: 1 1 240px;
  background: #fff4d7;
  padding: 18px;
  border-radius: 16px;
  font-size: 0.95rem;
}

.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-grid.spaced {
  margin-top: 30px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(31, 28, 25, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 170px;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #7a3d00;
}

.service-select {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-option {
  flex: 1 1 200px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-option:hover {
  border-color: #1f1c19;
  transform: translateY(-2px);
}

.service-option.active {
  border-color: #f1b64a;
  background: #fff7e6;
}

.form-card {
  background: #1f1c19;
  color: #f7f4ef;
  padding: 30px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 200px;
}

.form-note {
  font-size: 0.85rem;
  color: #f1b64a;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #e7dcc9;
  padding: 10px 0;
  z-index: 5;
}

.sticky-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.info-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.info-pill {
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

footer {
  background: #1f1c19;
  color: #f7f4ef;
  padding: 50px 0 30px;
  margin-top: 80px;
}

footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d9c7a4;
  margin-top: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  color: #1f1c19;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(31, 28, 25, 0.2);
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 60px 0 40px;
}

.page-hero h1 {
  margin-top: 0;
}

.simple-section {
  padding: 40px 0 60px;
}

.legal-text {
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(31, 28, 25, 0.08);
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 26px rgba(31, 28, 25, 0.08);
}
