:root {
  --te-ground: #E8DDC7;
  --te-text: #26211D;
  --te-muted: #74685C;
  --te-line: #B9A98F;
  --te-accent: #7A1F25;
  --te-accent-dark: #5f171c;
  --te-paper: #efe6d4;
  --te-measure: 72ch;
  --te-wrap: min(1180px, calc(100vw - 38px));
  --te-step-0: .78rem;
  --te-step-1: .95rem;
  --te-step-2: 1.08rem;
  --te-step-3: 1.35rem;
  --te-step-4: 1.85rem;
  --te-step-5: clamp(2.35rem, 6.2vw, 3.10rem);
  --te-step-6: clamp(3.35rem, 12vw, 5.80rem);
}

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

html {
  color: var(--te-text);
  background: var(--te-ground);
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-size: var(--te-step-2);
  line-height: 1.54;
  font-weight: 400;
  overflow-x: hidden;
}

body.te-nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
  overflow-wrap: anywhere;
}

a:hover {
  color: var(--te-accent);
}

p,
li,
dd,
dt,
th,
td,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
  min-width: 0;
}

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

p:last-child,
ul:last-child,
ol:last-child,
dl:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: .98;
  text-wrap: balance;
  letter-spacing: -.025em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.1rem;
}

h3 {
  font-size: var(--te-step-4);
  margin-bottom: 1rem;
}

caption {
  text-align: left;
  padding: 0 0 1rem;
  font-size: var(--te-step-1);
  color: var(--te-muted);
  letter-spacing: .13em;
  text-transform: uppercase;
}

button {
  font: inherit;
}

.te-wrap {
  width: var(--te-wrap);
  margin-inline: auto;
}

.te-skip {
  position: absolute;
  left: 1rem;
  top: .7rem;
  z-index: 20;
  padding: .55rem .8rem;
  background: var(--te-ground);
  border: 1px solid var(--te-text);
  transform: translateY(-150%);
}

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

.te-site-header {
  border-bottom: 1px solid var(--te-line);
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(232, 221, 199, .96);
  backdrop-filter: blur(6px);
}

.te-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.te-brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  min-width: 0;
}

.te-brand__mark {
  display: grid;
  place-items: center;
  width: 2.45rem;
  aspect-ratio: 1;
  border: 1px solid var(--te-text);
  font-size: var(--te-step-0);
  letter-spacing: .12em;
  font-variant-numeric: tabular-nums;
}

.te-brand__text {
  font-size: var(--te-step-1);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.te-nav {
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 2vw, 1.55rem);
}

.te-nav__link {
  text-decoration: none;
  font-size: var(--te-step-1);
  color: var(--te-muted);
  position: relative;
  padding-block: .35rem;
}

.te-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: .05rem;
  width: 100%;
  border-bottom: 1px solid var(--te-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.te-nav__link:hover,
.te-nav__link.te-is-current {
  color: var(--te-text);
}

.te-nav__link:hover::after,
.te-nav__link.te-is-current::after {
  transform: scaleX(1);
}

.te-nav-toggle {
  display: none;
  border: 1px solid var(--te-text);
  background: transparent;
  padding: .42rem .74rem;
  color: var(--te-text);
  cursor: pointer;
}

.te-hero {
  padding: clamp(3.4rem, 7vw, 7.2rem) 0 clamp(3.2rem, 6vw, 5.8rem);
}

.te-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, .98fr);
  gap: clamp(2rem, 5vw, 5.4rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 6vw, 5.3rem);
}

.te-hero__copy {
  text-align: center;
  justify-self: center;
  max-width: 760px;
}

.te-kicker {
  font-size: var(--te-step-0);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--te-muted);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.te-display {
  font-size: var(--te-step-6);
  font-weight: 400;
  margin-bottom: 1.35rem;
}

.te-wipe {
  position: relative;
}

.te-wipe::after {
  content: "";
  position: absolute;
  inset: -.08em -.03em;
  background: var(--te-ground);
  transform: scaleX(0);
  transform-origin: right;
  pointer-events: none;
}

.te-lede {
  max-width: 68ch;
  margin-inline: auto;
  color: var(--te-muted);
  font-size: var(--te-step-3);
}

