:root {
  --r-ink: #23201b;
  --r-body: #4f4a42;
  --r-muted: #7b746a;
  --r-line: #e3e0d8;
  --r-tint: #f6f7f2;
  --r-brick: #c8541f;
  --r-brick-dim: #a03f14;
  --r-sec: 66px;
  --r-head: 28px;
  --r-card: 24px;
  --r-nav: 64px;
}

body {
  margin: 0;
  color: var(--r-body);
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  background: #fff;
}

h1, h2, h3, .brand, .hero-title, .head-title, .stack-h, .cta-title, .foot-brand {
  font-family: 'Cinzel', Georgia, serif;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--r-nav);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--r-line);
}
.site-head .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--r-ink);
  text-decoration: none;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  display: block;
  padding: 8px 13px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--r-body);
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
}
.site-nav a:hover {
  color: var(--r-brick);
}
.site-nav a.active {
  color: var(--r-brick);
  background: rgba(200, 84, 31, 0.09);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 36px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--r-line);
  border-radius: 7px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--r-ink);
  border-radius: 2px;
}

.kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0a878;
}
.kicker--ink {
  color: var(--r-brick);
}

.hero {
  position: relative;
  padding-top: 64px;
  padding-bottom: 58px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(101deg, rgba(35, 32, 27, 0.95) 0%, rgba(48, 38, 30, 0.88) 48%, rgba(48, 38, 30, 0.46) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero-title {
  margin: 14px 0 16px 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.005em;
  font-weight: 600;
  color: #fff;
}
.hero-lead {
  max-width: 62ch;
  font-size: 1.01rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding-top: var(--r-sec);
  padding-bottom: var(--r-sec);
}
.section-tint {
  background: var(--r-tint);
}

.head {
  margin-bottom: var(--r-head);
}
.head-title {
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  line-height: 1.28;
  font-weight: 600;
  color: var(--r-ink);
}
.head .kicker + .head-title {
  margin-top: 8px;
}

.lede {
  font-size: 1.01rem;
  line-height: 1.78;
  color: var(--r-body);
  margin: 0;
}
.lede + .lede {
  margin-top: 16px;
}

.fig {
  width: 100%;
  height: 100%;
  min-height: 210px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}
.row.align-items-center:has(> [class*="col-"] > .fig) {
  align-items: stretch !important;
}
.row:has(> [class*="col-"] > .fig) > [class*="col-"] {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.row:has(> [class*="col-"] > .fig) > [class*="col-"] > .fig {
  flex: 1 1 auto;
}

.note {
  margin: var(--r-head) 0 0 0;
  padding: 15px 19px;
  background: var(--r-tint);
  border-left: 3px solid var(--r-brick);
  border-radius: 0 4px 4px 0;
  font-size: 0.94rem;
  line-height: 1.72;
  color: var(--r-body);
}
.section-tint .note {
  background: #fff;
}

.tile {
  display: flex;
  flex-direction: column;
  padding: var(--r-card);
  background: #fff;
  border: 1px solid var(--r-line);
  border-radius: 4px;
}
.tile-title {
  margin: 0 0 8px 0;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.34;
  color: var(--r-ink);
}
.tile-text {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--r-muted);
}

.stack {
  display: flex;
  flex-direction: column;
  padding: var(--r-card);
  background: #fff;
  border: 1px solid var(--r-line);
  border-top: 3px solid var(--r-brick);
  border-radius: 4px;
}
.stack-h {
  margin: 0 0 14px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--r-ink);
}
.stack-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.stack-list li {
  position: relative;
  padding: 0 0 0 20px;
  font-size: 0.93rem;
  line-height: 1.68;
  color: var(--r-muted);
}
.stack-list li + li {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--r-line);
}
.stack-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 2px;
  background: var(--r-brick);
}
.stack-list li + li:before {
  top: calc(12px + 0.62em);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px var(--r-card);
  background: #fff;
  border: 1px solid var(--r-line);
  border-radius: 4px;
}
.step + .step {
  margin-top: 12px;
}
.step-n {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: rgba(200, 84, 31, 0.1);
  color: var(--r-brick);
  font-size: 0.78rem;
  font-weight: 500;
}
.step-body {
  min-width: 0;
}

.kv-list {
  background: #fff;
  border: 1px solid var(--r-line);
  border-radius: 4px;
  overflow: hidden;
}
.kv {
  display: grid;
  grid-template-columns: minmax(110px, 10rem) 1fr;
  gap: 6px 18px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--r-line);
}
.kv:last-child {
  border-bottom: 0;
}
.kv-k {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--r-ink);
}
.kv-v {
  font-size: 0.93rem;
  line-height: 1.66;
  color: var(--r-muted);
}

.cta {
  padding-top: 52px;
  padding-bottom: 52px;
  background: var(--r-ink);
}
.cta-title {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.3;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.cta-text {
  max-width: 58ch;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.76);
}
.cta-mail {
  display: block;
  font-size: 1.02rem;
  font-weight: 500;
  color: #f0a878;
  border-bottom: 2px solid rgba(240, 168, 120, 0.45);
  text-decoration: none;
  padding-bottom: 4px;
}
.cta-mail:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.cta-place {
  display: block;
  margin-top: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.site-foot {
  padding-top: 42px;
  padding-bottom: 22px;
  background: #fff;
  border-top: 1px solid var(--r-line);
}
.foot-brand {
  display: block;
  font-size: 1.01rem;
  font-weight: 600;
  color: var(--r-ink);
}
.foot-tag {
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--r-muted);
}
.foot-k {
  display: block;
  margin-bottom: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--r-muted);
}
.foot-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.foot-links li + li {
  margin-top: 7px;
}
.foot-links a,
.foot-links span {
  font-size: 0.9rem;
  color: var(--r-body);
  text-decoration: none;
}
.foot-links a:hover {
  color: var(--r-brick);
}
.foot-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--r-line);
  font-size: 0.82rem;
  line-height: 1.72;
  color: var(--r-muted);
}

@media (max-width: 991.98px) {
  :root {
    --r-sec: 44px;
    --r-head: 22px;
    --r-card: 20px;
  }
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--r-nav);
    display: none;
    background: #fff;
    border-bottom: 1px solid var(--r-line);
    box-shadow: 0 12px 24px rgba(35, 32, 27, 0.08);
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 12px 12px 12px;
  }
  .site-nav a {
    padding: 11px 12px;
  }
  .hero {
    padding-top: 46px;
    padding-bottom: 40px;
  }
  .hero-veil {
    background: rgba(35, 32, 27, 0.93);
  }
  .row:has(> [class*="col-"] > .fig) > [class*="col-"] {
    display: block;
  }
  .fig {
    height: auto;
    aspect-ratio: 3 / 2;
    min-height: 0;
  }
  .kv {
    grid-template-columns: 1fr;
  }
}
