@font-face {
  font-family: Inter;
  src: url("../fonts/inter-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  color-scheme: only light;
  --font-body: Inter, Arial, sans-serif;
  --text-small: 13px;
  --text-ui: 14px;
  --text-body: 16px;
  --text-large: 18px;
  --title-page: 40px;
  --title-section: 28px;
  --title-item: 20px;
  --ink: #202423;
  --muted: #626865;
  --line: #dce1de;
  --paper: #fff;
  --soft: #f4f6f5;
  --red: #c6382c;
  --red-hover: #a72920;
  --max: 1320px;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 var(--text-body)/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.2;
  font-weight: 600;
}
h1 {
  font-size: var(--title-page);
  font-weight: 700;
}
h2 {
  font-size: var(--title-section);
}
h3 {
  font-size: var(--title-item);
}
p {
  color: var(--muted);
}
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}
::selection {
  background: #f7d6d2;
}
.content-shell {
  width: min(var(--max), calc(100% - 80px));
  margin-inline: auto;
}
.icon {
  display: inline-flex;
  flex: none;
  width: 21px;
  height: 21px;
  vertical-align: middle;
}
.icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.7;
  fill: none;
}
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
}
.sr-only,
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 12px;
  background: white;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
[hidden] {
  display: none !important;
}
.utility-bar {
  background: var(--soft);
  font-size: var(--text-small);
  color: var(--muted);
}
.utility-bar .content-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 30px;
}
.masthead {
  display: grid;
  grid-template-columns: 270px minmax(240px, 1fr) 220px;
  gap: 32px;
  align-items: center;
  min-height: 90px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  max-width: 100%;
  line-height: 1.05;
}
.brand > span {
  font-size: 28px;
  font-weight: 700;
}
.brand-dot {
  color: var(--red);
}
.brand small {
  font-size: 9px;
  font-weight: 700;
  margin-top: 6px;
  color: var(--muted);
}
.site-search {
  height: 46px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
}
.site-search:focus-within {
  border-color: var(--ink);
}
.site-search input {
  border: 0;
  background: transparent;
  min-width: 0;
  width: 100%;
  padding: 0 16px;
  font-size: var(--text-small);
  color: var(--ink);
}
.site-search input:focus {
  outline: none;
}
.site-search button {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
}
.site-search button:hover {
  color: var(--red);
}
.header-phone {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.header-phone span:not(.icon) {
  display: flex;
  flex-direction: column;
}
.header-phone small {
  font-size: var(--text-small);
  color: var(--muted);
}
.header-phone strong {
  font-size: var(--title-item);
  font-weight: 600;
}
.header-phone > .icon {
  width: 24px;
  height: 24px;
}
.nav-row {
  border-block: 1px solid var(--line);
}
.nav-row > .content-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 51px;
  gap: 20px;
}
.site-nav__list {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav a {
  display: block;
  padding: 15px 0;
  font-size: var(--text-small);
  font-weight: 700;
}
.site-nav a:hover,
.site-nav .current-menu-item > a {
  color: var(--red);
}
.nav-booking {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--red);
  padding: 12px 0;
}
.nav-toggle {
  display: none;
}
.button {
  display: inline-flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  min-height: 48px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: var(--text-ui);
  line-height: 1.45;
  transition:
    background 0.16s,
    color 0.16s;
}
.button--primary {
  background: var(--red);
  color: #fff;
}
.button--primary:hover {
  background: var(--red-hover);
}
.button--ink {
  background: var(--ink);
  color: #fff;
}
.button--ink:hover {
  background: #3e4944;
}
.button--secondary {
  border-color: var(--line);
  background: #fff;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-ui);
  font-weight: 600;
}
.text-link:hover,
.back-link:hover {
  color: var(--red);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-ui);
  margin-bottom: 36px;
}
.shop-intro {
  padding: 48px 0 25px;
}
.intro-heading {
  max-width: 860px;
  margin-bottom: 30px;
}
.intro-heading h1 {
  font-size: var(--title-page);
  line-height: 1.22;
  margin-bottom: 18px;
}
.intro-heading p {
  max-width: 650px;
  font-size: var(--text-body);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.category-tile {
  min-width: 0;
}
.category-image {
  overflow: hidden;
  border-radius: 4px;
  background: var(--soft);
  aspect-ratio: 1.65;
}
.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 0.3s;
}
.category-tile:nth-child(2) img {
  object-position: 50% 36%;
}
.category-tile:hover img {
  transform: scale(1.025);
}
.category-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
}
.category-caption h2 {
  font-size: var(--title-item);
}
.category-caption .icon {
  width: 20px;
  height: 20px;
}
.category-tile:hover h2 {
  color: var(--red);
}
.catalog-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 22px;
}
.catalog-foot p {
  font-size: var(--text-small);
}
.catalog-foot p a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--ink);
}
.assurance-band {
  background: var(--soft);
  margin-top: 20px;
}
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-block: 23px;
}
.assurance-grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: var(--text-small);
  font-weight: 600;
}
.assurance-grid .icon {
  color: #547366;
  width: 24px;
  height: 24px;
}
.assurance-grid > div:nth-child(2) {
  justify-content: center;
}
.assurance-grid > div:last-child {
  justify-content: flex-end;
}
.service-section,
.workshop-section {
  padding-block: 76px;
}
.section-head {
  margin-bottom: 32px;
  max-width: 850px;
}
.section-head h1,
.section-head h2 {
  margin-bottom: 15px;
}
.section-head p {
  max-width: 680px;
}
.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.service-feature {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.service-feature > img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 52%;
}
.service-feature > div {
  background: var(--soft);
  padding: 25px 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex: 1;
}
.service-feature h3 {
  font-size: var(--title-item);
  line-height: 1.3;
}
.service-feature .text-link {
  font-size: var(--text-small);
}
.service-option {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 20px;
  gap: 20px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.service-option:first-child {
  padding-top: 0;
}
.service-option > img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
}
.service-option h3 {
  font-size: var(--text-large);
  margin-bottom: 6px;
}
.service-option p {
  font-size: var(--text-small);
}
.service-option:hover h3 {
  color: var(--red);
}
.service-option--plain {
  grid-template-columns: 1fr 20px;
  padding-left: 92px;
}
.booking-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px;
  margin-top: 32px;
  background: #edf3ef;
  border-radius: 4px;
}
.booking-band > div {
  display: flex;
  align-items: center;
  gap: 20px;
}
.booking-band .icon {
  color: #446653;
  width: 28px;
  height: 28px;
}
.booking-band strong,
.booking-band small {
  display: block;
}
.booking-band strong {
  font-size: var(--text-body);
}
.booking-band small {
  color: var(--muted);
  font-size: var(--text-small);
  margin-top: 4px;
}
.booking-band a .icon {
  color: inherit;
  width: 20px;
  height: 20px;
}
.transport-band {
  background: var(--soft);
  padding-block: 64px;
}
.transport-layout {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 72px;
  align-items: center;
}
.transport-layout > img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: 50% 40%;
  border-radius: 4px;
}
.transport-layout h2 {
  font-size: var(--title-section);
  margin-bottom: 22px;
}
.transport-layout p {
  max-width: 450px;
}
.transport-facts {
  display: flex;
  gap: 60px;
  margin: 28px 0;
}
.transport-facts dt {
  font-size: var(--text-small);
  color: var(--muted);
  margin-bottom: 4px;
}
.transport-facts dd {
  margin: 0;
  font-size: var(--title-section);
  font-weight: 600;
}
.transport-page {
  padding-block: 50px 80px;
}
.transport-page .transport-layout > img {
  height: 460px;
}
.workshop-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 24px;
}
.workshop-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
}
.workshop-grid figcaption {
  font-size: var(--text-small);
  color: var(--muted);
  margin-top: 12px;
}
.site-footer {
  background: var(--soft);
  border-top: 1px solid var(--line);
}
.footer-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}
.footer-contact h2 {
  font-size: var(--title-section);
}
.footer-contact > a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 28px;
  font-weight: 600;
}
.footer-contact .icon {
  width: 26px;
  height: 26px;
  color: var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.15fr 0.8fr;
  gap: 36px;
  padding: 45px 0;
}
.footer-grid h3 {
  font-size: var(--text-small);
  margin-bottom: 16px;
}
.footer-grid p,
.footer-grid address,
.footer-grid > div > a:not(.brand) {
  font-size: var(--text-small);
  font-style: normal;
  color: var(--muted);
}
.footer-grid p {
  margin-top: 18px;
}
.footer-grid > div:last-child > a {
  display: block;
  margin-bottom: 8px;
}
.footer-grid .text-link {
  margin-top: 12px;
  color: var(--ink) !important;
}
.footer-grid a:hover {
  color: var(--red) !important;
}
.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: var(--text-small);
}
.booking-page {
  padding-block: 36px 75px;
}
.booking-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}
.booking-intro h1 {
  font-size: var(--title-page);
  margin-bottom: 22px;
}
.booking-intro > p {
  max-width: 440px;
}
.booking-process {
  list-style: none;
  counter-reset: steps;
  margin: 36px 0;
  padding: 0;
}
.booking-process li {
  counter-increment: steps;
  position: relative;
  padding-left: 44px;
  margin-bottom: 24px;
}
.booking-process li:before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: var(--text-small);
  font-weight: 700;
}
.booking-process strong,
.booking-process span {
  display: block;
}
.booking-process strong {
  font-size: var(--text-small);
}
.booking-process span {
  font-size: var(--text-small);
  color: var(--muted);
  margin-top: 4px;
}
.booking-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  margin-top: 28px;
}
.booking-contact small,
.booking-contact a {
  display: block;
}
.booking-contact small {
  font-size: var(--text-small);
  color: var(--muted);
}
.booking-contact a {
  font-size: 24px;
  font-weight: 600;
}
.booking-form-wrap {
  min-width: 0;
}
.granville-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-heading {
  grid-column: 1/-1;
  font-size: var(--title-item);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-top: 8px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.form-field--full,
.form-consent,
.form-message,
.form-submit,
.form-group {
  grid-column: 1/-1;
}
.form-field label {
  font-size: var(--text-ui);
  font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #bfc8c2;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  padding: 12px;
  min-height: 46px;
  font-size: var(--text-ui);
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #78817c;
}
.form-note {
  font-size: var(--text-small);
  color: var(--muted);
}
.form-field input[type="file"] {
  font-size: var(--text-small);
}
.form-field input::file-selector-button {
  border: 0;
  background: var(--soft);
  padding: 7px 10px;
  margin-right: 10px;
  font: inherit;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-small);
  color: var(--muted);
}
.form-consent input {
  width: 17px;
  height: 17px;
  flex: none;
  margin: 2px 0;
  accent-color: var(--red);
}
.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-submit {
  justify-self: start;
}
.form-submit:disabled {
  opacity: 0.6;
}
.form-message {
  background: #edf3ef;
  border: 1px solid #97b1a1;
  border-radius: 4px;
  padding: 18px;
  font-size: var(--text-small);
}
.form-message--error {
  background: #fff1ef;
  border-color: var(--red);
  color: #942b22;
}
.booking-status {
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 4px solid #567660;
  border-radius: 4px;
}
.booking-status h2 {
  font-size: var(--title-section);
  margin-bottom: 18px;
}
.booking-status dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
.booking-status dt {
  font-size: var(--text-small);
  color: var(--muted);
}
.booking-status dd {
  margin: 0;
  font-size: var(--text-small);
  font-weight: 700;
}
.booking-status input {
  width: 100%;
  font-size: var(--text-small);
  padding: 10px;
  border: 1px solid var(--line);
}
.shop-shell,
.prose-shell {
  padding-block: 36px 70px;
}
.woocommerce-breadcrumb {
  font-size: var(--text-small) !important;
  color: var(--muted) !important;
  margin-bottom: 28px !important;
}
.shop-archive-header {
  margin-bottom: 30px;
}
.shop-archive-header h1 {
  font-size: var(--title-page);
  margin-bottom: 16px;
}
.shop-archive-header > p,
.shop-archive-description {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: var(--text-ui);
}
.shop-category-filter {
  display: flex;
  gap: 24px;
  align-items: center;
  border-block: 1px solid var(--line);
  padding: 16px 0;
}
.shop-category-filter__label {
  font-size: var(--text-small);
  font-weight: 700;
}
.shop-category-filter__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.shop-category-filter__links a {
  font-size: var(--text-small);
  color: var(--muted);
}
.shop-category-filter__links a.is-current {
  color: var(--red);
  font-weight: 600;
}
.shop-category-filter__links a:hover {
  color: var(--red);
}
.woocommerce .woocommerce-result-count {
  font-size: var(--text-small);
  color: var(--muted);
  margin-top: 12px;
}
.woocommerce .woocommerce-ordering select {
  height: 42px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-size: var(--text-small);
  max-width: 100%;
}
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 25px !important;
  clear: both;
}
.woocommerce ul.products:before,
.woocommerce ul.products:after {
  display: none !important;
}
.woocommerce ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  min-width: 0;
}
.woocommerce ul.products li.product a img {
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--soft);
  border-radius: 4px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: var(--text-body) !important;
  line-height: 1.5;
  padding: 16px 0 10px !important;
}
.woocommerce .price {
  font-size: var(--text-ui) !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
}
.price-on-request {
  font-size: var(--text-small);
  font-weight: 600;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--ink) !important;
  color: white !important;
  border-radius: 4px !important;
  font: 600 var(--text-ui)/1.4 var(--font-body) !important;
  padding: 11px 17px !important;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--red) !important;
}
.product-photo-pending {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  aspect-ratio: 1;
  background: var(--soft);
  border-radius: 4px;
  color: var(--muted);
  font-size: var(--text-small);
}
.product-photo-pending > .icon {
  width: 34px;
  height: 34px;
  color: #93a39a;
}
.product-photo-pending--large {
  width: 100%;
  aspect-ratio: 1 !important;
}
.woocommerce div.product .product_title {
  font-size: var(--title-section);
  line-height: 1.3;
  margin-bottom: 22px;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: var(--text-ui);
  margin-block: 20px;
}
.woocommerce .product_meta {
  font-size: var(--text-small);
  display: grid;
  gap: 8px;
  color: var(--muted);
}
.woocommerce .product-enquiry {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.product-enquiry p {
  font-size: var(--text-small);
  margin-bottom: 16px;
}
.woocommerce .product-enquiry a.button {
  background: var(--red) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding-left: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: var(--soft);
  border-color: var(--line);
  font-size: var(--text-small);
}
.woocommerce div.product .woocommerce-tabs .panel {
  font-size: var(--text-ui);
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
  font-size: 24px;
  margin-bottom: 16px;
}
.woocommerce .related h2 {
  font-size: var(--title-section);
  margin-block: 32px;
}
.woocommerce-info,
.woocommerce-message {
  border-top-color: #567660 !important;
  background: var(--soft) !important;
  font-size: var(--text-ui) !important;
}
.woocommerce-info:before,
.woocommerce-message:before {
  color: #567660 !important;
}
.entry-content {
  max-width: 820px;
}
.entry-content > * + * {
  margin-top: 1em;
}
.page-heading {
  margin-bottom: 30px;
}
.shop-empty {
  padding: 35px;
  background: var(--soft);
}
.shop-empty h2 {
  font-size: 24px;
  margin-bottom: 14px;
}
.shop-empty p {
  margin-bottom: 20px;
}
@media (min-width: 1600px) {
  .category-image {
    aspect-ratio: 1.8;
  }
}
@media (max-width: 1100px) {
  .content-shell {
    width: calc(100% - 48px);
  }
  .masthead {
    grid-template-columns: 230px 1fr 185px;
    gap: 24px;
  }
  .brand > span {
    font-size: 28px;
  }
  .header-phone strong {
    font-size: var(--text-large);
  }
  .site-nav__list {
    gap: 22px;
  }
  .service-layout {
    gap: 28px;
  }
  .service-feature > div {
    display: block;
  }
  .service-feature .text-link {
    margin-top: 18px;
  }
  .transport-layout {
    gap: 40px;
  }
  .booking-layout {
    gap: 45px;
  }
  .footer-grid {
    gap: 24px;
  }
  .assurance-grid {
    gap: 12px;
  }
  .assurance-grid > div {
    font-size: var(--text-small);
  }
}
@media (max-width: 800px) {
  .masthead {
    grid-template-columns: 210px 1fr;
    min-height: 82px;
  }
  .header-phone {
    display: none;
  }
  .site-nav__list {
    gap: 17px;
  }
  .site-nav a,
  .nav-booking {
    font-size: var(--text-small);
  }
  .nav-booking .icon {
    width: 18px;
    height: 18px;
  }
  .intro-heading h1 {
    font-size: var(--title-page);
  }
  .category-grid {
    gap: 16px;
  }
  .category-caption h2 {
    font-size: var(--text-large);
  }
  .category-caption .icon {
    width: 18px;
  }
  .assurance-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 20px;
  }
  .assurance-grid > div {
    justify-content: flex-start !important;
    font-size: var(--text-small);
  }
  .service-layout {
    grid-template-columns: 1fr;
  }
  .service-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .service-feature > img {
    height: 310px;
  }
  .service-feature > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .service-option {
    grid-template-columns: 72px 1fr 20px;
  }
  .booking-band {
    padding: 24px;
    align-items: flex-start;
  }
  .booking-band > div > .icon {
    display: none;
  }
  .booking-band .button {
    flex: none;
  }
  .transport-layout {
    gap: 30px;
  }
  .transport-layout h2 {
    font-size: var(--title-section);
  }
  .transport-facts {
    gap: 32px;
  }
  .workshop-grid img {
    height: 230px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .booking-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 35px;
  }
  .booking-intro h1 {
    font-size: var(--title-page);
    margin: 0;
  }
  .booking-intro > p {
    align-self: center;
  }
  .booking-process {
    margin: 0;
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .booking-process li {
    padding-left: 36px;
    margin: 0;
  }
  .booking-process span {
    font-size: var(--text-small);
  }
  .booking-contact {
    grid-column: 1/-1;
    padding-top: 18px;
  }
  .booking-contact > span {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  :root {
    --title-page: 32px;
    --title-section: 24px;
    --title-item: 18px;
  }
  .content-shell {
    width: calc(100% - 36px);
  }
  .utility-bar {
    font-size: var(--text-small);
  }
  .utility-bar .content-shell > span:first-child {
    max-width: 210px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .masthead {
    grid-template-columns: 1fr 44px;
    gap: 14px;
    min-height: 0;
    padding-block: 18px 12px;
  }
  .brand > span {
    font-size: var(--title-section);
  }
  .brand small {
    font-size: 8px;
    margin-top: 5px;
  }
  .nav-toggle {
    display: flex;
    grid-column: 2;
    grid-row: 1;
  }
  .site-search {
    grid-column: 1/-1;
    grid-row: 2;
    height: 44px;
  }
  .site-search input {
    font-size: var(--text-small);
  }
  .nav-row > .content-shell {
    min-height: 44px;
    justify-content: flex-end;
  }
  .nav-booking {
    font-size: var(--text-small);
    padding: 9px 0;
  }
  .nav-bar {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    z-index: 30;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px #20242312;
    padding: 12px 18px;
  }
  .site-header {
    position: relative;
    z-index: 20;
  }
  .nav-bar.is-open {
    display: block;
  }
  .site-nav__list {
    display: block;
  }
  .site-nav a {
    font-size: var(--text-body);
    padding: 13px 0;
  }
  .site-nav li + li {
    border-top: 1px solid var(--line);
  }
  .shop-intro {
    padding-top: 28px;
  }
  .intro-heading {
    margin-bottom: 24px;
  }
  .intro-heading h1 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .intro-heading p {
    font-size: var(--text-small);
  }
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .category-image {
    aspect-ratio: 0.85;
  }
  .category-caption {
    padding: 12px 0;
    gap: 4px;
    align-items: flex-start;
  }
  .category-caption h2 {
    font-size: var(--text-small);
    line-height: 1.45;
  }
  .category-caption > .icon {
    display: none;
  }
  .catalog-foot {
    display: block;
    padding-top: 18px;
    margin-top: 0;
  }
  .catalog-foot p {
    font-size: var(--text-small);
  }
  .catalog-foot .text-link {
    margin-top: 16px;
  }
  .assurance-band {
    margin-top: 5px;
  }
  .assurance-grid {
    gap: 12px;
    padding-block: 20px;
  }
  .assurance-grid .icon {
    width: 21px;
    height: 21px;
  }
  .service-section,
  .workshop-section {
    padding-block: 45px;
  }
  .section-head {
    margin-bottom: 24px;
  }
  .section-head h2 {
    font-size: var(--title-section);
  }
  .section-head p {
    font-size: var(--text-body);
  }
  .service-feature {
    display: block;
  }
  .service-feature > img {
    height: 290px;
    object-position: center 56%;
  }
  .service-feature > div {
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .service-feature h3 {
    font-size: var(--title-item);
  }
  .service-feature .text-link {
    font-size: var(--text-small);
    gap: 5px;
    max-width: 125px;
  }
  .service-feature .text-link .icon {
    width: 17px;
  }
  .service-options {
    margin-top: 4px;
  }
  .service-option {
    gap: 15px;
    grid-template-columns: 64px minmax(0, 1fr) 18px;
    padding: 16px 0;
  }
  .service-option > img {
    width: 64px;
    height: 64px;
  }
  .service-option h3 {
    font-size: var(--text-body);
  }
  .service-option p {
    font-size: var(--text-small);
  }
  .service-option--plain {
    grid-template-columns: 1fr 18px;
    padding-left: 79px;
  }
  .booking-band {
    display: block;
    padding: 22px;
  }
  .booking-band strong {
    font-size: var(--text-body);
  }
  .booking-band small {
    font-size: var(--text-small);
  }
  .booking-band .button {
    margin-top: 18px;
    width: 100%;
  }
  .transport-band {
    padding-block: 36px;
  }
  .transport-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .transport-layout > img {
    height: 290px;
    object-position: center 38%;
  }
  .transport-layout h2 {
    font-size: var(--title-section);
    margin-bottom: 16px;
  }
  .transport-layout p {
    font-size: var(--text-body);
  }
  .transport-facts {
    margin: 22px 0;
    gap: 55px;
  }
  .transport-facts dd {
    font-size: 24px;
  }
  .transport-page {
    padding-block: 32px 45px;
  }
  .transport-page h1 {
    font-size: var(--title-page);
  }
  .transport-page .transport-layout > img {
    height: 290px;
  }
  .workshop-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
  }
  .workshop-grid > figure:nth-child(2) {
    grid-column: 1/-1;
    grid-row: 1;
  }
  .workshop-grid img {
    height: 190px;
  }
  .workshop-grid > figure:nth-child(2) > img {
    height: 230px;
  }
  .workshop-grid figcaption {
    font-size: var(--text-small);
  }
  .footer-contact {
    display: block;
    padding: 28px 0;
  }
  .footer-contact h2 {
    font-size: 24px;
  }
  .footer-contact > a {
    margin-top: 18px;
    font-size: var(--title-section);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px 22px;
    padding: 32px 0;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-grid p,
  .footer-grid address,
  .footer-grid > div > a:not(.brand) {
    font-size: var(--text-small);
    overflow-wrap: anywhere;
  }
  .footer-bottom {
    display: block;
    font-size: var(--text-small);
  }
  .footer-bottom > a {
    display: block;
    margin-top: 12px;
  }
  .booking-page {
    padding-block: 26px 45px;
  }
  .back-link {
    margin-bottom: 25px;
  }
  .booking-intro {
    display: block;
  }
  .booking-intro h1 {
    font-size: var(--title-page);
    margin-bottom: 18px;
  }
  .booking-intro > p {
    font-size: var(--text-body);
    max-width: 100%;
  }
  .booking-process {
    display: none;
  }
  .booking-contact {
    margin-top: 22px;
  }
  .booking-contact > span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .booking-contact a {
    font-size: var(--title-item);
  }
  .granville-form {
    gap: 18px 12px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: var(--text-body);
  }
  .form-heading {
    font-size: var(--text-large);
  }
  .form-submit {
    width: 100%;
  }
  .shop-shell {
    padding-block: 25px 45px;
  }
  .shop-archive-header h1 {
    font-size: 28px;
  }
  .shop-category-filter {
    display: block;
  }
  .shop-category-filter__label {
    display: block;
    margin-bottom: 10px;
  }
  .shop-category-filter__links {
    gap: 12px 20px;
  }
  .woocommerce .woocommerce-ordering,
  .woocommerce .woocommerce-result-count {
    float: none !important;
  }
  .woocommerce .woocommerce-ordering select {
    width: 100%;
  }
  .woocommerce ul.products {
    gap: 26px 14px !important;
  }
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: var(--text-small) !important;
  }
  .woocommerce a.button {
    font-size: var(--text-small) !important;
  }
  .product-photo-pending {
    font-size: var(--text-small);
    gap: 10px;
    padding: 10px;
    text-align: center;
  }
  .product-photo-pending > .icon {
    width: 26px;
    height: 26px;
  }
  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    width: 100% !important;
    float: none !important;
  }
  .woocommerce div.product .product_title {
    font-size: var(--title-section);
  }
  .woocommerce-tabs {
    clear: both;
  }
  .shop-empty {
    padding: 25px;
  }
  .shop-empty h2 {
    font-size: 24px;
  }
  .shop-empty p {
    font-size: var(--text-small);
  }
}
@media (max-width: 359px) {
  .content-shell {
    width: calc(100% - 28px);
  }
  .intro-heading h1 {
    font-size: var(--title-section);
  }
  .category-caption h2 {
    font-size: var(--text-small);
  }
  .utility-bar .content-shell > span:first-child {
    max-width: 170px;
  }
  .service-feature > div {
    display: block;
  }
  .service-feature .text-link {
    max-width: none;
  }
  .granville-form,
  .form-group {
    grid-template-columns: 1fr;
  }
  .form-field--full,
  .form-consent,
  .form-submit,
  .form-heading,
  .form-group {
    grid-column: 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .booking-status {
    padding: 22px;
  }
}
.catalog-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
}
.catalog-sidebar-heading {
  margin: 10px 0 22px;
}
.catalog-sidebar-heading h2 {
  font-size: var(--text-body);
  margin-bottom: 8px;
}
.catalog-sidebar-heading > a {
  font-size: var(--text-small);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.catalog-sidebar a[aria-current="page"] {
  color: var(--red);
}
.catalog-categories > a {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: var(--text-small);
  font-weight: 600;
  margin-bottom: 16px;
}
.catalog-categories > a img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
}
.catalog-categories > a:hover {
  color: var(--red);
}
.catalog-help {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 26px;
}
.catalog-help h3 {
  font-size: var(--text-ui);
  margin-bottom: 12px;
}
.catalog-help p {
  font-size: var(--text-small);
  margin-bottom: 14px;
}
.catalog-help > a {
  font-size: var(--title-item);
  font-weight: 600;
}
.catalog-results {
  min-width: 0;
}
.woocommerce .catalog-results ul.products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.catalog-results .product-photo-pending {
  aspect-ratio: 1.1;
}
.catalog-results .woocommerce-loop-product__title {
  min-height: 86px;
}
@media (max-width: 1000px) {
  .catalog-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
  }
  .woocommerce .catalog-results ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .catalog-layout {
    display: flex;
    flex-direction: column;
  }
  .catalog-sidebar-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 0 0 16px;
  }
  .catalog-sidebar-heading h2 {
    margin: 0;
  }
  .catalog-categories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .catalog-categories > a {
    display: block;
    margin: 0;
    font-size: var(--text-small);
  }
  .catalog-categories > a img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 10px;
  }
  .catalog-help {
    display: none;
  }
  .catalog-results .woocommerce-loop-product__title {
    min-height: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
