* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1c1c;
  --muted: #5a5f66;
  --soft: #f5f3f0;
  --accent: #2f5d62;
  --accent-dark: #23464a;
  --sun: #f0c48a;
  --sand: #efe7db;
  --berry: #4e3a4c;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--sun);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 16px 6vw;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  padding: 6px 10px;
  background: var(--sand);
  color: var(--berry);
  font-size: 0.85rem;
  border-radius: 999px;
}

.hero,
.split {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
}

.hero .content,
.split .content {
  flex: 1 1 320px;
  padding: 60px 6vw;
}

.hero .visual,
.split .visual {
  flex: 1 1 320px;
  min-height: 360px;
  background: var(--soft);
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero .visual img,
.split .visual img {
  width: 100%;
  height: 100%;
}

.reverse {
  flex-direction: row-reverse;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin: 12px 0;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: var(--berry);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary:hover {
  background: #3d2b3b;
}

.btn.ghost:hover {
  background: var(--accent);
  color: #ffffff;
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background: var(--soft);
}

.section h2 {
  margin-top: 0;
  font-size: 1.9rem;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card .body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.badge {
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-wrap {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ccd2d8;
  font-size: 1rem;
}

.form-status {
  min-height: 24px;
  color: var(--berry);
  font-weight: 600;
}

.quote {
  background: var(--sand);
  padding: 24px;
  border-radius: 18px;
}

.split-note {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bg-sand {
  background: #e8e0d5;
}

.bg-mist {
  background: #dfe8eb;
}

.bg-rose {
  background: #f1ebe2;
}

.bg-olive {
  background: #efe3da;
}

.bg-ash {
  background: #e4e0da;
}

.bg-amber {
  background: #efe4d8;
}

.bg-fern {
  background: #e8efe9;
}

.bg-latte {
  background: #e6e2dc;
}

.bg-pearl {
  background: #e7ecef;
}

.footer {
  margin-top: auto;
  padding: 36px 6vw;
  background: #141414;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: #c6c6c6;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--sun);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.sticky-cta:hover {
  background: #e5b472;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 260px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.pill {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.9rem;
}

.note {
  background: var(--sand);
  padding: 18px;
  border-radius: 16px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e2e2e2;
}

.table-row strong {
  min-width: 220px;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero .content,
  .split .content {
    padding: 40px 6vw;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
  }
}
