* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1f1f;
  --muted: #5b5b5b;
  --bg: #f7f4ef;
  --paper: #ffffff;
  --accent: #2f5d62;
  --accent-dark: #1e4347;
  --warm: #e9dfd0;
  --cool: #e3ecf0;
  --shadow: rgba(20, 20, 20, 0.1);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  background: var(--paper);
  padding: 20px 6vw 10px 6vw;
  border-bottom: 1px solid #e5e0d6;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--warm);
  padding: 6px 10px;
  border-radius: 999px;
}

.cta-button,
.inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease;
}

.cta-button:hover,
.inline-cta:hover {
  background: var(--accent-dark);
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.main {
  flex: 1;
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section.alt {
  background: var(--paper);
}

.section.warm {
  background: var(--warm);
}

.section.cool {
  background: var(--cool);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.section-lead {
  max-width: 720px;
  color: var(--muted);
}

.asym-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.asym-grid.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.asym-image {
  flex: 1 1 360px;
  max-width: 540px;
  background: #d9d2c7;
  padding: 12px;
  box-shadow: 0 20px 40px var(--shadow);
}

.offset-card {
  background: var(--paper);
  padding: 28px;
  box-shadow: 0 16px 30px var(--shadow);
  margin-top: -40px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 28px var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial {
  background: var(--paper);
  padding: 22px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 10px 20px var(--shadow);
}

.form-panel {
  background: var(--paper);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 34px var(--shadow);
  max-width: 640px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d8d2c7;
  font-size: 1rem;
  background: #fff;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-row .field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer {
  background: #1f2c2f;
  color: #f4f1ea;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: inherit;
  text-decoration: underline;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--paper);
  padding: 18px;
  box-shadow: 0 16px 30px var(--shadow);
  border-radius: 16px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-button {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #d9d2c7;
  color: var(--ink);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 90px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 26px var(--shadow);
  z-index: 9;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-block {
  background: var(--paper);
  padding: 24px;
  box-shadow: 0 10px 20px var(--shadow);
}

.image-frame {
  background: #d7d2c9;
  padding: 10px;
}

.img-caption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
}

@media (max-width: 860px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
    margin: 16px 6vw 0 6vw;
    align-self: flex-start;
  }
}
