/* Grafton Container Hire & Sales — design system "Clarence"
   River teal carries the work, the CRM sage is decoration only, warm paper neutrals.

   CONTRAST NOTE — read this before changing a single colour.
   The CRM brand colour for GRA is #CAD28B, a pale sage. It measures 1.60:1 against
   white, which fails every text threshold there is. It is therefore NEVER used as
   text on a light background. It appears only as (a) a background carrying dark
   text, (b) a marker or heading on a dark background, (c) non-text decoration —
   rules, borders, the brand mark, the river motif.
     --brand   #CAD28B  1.60:1 on white  → non-text use only.
                        10.37:1 with --ink on it, so it is safe as a background.
                         7.05:1 on --primary-deep, so it is safe as a heading there.
     --primary #0F5C55  7.83:1 on white, and white on it is 7.83:1. This carries
                        every body link and every solid primary button.
     --primary-deep #0A423D  11.29:1 on white. Dark bands, hover states.
     --clay    #8C3517  7.96:1 on white, and white on it is 7.96:1. The phone/CTA
                        colour. Passes both ways, so it works as text and as a fill.
     --ink     #12211F  16.63:1 on white, 14.97:1 on --sand. Headings, dark bands.
     --body    #33403E  10.80:1 on white,  9.73:1 on --sand. Body copy.
     --muted   #56635F   6.28:1 on white,  5.65:1 on --sand. Fine print — still AA
                        at small sizes, which is why it is this dark and not lighter.
     --sage-pale #E7EBCB 1.22:1 on white → background only. --ink on it is 13.57:1
                        and --primary on it is 6.39:1, so both are safe over it.
     --line    #DDD8C7  1.43:1 on white → rules and borders only, never text.
   Every text/background pair used in this stylesheet clears 4.5:1. If you add one,
   measure it first. */

:root {
  --brand: #cad28b;
  --sage-pale: #e7ebcb;
  --primary: #0f5c55;
  --primary-deep: #0a423d;
  --clay: #8c3517;
  --clay-deep: #6f2911;
  --ink: #12211f;
  --body: #33403e;
  --muted: #56635f;
  --sand: #f5f3ec;
  --paper: #ffffff;
  --line: #ddd8c7;
  --line-dark: #c6c0aa;
  --w: 1180px;
  --r: 3px;
  --serif: "Bitter", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--body); background: var(--paper); line-height: 1.68; font-size: 17px; }
img { max-width: 100%; display: block; height: auto; }
a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--primary-deep); }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: clamp(1.95rem, 4.2vw, 3rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.95rem); margin-bottom: 0.5em; }
h3 { font-size: 1.12rem; }
p { margin-bottom: 1.05em; }
p:last-child { margin-bottom: 0; }
.wrap { max-width: var(--w); margin: 0 auto; padding: 0 22px; }
.wrap.narrow { max-width: 820px; }
.wrap.centred { text-align: center; }
.sec { padding: 62px 0; }
.sec-sand { background: var(--sand); }
.sec-tall { min-height: 48vh; display: flex; align-items: center; }
.vh { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.kicker { display: block; font-family: var(--sans); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; padding-left: 34px; position: relative; }
.kicker::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 24px; height: 3px; background: var(--brand); }
.big { font-size: 1.14rem; color: var(--muted); max-width: 62ch; }
.fineprint { font-size: 0.86rem; color: var(--muted); margin-top: 14px; }
.caveat { border-left: 4px solid var(--brand); background: var(--sand); padding: 16px 20px; margin: 22px 0; font-size: 0.96rem; color: var(--body); }
.caveat strong { color: var(--ink); }
.sub { margin-top: 46px; }

