/* ===================================================================
   Shared design foundation for all themes.

   Rules for this file and every theme.css:
     - NO literal colour values. Every colour is a var(--tp-*) token so
       that the customer's chosen colour drives the whole page.
     - No framework. This replaces bootstrap + animate + font-awesome for
       the new themes, which is most of the ~1.9MB the old pages shipped.
   =================================================================== */

/* The only fixed colours in the system. Everything else is derived from the
   customer's chosen colour. These are deliberately NOT brand-driven:
     --tp-scrim-fg  text sitting on top of a photo, must stay legible on any image
     --tp-wa-bg     WhatsApp green, a recognised brand mark
     --tp-print-*   printing should be black on white regardless of theme */
:root{
  --tp-scrim-fg:#FFFFFF;
  --tp-scrim-shadow:rgba(0,0,0,.72);
  --tp-wa-bg:#25D366;
  --tp-print-ink:#000000;
  --tp-print-paper:#FFFFFF;

  /* Depth. Layered rather than one flat drop - this is much of what
     separates a designed page from a wireframe. */
  --tp-shadow-xs:0 1px 2px rgba(var(--tp-ink-rgb),.05);
  --tp-shadow-sm:0 1px 3px rgba(var(--tp-ink-rgb),.09), 0 1px 2px rgba(var(--tp-ink-rgb),.05);
  --tp-shadow-md:0 4px 8px -2px rgba(var(--tp-ink-rgb),.10), 0 2px 4px -2px rgba(var(--tp-ink-rgb),.06);
  --tp-shadow-lg:0 12px 20px -4px rgba(var(--tp-ink-rgb),.12), 0 4px 8px -4px rgba(var(--tp-ink-rgb),.06);
  --tp-shadow-xl:0 24px 40px -8px rgba(var(--tp-ink-rgb),.16), 0 8px 16px -8px rgba(var(--tp-ink-rgb),.07);

  /* Spacing rhythm. Sections and gaps all come from these, so vertical
     spacing stays consistent instead of being guessed per block. */
  --tp-sp-1:4px;  --tp-sp-2:8px;  --tp-sp-3:12px; --tp-sp-4:16px;
  --tp-sp-5:24px; --tp-sp-6:32px; --tp-sp-7:48px; --tp-sp-8:64px;
  --tp-sp-9:80px; --tp-sp-10:112px;

  --tp-ease:cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}

