@font-face {
  font-family:Hubot;
  src:url('/assets/regular.ttf') format('truetype');
  font-display:swap;
  font-weight:400;
}
@font-face {
  font-family:Hubot;
  src:url('/assets/bold.ttf') format('truetype');
  font-display:swap;
  font-weight:700;
}
:root {
  --orange:#f3501a;
  --orange-dark:#ad340d;
  --paper:#faf9f7;
  --ink:#241f1d;
  --muted:#69645f;
  --line:#e5e1dd;
  --dark:#181818;
  --max:1280px;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:110px;
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:Hubot,Arial,sans-serif;
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
a {
  color:inherit;
  text-decoration:none;
}
button,input,textarea {
  font:inherit;
}
button,a,input,textarea,summary {
  -webkit-tap-highlight-color:transparent;
}
button {
  cursor:pointer;
}
button:disabled {
  cursor:wait;
  opacity:.65;
}
img {
  display:block;
  max-width:100%;
  height:auto;
}
h1,h2,h3,p {
  margin-top:0;
}
h1,h2,h3 {
  line-height:1.08;
  letter-spacing:-.045em;
  font-weight:700;
}
h1 {
  font-size:clamp(44px,5.5vw,78px);
  margin-bottom:28px;
}
h2 {
  font-size:clamp(32px,3.4vw,48px);
  margin-bottom:24px;
}
h3 {
  font-size:24px;
  line-height:1.2;
}
p {
  margin-bottom:24px;
}
::selection {
  background:var(--orange);
  color:#fff;
}
:focus-visible {
  outline:3px solid var(--orange-dark);
  outline-offset:5px;
}
.wrap {
  width:min(var(--max),calc(100% - 96px));
  margin-inline:auto;
}
.section {
  padding-block:96px;
}
.section-tight {
  padding-top:8px;
}
.icon {
  flex-shrink:0;
  vertical-align:middle;
}
.eyebrow {
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:11px;
  font-weight:700;
  color:var(--orange-dark);
  margin-bottom:20px;
  line-height:1.6;
}
.intro {
  font-size:19px;
  line-height:1.7;
  color:var(--muted);
  max-width:690px;
}
.muted {
  color:var(--muted);
  font-size:14px;
}
.actions {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:17px 24px;
  border:1px solid transparent;
  border-radius:3px;
  background:var(--orange);
  color:var(--ink);
  font-size:14px;
  font-weight:700;
  line-height:1.4;
  transition:background .2s,transform .2s;
}
.button .icon {
  width:20px;
  height:20px;
  transition:transform .2s;
}
.button:hover {
  background:#ff6b35;
}
.button:hover .icon {
  transform:translateX(3px);
}
.button-outline {
  background:transparent;
  border-color:#c7c2bc;
}
.button-outline:hover {
  background:#efebe5;
}
.button-light {
  background:transparent;
  color:#fff;
  border-color:#ffffff50;
}
.button-light:hover {
  background:#ffffff15;
}
.text-link {
  display:inline-flex;
  align-items:center;
  gap:22px;
  font-weight:700;
  font-size:14px;
  border-bottom:1px solid var(--line);
  padding-bottom:9px;
}
.email {
  overflow-wrap:anywhere;
}
.skip-link {
  position:fixed;
  top:-100px;
  left:16px;
  background:var(--paper);
  padding:12px;
  z-index:100;
}
.skip-link:focus {
  top:12px;
}
.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
}
.topline {
  background:var(--ink);
  color:#dcd7d3;
  font-size:11px;
}
.topline .wrap {
  display:flex;
  align-items:center;
  gap:36px;
  min-height:35px;
}
.topline .wrap>span {
  margin-right:auto;
}
.topline a {
  display:flex;
  align-items:center;
  gap:8px;
}
.topline .icon {
  width:13px;
  height:13px;
  color:var(--orange);
}
.header {
  background:var(--paper);
  position:sticky;
  top:0;
  z-index:20;
  border-bottom:1px solid var(--line);
}
.header-inner {
  min-height:92px;
  display:flex;
  align-items:center;
  gap:46px;
}
.brand {
  display:flex;
  gap:13px;
  align-items:center;
  flex-shrink:0;
}
.brand img {
  width:62px;
  height:auto;
}
.brand span {
  font-size:13px;
  letter-spacing:.045em;
  line-height:1.25;
  font-weight:700;
}
.brand strong {
  display:block;
  font-size:19px;
  letter-spacing:.04em;
}
.header nav {
  display:flex;
  gap:30px;
  margin-left:auto;
  align-items:center;
}
.header nav a {
  font-size:13px;
  font-weight:700;
  padding-block:32px;
  position:relative;
}
.header nav a:after {
  content:'';
  height:2px;
  background:var(--orange);
  position:absolute;
  bottom:22px;
  left:0;
  right:100%;
  transition:right .2s;
}
.header nav a:hover:after,.header nav a[aria-current]:after {
  right:0;
}
.header-call {
  font-size:13px;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:10px;
  border-left:1px solid var(--line);
  padding-left:28px;
}
.header-call .icon {
  width:17px;
  color:var(--orange-dark);
}
.menu-toggle {
  display:none;
}
.hero {
  position:relative;
  isolation:isolate;
  background:#1d1d1d;
  color:#fff;
  overflow:hidden;
}
.hero-image {
  position:absolute;
  inset:0;
  z-index:-3;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 57%;
}
.hero-shade {
  position:absolute;
  inset:0;
  z-index:-2;
  background:linear-gradient(90deg,rgba(15,15,15,.96) 0%,rgba(15,15,15,.86) 30%,rgba(15,15,15,.35) 66%,rgba(15,15,15,.1) 100%);
}
.hero-content {
  padding-top:70px;
  padding-bottom:25px;
}
.hero-content .eyebrow {
  display:flex;
  align-items:center;
  gap:13px;
  color:#ded8d4;
  margin-bottom:24px;
}
.orange-line {
  height:2px;
  width:26px;
  background:var(--orange);
}
.hero h1 {
  max-width:800px;
  font-size:clamp(52px,6vw,84px);
  letter-spacing:-.052em;
  line-height:1.01;
  margin-bottom:28px;
}
.hero h1 span {
  color:var(--orange);
}
.hero-content>p:not(.eyebrow) {
  color:#c9c6c3;
  line-height:1.75;
  font-size:16px;
}
.hero .actions {
  margin-top:32px;
}
.hero-bottom {
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top:1px solid #ffffff28;
  margin-top:55px;
  padding-top:18px;
  color:#bbb5b1;
  font-size:9px;
  letter-spacing:.18em;
}
.hero-bottom a {
  padding:5px;
  transform:rotate(90deg);
}
.hero-aside {
  position:absolute;
  right:35px;
  top:90px;
  writing-mode:vertical-rl;
  letter-spacing:.22em;
  font-size:9px;
  color:#ddd;
}
.quick-info {
  border-bottom:1px solid var(--line);
  background:#efede8;
}
.quick-grid {
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  padding-block:28px;
  gap:30px;
}
.quick-grid>div,.quick-grid>a {
  display:flex;
  align-items:center;
  gap:17px;
}
.quick-grid>div+.quick-grid>div {
  border-left:1px solid var(--line);
}
.quick-grid>.icon,.quick-grid>div>.icon,.quick-grid>a>.icon:first-child {
  color:var(--orange-dark);
  width:23px;
}
.quick-grid p {
  margin:0;
  font-size:13px;
  line-height:1.7;
}
.quick-grid strong {
  display:block;
}
.quick-grid span {
  display:block;
  color:var(--muted);
  font-size:11px;
}
.quick-grid>a>.icon:last-child {
  margin-left:auto;
}
.section-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:50px;
  margin-bottom:40px;
}
.section-heading h2 {
  margin-bottom:0;
}
.section-heading>p {
  max-width:350px;
  font-size:15px;
  color:var(--muted);
  margin-bottom:0;
}
.section-heading>.button {
  flex-shrink:0;
}
.category-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}
.category-card {
  position:relative;
  background:var(--dark);
  color:white;
  overflow:hidden;
  border-radius:4px;
  isolation:isolate;
  aspect-ratio:1.55;
}
.category-card>img {
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  inset:0;
  z-index:-2;
  transition:transform .65s cubic-bezier(.2,.6,.3,1);
}
.category-card:after {
  content:'';
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(0deg,#141414e8 0%,#14141425 65%);
}
.category-card:hover>img {
  transform:scale(1.035);
}
.category-caption {
  position:absolute;
  bottom:27px;
  left:28px;
  right:28px;
  display:flex;
  align-items:center;
  gap:16px;
}
.category-caption h3 {
  font-size:24px;
  letter-spacing:-.035em;
  margin-bottom:7px;
}
.category-caption p {
  font-size:12px;
  color:#d0cbc8;
  margin:0;
}
.card-number {
  align-self:flex-start;
  color:var(--orange);
  font-size:11px;
  font-weight:700;
  padding-top:5px;
}
.circle-arrow {
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:1px solid #ffffff60;
  border-radius:50%;
  margin-left:auto;
  flex-shrink:0;
  transition:background .2s,color .2s;
}
.category-card:hover .circle-arrow {
  background:var(--orange);
  color:var(--ink);
  border-color:var(--orange);
}
.circle-arrow .icon {
  width:19px;
}
.brands-strip {
  display:flex;
  align-items:center;
  gap:55px;
  border-top:1px solid var(--line);
  padding-block:35px;
  margin-bottom:70px;
}
.brands-strip>p {
  font-size:12px;
  line-height:1.6;
  color:var(--muted);
  margin:0;
  white-space:nowrap;
}
.brands-strip>div {
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex:1;
  gap:28px;
}
.brands-strip img {
  object-fit:contain;
  width:110px;
  height:46px;
  filter:grayscale(1);
  mix-blend-mode:multiply;
  opacity:.7;
}
.about-section {
  background:#eeeae4;
}
.about-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:85px;
}
.about-photo {
  position:relative;
}
.about-photo>img {
  width:100%;
  height:550px;
  object-fit:cover;
  border-radius:4px;
}
.photo-label {
  position:absolute;
  bottom:23px;
  left:23px;
  background:var(--paper);
  padding:16px 24px;
  min-width:210px;
  font-size:14px;
  font-weight:700;
}
.photo-label>span {
  display:block;
  color:var(--muted);
  font-size:11px;
  font-weight:400;
}
.about-copy h2 {
  font-size:clamp(34px,3.5vw,49px);
}
blockquote {
  margin:32px 0 24px;
  padding-left:22px;
  border-left:2px solid var(--orange);
  font-size:21px;
  letter-spacing:-.02em;
  line-height:1.55;
}
.about-copy>p:not(.eyebrow) {
  color:var(--muted);
  font-size:15px;
}
.about-copy .button {
  margin-top:10px;
}
.offer-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.offer-card {
  border:1px solid var(--line);
  background:#fff;
  border-radius:4px;
  overflow:hidden;
}
.offer-image {
  position:relative;
  display:block;
  background:#fff;
  height:275px;
  padding:25px;
}
.offer-image img {
  width:100%;
  height:100%;
  object-fit:contain;
  transition:transform .4s;
}
.offer-image:hover img {
  transform:scale(1.04);
}
.offer-tag {
  position:absolute;
  top:15px;
  left:15px;
  font-size:9px;
  letter-spacing:.06em;
  text-transform:uppercase;
  background:var(--paper);
  padding:6px 9px;
}
.offer-body {
  padding:22px 24px 24px;
}
.offer-body>.eyebrow {
  font-size:9px;
  letter-spacing:.07em;
  margin-bottom:10px;
}
.offer-body h3 {
  font-size:21px;
  margin-bottom:13px;
  min-height:50px;
}
.offer-body>p:not(.eyebrow) {
  font-size:12px;
  color:var(--muted);
  min-height:60px;
}
.offer-price {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-top:1px solid var(--line);
  padding-top:20px;
}
.offer-price strong {
  font-size:28px;
  letter-spacing:-.05em;
  white-space:nowrap;
}
.offer-price small {
  font-size:15px;
}
.offer-price a {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:11px;
  font-weight:700;
}
.offer-price a .icon {
  width:18px;
  color:var(--orange-dark);
}
.offer-note {
  font-size:12px;
  color:var(--muted);
  margin-top:20px;
  margin-bottom:0;
}
.visit-section {
  background:var(--ink);
  color:var(--paper);
  padding-block:80px;
}
.visit-grid {
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:70px;
  align-items:stretch;
}
.visit-copy>.eyebrow {
  color:var(--orange);
}
.visit-copy>p:not(.eyebrow) {
  font-size:14px;
  color:#c2bbb5;
  max-width:460px;
}
.visit-details {
  display:flex;
  gap:35px;
  align-items:flex-start;
  margin:30px 0;
}
.visit-details>div {
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.visit-details .icon {
  color:var(--orange);
  width:20px;
  margin-top:5px;
}
.visit-details p {
  font-size:13px;
  margin:0;
}
.hours {
  font-size:13px;
  margin:0;
  min-width:200px;
}
.hours>div {
  display:flex;
  justify-content:space-between;
  gap:25px;
}
.hours dd {
  margin:0;
  font-weight:700;
}
.visit-details .hours {
  font-size:12px;
}
.visit-copy .button {
  font-size:12px;
  gap:20px;
  padding-inline:19px;
}
.visit-copy .button-outline {
  color:white;
  border-color:#776d65;
}
.visit-copy .button-outline:hover {
  background:#ffffff10;
}
.visit-map {
  position:relative;
  min-height:350px;
  overflow:hidden;
  border-radius:4px;
}
.visit-map>img {
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.6);
}
.visit-map>span {
  position:absolute;
  bottom:24px;
  left:24px;
  right:24px;
  background:var(--paper);
  color:var(--ink);
  padding:17px 20px;
  font-size:13px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.faq-section {
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:80px;
}
.faq-section .section-heading {
  display:block;
}
.faqs details {
  border-bottom:1px solid var(--line);
}
.faqs details:first-child {
  border-top:1px solid var(--line);
}
.faqs summary {
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  padding:23px 0;
  font-size:15px;
  font-weight:700;
}
.faqs summary::-webkit-details-marker {
  display:none;
}
.faqs summary .icon {
  width:19px;
  color:var(--orange-dark);
  transition:transform .2s;
}
.faqs details[open] summary .icon {
  transform:rotate(45deg);
}
.faqs details>p {
  color:var(--muted);
  font-size:14px;
  padding-right:35px;
  line-height:1.8;
}
.footer {
  background:var(--dark);
  color:#fff;
  padding-top:60px;
}
.footer-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:35px;
  padding-bottom:45px;
  border-bottom:1px solid #ffffff20;
}
.footer-top>p {
  font-size:14px;
  color:#b5b0ab;
  margin:0;
}
.footer-phone {
  display:flex;
  gap:28px;
  align-items:center;
  font-size:28px;
  font-weight:700;
  letter-spacing:-.04em;
}
.footer-phone .icon {
  color:var(--orange);
}
.footer-grid {
  display:grid;
  grid-template-columns:1fr 1fr .8fr 1.5fr;
  gap:42px;
  padding-block:45px;
}
.footer-grid h2 {
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:#fff;
  margin-bottom:20px;
}
.footer-grid p,.footer-grid a,.footer-grid .hours {
  font-size:12px;
  color:#b5b0ab;
}
.footer-grid .hours {
  min-width:0;
}
.footer-grid a {
  display:block;
  margin-bottom:8px;
}
.footer-grid a:hover {
  color:white;
}
.footer-grid a .icon {
  width:15px;
}
.footer-grid p {
  margin-bottom:14px;
}
.footer-bottom {
  border-top:1px solid #ffffff20;
  padding-block:22px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#aaa49f;
  font-size:10px;
}
.mobile-actions {
  display:none;
}
.breadcrumbs {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  padding-top:28px;
  font-size:11px;
  color:var(--muted);
}
.breadcrumbs a:hover {
  text-decoration:underline;
}
.breadcrumbs [aria-current] {
  color:var(--ink);
}
.subhero {
  padding-block:56px 55px;
}
.subhero .intro {
  margin-bottom:0;
  max-width:760px;
}
.enquiry-banner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  background:#eeeae4;
  padding:45px;
  margin-bottom:80px;
}
.enquiry-banner h2 {
  font-size:32px;
}
.enquiry-banner p:last-child {
  margin-bottom:0;
  color:var(--muted);
  font-size:14px;
}
.enquiry-banner .button {
  flex-shrink:0;
}
.category-hero {
  display:grid;
  grid-template-columns:1.1fr 1fr;
  align-items:center;
  gap:65px;
  padding-block:50px 65px;
}
.category-hero h1 {
  font-size:clamp(42px,4.5vw,64px);
}
.category-hero .intro {
  font-size:17px;
}
.category-hero .button {
  font-size:12px;
  gap:18px;
}
.category-hero-image img {
  width:100%;
  height:470px;
  object-fit:cover;
  border-radius:4px;
}
.category-detail {
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px;
}
.range-list {
  padding:0;
  list-style:none;
  margin-top:32px;
  margin-bottom:20px;
}
.range-list li {
  display:flex;
  align-items:center;
  gap:20px;
  padding:18px 0;
  border-bottom:1px solid var(--line);
  font-size:17px;
}
.range-list li>span {
  font-size:11px;
  color:var(--orange-dark);
}
.range-list .icon {
  margin-left:auto;
  width:20px;
  color:var(--muted);
}
.advice {
  background:#eeeae4;
  padding:42px;
  height:fit-content;
}
.advice h2 {
  font-size:31px;
}
.advice>p:not(.eyebrow) {
  font-size:15px;
  color:var(--muted);
}
.advice>.eyebrow:not(:first-child) {
  margin-top:32px;
  margin-bottom:10px;
}
.advice>.supplier-names {
  color:var(--ink)!important;
  font-weight:700;
}
.related {
  display:flex;
  gap:30px;
  align-items:center;
  flex-wrap:wrap;
  border-top:1px solid var(--line);
  padding-block:25px;
  margin-bottom:50px;
}
.related .eyebrow {
  margin:0;
  margin-right:auto;
}
.related>a {
  display:flex;
  gap:14px;
  align-items:center;
  font-size:13px;
  font-weight:700;
}
.related .icon {
  width:18px;
  color:var(--orange-dark);
}
.supplier-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.supplier-card {
  padding:35px;
  background:#fff;
  border:1px solid var(--line);
}
.supplier-card>img {
  width:150px;
  height:65px;
  object-fit:contain;
  object-position:left center;
  margin-bottom:30px;
}
.supplier-wordmark {
  height:65px;
  margin-bottom:30px;
  font-size:43px;
  font-weight:700;
}
.supplier-card h3 {
  font-size:24px;
}
.supplier-card p {
  font-size:14px;
  color:var(--muted);
  min-height:47px;
}
.supplier-card>a {
  font-size:12px;
  font-weight:700;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.supplier-card .icon {
  color:var(--orange-dark);
  width:18px;
}
.contact-grid {
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:80px;
  padding-bottom:70px;
}
.contact-info>div {
  padding-bottom:28px;
  margin-bottom:28px;
  border-bottom:1px solid var(--line);
}
.contact-info h2 {
  font-size:32px;
}
.contact-info p {
  font-size:14px;
  color:var(--muted);
}
.contact-info .eyebrow {
  color:var(--orange-dark);
}
.contact-info .hours {
  max-width:300px;
  font-size:16px;
}
.contact-info .hours+p {
  margin-top:10px;
  font-size:12px;
}
.contact-phone {
  display:block;
  font-size:29px;
  letter-spacing:-.04em;
  font-weight:700;
  margin-bottom:8px;
}
.contact-info .email {
  font-size:14px;
}
.form-panel {
  padding:40px;
  background:#eeeae4;
  border-radius:4px;
  scroll-margin-top:115px;
}
.form-panel h2 {
  font-size:32px;
}
.form-panel>p:not(.eyebrow) {
  font-size:14px;
  color:var(--muted);
}
form label {
  display:block;
  font-size:12px;
  font-weight:700;
  margin-bottom:22px;
}
.form-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
input,textarea {
  display:block;
  width:100%;
  background:var(--paper);
  border:1px solid #c9c3bc;
  border-radius:2px;
  padding:13px 14px;
  margin-top:7px;
  color:var(--ink);
  font-size:14px;
  font-weight:400;
}
textarea {
  resize:vertical;
  min-height:145px;
}
input::placeholder,textarea::placeholder {
  color:#827c75;
}
.optional {
  font-weight:400;
  color:var(--muted);
}
.honeypot {
  position:absolute;
  left:-10000px;
  width:1px;
  height:1px;
  overflow:hidden;
}
.form-privacy {
  font-size:11px;
  color:var(--muted);
  line-height:1.7;
}
.form-privacy a {
  text-decoration:underline;
  text-underline-offset:3px;
}
.form-status:empty {
  display:none;
}
.form-status {
  margin:20px 0 0;
  padding:15px;
  background:var(--paper);
  border-left:3px solid var(--orange-dark);
  font-size:14px;
}
.form-status[data-state=success] {
  border-left-color:#357744;
}
.company-details {
  display:grid;
  grid-template-columns:.8fr 1.2fr 1.2fr 1fr;
  gap:30px;
  border-top:1px solid var(--line);
  padding-block:35px;
}
.company-details h2 {
  font-size:19px;
}
.company-details p {
  font-size:12px;
  color:var(--muted);
  margin:0;
}
.legal {
  max-width:850px;
  padding-bottom:90px;
}
.legal h2 {
  font-size:25px;
  margin-top:35px;
}
.legal p {
  font-size:16px;
  color:var(--muted);
}
.legal a {
  text-decoration:underline;
  text-underline-offset:3px;
}
.reveal {
  opacity:1;
}
.reveal.pending {
  opacity:0;
  transform:translateY(20px);
}
.reveal.in-view {
  opacity:1;
  transform:none;
  transition:opacity .65s ease,transform .65s cubic-bezier(.2,.7,.3,1);
}
@media(min-width:1001px) {
  .hero-content>h1,.hero-content>.eyebrow,.hero-content>p,.hero-content>.actions {
    animation:arrive .7s both;
  }
  .hero-content>h1 {
    animation-delay:.08s;
  }
  .hero-content>p:not(.eyebrow) {
    animation-delay:.14s;
  }
  .hero-content>.actions {
    animation-delay:.2s;
  }
  @keyframes arrive {
    from {
      opacity:0;
      transform:translateY(16px);
    }
    to {
      opacity:1;
      transform:none;
    }
  }
}
@media(max-width:1150px) {
  .wrap {
    width:calc(100% - 64px);
  }
  .header-inner {
    gap:25px;
  }
  .header nav {
    gap:22px;
  }
  .header-call {
    padding-left:20px;
  }
  .brand img {
    width:53px;
  }
  .brand span {
    font-size:11px;
  }
  .brand strong {
    font-size:17px;
  }
  .about-grid {
    gap:45px;
  }
  .brands-strip {
    gap:30px;
  }
  .brands-strip img {
    width:85px;
  }
  .brands-strip>div {
    gap:20px;
  }
  .visit-grid {
    gap:35px;
  }
  .visit-details {
    flex-direction:column;
    gap:15px;
  }
  .visit-details .hours {
    min-width:260px;
  }
  .offer-body {
    padding:20px;
  }
  .offer-price {
    align-items:flex-start;
    flex-direction:column;
    gap:5px;
  }
  .faq-section {
    gap:45px;
  }
  .footer-grid {
    gap:24px;
  }
  .footer-phone {
    font-size:25px;
  }
  .category-hero {
    gap:35px;
  }
  .contact-grid {
    gap:40px;
  }
  .company-details {
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:900px) {
  .header-call {
    display:none;
  }
  .header-inner {
    min-height:80px;
  }
  .hero-content {
    padding-top:60px;
  }
  .hero h1 {
    font-size:65px;
  }
  .hero-aside {
    display:none;
  }
  .quick-grid {
    gap:20px;
  }
  .quick-grid p {
    font-size:11px;
  }
  .quick-grid span {
    font-size:10px;
  }
  .quick-grid>div,.quick-grid>a {
    gap:10px;
  }
  .quick-grid>a>.icon:last-child {
    display:none;
  }
  .section {
    padding-block:70px;
  }
  .section-tight {
    padding-top:0;
  }
  .section-heading {
    gap:25px;
  }
  .section-heading>p {
    max-width:300px;
  }
  .category-caption {
    left:20px;
    right:20px;
    bottom:22px;
    gap:10px;
  }
  .category-caption h3 {
    font-size:20px;
  }
  .category-caption p {
    font-size:10px;
  }
  .card-number {
    display:none;
  }
  .circle-arrow {
    width:35px;
    height:35px;
  }
  .brands-strip {
    display:block;
    margin-bottom:55px;
  }
  .brands-strip>p {
    margin-bottom:20px;
  }
  .brands-strip>p br {
    display:none;
  }
  .about-grid {
    gap:35px;
  }
  .about-photo>img {
    height:460px;
  }
  .about-copy h2 {
    font-size:34px;
  }
  blockquote {
    font-size:18px;
  }
  .offer-grid {
    gap:16px;
  }
  .offer-image {
    height:210px;
    padding:20px;
  }
  .offer-body h3 {
    font-size:19px;
    min-height:68px;
  }
  .offer-body>p:not(.eyebrow) {
    min-height:100px;
  }
  .visit-grid {
    grid-template-columns:1fr 1fr;
  }
  .visit-copy h2 {
    font-size:32px;
  }
  .visit-map>span {
    left:15px;
    right:15px;
    font-size:11px;
  }
  .faq-section {
    display:block;
  }
  .faq-section .section-heading {
    margin-bottom:30px;
  }
  .footer-grid {
    grid-template-columns:1fr 1fr;
    gap:35px;
  }
  .footer-top {
    flex-wrap:wrap;
  }
  .footer-bottom>span:last-child {
    display:none;
  }
  .category-hero h1 {
    font-size:44px;
  }
  .category-hero-image img {
    height:420px;
  }
  .category-detail {
    gap:35px;
  }
  .advice {
    padding:30px;
  }
  .supplier-grid {
    grid-template-columns:1fr 1fr;
  }
  .contact-grid {
    grid-template-columns:1fr 1.2fr;
    gap:30px;
  }
  .form-panel {
    padding:28px;
  }
  .form-row {
    grid-template-columns:1fr;
    gap:0;
  }
  .contact-info h2 {
    font-size:27px;
  }
}
@media(max-width:700px) {
  html {
    scroll-padding-top:85px;
  }
  .wrap {
    width:calc(100% - 40px);
  }
  .topline .wrap {
    min-height:30px;
  }
  .topline .wrap>span {
    font-size:10px;
  }
  .topline .wrap>a:nth-child(2) {
    display:none;
  }
  .topline .wrap>a:last-child {
    font-size:10px;
  }
  .header-inner {
    min-height:74px;
    flex-wrap:wrap;
    gap:0;
    justify-content:space-between;
  }
  .brand img {
    width:48px;
  }
  .brand span {
    font-size:10px;
  }
  .brand strong {
    font-size:15px;
  }
  .header nav {
    width:100%;
    margin:0;
    display:flex;
    flex-wrap:wrap;
    gap:8px 25px;
    padding-bottom:10px;
  }
  .header nav a {
    padding:8px 0;
    font-size:13px;
  }
  .header nav a:after {
    bottom:2px;
  }
  .js .header nav {
    display:none;
  }
  .js .header nav.is-open {
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:16px 0 22px;
  }
  .js .header nav.is-open a {
    padding:13px 0;
    border-bottom:1px solid var(--line);
  }
  .js .menu-toggle {
    display:flex;
    gap:12px;
    align-items:center;
    background:none;
    border:0;
    font-size:12px;
    font-weight:700;
    padding:15px 0 15px 15px;
  }
  .menu-lines {
    width:22px;
    height:12px;
    border-top:1px solid;
    border-bottom:1px solid;
    transition:transform .2s;
  }
  .menu-toggle[aria-expanded=true] .menu-lines {
    transform:rotate(-30deg);
  }
  .hero-content {
    padding-top:48px;
    padding-bottom:20px;
  }
  .hero-image {
    object-position:65% center;
    opacity:.65;
  }
  .hero-shade {
    background:linear-gradient(90deg,#141414e8,#14141450);
  }
  .hero h1 {
    font-size:clamp(46px,10.5vw,65px);
    max-width:560px;
    margin-bottom:25px;
  }
  .hero-content>.eyebrow {
    font-size:9px;
    margin-bottom:22px;
  }
  .hero-content>p:not(.eyebrow) {
    font-size:14px;
    max-width:330px;
  }
  .hero .actions {
    gap:10px;
    margin-top:27px;
  }
  .hero .button {
    font-size:12px;
    padding:15px 17px;
    gap:18px;
  }
  .hero-bottom {
    margin-top:42px;
    font-size:8px;
    letter-spacing:.12em;
  }
  .hero-bottom .icon {
    width:19px;
  }
  .quick-grid {
    grid-template-columns:1fr;
    padding-block:20px;
    gap:0;
  }
  .quick-grid>div,.quick-grid>a {
    gap:14px;
    padding:12px 0;
  }
  .quick-grid>div:not(:last-child) {
    border-bottom:1px solid #dcd7d0;
  }
  .quick-grid p {
    font-size:13px;
  }
  .quick-grid span {
    font-size:11px;
  }
  .quick-grid>a>.icon:last-child {
    display:block;
    margin-left:auto;
  }
  .section {
    padding-block:55px;
  }
  .section-tight {
    padding-top:0;
  }
  .section-heading {
    display:block;
    margin-bottom:28px;
  }
  .section-heading>p {
    max-width:100%;
    margin-top:20px;
    font-size:14px;
  }
  .section-heading>.button {
    margin-top:22px;
  }
  .eyebrow {
    font-size:10px;
    margin-bottom:16px;
  }
  h2 {
    font-size:34px;
  }
  .category-grid {
    grid-template-columns:1fr;
    gap:16px;
  }
  .category-card {
    aspect-ratio:1.45;
  }
  .category-caption {
    left:22px;
    right:22px;
    bottom:22px;
  }
  .category-caption h3 {
    font-size:24px;
  }
  .category-caption p {
    font-size:12px;
  }
  .circle-arrow {
    width:39px;
    height:39px;
  }
  .brands-strip {
    padding-block:25px;
    margin-bottom:40px;
  }
  .brands-strip>div {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
  }
  .brands-strip img {
    width:100px;
    height:37px;
    margin-inline:auto;
  }
  .about-grid {
    grid-template-columns:1fr;
    gap:35px;
  }
  .about-photo>img {
    height:440px;
    object-position:50% 35%;
  }
  .about-copy h2 {
    font-size:36px;
  }
  blockquote {
    margin-top:25px;
    font-size:20px;
  }
  .offer-grid {
    grid-template-columns:1fr;
    gap:20px;
  }
  .offer-image {
    height:280px;
    padding:30px;
  }
  .offer-body {
    padding:24px;
  }
  .offer-body h3 {
    font-size:23px;
    min-height:0;
  }
  .offer-body>p:not(.eyebrow) {
    min-height:0;
    font-size:14px;
  }
  .offer-price {
    flex-direction:row;
    align-items:center;
    padding-top:20px;
  }
  .offer-price a {
    font-size:12px;
  }
  .offer-note {
    font-size:11px;
  }
  .visit-section {
    padding-block:55px;
  }
  .visit-grid {
    grid-template-columns:1fr;
    gap:35px;
  }
  .visit-copy h2 {
    font-size:34px;
  }
  .visit-details {
    flex-direction:row;
    gap:20px;
    justify-content:space-between;
  }
  .visit-details .hours {
    min-width:0;
    font-size:11px;
  }
  .visit-details .hours>div {
    gap:12px;
  }
  .visit-details p {
    font-size:12px;
  }
  .visit-details .icon {
    display:none;
  }
  .visit-copy .button {
    font-size:12px;
    padding:15px;
  }
  .visit-map {
    min-height:320px;
    max-height:400px;
  }
  .visit-map>span {
    font-size:13px;
  }
  .faqs summary {
    font-size:14px;
    gap:20px;
    padding-block:20px;
  }
  .faqs details>p {
    padding-right:10px;
  }
  .footer {
    padding-top:40px;
    padding-bottom:65px;
  }
  .footer-top {
    gap:25px;
    padding-bottom:30px;
  }
  .footer-top>p {
    display:none;
  }
  .footer-phone {
    width:100%;
    font-size:27px;
    justify-content:space-between;
  }
  .footer-grid {
    gap:30px 22px;
    padding-block:35px;
  }
  .footer-grid>div:last-child {
    grid-column:1/-1;
  }
  .footer-grid .hours>div {
    gap:8px;
  }
  .footer-grid .hours {
    font-size:11px;
  }
  .footer-bottom {
    font-size:9px;
    gap:10px;
    flex-wrap:wrap;
  }
  .mobile-actions {
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    z-index:30;
    display:grid;
    grid-template-columns:1fr 1fr;
    background:var(--paper);
    border-top:1px solid var(--line);
    padding-bottom:env(safe-area-inset-bottom);
  }
  .mobile-actions a {
    padding:16px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    font-size:13px;
    font-weight:700;
  }
  .mobile-actions a:first-child {
    background:var(--orange);
  }
  .mobile-actions .icon {
    width:19px;
    height:19px;
  }
  .breadcrumbs {
    padding-top:20px;
    font-size:10px;
    gap:8px;
  }
  .subhero {
    padding-block:36px 42px;
  }
  .subhero h1 {
    font-size:clamp(38px,8.7vw,55px);
    line-height:1.08;
  }
  .intro {
    font-size:16px;
  }
  .enquiry-banner {
    display:block;
    padding:30px;
    margin-bottom:50px;
  }
  .enquiry-banner .button {
    margin-top:24px;
  }
  .enquiry-banner h2 {
    font-size:30px;
  }
  .category-hero {
    grid-template-columns:1fr;
    gap:30px;
    padding-block:35px 45px;
  }
  .category-hero h1 {
    font-size:44px;
  }
  .category-hero .intro {
    font-size:16px;
  }
  .category-hero-image img {
    height:320px;
  }
  .category-detail {
    grid-template-columns:1fr;
    gap:35px;
  }
  .advice h2 {
    font-size:29px;
  }
  .range-list li {
    font-size:16px;
  }
  .related {
    display:block;
    margin-bottom:25px;
  }
  .related>a {
    padding:14px 0;
    justify-content:space-between;
  }
  .related .eyebrow {
    margin-bottom:10px;
  }
  .supplier-grid {
    grid-template-columns:1fr;
  }
  .supplier-card {
    padding:30px;
  }
  .supplier-card p {
    min-height:0;
  }
  .contact-grid {
    grid-template-columns:1fr;
    gap:20px;
    padding-bottom:35px;
  }
  .contact-info {
    display:grid;
    grid-template-columns:1fr;
    gap:0;
  }
  .contact-info>div {
    margin-bottom:20px;
    padding-bottom:20px;
  }
  .contact-info .hours {
    max-width:none;
  }
  .form-panel {
    padding:27px 22px;
    scroll-margin-top:90px;
  }
  .form-panel h2 {
    font-size:29px;
  }
  .company-details {
    grid-template-columns:1fr;
    gap:15px;
    padding-block:30px;
  }
  .company-details h2 {
    margin-bottom:0;
  }
  .company-details p {
    font-size:13px;
  }
  .legal {
    padding-bottom:55px;
  }
  .legal h2 {
    font-size:25px;
  }
  .legal p {
    font-size:15px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    animation:none!important;
    transition:none!important;
  }
  .reveal.pending {
    opacity:1;
    transform:none;
  }
  .category-card:hover>img,.offer-image:hover img,.button:hover .icon {
    transform:none;
  }
}
