:root {
  color-scheme: light;
  --ink: #1b1f1c;
  --muted: #5a665f;
  --sand: #f7f5f0;
  --sage: #dde2d9;
  --moss: #c3c9c0;
  --accent: #b07a41;
  --accent-dark: #8d5c2d;
  --plum: #4b4c57;
  --shadow: 0 18px 40px rgba(27, 31, 28, 0.08);
  --radius: 28px;
  --gap: 28px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding-bottom: 90px;
}

.split-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw 10px;
}

.split-nav .brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.split-nav nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ghost-link {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.ghost-link:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 30px 6vw 20px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-panel {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-panel .tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.hero-panel h1 {
  font-size: 36px;
  line-height: 1.15;
  margin: 12px 0 16px;
}

.hero-panel p {
  color: var(--muted);
  margin: 0 0 22px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.primary-btn,
.secondary-btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.primary-btn {
  background: var(--accent);
  color: white;
}

.secondary-btn {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: transparent;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: auto;
}

.hero-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.88);
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 13px;
  max-width: 240px;
}

.floating-note {
  background: var(--sage);
  padding: 24px;
  border-radius: 24px;
  margin: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-note strong {
  font-size: 18px;
}

.offset-section {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 0 6vw;
}

.offset-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offset-card {
  background: white;
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offset-card h3 {
  margin-top: 0;
}

.wide-banner {
  background: var(--moss);
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.wide-banner .banner-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.wide-banner h2 {
  margin: 0;
}

.services {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: white;
  padding: 22px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

.callout {
  margin: 0 6vw;
  padding: 30px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 6vw;
}

.image-strip img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-section {
  background: var(--sage);
  padding: 38px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-card {
  background: white;
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd6cc;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
  align-self: flex-start;
}

.trust-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 6vw;
}

.trust-card {
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.footer {
  background: #f0efe8;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--plum);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  border: 1px solid #d4dad0;
  background: #f7f5f0;
  cursor: pointer;
}

.cookie-btn.primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.page-title {
  padding: 30px 6vw 0;
  font-size: 32px;
}

.content {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dual-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: white;
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal {
  padding: 0 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.muted {
  color: var(--muted);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list .service-card {
  border-left: 4px solid var(--accent);
}

.notice-box {
  background: var(--sage);
  border-radius: 20px;
  padding: 18px;
}

.aside-highlight {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (min-width: 860px) {
  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-panel {
    flex: 1.1;
  }

  .hero-visual {
    flex: 0.9;
  }

  .offset-grid,
  .service-grid,
  .image-strip,
  .trust-row {
    flex-direction: row;
  }

  .offset-grid .offset-card:nth-child(2) {
    margin-top: 40px;
  }

  .service-grid .service-card:nth-child(2) {
    margin-top: 32px;
  }

  .image-strip img:nth-child(2) {
    margin-top: 30px;
  }

  .trust-row .trust-card:nth-child(3) {
    margin-top: 20px;
  }

  .wide-banner .banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .form-section {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-section .form-card {
    flex: 1;
  }

  .form-section .aside-highlight {
    flex: 0.8;
  }

  .dual-block {
    flex-direction: row;
    align-items: flex-start;
    gap: 28px;
  }
}