body{
  margin:0;
  font-family:var(--tp-ff-body);
  font-size:17px;
  line-height:1.65;
  color:var(--tp-ink);
  background:var(--tp-surface);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

img,video{max-width:100%;height:auto;display:block}
/* SVG stays inline: these are text icons, and display:block pushes every
   one onto its own line unless it happens to sit in a flex container. */
svg{max-width:100%;vertical-align:-.14em}

/* ---------- type scale ----------
   Fluid, with tighter tracking as size grows. Large text left at default
   letter-spacing is one of the most common reasons a page looks unfinished. */
h1,h2,h3,h4,h5,h6{
  font-family:var(--tp-ff-heading);
  margin:0 0 .5em;
  font-weight:700;
  /* Separate token so a customer can colour headings differently from
     body text. It defaults to the ink colour, so nothing changes unless
     they choose one. */
  color:var(--tp-heading,var(--tp-ink));
  text-wrap:balance;
}
h1{font-size:clamp(2.25rem,1.5rem + 3.2vw,3.75rem);line-height:1.08;letter-spacing:-.025em}
h2{font-size:clamp(1.75rem,1.3rem + 1.9vw,2.6rem); line-height:1.15;letter-spacing:-.02em}
h3{font-size:clamp(1.2rem,1.05rem + .6vw,1.5rem);  line-height:1.3; letter-spacing:-.01em}
h4{font-size:1.075rem;line-height:1.4;letter-spacing:-.005em}

p{margin:0 0 1.15rem;text-wrap:pretty}
a{color:var(--tp-theme-primary);text-decoration:none;transition:color .18s var(--tp-ease)}
a:hover{color:var(--tp-brand-hover)}
ul,ol{margin:0 0 1.15rem;padding-left:1.25rem}
li{margin-bottom:.4em}
strong,b{font-weight:600;color:var(--tp-ink)}
small{font-size:.875rem}
hr{border:0;border-top:1px solid var(--tp-border);margin:var(--tp-sp-7) 0}

:focus-visible{outline:2px solid var(--tp-theme-primary);outline-offset:3px;border-radius:2px}
::selection{background:var(--tp-brand-light);color:var(--tp-brand-dark)}

/* ---------- layout ---------- */
.tp-wrap{max-width:var(--tp-container);margin:0 auto;padding:0 clamp(20px,4vw,32px);width:100%}
.tp-section{padding:var(--tp-section-y) 0}
.tp-section--tight{padding:calc(var(--tp-section-y) * .62) 0}
.tp-grid{display:grid;gap:clamp(20px,2.2vw,32px)}
.tp-grid--2{grid-template-columns:repeat(2,1fr)}
.tp-grid--3{grid-template-columns:repeat(3,1fr)}
.tp-grid--4{grid-template-columns:repeat(4,1fr)}
.tp-grid--auto{grid-template-columns:repeat(auto-fill,minmax(255px,1fr))}
.tp-flex{display:flex;gap:var(--tp-sp-4);align-items:center;flex-wrap:wrap}
.tp-between{display:flex;justify-content:space-between;align-items:center;gap:var(--tp-sp-5);flex-wrap:wrap}
.tp-center{text-align:center}
.tp-mx-auto{margin-left:auto;margin-right:auto}
.tp-measure{max-width:65ch}
.tp-stack>*+*{margin-top:1rem}

/* ---------- section headings ----------
   An eyebrow, a title and a lead in a consistent relationship. This is the
   most repeated pattern on the page, so it is worth getting right once. */
.tp-eyebrow{
  display:inline-flex;align-items:center;gap:.55em;
  font-family:var(--tp-ff-heading);
  font-size:.75rem;letter-spacing:.14em;text-transform:uppercase;
  font-weight:700;color:var(--tp-theme-primary);
  margin:0 0 var(--tp-sp-3);
}
.tp-eyebrow::before{
  content:"";width:1.6em;height:2px;border-radius:2px;
  background:currentColor;opacity:.55;
}
.tp-center .tp-eyebrow,.tp-head--center .tp-eyebrow{justify-content:center}
.tp-head{max-width:62ch;margin-bottom:var(--tp-sp-7)}
.tp-head--center{margin-left:auto;margin-right:auto;text-align:center}
.tp-head h2{margin-bottom:var(--tp-sp-3)}
.tp-head p{color:var(--tp-ink-muted);font-size:1.05rem;margin:0}

.tp-lead{font-size:1.125rem;line-height:1.6;color:var(--tp-ink-muted)}
.tp-muted{color:var(--tp-ink-muted)}
.tp-rich>*:first-child{margin-top:0}
.tp-rich>*:last-child{margin-bottom:0}
.tp-rich img{border-radius:var(--tp-radius);margin:1.4rem 0}
.tp-rich h2,.tp-rich h3{margin-top:1.6em}
.tp-rich table{width:100%;border-collapse:collapse;font-size:.95rem}
.tp-rich td,.tp-rich th{border:1px solid var(--tp-border);padding:.6rem .75rem;text-align:left}
.tp-rich th{background:var(--tp-surface-2);font-weight:600}
.tp-rich blockquote{
  margin:1.5rem 0;padding:.2rem 0 .2rem 1.4rem;
  border-left:3px solid var(--tp-theme-primary);color:var(--tp-ink-muted);font-style:italic;
}

/* ---------- buttons ---------- */
.tp-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55em;
  padding:.85em 1.75em;
  border-radius:var(--tp-radius);border:1px solid transparent;
  background:var(--tp-theme-primary);color:var(--tp-brand-contrast);
  font-family:var(--tp-ff-heading);font-weight:600;font-size:.95rem;
  line-height:1.2;text-align:center;cursor:pointer;white-space:nowrap;
  box-shadow:var(--tp-shadow-sm);
  transition:background .18s var(--tp-ease),transform .18s var(--tp-ease),
             box-shadow .18s var(--tp-ease),border-color .18s var(--tp-ease);
}
.tp-btn:hover{
  background:var(--tp-brand-hover);color:var(--tp-brand-contrast);
  transform:translateY(-2px);box-shadow:var(--tp-shadow-md);
}
.tp-btn:active{transform:translateY(0);box-shadow:var(--tp-shadow-xs)}
.tp-btn svg{width:1.05em;height:1.05em;flex:0 0 auto}