/* Buttons — square, ruled, no pills and no drop shadows. */
.btn { display: inline-block; font-family: var(--sans); font-weight: 700; font-size: 0.97rem; padding: 13px 26px; border: 2px solid transparent; border-radius: var(--r); cursor: pointer; text-align: center; text-decoration: none; transition: background 0.14s, color 0.14s, border-color 0.14s; }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-wide { width: 100%; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-deep); border-color: var(--primary-deep); color: #fff; }
.btn-clay { background: var(--clay); color: #fff; border-color: var(--clay); }
.btn-clay:hover { background: var(--clay-deep); border-color: var(--clay-deep); color: #fff; }
.btn-line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-line:hover { background: var(--ink); color: #fff; }
.acts { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* ---------- Two-tier masthead: identity row, then a navigation band ---------- */
.mast { position: sticky; top: 0; z-index: 90; background: var(--paper); }
.mast-id { border-bottom: 1px solid var(--line); }
.mast-id .wrap { display: flex; align-items: center; gap: 26px; padding-top: 12px; padding-bottom: 12px; }
.brand { display: flex; align-items: center; flex: none; text-decoration: none; }
.brand svg { height: 46px; width: auto; }
.mast-yard { flex: 1; border-left: 3px solid var(--brand); padding-left: 16px; line-height: 1.35; }
.mast-yard-k { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.mast-yard a { font-size: 0.92rem; font-weight: 600; color: var(--ink); text-decoration: none; }
.mast-yard a:hover { text-decoration: underline; }
.mast-act { display: flex; align-items: center; gap: 16px; flex: none; }
.mast-phone { text-decoration: none; text-align: right; }
.mast-phone span { display: block; font-family: var(--serif); font-weight: 700; font-size: 1.16rem; color: var(--clay); line-height: 1.1; }
.mast-phone small { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.burger { display: none; border: 2px solid var(--ink); background: none; cursor: pointer; padding: 8px 9px; border-radius: var(--r); }
.burger span { display: block; width: 22px; height: 2.5px; background: var(--ink); margin: 4px 0; }
.mast-nav { background: var(--primary-deep); }
.menu { display: flex; list-style: none; gap: 0; }
.menu a { display: block; padding: 13px 18px; font-weight: 600; font-size: 0.94rem; color: #fff; text-decoration: none; white-space: nowrap; border-bottom: 3px solid transparent; }
.menu a:hover { background: var(--primary); border-bottom-color: var(--brand); color: #fff; }

/* ---------- Fact rail ---------- */
.rail { background: var(--ink); color: #fff; }
.rail .wrap { display: flex; flex-wrap: wrap; }
.rail-i { flex: 1 1 200px; padding: 15px 22px 15px 0; border-right: 1px solid rgba(202, 210, 139, 0.28); }
.rail-i:last-child { border-right: none; }
.rail-i + .rail-i { padding-left: 22px; }
.rail-i b { display: block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brand); }
.rail-i span { font-size: 0.92rem; font-weight: 500; color: #fff; }

/* ---------- Home split hero: light, asymmetric, card instead of photograph ---------- */
.split { background: var(--paper); border-bottom: 1px solid var(--line); padding: 62px 0 66px; position: relative; }
.split::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 6px; background: linear-gradient(90deg, var(--primary) 0 30%, var(--brand) 30% 62%, var(--clay) 62% 100%); }
.split-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: start; }
.split-copy h1 { margin-bottom: 18px; max-width: 16ch; }
.split-note { margin-top: 22px; font-size: 0.86rem; color: var(--muted); }
.yardcard { border: 2px solid var(--ink); border-radius: var(--r); padding: 26px 26px 24px; background: var(--sand); }
.yardcard-k { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.yardcard-a { font-family: var(--serif); font-weight: 700; font-size: 1.24rem; color: var(--ink); line-height: 1.3; margin-bottom: 16px; }
.yardcard-l { list-style: none; display: grid; gap: 10px; margin-bottom: 18px; }
.yardcard-l li { padding-left: 24px; position: relative; font-size: 0.95rem; }
.yardcard-l li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 12px; height: 3px; background: var(--primary); }
.yardcard-p { font-size: 0.9rem; color: var(--muted); border-top: 1px solid var(--line-dark); padding-top: 14px; }

/* ---------- Page heads (every page except home) ---------- */
.phead { background: var(--sand); border-bottom: 1px solid var(--line); padding: 42px 0 46px; }
.phead h1 { margin-bottom: 14px; }
.phead-loc { background: var(--paper); border-bottom: 3px solid var(--brand); }
.crumb { background: var(--sand); font-size: 0.83rem; color: var(--muted); padding: 14px 0 0; }
.phead-loc + .glance { border-top: none; }
.crumb a { color: var(--muted); }

/* ---------- Locality at-a-glance strip ---------- */
.glance { background: var(--sage-pale); }
.glance dl { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.glance dl > div { padding: 16px 22px 16px 0; border-right: 1px solid rgba(18, 33, 31, 0.16); }
.glance dl > div + div { padding-left: 22px; }
.glance dl > div:last-child { border-right: none; }
.glance dt { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary); }
.glance dd { font-size: 0.95rem; font-weight: 600; color: var(--ink); }

/* ---------- Range comparison table ---------- */
.tablewrap { overflow-x: auto; margin: 24px 0; }
table.range { width: 100%; border-collapse: collapse; font-size: 0.96rem; }
table.range caption { text-align: left; }
table.range th[scope="col"] { text-align: left; font-family: var(--sans); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); padding: 10px 14px 10px 0; border-bottom: 3px solid var(--ink); }
table.range th[scope="row"] { text-align: left; font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--ink); padding: 14px 14px 14px 0; border-bottom: 1px solid var(--line); white-space: nowrap; }
table.range td { padding: 14px 14px 14px 0; border-bottom: 1px solid var(--line); }
table.range tbody tr:hover { background: var(--sand); }

/* ---------- Specialty type strip (list, not cards) ---------- */
.strip { list-style: none; border-top: 3px solid var(--ink); }
.strip li { border-bottom: 1px solid var(--line); }
.strip a { display: grid; grid-template-columns: 240px 1fr; gap: 24px; padding: 20px 0; text-decoration: none; color: var(--body); align-items: baseline; }
.strip a:hover { background: var(--sand); }
.strip b { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); }
.strip span { font-size: 0.97rem; color: var(--muted); }
.strip a:hover span { color: var(--body); }

/* ---------- Vertical numbered stack ---------- */
.stack { list-style: none; counter-reset: s; border-left: 3px solid var(--brand); margin-top: 28px; }
.stack li { counter-increment: s; position: relative; padding: 0 0 26px 62px; }
.stack li:last-child { padding-bottom: 0; }
.stack li::before { content: counter(s, decimal-leading-zero); position: absolute; left: 18px; top: 0; font-family: var(--serif); font-weight: 700; font-size: 1.1rem; color: var(--primary); }
.stack h3 { margin-bottom: 5px; }
.stack p { color: var(--muted); }

/* ---------- Panels (bordered, square, no shadow) ---------- */
.panels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 28px; }
.panels-3 { grid-template-columns: repeat(3, 1fr); }
.panel { border: 1px solid var(--line-dark); border-top: 5px solid var(--primary); border-radius: var(--r); background: var(--paper); padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 10px; }
.panel h3 { margin-bottom: 2px; }
.panel p { color: var(--muted); font-size: 0.97rem; }
.panel-fine { font-size: 0.85rem !important; }
.panel .btn { align-self: flex-start; margin-top: auto; }

/* ---------- Two-column rows ---------- */
.duo { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.duo.nophoto { grid-template-columns: 1fr; max-width: 820px; }
.duo-img { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line-dark); }
.ticks { list-style: none; display: grid; gap: 11px; margin: 18px 0 26px; }
.ticks li { padding-left: 30px; position: relative; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 14px; height: 3px; background: var(--primary); }

/* ---------- Locality / area chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chips a { border: 1px solid var(--line-dark); border-radius: var(--r); padding: 8px 15px; font-weight: 600; font-size: 0.9rem; color: var(--ink); text-decoration: none; background: var(--paper); }
.chips a:hover { border-color: var(--primary); color: var(--primary); background: var(--sage-pale); }

/* ---------- FAQ: native disclosure, so the visible copy is the schema copy ---------- */
.faq { border-top: 3px solid var(--ink); margin-top: 22px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 40px 18px 0; font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: var(--ink); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 14px; font-size: 1.5rem; font-weight: 400; color: var(--primary); line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { color: var(--primary); }
.faq summary:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
.faq details > div { padding: 0 40px 20px 0; color: var(--body); }

/* ---------- Ask panel: form left, argument right, on pale sage ---------- */
.ask { background: var(--sage-pale); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.ask-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 48px; align-items: center; }
.ask-copy h2 { margin-bottom: 12px; }
.ask-copy .big { color: var(--body); }
.ask-or { font-size: 0.9rem; color: var(--muted); margin: 20px 0 10px; }
.askcard { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r); padding: 26px 26px 22px; }
.askcard-h { margin-bottom: 14px; }
.askcard label { display: block; font-weight: 600; font-size: 0.82rem; color: var(--ink); margin: 0 0 5px; }
.askcard input, .askcard select, .askcard textarea { width: 100%; font-family: var(--sans); font-size: 1rem; padding: 11px 13px; border: 1px solid var(--line-dark); border-radius: var(--r); background: var(--paper); margin-bottom: 13px; color: var(--body); }
.askcard input:focus, .askcard select:focus, .askcard textarea:focus { outline: 3px solid var(--primary); outline-offset: 1px; }
.qrow { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.qtoggle { display: flex; gap: 8px; margin-bottom: 16px; }
.qtoggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.qtoggle label { flex: 1; text-align: center; border: 2px solid var(--line-dark); border-radius: var(--r); padding: 10px; cursor: pointer; font-weight: 700; margin: 0; font-size: 0.95rem; }
.qtoggle input:checked + label { background: var(--ink); border-color: var(--ink); color: #fff; }
.qtoggle input:focus-visible + label { outline: 3px solid var(--primary); outline-offset: 2px; }
.qnote { font-size: 0.8rem; color: var(--muted); margin-top: 12px; }
.q-ok { background: var(--paper); border: 2px solid var(--primary); border-radius: var(--r); padding: 20px; font-weight: 600; color: var(--ink); }
.q-bad { background: #fdf0ec; border: 2px solid var(--clay); border-radius: var(--r); padding: 14px; font-weight: 600; color: var(--clay-deep); font-size: 0.92rem; margin-bottom: 14px; }
.q-bad a, .q-ok a { color: var(--clay-deep); }

/* ---------- Delivery access checker ---------- */
.checker { border: 2px solid var(--ink); border-radius: var(--r); padding: 26px; background: var(--sand); }
.checker .step { display: none; }
.checker .step.on { display: block; }
.checker-q { font-weight: 700; color: var(--ink); margin: 12px 0 6px; }
.checker button.opt { display: block; width: 100%; text-align: left; margin: 9px 0; padding: 14px 16px; border: 1px solid var(--line-dark); background: var(--paper); border-radius: var(--r); font-family: var(--sans); font-weight: 600; font-size: 0.97rem; cursor: pointer; color: var(--ink); }
.checker button.opt:hover { border-color: var(--primary); background: var(--sage-pale); }
.checker button.opt:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
.checker .verdict { background: var(--paper); border-left: 4px solid var(--brand); border-radius: var(--r); padding: 18px; margin-bottom: 16px; color: var(--body); }

/* ---------- Blog ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 26px; }
.posts-2 { grid-template-columns: repeat(2, 1fr); }
.post { border-top: 3px solid var(--ink); padding-top: 18px; }
.post time { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--primary); }
.post h3 { margin: 8px 0 6px; font-size: 1.08rem; }
.post h3 a { text-decoration: none; color: var(--ink); }
.post h3 a:hover { color: var(--primary); text-decoration: underline; }
.post p { color: var(--muted); font-size: 0.94rem; }
.prose { max-width: 760px; }
.prose h2 { margin: 1.7em 0 0.45em; }
.prose h2:first-child { margin-top: 0; }
.intro { font-size: 1.16rem; color: var(--body); border-left: 4px solid var(--brand); padding-left: 18px; margin-top: 18px; }
.after { margin-top: 26px; font-size: 0.95rem; }

/* ---------- Two-tier footer ---------- */
.foot { background: var(--ink); color: #c9d2cd; font-size: 0.94rem; }
.foot a { color: #eef2ec; }
.foot-top { border-bottom: 1px solid rgba(202, 210, 139, 0.24); padding: 44px 0 34px; }
.foot-top .wrap { display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: start; }
.foot-top .brand svg { height: 50px; }
.foot-tag { margin-top: 14px; max-width: 52ch; }
.foot-nap { border-left: 3px solid var(--brand); padding-left: 20px; }
.foot-k { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; }
.foot-nap address { font-style: normal; color: #eef2ec; font-weight: 600; line-height: 1.5; }
.foot-phone { display: inline-block; font-family: var(--serif); font-size: 1.45rem; font-weight: 700; color: #fff; margin: 12px 0 4px; text-decoration: none; }
.foot-phone:hover { color: var(--brand); }
.foot-hours { margin-top: 8px; }
.foot-mid { padding: 34px 0 30px; }
.foot-mid .wrap { display: grid; grid-template-columns: 1fr 1fr 1.6fr; gap: 34px; }
.foot h4 { color: var(--brand); font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 13px; }
.foot ul { list-style: none; display: grid; gap: 7px; }
.foot-areas ul { grid-template-columns: repeat(3, 1fr); }
.foot-base { border-top: 1px solid rgba(255, 255, 255, 0.14); padding: 15px 0; font-size: 0.79rem; }
.foot-base .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Mobile action bar ---------- */
.actionbar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; gap: 8px; background: var(--ink); padding: 9px 10px; border-top: 3px solid var(--brand); }
.actionbar .btn { flex: 1; padding: 12px 6px; font-size: 0.92rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .menu a { padding: 13px 12px; font-size: 0.89rem; }
  .mast-yard { display: none; }
}
@media (max-width: 940px) {
  .split-grid, .ask-grid, .duo { grid-template-columns: 1fr; gap: 34px; }
  .panels, .panels-3 { grid-template-columns: 1fr 1fr; }
  .posts { grid-template-columns: 1fr 1fr; }
  .glance dl { grid-template-columns: 1fr 1fr; }
  .glance dl > div { border-bottom: 1px solid rgba(18, 33, 31, 0.16); }
  .glance dl > div:nth-child(2n) { border-right: none; }
  .glance dl > div:nth-child(2n) { padding-left: 22px; }
  .foot-top .wrap, .foot-mid .wrap { grid-template-columns: 1fr; }
  .foot-areas ul { grid-template-columns: repeat(2, 1fr); }
  .burger { display: block; }
  .mast-nav .menu { display: none; flex-direction: column; padding: 8px 0 14px; }
  .mast-nav .menu.show { display: flex; }
  .menu a { padding: 13px 4px; font-size: 1rem; border-bottom: 1px solid rgba(202, 210, 139, 0.2); }
  .mast-act .btn { display: none; }
  .strip a { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 620px) {
  body { padding-bottom: 74px; font-size: 16.5px; }
  .sec { padding: 44px 0; }
  .split { padding: 40px 0 44px; }
  .panels, .panels-3, .posts, .posts-2, .qrow { grid-template-columns: 1fr; }
  .glance dl { grid-template-columns: 1fr; }
  .glance dl > div { border-right: none; padding-left: 0 !important; }
  .rail .wrap { display: block; }
  .rail-i { border-right: none; border-bottom: 1px solid rgba(202, 210, 139, 0.28); padding-left: 0 !important; }
  .rail-i:last-child { border-bottom: none; }
  .actionbar { display: flex; }
  .mast-phone small { display: none; }
  .foot-areas ul { grid-template-columns: 1fr 1fr; }
  /* Stack the range table into labelled rows rather than scrolling it sideways. */
  table.range thead { display: none; }
  table.range, table.range tbody, table.range tr, table.range th, table.range td { display: block; width: 100%; }
  table.range tr { border-bottom: 2px solid var(--ink); padding-bottom: 10px; margin-bottom: 14px; }
  table.range th[scope="row"] { border-bottom: 1px solid var(--line); padding-bottom: 8px; }
  table.range td { border-bottom: none; padding: 5px 0; display: flex; justify-content: space-between; gap: 16px; }
  table.range td::before { content: attr(data-l); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
