/* Turf Point Lab — dry-valley editorial. System faces only. */
:root {
  --tp-paper: #faf6ec;
  --tp-parchment: #f3ead6;
  --tp-dust: #d4c4a8;
  --tp-row: #e8dcc4;
  --tp-clay: #c56a3a;
  --tp-clay-deep: #8a4424;
  --tp-brick: #6e3318;
  --tp-sage: #8a9478;
  --tp-sage-dust: #b8bca8;
  --tp-canal: #0d7a78;
  --tp-canal-bright: #14a09a;
  --tp-ink: #2a2218;
  --tp-ink-soft: #5a4e42;
  --tp-ink-faint: #8a7c6c;
  --tp-white: #fffdf6;
  --tp-display: Palatino, "Palatino Linotype", Georgia, "Times New Roman", serif;
  --tp-body: -apple-system, "Segoe UI", system-ui, sans-serif;
  --tp-mark: ui-monospace, "SF Mono", "Segoe UI Mono", Menlo, Consolas, monospace;
  --tp-max: 1120px;
  --tp-gutter: 22px;
  --tp-shadow: 0 18px 40px -24px rgba(42, 34, 24, 0.45);
}

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

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
}

body.tp-body {
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 47px,
      rgba(138, 148, 120, 0.07) 47px,
      rgba(138, 148, 120, 0.07) 48px
    ),
    radial-gradient(1200px 480px at 8% -10%, rgba(197, 106, 58, 0.12), transparent 55%),
    var(--tp-paper);
  color: var(--tp-ink);
  font-family: var(--tp-body);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

body.tp-locked { overflow: hidden; }

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

a {
  color: var(--tp-canal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--tp-clay-deep); }

h1, h2, h3, h4 {
  font-family: var(--tp-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--tp-ink);
  margin: 0 0 0.55em;
}

h1 { font-size: clamp(2.15rem, 5.4vw, 3.7rem); }
h2 { font-size: clamp(1.45rem, 3.1vw, 2.15rem); }
h3 { font-size: 1.22rem; }

p { margin: 0 0 1em; }

ul, ol { margin: 0 0 1em; padding: 0 0 0 1.15em; }

address { font-style: normal; }

.tp-shell {
  width: min(var(--tp-max), calc(100% - (var(--tp-gutter) * 2)));
  margin-inline: auto;
}

.tp-skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--tp-canal);
  color: var(--tp-white);
  padding: 8px 14px;
  z-index: 80;
  font-size: 0.85rem;
}

.tp-skip:focus { top: 12px; }

.tp-canal {
  background: var(--tp-clay-deep);
  color: var(--tp-parchment);
  overflow: hidden;
  font-family: var(--tp-mark);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tp-canal__flow {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  justify-content: center;
  padding: 0.45rem 1rem;
  white-space: nowrap;
}

.tp-canal__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tp-canal-bright);
  display: inline-block;
}

.tp-mast {
  position: relative;
  z-index: 40;
  background: var(--tp-paper);
  border-bottom: 1px solid rgba(138, 68, 36, 0.12);
}

.tp-mast.is-pinned {
  box-shadow: 0 10px 28px -18px rgba(42, 34, 24, 0.5);
}

.tp-mast__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
}

.tp-sigil {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.tp-sigil__tape { color: var(--tp-clay-deep); display: flex; }

.tp-sigil__copy { display: flex; flex-direction: column; gap: 1px; }

.tp-sigil__name {
  font-family: var(--tp-display);
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  color: var(--tp-ink);
}

.tp-sigil__place {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tp-ink-faint);
}

.tp-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--tp-dust);
  background: var(--tp-white);
  cursor: pointer;
  position: relative;
}

.tp-burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--tp-ink);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.tp-burger span:nth-child(1) { top: 15px; }
.tp-burger span:nth-child(2) { top: 21px; }
.tp-burger span:nth-child(3) { top: 27px; }

.tp-burger.is-open span:nth-child(1) { top: 21px; transform: rotate(42deg); }
.tp-burger.is-open span:nth-child(2) { opacity: 0; }
.tp-burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-42deg); }

.tp-drawer {
  display: flex;
  align-items: center;
  gap: 22px;
}

.tp-drawer__list {
  display: flex;
  list-style: none;
  gap: 13px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tp-drawer__list a {
  color: var(--tp-ink-soft);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.tp-drawer__list a:hover,
.tp-drawer__list .is-here a {
  color: var(--tp-clay-deep);
}

.tp-hold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tp-canal);
  color: var(--tp-white) !important;
  text-decoration: none !important;
  padding: 0.62rem 1.05rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.18s ease, transform 0.18s ease;
}

.tp-hold:hover { background: var(--tp-brick); transform: translateY(-1px); }