.tp-btn--ghost{background:transparent;border-color:var(--tp-border);color:var(--tp-ink);box-shadow:none}
.tp-btn--ghost:hover{
  background:var(--tp-brand-tint);border-color:var(--tp-theme-primary);
  color:var(--tp-theme-primary);box-shadow:var(--tp-shadow-sm);
}
.tp-btn--light{background:var(--tp-surface);color:var(--tp-theme-primary)}
.tp-btn--light:hover{background:var(--tp-brand-light);color:var(--tp-brand-dark)}
.tp-btn--lg{padding:1em 2.1em;font-size:1.02rem}
.tp-btn--sm{padding:.6em 1.15em;font-size:.86rem}
.tp-btn--block{display:flex;width:100%}

/* A quiet text link with an arrow that slides - reads as "more" without
   competing with the real buttons. */
.tp-link{
  display:inline-flex;align-items:center;gap:.45em;
  font-family:var(--tp-ff-heading);font-weight:600;font-size:.95rem;
  color:var(--tp-theme-primary);
}
.tp-link svg{transition:transform .22s var(--tp-ease)}
.tp-link:hover svg{transform:translateX(4px)}

/* ---------- cards & media ---------- */
.tp-card{
  background:var(--tp-surface);
  border:1px solid var(--tp-border);
  border-radius:var(--tp-radius-lg);
  overflow:hidden;
  box-shadow:var(--tp-shadow-xs);
  transition:transform .25s var(--tp-ease),box-shadow .25s var(--tp-ease),border-color .25s var(--tp-ease);
}
.tp-card:hover{transform:translateY(-4px);box-shadow:var(--tp-shadow-lg);border-color:transparent}
.tp-card__body{padding:var(--tp-sp-5)}
.tp-card__title{margin:0 0 .35em;font-size:1.075rem}
.tp-card p:last-child{margin-bottom:0}

.tp-thumb{position:relative;overflow:hidden;background:var(--tp-surface-3)}
.tp-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--tp-ease)}
.tp-card:hover .tp-thumb img{transform:scale(1.045)}
.tp-ratio{aspect-ratio:4/3}
.tp-ratio--sq{aspect-ratio:1/1}
.tp-ratio--wide{aspect-ratio:16/9}
.tp-ratio--tall{aspect-ratio:3/4}
.tp-ratio--banner{aspect-ratio:8/3}

/* Fallback tile when a customer has not uploaded an image yet. */
.tp-placeholder{
  display:flex;align-items:center;justify-content:center;
  width:100%;height:100%;min-height:120px;
  background:linear-gradient(135deg,var(--tp-brand-tint),var(--tp-brand-light));
  color:var(--tp-theme-primary);
  font-family:var(--tp-ff-heading);font-size:2.4rem;font-weight:700;
  letter-spacing:-.02em;
}

/* ---------- forms ---------- */
.tp-field{margin-bottom:var(--tp-sp-5)}
.tp-label{
  display:block;font-family:var(--tp-ff-heading);
  font-size:.83rem;font-weight:600;margin-bottom:.5em;color:var(--tp-ink);
}
.tp-input,.tp-textarea{
  width:100%;padding:.8em 1em;font:inherit;font-size:.97rem;
  color:var(--tp-ink);background:var(--tp-surface);
  border:1px solid var(--tp-border);border-radius:var(--tp-radius);
  transition:border-color .18s var(--tp-ease),box-shadow .18s var(--tp-ease);
}
.tp-input::placeholder,.tp-textarea::placeholder{color:var(--tp-ink-faint)}
.tp-input:hover,.tp-textarea:hover{border-color:var(--tp-ink-faint)}
.tp-input:focus,.tp-textarea:focus{
  outline:none;border-color:var(--tp-theme-primary);
  box-shadow:0 0 0 4px rgba(var(--tp-brand-rgb),.13);
}
.tp-textarea{min-height:150px;resize:vertical}

