* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1c1c;
  --muted: #5f5f5f;
  --sand: #f6f2ee;
  --mist: #eef3f1;
  --leaf: #3e6b5b;
  --amber: #c17b2d;
  --sky: #dfe9f4;
  --stone: #f2f0eb;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--leaf);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

header {
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: var(--stone);
  border-radius: 20px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2f2f2f;
  color: #ffffff;
  padding: 90px 6vw 110px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 20px;
}

.hero p {
  font-size: 18px;
  margin: 0 0 28px;
}

.cta-button {
  background: var(--amber);
  color: #ffffff;
  border: none;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.outline-button {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
}

main {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.section {
  padding: 0 6vw;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  min-width: 280px;
}

.split .media {
  flex: 1 1 320px;
  min-width: 280px;
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--sand);
  display: block;
}

.tag {
  display: inline-block;
  background: var(--mist);
  color: var(--leaf);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}

.highlight {
  background: var(--sky);
  padding: 32px;
  border-radius: 20px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .card-body {
  padding: 18px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-color: var(--sand);
  display: block;
}

.quote {
  font-style: italic;
  margin-bottom: 18px;
}

.pricing {
  background: var(--stone);
  padding: 36px;
  border-radius: 24px;
}

.pricing-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.pricing-item {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #ececec;
}

.service-select {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-button {
  border: 1px solid var(--leaf);
  background: #ffffff;
  color: var(--leaf);
  border-radius: 26px;
  padding: 10px 16px;
  cursor: pointer;
}

.service-button.active {
  background: var(--leaf);
  color: #ffffff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #d7d7d7;
  font-size: 14px;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1 1 200px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta button {
  background: var(--leaf);
  color: #ffffff;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.footer {
  background: #111111;
  color: #ffffff;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #ffffff;
}

.footer small {
  color: #c9c9c9;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 auto;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.accept {
  background: var(--leaf);
  color: #ffffff;
}

.reject {
  background: #ececec;
  color: #333333;
}

.bg-shift {
  background: var(--mist);
  padding: 50px 6vw;
}

.bg-image {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2c2c2c;
  color: #ffffff;
  position: relative;
}

.bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.bg-image .section {
  position: relative;
  z-index: 1;
  padding: 60px 6vw;
}

.legal {
  padding: 30px 6vw 60px;
}

.legal h1 {
  margin-top: 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--sand);
  padding: 18px;
  border-radius: 16px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  flex-wrap: wrap;
}

.service-row span {
  flex: 1 1 220px;
}

.notice {
  background: var(--stone);
  padding: 18px;
  border-radius: 12px;
}

@media (max-width: 860px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    width: calc(100% - 32px);
    justify-content: space-between;
  }

  .hero h1 {
    font-size: 34px;
  }
}