.tp-act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.2rem;
  text-decoration: none !important;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--tp-canal);
  background: var(--tp-canal);
  color: var(--tp-white) !important;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.tp-act:hover { transform: translateY(-2px); background: var(--tp-brick); border-color: var(--tp-brick); }

.tp-act--ghost {
  background: transparent;
  color: var(--tp-clay-deep) !important;
  border-color: var(--tp-clay-deep);
}

.tp-act--ghost:hover {
  background: var(--tp-clay-deep);
  color: var(--tp-white) !important;
}

.tp-act--block { width: 100%; }

.tp-stage { min-height: 50vh; }

.tp-hero {
  padding: 3.4rem 0 2.4rem;
  position: relative;
}

.tp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(210px, 0.62fr);
  grid-template-areas:
    "copy plates"
    "tape tape";
  gap: 28px 42px;
  align-items: start;
}

.tp-hero__copy { grid-area: copy; }

.tp-kicker {
  font-family: var(--tp-mark);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tp-canal);
  margin: 0 0 0.85rem;
}

.tp-lede {
  font-size: 1.12rem;
  color: var(--tp-ink-soft);
  max-width: 38em;
}

.tp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.4rem;
}

.tp-plates {
  grid-area: plates;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 0.4rem;
}

.tp-plate-num {
  border: 1px solid var(--tp-dust);
  background: var(--tp-white);
  padding: 0.75rem 0.9rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 12px;
  box-shadow: var(--tp-shadow);
}

.tp-plate-num b {
  font-family: var(--tp-mark);
  color: var(--tp-canal);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.tp-plate-num span {
  font-size: 0.92rem;
  color: var(--tp-ink-soft);
}

.tp-tape {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  height: 18px;
  border: 1px solid var(--tp-clay-deep);
  background: var(--tp-white);
  overflow: hidden;
}

.tp-hero .tp-tape { grid-area: tape; }

.tp-tape span {
  display: block;
  height: 100%;
}

.tp-tape span:nth-child(odd) { background: rgba(197, 106, 58, 0.28); }
.tp-tape span:nth-child(even) { background: transparent; }
.tp-tape span:nth-child(5) { background: var(--tp-canal); }

.tp-tape--wide { margin: 0; border-left: 0; border-right: 0; }

.tp-band {
  padding: 3.2rem 0;
}

.tp-band--clay {
  background:
    linear-gradient(180deg, rgba(197, 106, 58, 0.08), rgba(243, 234, 214, 0.4)),
    var(--tp-parchment);
  border-block: 1px solid rgba(138, 68, 36, 0.12);
}

.tp-band--ink {
  background: var(--tp-ink);
  color: var(--tp-parchment);
}

.tp-band--ink h2,
.tp-band--ink h3 { color: var(--tp-white); }

.tp-band--ink .tp-kicker { color: var(--tp-canal-bright); }

.tp-offset {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 36px 48px;
  align-items: start;
}

.tp-offset--flip { grid-template-columns: 0.62fr 0.38fr; }

.tp-offset__aside .tp-kicker { margin-top: 0.35rem; }

.tp-marker {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: tp-mark;
}

.tp-marker > li {
  counter-increment: tp-mark;
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 14px;
  padding: 1.05rem 0;
  border-top: 1px dashed rgba(138, 68, 36, 0.28);
}

.tp-marker > li::before {
  content: counter(tp-mark, decimal-leading-zero);
  font-family: var(--tp-mark);
  color: var(--tp-canal);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding-top: 0.25rem;
}

.tp-marker h3 { margin-bottom: 0.25rem; }

.tp-quote-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.9fr;
  gap: 16px;
}

.tp-quote {
  background: var(--tp-white);
  border-left: 4px solid var(--tp-canal);
  padding: 1.2rem 1.15rem 1.05rem;
  box-shadow: var(--tp-shadow);
}

.tp-quote p { font-family: var(--tp-display); font-size: 1.05rem; color: var(--tp-ink); }

.tp-quote footer {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tp-ink-faint);
}

.tp-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--tp-dust);
  border: 1px solid var(--tp-dust);
}

.tp-strip a {
  background: var(--tp-white);
  padding: 1.1rem 0.85rem;
  text-decoration: none;
  color: var(--tp-ink);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 118px;
}

.tp-strip a:hover { background: var(--tp-parchment); }

.tp-strip b {
  font-family: var(--tp-mark);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--tp-canal);
}

.tp-strip span { font-family: var(--tp-display); font-size: 1.05rem; }