/* ---------- top contact bar ---------- */
.tp-topbar{
  background:var(--tp-headerbar-bg);color:var(--tp-headerbar-fg);
  font-size:.845rem;
}
.tp-topbar a{color:var(--tp-headerbar-fg);opacity:.92}
.tp-topbar a:hover{color:var(--tp-headerbar-fg);opacity:1}
.tp-topbar__inner{display:flex;justify-content:space-between;align-items:center;gap:var(--tp-sp-4);padding:.65em 0;flex-wrap:wrap}
.tp-topbar__links{display:flex;gap:var(--tp-sp-5);flex-wrap:wrap;align-items:center}
.tp-topbar__links a{display:inline-flex;align-items:center;gap:.5em;white-space:nowrap}
.tp-topbar svg{width:.95em;height:.95em;opacity:.8}

/* ---------- header / nav ---------- */
.tp-header{background:var(--tp-surface);border-bottom:1px solid var(--tp-border);position:relative;z-index:50}
.tp-header__inner{display:flex;align-items:center;justify-content:space-between;gap:var(--tp-sp-5);padding:var(--tp-sp-4) 0}
.tp-logo{
  display:flex;align-items:center;gap:.7em;
  font-family:var(--tp-ff-heading);font-weight:700;font-size:1.1rem;
  letter-spacing:-.015em;color:var(--tp-ink);
}
.tp-logo img{max-height:50px;width:auto}
.tp-logo__mark{
  width:42px;height:42px;flex:0 0 42px;border-radius:var(--tp-radius);
  background:var(--tp-theme-primary);color:var(--tp-brand-contrast);
  display:flex;align-items:center;justify-content:center;font-size:1.15rem;
  box-shadow:var(--tp-shadow-sm);
}
.tp-nav{display:flex;gap:var(--tp-sp-6);align-items:center}
.tp-nav a{
  font-family:var(--tp-ff-heading);font-weight:600;font-size:.94rem;
  color:var(--tp-ink-muted);padding:.4em 0;position:relative;
}
.tp-nav a:hover,.tp-nav a[aria-current=page]{color:var(--tp-theme-primary)}
/* No active underline here on purpose: themes that mark the current page
   with a coloured pill would then show a pill and a line. Each theme
   defines its own single indicator. */

/* Menu toggle is a checkbox so navigation works without any JavaScript. */
.tp-navtoggle{display:none}
.tp-burger{
  display:none;cursor:pointer;padding:10px;border:1px solid var(--tp-border);
  border-radius:var(--tp-radius);background:var(--tp-surface);
  transition:background .18s var(--tp-ease),border-color .18s var(--tp-ease);
}
.tp-burger:hover{background:var(--tp-surface-2);border-color:var(--tp-ink-faint)}
.tp-burger span{display:block;width:20px;height:2px;border-radius:2px;background:var(--tp-ink);margin:4px 0}

/* ---------- footer ---------- */
.tp-footer{background:var(--tp-surface-2);color:var(--tp-ink);padding:var(--tp-sp-9) 0 0;border-top:1px solid var(--tp-border)}
.tp-footer h4{
  font-family:var(--tp-ff-heading);font-size:.8rem;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;color:var(--tp-ink);
  margin-bottom:var(--tp-sp-4);
}
.tp-footer a{color:var(--tp-ink-muted)}
.tp-footer a:hover{color:var(--tp-theme-primary)}
.tp-footer__cols{display:grid;gap:var(--tp-sp-7);grid-template-columns:1.7fr 1fr 1fr 1.4fr}
.tp-footer__bottom{
  margin-top:var(--tp-sp-8);padding:var(--tp-sp-5) 0;border-top:1px solid var(--tp-border);
  display:flex;justify-content:space-between;gap:var(--tp-sp-4);flex-wrap:wrap;
  font-size:.85rem;color:var(--tp-ink-faint);
}
.tp-social{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:var(--tp-sp-5)}
.tp-social a{
  width:38px;height:38px;border-radius:var(--tp-radius);
  display:flex;align-items:center;justify-content:center;
  background:var(--tp-surface);border:1px solid var(--tp-border);color:var(--tp-ink-muted);
  transition:background .2s var(--tp-ease),color .2s var(--tp-ease),
             border-color .2s var(--tp-ease),transform .2s var(--tp-ease);
}
.tp-social a:hover{
  background:var(--tp-theme-primary);color:var(--tp-brand-contrast);
  border-color:var(--tp-theme-primary);transform:translateY(-2px);
}
.tp-social svg{width:16px;height:16px;fill:currentColor}