.te-hero__actions {
  margin-top: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.te-button,
.te-filter__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  border: 1px solid var(--te-accent);
  background: var(--te-accent);
  color: var(--te-ground);
  text-decoration: none;
  padding: .78rem 1.15rem .82rem;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.te-button:hover,
.te-filter__button:hover,
.te-filter__button.te-is-active {
  color: #fff7e9;
  border-color: var(--te-text);
  transform: translateX(3px);
}

.te-button--quiet {
  background: transparent;
  color: var(--te-ground);
  border-color: var(--te-ground);
}

.te-button--quiet:hover {
  color: #fff7e9;
  border-color: #fff7e9;
}

.te-text-link {
  color: var(--te-text);
  transition: color .2s ease, transform .2s ease;
  display: inline-flex;
}

.te-text-link:hover {
  transform: translateX(4px);
}

.te-rangefinder {
  background: var(--te-accent);
  border: 1px solid var(--te-accent);
  overflow: hidden;
  min-width: 0;
}

.te-rangefinder__svg {
  width: 100%;
  height: auto;
}

.te-rangefinder__drift {
  transform-origin: center;
}

.te-commercial-field {
  background: var(--te-accent);
  color: var(--te-ground);
  border: 1px solid var(--te-accent);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.te-price-card {
  padding: clamp(1.25rem, 3.2vw, 2.35rem);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(232, 221, 199, .45);
}

.te-price-card:last-child {
  border-right: 0;
}

.te-price-card__label {
  font-size: var(--te-step-0);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.te-price-card__figure {
  font-size: clamp(4.4rem, 12vw, 7.4rem);
  line-height: .78;
  letter-spacing: -.08em;
  font-variant-numeric: tabular-nums;
  margin-bottom: .65rem;
}

.te-price-card__unit {
  color: rgba(232, 221, 199, .78);
  margin-bottom: 1.45rem;
  font-style: italic;
}

.te-price-card .te-check-list {
  margin-bottom: 2rem;
  flex: 1;
}

.te-check-list {
  list-style: none;
  padding: 0;
}

.te-check-list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: .75rem;
  transition: transform .2s ease, color .2s ease;
}

.te-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: .44rem;
  border-top: 1px solid currentColor;
  color: var(--te-accent);
}

.te-commercial-field .te-check-list li::before {
  color: var(--te-ground);
}

.te-check-list li:hover {
  transform: translateX(.28rem);
  color: var(--te-accent);
}

.te-commercial-field .te-check-list li:hover {
  color: #fff7e9;
}

.te-section {
  padding: clamp(4.4rem, 8vw, 8rem) 0;
}

.te-section--tight {
  padding-top: clamp(2.9rem, 6vw, 5.2rem);
  padding-bottom: clamp(3.5rem, 7vw, 6.2rem);
}

.te-section-head {
  max-width: 790px;
  margin-bottom: clamp(1.7rem, 4vw, 3.2rem);
}

.te-two-col {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: clamp(2.2rem, 7vw, 6rem);
  align-items: start;
}

.te-prose {
  max-width: var(--te-measure);
  color: var(--te-muted);
}

.te-prose p + p {
  margin-top: 1.25rem;
}

.te-comparison,
.te-aside-grid,
.te-timeline-grid,
.te-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  border-top: 1px solid var(--te-line);
  border-left: 1px solid var(--te-line);
}

.te-compare-card,
.te-proud-note,
.te-owner-note,
.te-timeline-card,
.te-contact-panel {
  border-right: 1px solid var(--te-line);
  border-bottom: 1px solid var(--te-line);
  padding: clamp(1.35rem, 3vw, 2.25rem);
  min-width: 0;
}

.te-compare-card p,
.te-proud-note p,
.te-owner-note p,
.te-timeline-card p,
.te-contact-panel p {
  color: var(--te-muted);
}

.te-compare-card dl {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: .45rem 1rem;
}

.te-compare-card dt {
  color: var(--te-text);
  font-style: italic;
}

.te-compare-card dd {
  margin: 0;
  color: var(--te-muted);
}

.te-aside-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.te-proud-note h2,
.te-owner-note h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.te-cta {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
  background: var(--te-text);
  color: var(--te-ground);
}

