:root {
  --burgundy: #811f19;
  --burgundy-deep: #5c1511;
  --ink: #1a1714;
  --charcoal: #2a2622;
  --muted: #5c564f;
  --stone: #f3efe7;
  --paper: #faf8f4;
  --sand: #e6dfd3;
  --line: #ddd4c6;
  --white: #fff;
  --focus: #811f19;
  --header: 76px;
  --max: 1160px;
  --shadow: 0 18px 40px rgba(26, 23, 20, 0.08);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
}

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

a { color: inherit; }

a:hover { color: var(--burgundy); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--ink);
  color: var(--white);
  padding: 8px 12px;
  z-index: 20;
}

.skip:focus { top: 12px; }

h1, h2, h3, .display {
  font-family: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.96;
  margin: 0;
}

h1 { font-size: clamp(2.7rem, 6.4vw, 5.15rem); }

h2 { font-size: clamp(2rem, 4vw, 3.2rem); }

h3 { font-size: 1.7rem; line-height: 1; }

p { margin: 0 0 1rem; }

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lede { font-size: 1.15rem; max-width: 42rem; color: var(--charcoal); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header);
  background: rgba(250, 248, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
}

.brand img { height: 58px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 550;
}

.nav a[aria-current="page"] { color: var(--burgundy); }

.site-header .nav-toggle,
.site-header .submenu-toggle { display: none; }

.menu {
  position: relative;
}

.menu > a { text-decoration: none; font-weight: 550; }

.menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: none;
}

.menu:hover .menu-panel,
.menu:focus-within .menu-panel { display: grid; }

.menu-panel a {
  display: block;
  padding: 8px 10px;
  text-decoration: none;
}

.menu-panel a:hover { background: var(--stone); color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.01em;
  cursor: pointer;
  background: transparent;
  color: inherit;
  font: inherit;
}

.btn-fill {
  background: var(--burgundy);
  color: var(--white);
}

.btn-fill:hover { background: var(--burgundy-deep); color: var(--white); }

.btn-line {
  border-color: var(--ink);
  background: transparent;
}

.btn-line:hover { background: var(--ink); color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--burgundy);
}

.btn-light:hover { background: var(--stone); color: var(--burgundy-deep); }

.header-call { white-space: nowrap; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(129, 31, 25, 0.08), transparent 32%),
    var(--stone);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/topo.svg");
  background-size: 680px;
  opacity: 0.45;
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(64%, 860px);
  pointer-events: none;
  z-index: 0;
}

.hero-pine {
  position: absolute;
  right: 18%;
  top: -8%;
  height: 116%;
}