/* ---------- footer lists ---------- */
.tp-linklist{list-style:none;padding:0;margin:0;display:grid;gap:.62rem}
.tp-linklist li{margin:0}

.tp-contactlist{list-style:none;padding:0;margin:0;display:grid;gap:.95rem}
.tp-contactlist li{margin:0}
.tp-contactlist li>a,.tp-contactlist li>span{
  display:flex;gap:.7em;align-items:flex-start;line-height:1.5;
}
.tp-contactlist svg{
  flex:0 0 auto;width:1.05em;height:1.05em;margin-top:.3em;
  color:var(--tp-theme-primary);vertical-align:baseline;
}
.tp-contactlist a:hover svg{color:var(--tp-brand-hover)}

/* Larger variant used on the contact page, with a label above each value. */
.tp-contactlist--lg{gap:var(--tp-sp-5)}
.tp-contactlist--lg svg{width:1.25em;height:1.25em;margin-top:.15em}
.tp-contactlist__label{
  display:block;font-family:var(--tp-ff-heading);
  font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;
  font-weight:700;color:var(--tp-ink-faint);margin-bottom:.15em;
}

/* ---------- newsletter ---------- */
.tp-newsletter{
  background:var(--tp-theme-primary);color:var(--tp-brand-contrast);
  position:relative;overflow:hidden;
}
.tp-newsletter::after{
  content:"";position:absolute;right:-80px;top:-80px;
  width:320px;height:320px;border-radius:50%;
  background:var(--tp-brand-contrast);opacity:.06;
}
.tp-newsletter h2,.tp-newsletter p{color:var(--tp-brand-contrast)}
.tp-newsletter h2{margin-bottom:.3em}
.tp-newsletter form{display:flex;gap:.6rem;flex-wrap:wrap;position:relative;z-index:1}
.tp-newsletter input{
  flex:1 1 240px;padding:.85em 1.1em;border:0;border-radius:var(--tp-radius);
  font:inherit;font-size:.97rem;color:var(--tp-ink);background:var(--tp-surface);
  box-shadow:var(--tp-shadow-sm);
}
.tp-newsletter input:focus{outline:none;box-shadow:0 0 0 4px rgba(var(--tp-brand-rgb),.25)}

/* ---------- testimonials ---------- */
.tp-quote{
  background:var(--tp-surface);border:1px solid var(--tp-border);
  border-radius:var(--tp-radius-lg);padding:var(--tp-sp-6);
  box-shadow:var(--tp-shadow-xs);
  transition:transform .25s var(--tp-ease),box-shadow .25s var(--tp-ease);
}
.tp-quote:hover{transform:translateY(-3px);box-shadow:var(--tp-shadow-md)}
.tp-quote__text{font-size:1.02rem;line-height:1.6;color:var(--tp-ink-muted);margin-bottom:var(--tp-sp-5)}
.tp-quote__name{
  font-family:var(--tp-ff-heading);font-weight:700;color:var(--tp-ink);
  display:flex;align-items:center;gap:.6em;
}
.tp-quote__name::before{
  content:"";width:1.8em;height:2px;background:var(--tp-theme-primary);border-radius:2px;flex:0 0 auto;
}

/* ---------- horizontal scroller (replaces the JS carousels) ---------- */
.tp-scroller{
  display:grid;grid-auto-flow:column;grid-auto-columns:minmax(260px,1fr);
  gap:var(--tp-sp-5);overflow-x:auto;scroll-snap-type:x mandatory;
  padding-bottom:var(--tp-sp-3);scrollbar-width:thin;
}
.tp-scroller>*{scroll-snap-align:start}