.te-cta__inner {
  text-align: center;
  max-width: 860px;
}

.te-cta p {
  color: rgba(232, 221, 199, .82);
  margin-inline: auto;
  max-width: 72ch;
}

.te-cta h2 {
  margin-inline: auto;
}

.te-cta .te-button {
  margin-top: 1.5rem;
  border-color: var(--te-ground);
}

.te-page-hero {
  padding: clamp(4.8rem, 9vw, 8.8rem) 0 clamp(2.8rem, 5vw, 5rem);
}

.te-page-hero__inner {
  max-width: 920px;
  text-align: center;
}

.te-page-hero .te-display {
  font-size: clamp(3.05rem, 9vw, 5.6rem);
}

.te-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  border-top: 1px solid var(--te-line);
  border-left: 1px solid var(--te-line);
}

.te-mini-price {
  border-right: 1px solid var(--te-line);
  border-bottom: 1px solid var(--te-line);
  padding: clamp(1.2rem, 2.6vw, 2rem);
  display: flex;
  flex-direction: column;
}

.te-mini-price__figure {
  font-size: clamp(3.2rem, 7vw, 5.2rem);
  line-height: .82;
  color: var(--te-accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.07em;
  margin-bottom: 1rem;
}

.te-mini-price p:last-child {
  color: var(--te-muted);
}

.te-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem .8rem;
  margin-bottom: 1.4rem;
}

.te-filter__button {
  background: transparent;
  color: var(--te-text);
}

.te-filter__button.te-is-active,
.te-filter__button:hover {
  background: var(--te-accent);
  color: var(--te-ground);
}

.te-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--te-line);
  -webkit-overflow-scrolling: touch;
}

.te-spec-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: var(--te-step-1);
}

.te-spec-table th,
.te-spec-table td {
  text-align: left;
  vertical-align: top;
  padding: .95rem 1rem;
  border-top: 1px solid var(--te-line);
  border-right: 1px solid var(--te-line);
}

.te-spec-table th:last-child,
.te-spec-table td:last-child {
  border-right: 0;
}

.te-spec-table thead th {
  font-size: var(--te-step-0);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--te-muted);
  font-weight: 600;
}

.te-spec-table tbody th {
  font-weight: 600;
}

.te-spec-table tbody td {
  color: var(--te-muted);
}

.te-smallprint {
  margin-top: 1.1rem;
  color: var(--te-muted);
  font-size: var(--te-step-1);
  max-width: var(--te-measure);
}

.te-is-filtered-out {
  display: none !important;
}

.te-rule-list {
  display: grid;
  gap: 1rem;
  color: var(--te-muted);
  max-width: var(--te-measure);
}

.te-rule-list p {
  border-top: 1px solid var(--te-line);
  padding-top: 1rem;
  transition: transform .2s ease, color .2s ease;
}

.te-rule-list p:hover {
  transform: translateX(.35rem);
  color: var(--te-text);
}

.te-device-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  border-left: 1px solid var(--te-line);
  border-top: 1px solid var(--te-line);
}

.te-device-card {
  border-right: 1px solid var(--te-line);
  border-bottom: 1px solid var(--te-line);
  padding: clamp(1.15rem, 2.5vw, 1.85rem);
}

.te-device-card__icon {
  width: min(88px, 42vw);
  margin-bottom: 1.2rem;
  color: var(--te-accent);
}

.te-device-card__icon svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.te-device-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.te-device-card p {
  color: var(--te-muted);
}

.te-deploy-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  border-left: 1px solid var(--te-line);
  border-top: 1px solid var(--te-line);
}

.te-deploy-step {
  border-right: 1px solid var(--te-line);
  border-bottom: 1px solid var(--te-line);
  padding: clamp(1.2rem, 2.8vw, 2.2rem);
  display: flex;
  flex-direction: column;
}

.te-deploy-step__number {
  color: var(--te-accent);
  font-size: var(--te-step-4);
  font-variant-numeric: tabular-nums;
  margin-bottom: 2.4rem;
}

.te-deploy-step h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
}

.te-deploy-step p {
  color: var(--te-muted);
}

.te-timeline-card__count {
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: .78;
  color: var(--te-accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.06em;
}

.te-check-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 2rem;
}