.hero-mark {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 16%;
  transform: translateX(-50%);
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  font-weight: 600;
  font-size: clamp(5.4rem, 8.6vw, 8.4rem);
  letter-spacing: 0.08em;
  line-height: 0.8;
  color: rgba(92, 21, 17, 0.26);
  white-space: nowrap;
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.hero-shade img {
  position: relative;
  z-index: 1;
  height: 100%;
  width: auto;
  max-width: none;
  opacity: 0.72;
  -webkit-mask-image:
    linear-gradient(to left, #000 18%, rgba(0, 0, 0, 0.72) 48%, transparent 86%),
    linear-gradient(to bottom, transparent 0%, #000 14%, #000 70%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to left, #000 18%, rgba(0, 0, 0, 0.72) 48%, transparent 86%),
    linear-gradient(to bottom, transparent 0%, #000 14%, #000 70%, transparent 100%);
  mask-composite: intersect;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
  padding: 64px 0 56px;
}

.hero-actions, .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.4rem;
}

.tagline {
  margin-top: 1.2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--burgundy-deep);
}

.switcher {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.switch-tabs { display: grid; grid-template-columns: 1fr 1fr; }

.switch-tabs button {
  min-height: 64px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--stone);
  color: var(--muted);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.switch-tabs button + button { border-left: 1px solid var(--line); }

.switch-tabs button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.switch-panel { padding: 22px 22px 18px; }

.switch-panel[hidden] { display: none; }

.switch-panel h2 { font-size: 2rem; margin-bottom: 0.5rem; }

.switch-panel ul {
  margin: 0.8rem 0 1rem;
  padding: 0;
  list-style: none;
}

.switch-panel li + li { border-top: 1px solid var(--line); }

.switch-panel li a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
  font-weight: 550;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.trust div {
  padding: 22px 8px;
  text-align: center;
}

.trust div + div { border-left: 1px solid var(--line); }

.trust strong {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.trust span { color: var(--muted); font-size: 0.92rem; }

.trust-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--burgundy);
  flex: 0 0 auto;
  transform-origin: center;
  will-change: opacity, box-shadow;
  animation: trust-dot-blink 6.8s ease-in-out infinite;
}

.trust div:nth-child(1) .trust-dot { animation-delay: 0s; }
.trust div:nth-child(2) .trust-dot { animation-delay: 1.7s; }
.trust div:nth-child(3) .trust-dot { animation-delay: 3.4s; }
.trust div:nth-child(4) .trust-dot { animation-delay: 5.1s; }

@keyframes trust-dot-blink {
  0%,
  14% {
    opacity: 1;
    box-shadow:
      0 0 0.28rem 0.08rem rgba(255, 196, 188, 1),
      0 0 0.7rem 0.16rem rgba(129, 31, 25, 0.92);
  }
  32%,
  100% {
    opacity: 0.22;
    box-shadow: none;
  }
}

.section { padding: 72px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head p { max-width: 36rem; margin: 0; color: var(--muted); }

.spec { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink); }

.spec li a {
  display: grid;
  grid-template-columns: 72px 1.1fr 1.4fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.spec .num {
  font-family: "Barlow Condensed", sans-serif;
  color: var(--burgundy);
  font-size: 1.4rem;
}

.spec h3 { font-size: 1.85rem; }

.spec p { margin: 0; color: var(--muted); }

.spec .go {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 650;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.split article {
  padding: 56px 8vw;
}

.split .dark {
  background: var(--charcoal);
  color: var(--white);
}

.split .dark .kicker { color: #e7c7c3; }

.split .light { background: var(--stone); }

.story {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.story-mark {
  border-left: 6px solid var(--burgundy);
  padding: 8px 0 8px 22px;
}

.story-mark p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.area-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
}

.rings {
  aspect-ratio: 1;
  max-width: 360px;
  margin-inline: auto;
  border-radius: 50%;
  border: 1px solid var(--burgundy);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, transparent 34%, rgba(129, 31, 25, 0.05) 35%, transparent 36%),
    radial-gradient(circle, var(--stone) 58%, transparent 59%);
}

.rings strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.95;
}

.final-cta {
  background: var(--burgundy);
  color: var(--white);
  padding: 72px 0;
}

.final-cta .kicker { color: #f0d2ce; }

.final-cta a { color: var(--white); }

.final-cta .cta-row { margin-bottom: 18px; }

.socials { display: flex; flex-wrap: wrap; gap: 16px; }

.socials a { font-weight: 650; }

.site-footer {
  background: var(--ink);
  color: #efeae3;
  padding-top: 48px;
}

.site-footer a { color: #efeae3; text-decoration: none; }

.site-footer a:hover { color: var(--white); }

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 36px;
}

.site-footer h2 {
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; }

.site-footer li + li { margin-top: 8px; }

.foot-brand img {
  height: 72px;
  width: auto;
  background: var(--white);
  padding: 6px;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 14px 0 18px;
  color: #cfc6bb;
  font-size: 0.92rem;
}

.legal p { margin: 0; }

.legal a { text-decoration: underline; }

.page-hero {
  padding: 54px 0 28px;
  background:
    linear-gradient(180deg, rgba(129, 31, 25, 0.06), transparent 70%),
    var(--stone);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 { max-width: 16ch; }

.prose { padding: 48px 0 20px; }

.blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px;
}

.card h2, .card h3 { margin-bottom: 10px; }

.card ul { margin: 0; padding-left: 1.1rem; }

.card li + li { margin-top: 0.4rem; }

.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; }

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  color: var(--burgundy);
}

.faq { margin-top: 8px; }

.faq details {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}

.faq details:last-child { border-bottom: 1px solid var(--line); }

.faq summary {
  cursor: pointer;
  font-weight: 650;
}

.faq details p { margin: 10px 0 4px; color: var(--charcoal); }

.related { display: flex; flex-wrap: wrap; gap: 8px; }

.related a {
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 8px 12px;
  background: var(--white);
  font-weight: 550;
}

.empty-work {
  border: 1px dashed var(--line);
  background: var(--white);
  padding: 36px 22px;
  text-align: center;
}

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }

.filters button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.form {
  display: grid;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px;
}

.form-grid, .two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label { display: grid; gap: 6px; font-weight: 600; font-size: 0.95rem; }

input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
}

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

.note { color: var(--muted); font-size: 0.95rem; }

.conditional[hidden] { display: none; }

.thank {
  padding: 64px 0 80px;
}

.sticky-cta {
  display: none;
}

@media (max-width: 980px) {
  .hero-shade { display: none; }

  .hero-grid,
  .story,
  .area-panel,
  .blocks,
  .split,
  .foot-grid,
  .trust { grid-template-columns: 1fr; }

  .trust div + div,
  .split .light { border-top: 1px solid var(--line); }

  .trust div + div { border-left: 0; }

  .spec li a { grid-template-columns: 48px 1fr; }

  .spec p, .spec .go { grid-column: 2; }

  .site-header .nav-toggle {
    display: inline-flex;
    margin-left: 8px;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 16px 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav.is-open { display: flex; }

  .nav a, .menu > a { padding: 10px 4px; }

  .menu-panel {
    position: static;
    transform: none;
    display: none;
    box-shadow: none;
    min-width: 0;
    padding: 0 0 8px 10px;
  }

  .menu.is-open .menu-panel { display: grid; }

  .site-header .submenu-toggle { display: inline-flex; margin-left: 8px; min-height: 36px; }

  .header-call { display: none; }

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

@media (max-width: 720px) {
  .form-grid, .two { grid-template-columns: 1fr; }

  body { padding-bottom: 76px; }

  .sticky-cta {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 8px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 10px;
    background: rgba(250, 248, 244, 0.96);
    border-top: 1px solid var(--line);
  }

  .sticky-cta .btn { width: 100%; padding-inline: 8px; }

  .brand img { height: 48px; }

  .page-hero h1 { max-width: none; }
}

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

  .trust-dot {
    animation: none;
    opacity: 1;
  }
}
