:root {
  --huof-sand: #e9d7bc;
  --huof-teal: #087f7a;
  --huof-coral: #f06449;
  --huof-ink: #1e252b;
  --huof-paper: #fffdf8;
  --huof-line: #1e252b;
  --huof-shadow: 6px 6px 0 var(--huof-ink);
  --huof-font: Manrope, Inter, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--huof-paper);
  color: var(--huof-ink);
  font-family: var(--huof-font);
  line-height: 1.5;
  overflow-wrap: anywhere;
}
::selection {
  background: var(--huof-coral);
  color: var(--huof-ink);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
.huof-shell {
  width: min(1180px, calc(100% - 36px));
  margin: auto;
}
.huof-shell > * {
  min-width: 0;
}
.huof-skip {
  position: absolute;
  left: -999px;
}
.huof-skip:focus {
  left: 18px;
  top: 18px;
  z-index: 100;
  background: var(--huof-paper);
  padding: 12px;
  border: 2px solid var(--huof-ink);
}
.huof-head {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--huof-paper);
  border-bottom: 3px solid var(--huof-ink);
}
.huof-head-in {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.huof-brand {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.08em;
}
.huof-brand i {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--huof-coral);
  border: 2px solid var(--huof-ink);
  margin-left: 5px;
}
.huof-menu {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
}
.huof-menu a:hover,
.huof-menu a:focus-visible {
  color: var(--huof-teal);
}
.huof-hamb {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--huof-ink);
  background: var(--huof-sand);
  padding: 10px 14px;
  font-weight: 900;
}
.huof-crumb {
  padding: 22px 0 0;
  font-size: 13px;
  font-weight: 700;
}
.huof-crumb a {
  text-decoration: underline;
}
.huof-hero {
  padding: 78px 0 64px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: end;
}
.huof-kicker {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 10px;
  border: 2px solid var(--huof-ink);
  background: var(--huof-sand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.huof-h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.075em;
}
.huof-lead {
  max-width: 620px;
  font-size: 20px;
  margin: 26px 0;
}
.huof-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.huof-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid var(--huof-ink);
  background: var(--huof-teal);
  color: var(--huof-paper);
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--huof-ink);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.huof-button:hover {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--huof-ink);
}
.huof-button:focus-visible,
.huof-hamb:focus-visible,
a:focus-visible {
  outline: 3px solid var(--huof-coral);
  outline-offset: 3px;
}
.huof-button-alt {
  background: var(--huof-paper);
  color: var(--huof-ink);
}
.huof-hero-card {
  border: 3px solid var(--huof-ink);
  background: var(--huof-teal);
  padding: 22px;
  box-shadow: var(--huof-shadow);
}
.huof-hero-card strong {
  display: block;
  color: var(--huof-paper);
  font-size: 18px;
}
.huof-statgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid var(--huof-ink);
  border-left: 3px solid var(--huof-ink);
}
.huof-stat {
  min-height: 168px;
  padding: 20px;
  border-right: 3px solid var(--huof-ink);
  border-bottom: 3px solid var(--huof-ink);
  background: var(--huof-sand);
}
.huof-stat:nth-child(2) {
  background: var(--huof-coral);
}
.huof-stat:nth-child(3) {
  background: var(--huof-paper);
}
.huof-num {
  display: block;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.08em;
}
.huof-stat small {
  display: block;
  margin-top: 14px;
  font-weight: 800;
}
.huof-tabs {
  position: sticky;
  top: 76px;
  z-index: 10;
  display: flex;
  overflow: auto;
  border-top: 3px solid var(--huof-ink);
  border-bottom: 3px solid var(--huof-ink);
  background: var(--huof-paper);
}
.huof-tab {
  white-space: nowrap;
  border: 0;
  border-right: 2px solid var(--huof-ink);
  padding: 16px 22px;
  background: transparent;
  font-weight: 900;
}
.huof-tab[aria-selected="true"] {
  background: var(--huof-teal);
  color: var(--huof-paper);
}
.huof-panel {
  padding: 64px 0;
}
.huof-panel[hidden] {
  display: none;
}
.huof-section {
  padding: 76px 0;
  border-top: 3px solid var(--huof-ink);
}
.huof-title {
  max-width: 780px;
  margin: 0 0 28px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.huof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.huof-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.huof-box {
  border: 3px solid var(--huof-ink);
  background: var(--huof-paper);
  padding: 22px;
  box-shadow: var(--huof-shadow);
}
.huof-box h3 {
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.04em;
}
.huof-box p {
  margin: 0;
}
.huof-product {
  padding: 0;
  overflow: hidden;
}
.huof-product img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-bottom: 3px solid var(--huof-ink);
  background: var(--huof-sand);
}
.huof-product-body {
  padding: 18px;
}
.huof-price {
  font-size: 23px;
  font-weight: 900;
  color: var(--huof-teal);
}
.huof-note {
  border: 3px solid var(--huof-ink);
  padding: 24px;
  background: var(--huof-coral);
  font-weight: 800;
}
.huof-image {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid var(--huof-ink);
  box-shadow: var(--huof-shadow);
}
.huof-steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 3px solid var(--huof-ink);
  border-top: 3px solid var(--huof-ink);
}
.huof-step {
  counter-increment: step;
  padding: 24px;
  min-height: 190px;
  border-right: 3px solid var(--huof-ink);
  border-bottom: 3px solid var(--huof-ink);
  background: var(--huof-paper);
}
.huof-step:before {
  content: "0" counter(step);
  font-size: 36px;
  font-weight: 900;
  color: var(--huof-teal);
}
.huof-step strong {
  display: block;
  margin: 24px 0 6px;
}
.huof-list {
  display: grid;
  gap: 0;
  border-top: 3px solid var(--huof-ink);
}
.huof-list article {
  display: grid;
  grid-template-columns: 140px 1fr 160px;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 3px solid var(--huof-ink);
}
.huof-list time,
.huof-list span {
  font-size: 13px;
  font-weight: 800;
}
.huof-footer {
  margin-top: 72px;
  padding: 48px 0;
  background: var(--huof-ink);
  color: var(--huof-paper);
}
.huof-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
}
.huof-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.huof-legal {
  max-width: 780px;
  padding: 60px 0;
}
.huof-legal h1 {
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.06em;
}
.huof-legal h2 {
  margin-top: 40px;
}
.huof-legal p,
.huof-legal li {
  font-size: 17px;
}
.huof-size {
  width: 100%;
  border-collapse: collapse;
}
.huof-size th,
.huof-size td {
  padding: 13px;
  border: 2px solid var(--huof-ink);
  text-align: left;
}
.huof-size th {
  background: var(--huof-sand);
}
.huof-form {
  display: grid;
  gap: 10px;
}
.huof-form label {
  font-weight: 900;
}
.huof-form input,
.huof-form textarea,
.huof-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 2px solid var(--huof-ink);
  background: var(--huof-paper);
  font-size: 16px;
}
.huof-form textarea {
  resize: vertical;
}
.huof-form input:focus-visible,
.huof-form textarea:focus-visible,
.huof-form select:focus-visible {
  outline: 3px solid var(--huof-coral);
  outline-offset: 2px;
}
.huof-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.huof-contact-section {
  padding-top: 56px;
}
.huof-form-status {
  padding: 24px;
  border: 3px solid var(--huof-ink);
  box-shadow: var(--huof-shadow);
}
.huof-form-status h2,
.huof-form-status p {
  margin-top: 0;
}
.huof-form-status-ok {
  background: var(--huof-sand);
}
.huof-form-status-error {
  margin-bottom: 18px;
  background: var(--huof-coral);
}
.huof-legal-actions {
  margin-top: 44px;
}
.huof-box address {
  font-style: normal;
}
.huof-box address a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.huof-consent {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 30;
  width: min(430px, calc(100% - 32px));
  padding: 18px;
  border: 3px solid var(--huof-ink);
  background: var(--huof-sand);
  box-shadow: var(--huof-shadow);
  font-size: 14px;
}
.huof-consent[hidden] {
  display: none;
}
.huof-consent p {
  margin: 0 0 12px;
}
.huof-consent .huof-button {
  min-height: 42px;
  padding: 8px 12px;
}
@media (max-width: 780px) {
  .huof-menu {
    display: none;
  }
  .huof-hero,
  .huof-grid2 {
    grid-template-columns: 1fr;
  }
  .huof-grid {
    grid-template-columns: 1fr;
  }
  .huof-statgrid {
    grid-template-columns: 1fr;
  }
  .huof-steps {
    grid-template-columns: 1fr;
  }
  .huof-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .huof-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .huof-h1 {
    font-size: clamp(42px, 14vw, 56px);
    letter-spacing: -0.04em;
  }
  .huof-title {
    letter-spacing: -0.04em;
  }
  .huof-hero {
    padding-top: 48px;
  }
  .huof-tabs {
    top: 75px;
  }
  .huof-size {
    display: block;
    overflow-x: auto;
  }
  .huof-button {
    width: 100%;
  }
  .huof-actions {
    display: grid;
  }
}
@media (max-width: 480px) {
  .huof-shell {
    width: min(100% - 24px, 1180px);
  }
  .huof-footer-grid {
    grid-template-columns: 1fr;
  }
  .huof-head-in {
    min-height: 68px;
  }
  .huof-tabs {
    top: 67px;
  }
  .huof-hero {
    padding: 40px 0;
  }
  .huof-section {
    padding: 56px 0;
  }
  .huof-legal h1 {
    font-size: 44px;
  }
  .huof-consent {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .huof-button {
    transition: none;
  }
}