.tp-folio-head {
  padding: 2.6rem 0 1.4rem;
  background:
    linear-gradient(90deg, transparent 0, transparent 62%, rgba(13, 122, 120, 0.08) 62%, rgba(13, 122, 120, 0.08) 63%, transparent 63%),
    var(--tp-parchment);
  border-bottom: 1px solid rgba(138, 68, 36, 0.12);
}

.tp-folio-head h1 { max-width: 16ch; }

.tp-prose {
  max-width: 40rem;
}

.tp-prose h2 { margin-top: 1.6em; }

.tp-twin {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.tp-twin--wide { grid-template-columns: 1.2fr 0.8fr; }

.tp-card {
  background: var(--tp-white);
  border: 1px solid var(--tp-dust);
  padding: 1.25rem 1.2rem 1.15rem;
  box-shadow: var(--tp-shadow);
}

.tp-card--accent { border-top: 4px solid var(--tp-canal); }

.tp-card--featured {
  background: var(--tp-ink);
  color: var(--tp-parchment);
  border-color: var(--tp-ink);
}

.tp-card--featured h3 { color: var(--tp-white); }

.tp-card--featured .tp-sum { color: var(--tp-canal-bright); }

.tp-sum {
  font-family: var(--tp-display);
  font-size: 2.1rem;
  color: var(--tp-clay-deep);
  margin: 0.2rem 0 0.6rem;
}

.tp-sum small {
  font-size: 0.85rem;
  color: var(--tp-ink-faint);
  letter-spacing: 0.04em;
}

.tp-rate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tp-people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tp-person {
  background: var(--tp-white);
  border: 1px solid var(--tp-dust);
  padding: 1.3rem 1.15rem;
}

.tp-person__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--tp-parchment);
  color: var(--tp-canal);
  font-family: var(--tp-display);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
  border: 1px solid var(--tp-dust);
}

.tp-person__role {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tp-ink-faint);
}

.tp-table-wrap { overflow-x: auto; }

.tp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--tp-white);
}

.tp-table th,
.tp-table td {
  text-align: left;
  padding: 0.8rem 0.95rem;
  border-bottom: 1px solid var(--tp-row);
}

.tp-table th {
  font-family: var(--tp-mark);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-canal);
  background: var(--tp-parchment);
}

.tp-ask { margin: 0 0 10px; border: 1px solid var(--tp-dust); background: var(--tp-white); }

.tp-ask summary {
  cursor: pointer;
  padding: 0.9rem 1rem;
  font-weight: 600;
  list-style: none;
}

.tp-ask summary::-webkit-details-marker { display: none; }

.tp-ask summary::before {
  content: "+";
  font-family: var(--tp-mark);
  color: var(--tp-canal);
  margin-right: 10px;
}

.tp-ask[open] summary::before { content: "–"; }

.tp-ask p { padding: 0 1rem 1rem 2.1rem; color: var(--tp-ink-soft); }

.tp-form {
  background: var(--tp-white);
  border: 1px solid var(--tp-dust);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--tp-shadow);
}

.tp-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.tp-field { display: flex; flex-direction: column; gap: 6px; }

.tp-field--full { grid-column: 1 / -1; }

.tp-field label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tp-ink-faint);
}

.tp-field input,
.tp-field select,
.tp-field textarea {
  font: inherit;
  padding: 0.62rem 0.7rem;
  border: 1px solid var(--tp-dust);
  background: var(--tp-paper);
  color: var(--tp-ink);
  width: 100%;
}

.tp-field input:focus,
.tp-field select:focus,
.tp-field textarea:focus {
  outline: 2px solid var(--tp-canal);
  outline-offset: 1px;
}

.tp-form-note {
  font-size: 0.86rem;
  color: var(--tp-ink-faint);
  margin-top: 0.85rem;
}

.tp-locate {
  position: relative;
  min-height: 180px;
  background:
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(138, 148, 120, 0.18) 18px 19px),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(138, 148, 120, 0.18) 18px 19px),
    var(--tp-parchment);
  border: 1px solid var(--tp-dust);
  overflow: hidden;
}

.tp-locate__pin {
  position: absolute;
  left: 58%;
  top: 46%;
  width: 14px;
  height: 14px;
  background: var(--tp-canal);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(13, 122, 120, 0.18);
}

.tp-locate__label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-family: var(--tp-mark);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-clay-deep);
}

.tp-notes {
  display: grid;
  gap: 16px;
}

.tp-note {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 16px;
  background: var(--tp-white);
  border: 1px solid var(--tp-dust);
  padding: 1.1rem;
}

.tp-note__who {
  font-family: var(--tp-display);
  font-size: 1.4rem;
  color: var(--tp-canal);
}

.tp-blog-list {
  display: grid;
  gap: 14px;
}

.tp-blog-list a {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  background: var(--tp-white);
  border: 1px solid var(--tp-dust);
  padding: 1.05rem 1.1rem;
}

