* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0c1a14;
  --muted: #4a5a54;
  --sand: #f3f2ee;
  --sage: #cdd9cf;
  --forest: #1f3d2b;
  --moss: #2f5a3f;
  --sun: #d2b36a;
  --stone: #e7ecea;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid var(--stone);
  padding: 20px 6vw 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a:hover,
.button:hover {
  opacity: 0.78;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 50px 6vw 60px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(243, 242, 238, 0.9), rgba(243, 242, 238, 0.3));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.hero-image {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  width: min(52vw, 620px);
  height: 360px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--sage);
  margin-left: auto;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--moss);
}

.headline {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.15;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--forest);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.outline {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #ffffff;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
}

.asym-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.asym-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 32px rgba(12, 26, 20, 0.08);
}

.asym-card.large {
  flex: 1 1 420px;
}

.card-image {
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--stone);
}

.offset-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-visual {
  flex: 1 1 320px;
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--sage);
}

.offset-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 6px solid var(--sun);
}

.service-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing {
  font-weight: 700;
  color: var(--forest);
}

.inline-link {
  color: var(--forest);
  text-decoration: underline;
}

.form-shell {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.form-shell label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--sage);
  font-size: 0.95rem;
}

.form-shell button {
  align-self: flex-start;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--stone);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw 60px;
  background: #0c1a14;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.footer small {
  color: #c7d2cc;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--sun);
  color: #1b201e;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(12, 26, 20, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 300px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .button {
  flex: 1;
  padding: 10px 12px;
  font-size: 0.85rem;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
}

.note {
  background: var(--stone);
  padding: 14px;
  border-radius: 12px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-image {
    width: 100%;
    height: 280px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 90px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
  }
}
[hidden] {
  display: none;
}