/* Continuous logo strip. Pauses for anyone who prefers reduced motion. */
.tp-marquee{
  overflow:hidden;position:relative;
  -webkit-mask-image:linear-gradient(90deg,transparent,rgba(0,0,0,1) 8%,rgba(0,0,0,1) 92%,transparent);
  mask-image:linear-gradient(90deg,transparent,rgba(0,0,0,1) 8%,rgba(0,0,0,1) 92%,transparent);
}
.tp-marquee__track{display:flex;gap:clamp(32px,5vw,64px);width:max-content;animation:tp-scroll 38s linear infinite;align-items:center}
.tp-marquee img{height:48px;width:auto;object-fit:contain;filter:grayscale(1);opacity:.55;transition:filter .3s var(--tp-ease),opacity .3s var(--tp-ease)}
.tp-marquee img:hover{filter:none;opacity:1}
@keyframes tp-scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ---------- floating WhatsApp button ---------- */
.tp-wa{
  position:fixed;right:20px;bottom:20px;z-index:900;
  width:54px;height:54px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:var(--tp-wa-bg);color:var(--tp-scrim-fg);
  box-shadow:0 8px 24px rgba(0,0,0,.24);
  transition:transform .22s var(--tp-ease),box-shadow .22s var(--tp-ease);
}
.tp-wa svg{width:27px;height:27px;fill:currentColor}
.tp-wa:hover{color:var(--tp-scrim-fg);transform:scale(1.08) translateY(-2px);box-shadow:0 12px 28px rgba(0,0,0,.3)}

/* ---------- breadcrumb & page head ---------- */
.tp-crumb{padding:var(--tp-sp-4) 0;font-size:.85rem;color:var(--tp-ink-faint);border-bottom:1px solid var(--tp-border)}
.tp-crumb a{color:var(--tp-ink-muted)}
.tp-crumb a:hover{color:var(--tp-theme-primary)}

.tp-pagehead{
  background:var(--tp-brand-tint);padding:var(--tp-sp-9) 0;
  position:relative;overflow:hidden;
}
.tp-pagehead h1{margin:0}
.tp-pagehead::after{
  content:"";position:absolute;right:-60px;bottom:-120px;
  width:280px;height:280px;border-radius:50%;
  background:var(--tp-theme-primary);opacity:.05;
}

/* ---------- empty state ---------- */
.tp-empty{
  padding:var(--tp-sp-9) var(--tp-sp-5);text-align:center;color:var(--tp-ink-faint);
  border:1px dashed var(--tp-border);border-radius:var(--tp-radius-lg);
  background:var(--tp-surface-2);
}

/* ---------- skip link (accessibility) ---------- */
.tp-skip{position:absolute;left:-9999px}
.tp-skip:focus{
  left:16px;top:16px;z-index:999;padding:.7em 1.2em;
  background:var(--tp-theme-primary);color:var(--tp-brand-contrast);
  border-radius:var(--tp-radius);box-shadow:var(--tp-shadow-lg);
}

/* ---------- responsive ---------- */
@media (max-width:991px){
  .tp-grid--4{grid-template-columns:repeat(2,1fr)}
  .tp-grid--3{grid-template-columns:repeat(2,1fr)}
  .tp-footer__cols{grid-template-columns:1fr 1fr}
}
@media (max-width:767px){
  :root{--tp-section-y:56px}
  body{font-size:16px}
  .tp-grid--2,.tp-grid--3,.tp-grid--4{grid-template-columns:1fr}
  .tp-footer__cols{grid-template-columns:1fr;gap:var(--tp-sp-6)}
  .tp-burger{display:block}
  .tp-nav{
    display:none;position:absolute;top:100%;left:0;right:0;
    flex-direction:column;align-items:stretch;gap:0;
    background:var(--tp-surface);border-bottom:1px solid var(--tp-border);
    padding:var(--tp-sp-2) clamp(20px,4vw,32px) var(--tp-sp-4);
    box-shadow:var(--tp-shadow-lg);
  }
  .tp-navtoggle:checked~.tp-nav{display:flex}
  .tp-nav a{padding:.85em 0;border-bottom:1px solid var(--tp-border)}
  .tp-nav a:last-child{border-bottom:0}
  .tp-topbar__inner{justify-content:center;text-align:center;font-size:.8rem}
  .tp-header__inner{position:relative}
  .tp-newsletter form{flex-direction:column}
  .tp-newsletter .tp-btn{width:100%}
}

@media (prefers-reduced-motion:reduce){
  *{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}
  .tp-marquee__track{animation:none}
}

/* Printing a brochure site should not waste ink on chrome. */
@media print{
  .tp-topbar,.tp-nav,.tp-burger,.tp-wa,.tp-newsletter,.tp-footer{display:none}
  body{color:var(--tp-print-ink);background:var(--tp-print-paper)}
}
