* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1b5f7a;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

header {
  padding: 24px 6vw;
  background-color: #f7f5f2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 600;
}

.ad-label {
  font-size: 0.9rem;
  color: #5a4c3a;
  max-width: 260px;
}

main {
  padding-bottom: 80px;
}

.split {
  display: flex;
  gap: 36px;
  padding: 64px 6vw;
  align-items: center;
}

.split-alt {
  background-color: #fff;
}

.split-reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1;
  min-width: 280px;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b5f52;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: 2.6rem;
}

.lead {
  font-size: 1.1rem;
  color: #2e2e2e;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1b5f7a;
  background-color: #1b5f7a;
  color: #fff;
  font-weight: 600;
}

.button.secondary {
  background-color: transparent;
  color: #1b5f7a;
}

.button:hover,
.button:focus {
  background-color: #144457;
  color: #fff;
}

.button.secondary:hover,
.button.secondary:focus {
  background-color: #e1eef4;
  color: #1b5f7a;
}

.image-box {
  background-color: #d7d1c8;
  padding: 8px;
  border-radius: 20px;
}

.image-box img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 18px;
  padding: 16px;
  background-color: #fdfbf7;
  border-radius: 16px;
  border: 1px solid #e6e1da;
}

.service-thumb {
  width: 130px;
  height: 110px;
  padding: 4px;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.service-card h3 {
  margin-bottom: 6px;
}

.price {
  font-weight: 700;
  color: #1b5f7a;
}

.inline-cta {
  font-weight: 600;
}

.pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background-color: #f0e7dc;
  color: #4b3c2e;
  font-size: 0.85rem;
}

.form-wrap {
  background-color: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e6e1da;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc8be;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #e8774f;
  color: #fff;
  font-weight: 600;
  z-index: 10;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background-color: #c9633f;
}

footer {
  background-color: #1f1f1f;
  color: #f1efe9;
  padding: 40px 6vw;
}

footer a {
  color: #f5c08f;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #fff;
  border: 1px solid #d8d2c8;
  padding: 16px 20px;
  border-radius: 16px;
  max-width: 320px;
  z-index: 12;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-button {
  flex: 1;
  border-radius: 999px;
  border: 1px solid #1b5f7a;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-button.accept {
  background-color: #1b5f7a;
  color: #fff;
}

.cookie-button.reject {
  background-color: #fff;
  color: #1b5f7a;
}

.cookie-button:hover,
.cookie-button:focus {
  background-color: #144457;
  color: #fff;
}

.cookie-button.reject:hover,
.cookie-button.reject:focus {
  background-color: #e1eef4;
  color: #1b5f7a;
}

@media (max-width: 900px) {
  .split,
  .split-reverse {
    flex-direction: column;
  }

  header {
    padding: 20px 5vw;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
