:root {
  --paper: #f8f5ea;
  --surface: #fffdf4;
  --surface-strong: #ffffff;
  --ink: #1f252b;
  --muted: #596166;
  --line: #d8d0bd;
  --green: #24a873;
  --green-dark: #12704f;
  --blue: #347bb7;
  --red: #e56558;
  --mustard: #e7b43d;
  --shadow: 0 18px 40px rgba(31, 37, 43, 0.13);
  --radius: 8px;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 4rem;
  margin-bottom: 1.4rem;
}

h2 {
  max-width: 760px;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.wrap {
  width: min(100% - 40px, var(--wrap));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: 10px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--surface);
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 245, 234, 0.94);
  border-bottom: 2px solid var(--line);
  backdrop-filter: blur(10px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
}

.brand__site {
  font-size: 1rem;
}

.brand__product {
  color: var(--green-dark);
  font-size: 1.45rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.primary-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--surface);
  box-shadow: inset 0 0 0 2px var(--line);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--surface);
  border: 0;
  border-radius: var(--radius);
}

.menu-button__bars,
.menu-button__bars::before,
.menu-button__bars::after {
  display: block;
  width: 22px;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

.menu-button__bars::before {
  transform: translateY(-7px);
}

.menu-button__bars::after {
  transform: translateY(4px);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--surface);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.button--primary {
  background: var(--green);
}

.button--secondary {
  background: var(--mustard);
}

.button--ghost {
  background: var(--surface);
}

.button--small {
  min-height: 40px;
  background: var(--red);
  box-shadow: 4px 4px 0 var(--ink);
}

.hero {
  overflow: hidden;
  border-bottom: 2px solid var(--line);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  min-height: min(720px, calc(100vh - 150px));
  padding: 2.4rem 0 3rem;
  gap: 2.4rem;
}

.hero__brand {
  color: var(--green-dark);
  font-weight: 950;
  font-size: 1.1rem;
}

.hero__brand span {
  color: var(--muted);
  font-weight: 800;
}

.hero__subhead {
  max-width: 720px;
  color: #313a40;
  font-size: 1.22rem;
}

.hero__support {
  display: inline-block;
  margin-bottom: 1.5rem;
  border-bottom: 5px solid var(--red);
  font-weight: 950;
  font-size: 1.15rem;
}

.hero__actions,
.section-actions,
.callout__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__visual {
  margin-right: -90px;
}

.hero__visual img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section {
  padding: 5.2rem 0;
}

.section--tint {
  background: #eef5ec;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.section--ink {
  background: var(--ink);
  color: var(--surface);
}

.section__label {
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section--ink .section__label {
  color: var(--mustard);
}

.section__intro {
  max-width: 790px;
  color: var(--muted);
  font-size: 1.1rem;
}

.section--ink .section__intro {
  color: #dbe4dc;
}

.punch {
  max-width: 820px;
  margin-top: 2rem;
  padding: 1.1rem 1.3rem;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--red);
  font-size: 1.15rem;
  font-weight: 850;
}

.feature-grid,
.site-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.feature-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.site-card,
.audience-panel {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 rgba(31, 37, 43, 0.95);
  padding: 1.2rem;
}

.feature-card__meta,
.site-card__topline {
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-card p,
.site-card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.split--reverse > :first-child {
  order: 2;
}

.audience-panel {
  min-height: 100%;
  padding: 1.6rem;
}

.audience-panel h3 {
  font-size: 2rem;
}

.audience-panel--blue {
  box-shadow: 7px 7px 0 var(--blue);
}

.audience-panel--green {
  box-shadow: 7px 7px 0 var(--green);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.25rem 0.55rem;
  background: #ecf6ff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 850;
}

.chip-list--large .chip {
  background: var(--surface);
  font-size: 0.92rem;
}

.site-card {
  display: flex;
  flex-direction: column;
}

.site-card__topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.site-card__topline strong {
  color: var(--red);
}

.site-card__location,
.site-card__restriction {
  font-size: 0.92rem;
}

.site-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: auto 0 0.8rem;
}

.site-card__facts div {
  padding: 0.65rem;
  background: #f2efe2;
  border-radius: var(--radius);
}

.site-card__facts dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-card__facts dd {
  margin: 0;
  font-weight: 850;
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background: var(--surface);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--green);
}

.callout p {
  max-width: 740px;
  color: var(--muted);
  margin-bottom: 0;
}

.odoo-preview {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.2rem;
  background: var(--surface);
  border: 2px dashed var(--ink);
  border-radius: var(--radius);
}

.odoo-preview iframe {
  width: 100%;
  min-height: 520px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}

.fine-print {
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero,
.legal-hero {
  padding: 5rem 0 4rem;
  background: var(--surface);
  border-bottom: 2px solid var(--line);
}

.page-hero p,
.legal-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.15rem;
}

.about-stack {
  display: grid;
  gap: 1rem;
}

.placeholder-list {
  display: grid;
  gap: 0.8rem;
  max-width: 850px;
}

.placeholder-list p {
  margin: 0;
  padding: 1rem;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}

.legal-layout {
  display: grid;
  gap: 1rem;
  padding: 4rem 0;
}

.legal-block {
  max-width: 850px;
  padding: 1.2rem;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius);
}

.legal-block h2 {
  font-size: 1.45rem;
}

.site-footer {
  padding: 3rem 0;
  background: var(--ink);
  color: var(--surface);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
  gap: 2rem;
}

.footer__brand {
  font-size: 1.15rem;
  font-weight: 900;
}

.footer__legal {
  color: #d5ded7;
  font-size: 0.9rem;
}

.site-footer nav {
  display: grid;
  gap: 0.5rem;
}

.site-footer a {
  color: inherit;
  font-weight: 800;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .menu-button {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    inset: 76px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: 8px 8px 0 var(--ink);
  }

  .menu-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    justify-content: flex-start;
  }

  .hero__inner,
  .split,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    min-height: auto;
  }

  .hero__visual {
    margin-right: 0;
  }

  .feature-grid,
  .feature-grid--compact,
  .site-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .callout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, var(--wrap));
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero__inner {
    gap: 1.2rem;
    padding: 1.1rem 0 1.35rem;
  }

  .hero__subhead,
  .page-hero p,
  .legal-hero p {
    font-size: 1rem;
  }

  .hero__subhead {
    line-height: 1.38;
    margin-bottom: 0.75rem;
  }

  .hero__support {
    margin-bottom: 0.85rem;
    font-size: 1rem;
  }

  .hero__visual img {
    min-height: 110px;
    max-height: 130px;
    border-width: 3px;
  }

  .feature-grid,
  .feature-grid--compact,
  .site-grid,
  .steps,
  .site-card__facts {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.4rem 0;
  }

  .button {
    min-height: 42px;
    padding: 0.58rem 0.85rem;
    width: 100%;
  }

  .hero__actions,
  .section-actions,
  .callout__actions {
    gap: 0.55rem;
    width: 100%;
  }
}