.te-contact-grid {
  grid-template-columns: 1.25fr .9fr .9fr;
}

.te-contact-panel--primary {
  background: var(--te-accent);
  color: var(--te-ground);
}

.te-contact-panel--primary p,
.te-contact-panel--primary .te-kicker {
  color: rgba(232, 221, 199, .82);
}

.te-contact-panel h2 {
  font-size: clamp(1.8rem, 4vw, 3.15rem);
}

.te-hours {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.1fr);
  gap: .7rem 1rem;
}

.te-hours dt {
  color: var(--te-text);
  font-style: italic;
}

.te-hours dd {
  margin: 0;
  color: var(--te-muted);
}

.te-footer {
  border-top: 1px solid var(--te-line);
  padding: 1.4rem 0;
  font-size: var(--te-step-1);
  color: var(--te-muted);
}

.te-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.5fr) minmax(0, .8fr);
  gap: 1rem;
  align-items: start;
}

.te-footer p {
  margin: 0;
}

.te-reveal {
  transition: opacity .55s ease, transform .55s ease;
}

.te-js .te-reveal-pending {
  transform: translateY(18px);
}

.te-reveal-in {
  opacity: 1;
  transform: translateY(0);
}

.te-filter-fade {
  animation: teFade .18s ease;
}

@keyframes teFade {
  from { opacity: .25; }
  to { opacity: 1; }
}

@keyframes teKenBurns {
  0% { transform: scale(1) translate3d(0, 0, 0); }
  50% { transform: scale(1.075) translate3d(-18px, 12px, 0); }
  100% { transform: scale(1.03) translate3d(18px, -10px, 0); }
}

@keyframes teWipe {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

@media (prefers-reduced-motion: no-preference) {
  .te-rangefinder__drift {
    animation: teKenBurns 22s ease-in-out infinite alternate;
  }

  .te-wipe::after {
    animation: teWipe 1.05s cubic-bezier(.62, 0, .18, 1) .12s both;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 1040px) {
  .te-hero__grid,
  .te-two-col {
    grid-template-columns: 1fr;
  }

  .te-hero__copy {
    text-align: center;
  }

  .te-rangefinder {
    max-width: 720px;
    margin-inline: auto;
  }

  .te-price-grid,
  .te-device-grid,
  .te-deploy-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .te-commercial-field,
  .te-comparison,
  .te-contact-grid {
    grid-template-columns: 1fr;
  }

  .te-price-card {
    border-right: 0;
    border-bottom: 1px solid rgba(232, 221, 199, .45);
  }

  .te-price-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --te-wrap: min(100% - 28px, 1180px);
  }

  .te-header-inner {
    min-height: 66px;
  }

  .te-brand__text {
    font-size: .78rem;
    max-width: 13rem;
  }

  .te-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .2rem .8rem;
  }

  .te-js .te-nav-toggle {
    display: inline-flex;
  }

  .te-js .te-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 76px;
    display: grid;
    gap: .2rem;
    padding: 1rem;
    border: 1px solid var(--te-text);
    background: var(--te-ground);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }

  .te-js .te-nav.te-is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .te-nav__link {
    padding: .55rem 0;
  }

  .te-hero {
    padding-top: 3rem;
  }

  .te-display {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .te-lede {
    font-size: 1.18rem;
  }

  .te-aside-grid,
  .te-timeline-grid,
  .te-price-grid,
  .te-device-grid,
  .te-deploy-rail,
  .te-check-columns,
  .te-footer__grid {
    grid-template-columns: 1fr;
  }

  .te-commercial-field {
    display: grid;
  }

  .te-section {
    padding: 3.6rem 0;
  }

  .te-page-hero {
    padding-top: 3.5rem;
  }

  .te-compare-card dl,
  .te-hours {
    grid-template-columns: 1fr;
  }

  .te-spec-table {
    min-width: 680px;
  }

  .te-button,
  .te-filter__button {
    padding: .72rem 1rem .76rem;
  }
}

@media (max-width: 420px) {
  .te-hero__actions {
    justify-content: center;
  }

  .te-price-card__figure {
    font-size: 4.3rem;
  }

  .te-spec-table {
    min-width: 620px;
  }
}