.tp-blog-list a:hover { border-color: var(--tp-canal); }

.tp-blog-list time {
  font-family: var(--tp-mark);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--tp-canal);
}

.tp-article {
  max-width: 42rem;
}

.tp-article p { font-size: 1.02rem; }

.tp-lost {
  padding: 4.5rem 0 5rem;
  text-align: left;
}

.tp-lost__code {
  font-family: var(--tp-mark);
  letter-spacing: 0.2em;
  color: var(--tp-canal);
  font-size: 0.78rem;
}

.tp-end {
  background: #241c16;
  color: #d8ccb8;
  margin-top: 0;
}

.tp-end .tp-tape { border-color: #3a2e24; background: #1c1612; }

.tp-end .tp-tape span:nth-child(odd) { background: rgba(197, 106, 58, 0.35); }
.tp-end .tp-tape span:nth-child(5) { background: var(--tp-canal-bright); }

.tp-end__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
  gap: 28px 22px;
  padding: 2.6rem 0 2.1rem;
}

.tp-end__name {
  font-family: var(--tp-display);
  font-size: 1.45rem;
  color: var(--tp-white);
  margin: 0 0 0.6rem;
}

.tp-end h2 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tp-canal-bright);
  font-family: var(--tp-mark);
  font-weight: 500;
}

.tp-end a { color: #e8dcc4; }

.tp-end__chips {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.tp-end__chips li {
  font-size: 0.86rem;
  border-left: 3px solid var(--tp-canal);
  padding: 0.25rem 0 0.25rem 0.7rem;
  margin-bottom: 0.35rem;
}

.tp-clock,
.tp-end__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tp-clock li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.86rem;
  padding: 0.22rem 0;
  border-bottom: 1px solid rgba(232, 220, 196, 0.08);
}

.tp-end__links a {
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  padding: 0.18rem 0;
}

.tp-end__floor {
  border-top: 1px solid rgba(232, 220, 196, 0.12);
  font-size: 0.82rem;
}

.tp-end__floor-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0.9rem 0 1.1rem;
  flex-wrap: wrap;
}

.tp-end__floor p { margin: 0; }

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

.tp-check li {
  padding: 0.45rem 0 0.45rem 1.4rem;
  position: relative;
  border-bottom: 1px dashed rgba(138, 68, 36, 0.2);
}

.tp-check li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--tp-canal);
  position: absolute;
  left: 0;
  top: 0.75rem;
}

.tp-heads {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tp-heads article {
  background: var(--tp-white);
  border: 1px solid var(--tp-dust);
  padding: 1rem 0.9rem;
  min-height: 132px;
}

.tp-heads h3 { font-size: 1.05rem; }

.tp-heads p { font-size: 0.9rem; color: var(--tp-ink-soft); margin: 0; }

.tp-enter {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tp-ready .tp-enter.is-in,
html:not(.tp-ready) .tp-enter {
  opacity: 1;
  transform: none;
}

.tp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.2rem;
}

@media (max-width: 1080px) {
  .tp-burger { display: block; z-index: 60; }

  .tp-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(86vw, 340px);
    height: 100dvh;
    background: var(--tp-parchment);
    flex-direction: column;
    align-items: stretch;
    padding: 92px 22px 28px;
    transform: translateX(104%);
    transition: transform 0.22s ease;
    box-shadow: -18px 0 40px -24px rgba(42, 34, 24, 0.5);
    z-index: 55;
    overflow-y: auto;
  }

  .tp-drawer.is-open { transform: translateX(0); }

  .tp-drawer__list {
    flex-direction: column;
    gap: 4px;
  }

  .tp-drawer__list a {
    display: block;
    padding: 0.7rem 0;
    font-size: 1.05rem;
  }

  .tp-hero__grid,
  .tp-offset,
  .tp-offset--flip,
  .tp-twin,
  .tp-twin--wide,
  .tp-quote-row,
  .tp-rate-grid,
  .tp-people,
  .tp-end__grid,
  .tp-strip,
  .tp-heads {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .tp-hero__copy,
  .tp-plates,
  .tp-hero .tp-tape { grid-area: auto; }

  .tp-strip { grid-template-columns: 1fr 1fr; }

  .tp-fields { grid-template-columns: 1fr; }

  .tp-note,
  .tp-blog-list a { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .tp-canal__flow { justify-content: flex-start; }
  .tp-strip { grid-template-columns: 1fr; }
  .tp-folio-head h1 { max-width: none; }
  h1 { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tp-enter,
  .tp-act,
  .tp-hold,
  .tp-burger span,
  .tp-drawer {
    transition: none !important;
  }
  .tp-enter { opacity: 1; transform: none; }
}
