* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1d1a;
  --muted: #5f5a53;
  --sand: #f6f1ea;
  --stone: #e7dfd6;
  --olive: #6b7b4c;
  --brick: #b1643f;
  --night: #2b2a28;
  --sky: #dfe7ec;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6%;
  background: #fff;
  border-bottom: 1px solid var(--stone);
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  flex-wrap: wrap;
}

.nav a {
  padding: 6px 10px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.nav a:hover {
  border-color: var(--ink);
}

.ad-label {
  font-size: 12px;
  color: var(--brick);
  border: 1px solid var(--brick);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  min-height: 62vh;
  background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 29, 26, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 70px 6%;
  max-width: 560px;
}

.hero-content h2 {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 1.2;
}

.hero-content p {
  margin: 0 0 24px;
  font-size: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 4px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.alt {
  background: transparent;
  color: var(--ink);
}

.section {
  padding: 70px 6%;
}

.section.light {
  background: var(--sand);
}

.section.dark {
  background: var(--night);
  color: #fff;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
}

.section.dark .eyebrow {
  color: #d7d2cb;
}

.section h3 {
  margin: 12px 0 16px;
  font-size: 30px;
}

.section p {
  margin: 0 0 16px;
}

.image-wrap {
  width: 100%;
  height: 360px;
  background: var(--sky);
  overflow: hidden;
  border-radius: 12px;
}

.image-wrap.small {
  height: 260px;
  background: var(--stone);
}

.highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.highlight div {
  flex: 1 1 200px;
  padding: 18px;
  border: 1px solid var(--stone);
  border-radius: 10px;
  background: #fff;
}

.highlight span {
  display: block;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card img {
  border-radius: 10px;
  height: 160px;
}

.price-tag {
  font-size: 20px;
  color: var(--brick);
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px;
  border-radius: 12px;
  background: var(--stone);
}

.cta-strip a {
  text-decoration: underline;
}

.form-card {
  border: 1px solid var(--stone);
  border-radius: 14px;
  padding: 28px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border: 1px solid var(--stone);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}

.inline-cta {
  text-decoration: underline;
  color: var(--brick);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  padding: 12px 16px;
  border: 1px solid var(--stone);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.sticky-cta button {
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
}

.sticky-cta button:hover {
  color: var(--brick);
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background: var(--night);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d7d2cb;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 12;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--ink);
}

.page-title {
  padding: 50px 6% 20px;
  background: var(--sand);
}

.page-title h2 {
  margin: 0;
  font-size: 34px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-block {
  border-left: 3px solid var(--brick);
  padding-left: 16px;
  margin-top: 18px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 240px;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 20px;
  background: #fff;
}

.reference-list {
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero-content h2 {
    font-size: 34px;
  }
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
