:root {
  --bg: #fbf8f3;
  --ink: #2b2926;
  --muted: #6f6960;
  --soft: #a49d93;
  --accent: #e5822e;
  --line: rgba(43, 41, 38, 0.11);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family:
    "PT Sans",
    -apple-system,
    "Segoe UI",
    Arial,
    sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding-left: 26px;
  padding-right: 26px;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}
p {
  color: var(--muted);
}
strong {
  color: var(--ink);
}
.tlink {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(229, 130, 46, 0.4);
  transition: border-color 0.2s;
}
.tlink:hover {
  border-bottom-color: var(--accent);
}

.topbar {
  position: absolute;
  top: clamp(22px, 3.4vh, 40px);
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  gap: clamp(22px, 4vw, 36px);
  justify-content: center;
}
.topbar a,
.topbar button {
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  font-size: clamp(11px, 1.3vw, 14px);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(43, 41, 38, 0.35);
  padding: 4px 0;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.topbar a:hover,
.topbar a:focus-visible,
.topbar button:hover,
.topbar button:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
  outline: none;
}

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(64px, 11vw, 120px) 0 clamp(48px, 8vw, 80px);
}
.hero .wash {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: min(60%, 420px);
  background: url("/assets/bg-orange.webp") center top/cover no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.9;
  -webkit-mask-image: linear-gradient(#000 30%, transparent 92%);
  mask-image: linear-gradient(#000 30%, transparent 92%);
  pointer-events: none;
}
.hero .inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 26px;
}
.hero h1 {
  font-size: clamp(2.2rem, 6.2vw, 3.8rem);
  margin: 18px 0 20px;
}
.hero .lead {
  font-size: clamp(16px, 2vw, 20px);
  margin: 0 auto 32px;
  max-width: 540px;
}

.links {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  font-size: clamp(15px, 1.3vw, 16px);
  text-decoration: none;
  transition: 0.25s;
}
.btn svg {
  width: 1.2em;
  height: 1.2em;
  color: var(--accent);
  transition: color 0.25s;
}
.btn:hover,
.btn:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(229, 130, 46, 0.28);
  outline: none;
}
.btn:hover svg,
.btn:focus-visible svg {
  color: #fff;
}
.btn.solid {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn.solid svg {
  color: #fff;
}
@media (max-width: 430px) {
  .links {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
}

section {
  padding: clamp(64px, 9vw, 108px) 0;
}
.kicker {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}
h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  margin-bottom: 26px;
}
section p {
  font-size: clamp(15.5px, 1.6vw, 17px);
  margin-bottom: 16px;
}

ul.check {
  list-style: none;
}
ul.check li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: clamp(15.5px, 1.6vw, 17px);
}
ul.check li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
  margin-top: 10px;
}
.col {
  position: relative;
  padding-top: 22px;
}
.col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.cols.steps .col {
  padding-top: 0;
}
.cols.steps .col::before {
  display: none;
}
.col .n {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 27px;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.col h3 {
  font-size: 1.15rem;
  margin-bottom: 9px;
}
.col p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .cols {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.about {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}
.about .role {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  margin-bottom: 10px;
}
.about h2 {
  margin-bottom: 16px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-of-type {
  border-top: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  font-size: clamp(16px, 1.7vw, 18px);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  text-align: left;
  line-height: 1.4;
}
.faq-ic {
  position: relative;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 3px;
}
.faq-ic::before,
.faq-ic::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.faq-ic::before {
  top: 7.5px;
  left: 0;
  width: 17px;
  height: 2px;
}
.faq-ic::after {
  left: 7.5px;
  top: 0;
  width: 2px;
  height: 17px;
}
.faq-item.open .faq-ic::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-a {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.32s ease;
}
.faq-a > div {
  overflow: hidden;
  min-height: 0;
}
.faq-a p {
  margin: 0 0 22px;
  color: var(--muted);
}
html.js .faq-a {
  grid-template-rows: 0fr;
}
html.js .faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 22px;
  margin: 6px 0 16px;
  color: var(--muted);
  font-style: italic;
  font-size: clamp(15.5px, 1.7vw, 18px);
  line-height: 1.6;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 14px;
}
.card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  padding: clamp(24px, 3vw, 32px);
  transition: 0.25s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(43, 41, 38, 0.08);
}
.card h3 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin-bottom: 10px;
}
.card .tagline {
  font-size: 15.5px;
  margin-bottom: 14px;
}
.card blockquote {
  font-size: 15px;
  margin-bottom: 14px;
}
.card ul.check li {
  font-size: 15px;
  margin-bottom: 9px;
}
.card ul.check li::before {
  top: 9px;
}
.card .meta {
  margin: auto 0 18px;
  padding-top: 14px;
  font-size: 15.5px;
  color: var(--muted);
}
.card .meta strong {
  font-size: 1.25em;
}
.card-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 700px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.cta-final {
  text-align: center;
}
.cta-final .lead {
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: clamp(15.5px, 1.7vw, 18px);
}

footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  color: var(--soft);
  font-size: 14px;
  text-align: center;
}
footer a {
  color: var(--soft);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero .inner {
    animation: rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }
}
