@font-face {
  font-family: "ABBvoice";
  src: url("/fonts/ABBvoice_W_Rg.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ABBvoice";
  src: url("/fonts/ABBvoice_W_Md.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ABBvoice";
  src: url("/fonts/ABBvoice_W_Bd.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ABBvoice";
  src: url("/fonts/ABBvoice_W_Lt.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

:root {
  --aot-ref-red-2: #ff000f;
  --aot-ref-dark-grey-1: #1f1f1f;
  --aot-ref-light-grey-1: #f5f5f5;
  --aot-ref-light-grey-2: #ebebeb;
  --aot-ref-light-grey-4: #d7d7d7;
  --aot-sys-color-primary-black: #000000;
  --aot-sys-color-primary-white: #ffffff;
  --aot-sys-color-shades-grey90: #1f1f1f;
  --aot-sys-color-shades-grey70: #575757;
  --aot-sys-color-shades-grey20: #d7d7d7;
  --aot-sys-template-main-padding: clamp(24px, 5vw, 72px);
  --aot-sys-template-max-width: 2400px;
  --aot-sys-typography-font-family: "ABBvoice", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --aot-sys-typography-font-family-display: "ABBvoice", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --aot-header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--aot-sys-color-primary-white);
  color: var(--aot-sys-color-shades-grey90);
  font-family: var(--aot-sys-typography-font-family);
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: 0;
}

body,
button,
input,
textarea {
  font-family: var(--aot-sys-typography-font-family);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-links {
  position: absolute;
  z-index: 50;
  inset: 0 auto auto 0;
}

.skip-link {
  transform: translateY(-110%);
  border: 0;
  background: var(--aot-ref-red-2);
  color: white;
  padding: 12px 18px;
}

.skip-link:focus {
  transform: none;
}

.root {
  min-height: 100vh;
}

.global-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--aot-ref-light-grey-2);
}

.global-header__bar {
  height: var(--aot-header-height);
  max-width: var(--aot-sys-template-max-width);
  margin: 0 auto;
  padding: 0 var(--aot-sys-template-main-padding);
  display: grid;
  grid-template-columns: minmax(260px, auto) 1fr auto;
  align-items: center;
  gap: 32px;
}

.global-header__logo,
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #000;
}

.global-header__mark {
  width: 64px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  background: var(--aot-ref-red-2);
  color: white;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.global-header__nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: var(--aot-header-height);
}

.global-header__link {
  min-width: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--aot-sys-color-shades-grey90);
  font-size: 16px;
  font-weight: 500;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.global-header__link:hover,
.global-header__link:focus {
  background: var(--aot-ref-light-grey-1);
  border-color: var(--aot-ref-light-grey-2);
  outline: 0;
}

.global-header__tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.global-header__phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: var(--aot-sys-color-primary-black);
  color: var(--aot-sys-color-primary-white);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 180ms ease, transform 180ms ease;
}

.global-header__phone:hover,
.global-header__phone:focus {
  background: var(--aot-ref-red-2);
  transform: translateY(-1px);
  outline: 0;
}

.global-header__search,
.global-header__menu {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--aot-sys-color-primary-black);
  cursor: pointer;
}

.global-header__search span {
  width: 21px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 999px;
  position: relative;
}

.global-header__search span::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  right: -8px;
  bottom: -4px;
}

.global-header__menu {
  gap: 5px;
}

.global-header__menu span {
  width: 24px;
  height: 2px;
  background: currentColor;
  display: block;
}

.global-header__mega,
.global-header__search-panel {
  position: absolute;
  top: var(--aot-header-height);
  left: 0;
  right: 0;
  background: var(--aot-sys-color-primary-white);
  border-bottom: 1px solid var(--aot-ref-light-grey-4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.14);
  padding: 48px var(--aot-sys-template-main-padding);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.global-header.is-menu-open .global-header__mega,
.global-header.is-search-open .global-header__search-panel {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.global-header__mega {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(360px, 1fr);
  gap: 56px;
}

.global-header__eyebrow,
.aot-eyebrow,
.aot-list-card span {
  margin: 0 0 14px;
  color: var(--aot-ref-red-2);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.global-header__mega h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 66px);
  font-weight: 200;
  line-height: 0.96;
}

.global-header__mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--aot-ref-light-grey-4);
}

.global-header__mega-grid a {
  min-height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--aot-ref-light-grey-4);
  font-weight: 500;
}

.global-header__mega-grid a:hover {
  color: var(--aot-ref-red-2);
}

.global-header__search-panel form {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
}

.global-header__search-panel label {
  grid-column: 1 / -1;
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 200;
}

.global-header__search-panel input {
  min-height: 58px;
  border: 1px solid var(--aot-ref-light-grey-4);
  border-right: 0;
  padding: 0 20px;
  font-size: 18px;
}

.global-header__search-panel button {
  min-height: 58px;
  border: 0;
  background: var(--aot-ref-red-2);
  color: white;
  padding: 0 24px;
  font-weight: 700;
  cursor: pointer;
}

.aot-main {
  min-height: 60vh;
}

.aot-hero {
  min-height: calc(100svh - var(--aot-header-height));
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.42) 44%, rgba(0,0,0,0.12) 100%),
    var(--hero-image) center / cover no-repeat;
  color: white;
}

.aot-hero__content {
  width: min(920px, 100%);
  padding: clamp(54px, 9vh, 102px) var(--aot-sys-template-main-padding);
}

.aot-hero h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(46px, 7.2vw, 108px);
  line-height: 0.94;
  font-weight: 200;
  letter-spacing: 0;
  text-wrap: balance;
}

.aot-hero p:not(.aot-eyebrow) {
  max-width: 650px;
  margin: 26px 0 0;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.22;
  font-weight: 400;
}

.aot-button {
  min-height: 50px;
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--aot-ref-red-2);
  color: white;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.aot-button:hover {
  background: #c9000c;
  transform: translateY(-1px);
}

.aot-button--dark {
  background: var(--aot-sys-color-primary-black);
}

.aot-button--dark:hover {
  background: #333;
}

.aot-section,
.aot-editorial,
.aot-contact-page {
  padding: clamp(72px, 9vw, 132px) var(--aot-sys-template-main-padding);
}

.aot-section--grey {
  background: var(--aot-ref-light-grey-1);
}

.aot-section__head {
  max-width: 980px;
  margin-bottom: 42px;
}

.aot-section__head h2,
.aot-editorial h2,
.aot-contact-band h2,
.aot-contact-card h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.98;
  font-weight: 200;
  letter-spacing: 0;
}

.aot-section__head p,
.aot-editorial p,
.aot-contact-band p,
.aot-copy p,
.aot-contact-card p {
  max-width: 860px;
  margin: 22px 0 0;
  color: #3c3c3c;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.42;
}

.aot-carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--aot-ref-light-grey-4);
  border: 1px solid var(--aot-ref-light-grey-4);
}

.aot-card,
.aot-list-card,
.aot-highlight-grid article {
  background: white;
}

.aot-card a {
  min-height: 100%;
  display: grid;
  grid-template-rows: 260px auto 1fr;
  color: #111;
}

.aot-card img,
.aot-list-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.aot-card--image a > img,
.aot-list-card a > img {
  min-height: 0;
}

.aot-card span {
  display: block;
  padding: 28px 28px 0;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1;
  font-weight: 200;
}

.aot-card p {
  margin: 0;
  padding: 18px 28px 32px;
  color: #4b4b4b;
  font-size: 17px;
}

.aot-card:hover span,
.aot-list-card:hover h3 {
  color: var(--aot-ref-red-2);
}

.aot-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--aot-ref-light-grey-4);
  border-left: 1px solid var(--aot-ref-light-grey-4);
}

.aot-highlight-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.aot-highlight-grid article {
  min-height: 260px;
  padding: 34px;
  border-right: 1px solid var(--aot-ref-light-grey-4);
  border-bottom: 1px solid var(--aot-ref-light-grey-4);
}

.aot-highlight-grid h3,
.aot-list-card h3,
.aot-aside h2,
.aot-aside h3 {
  margin: 0;
  font-size: clamp(25px, 2.35vw, 38px);
  line-height: 1.04;
  font-weight: 200;
}

.aot-highlight-grid p,
.aot-list-card p,
.aot-aside p {
  margin: 18px 0 0;
  color: #4b4b4b;
  font-size: 16px;
}

.aot-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 1px;
  background: var(--aot-ref-light-grey-4);
}

.aot-split > div {
  background: var(--aot-sys-color-primary-black);
  color: white;
  padding: clamp(44px, 6vw, 88px);
}

.aot-split h2 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 84px);
  line-height: 0.96;
  font-weight: 200;
}

.aot-split p {
  margin: 24px 0 0;
  color: #ededed;
  font-size: clamp(18px, 1.6vw, 24px);
}

.aot-split img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.aot-contact-band {
  margin: 0;
  padding: clamp(46px, 6vw, 78px) var(--aot-sys-template-main-padding);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  color: white;
  background: var(--aot-ref-red-2);
}

.aot-contact-band p {
  color: rgba(255, 255, 255, 0.86);
}

.aot-contact-band .aot-button {
  margin: 0;
  background: white;
  color: #000;
}

.aot-contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.aot-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--aot-ref-light-grey-4);
  border: 1px solid var(--aot-ref-light-grey-4);
}

.aot-list-card a {
  min-height: 420px;
  display: grid;
  grid-template-rows: 180px auto auto 1fr;
  padding: 0;
  background: white;
}

.aot-list-card span {
  display: block;
  margin: 26px 26px 12px;
}

.aot-list-card h3 {
  padding: 0 26px;
}

.aot-list-card p {
  padding: 0 26px 30px;
}

.aot-detail-grid {
  padding: clamp(72px, 9vw, 132px) var(--aot-sys-template-main-padding);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(42px, 6vw, 96px);
  align-items: start;
}

.aot-copy {
  max-width: 940px;
}

.aot-copy-body {
  display: grid;
  gap: 18px;
}

.aot-copy p:first-child {
  margin-top: 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.28;
  color: #191919;
}

.aot-aside {
  position: sticky;
  top: calc(var(--aot-header-height) + 28px);
  padding: 30px;
  background: var(--aot-ref-light-grey-1);
  border-top: 4px solid var(--aot-ref-red-2);
}

.aot-aside .aot-button {
  width: 100%;
  margin: 24px 0 30px;
}

.aot-aside h3 {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 500;
}

.aot-aside a:not(.aot-button) {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--aot-ref-light-grey-4);
  font-weight: 500;
}

.aot-aside a:not(.aot-button):hover {
  color: var(--aot-ref-red-2);
}

.aot-faq {
  margin-top: clamp(30px, 5vw, 58px);
  border-top: 1px solid var(--aot-ref-light-grey-4);
}

.aot-faq h2 {
  margin: 0 0 18px;
  padding-top: 28px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  font-weight: 200;
}

.aot-faq details {
  border-bottom: 1px solid var(--aot-ref-light-grey-4);
  padding: 18px 0;
}

.aot-faq summary {
  cursor: pointer;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
}

.aot-faq details p {
  margin: 12px 0 0;
}

.aot-breadcrumbs {
  width: min(1180px, calc(100% - 48px));
  margin: clamp(18px, 3vw, 32px) auto 0;
  color: #4b4b4b;
  font-size: 13px;
}

.aot-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.aot-breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.aot-breadcrumbs li + li::before {
  content: "/";
  opacity: 0.45;
}

.aot-breadcrumbs a {
  border-bottom: 1px solid currentColor;
}

.aot-breadcrumbs span[aria-current="page"] {
  color: var(--aot-sys-color-shades-grey90);
  font-weight: 600;
}

.aot-editorial {
  max-width: 1100px;
}

.aot-contact-page {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(360px, 1fr);
  gap: 1px;
  background: var(--aot-ref-light-grey-4);
}

.aot-contact-card,
.aot-form {
  background: white;
  padding: clamp(34px, 5vw, 64px);
}

.aot-contact-card a {
  color: var(--aot-ref-red-2);
}

.aot-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.aot-form label {
  display: grid;
  gap: 9px;
  color: #3d3d3d;
  font-weight: 500;
}

.aot-form label:nth-last-of-type(1),
.aot-form label:nth-last-of-type(2) {
  grid-column: 1 / -1;
}

.aot-form input,
.aot-form textarea,
.aot-form select {
  width: 100%;
  border: 1px solid var(--aot-ref-light-grey-4);
  padding: 14px 16px;
  font-size: 17px;
  background: #fff;
  color: var(--aot-sys-color-shades-grey90);
}

.aot-form select,
.lakeland-form select {
  min-height: 54px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--aot-ref-red-2) 50%),
    linear-gradient(135deg, var(--aot-ref-red-2) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.aot-form button {
  justify-self: start;
  min-height: 50px;
  border: 0;
  background: var(--aot-ref-red-2);
  color: white;
  padding: 0 24px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.aot-footer {
  background: #111;
  color: white;
}

.footer {
  padding: clamp(52px, 6vw, 90px) var(--aot-sys-template-main-padding) 30px;
}

.footer__brand {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(300px, 720px);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer__logo {
  color: white;
  align-self: start;
}

.footer__brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.2;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding: 48px 0;
}

.footer__grid h2 {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  text-transform: uppercase;
}

.footer__grid a {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.94);
}

.footer__grid a:hover {
  color: var(--aot-ref-red-2);
}

.footer__map,
.contact__map {
  margin: 0 0 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.footer__map iframe,
.contact__map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.contact__map {
  margin: 0 var(--aot-sys-template-main-padding) clamp(60px, 8vw, 110px);
  border-color: var(--aot-ref-light-grey-4);
}

.contact__map iframe {
  height: 280px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 24px;
}

/* ------------------------------------------------------------------ *
 * Mobile overflow safety net + responsive media                       *
 * ------------------------------------------------------------------ */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

img,
iframe,
video {
  max-width: 100%;
  height: auto;
}

/* ------------------------------------------------------------------ *
 * Mobile navigation drawer (built by site.js, themed here)            *
 * ------------------------------------------------------------------ */
.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 240ms ease;
}

.global-header.is-drawer-open .mobile-nav__overlay {
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  width: min(360px, 88vw);
  height: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--aot-sys-color-primary-white);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.28);
  transform: translateX(100%);
  transition: transform 260ms ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.global-header.is-drawer-open .mobile-nav {
  transform: translateX(0);
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 16px 0 22px;
  border-bottom: 1px solid var(--aot-ref-light-grey-2);
}

.mobile-nav__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--aot-ref-red-2);
}

.mobile-nav__close {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--aot-sys-color-primary-black);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav__close:hover,
.mobile-nav__close:focus {
  color: var(--aot-ref-red-2);
  outline: 0;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 500;
  color: var(--aot-sys-color-shades-grey90);
  border-bottom: 1px solid var(--aot-ref-light-grey-2);
}

.mobile-nav__link:hover,
.mobile-nav__link:focus {
  background: var(--aot-ref-light-grey-1);
  color: var(--aot-ref-red-2);
  outline: 0;
}

.mobile-nav__cta {
  margin: 20px 24px 28px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--aot-ref-red-2);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mobile-nav__cta:hover,
.mobile-nav__cta:focus {
  background: #c9000c;
  outline: 0;
}

body.mobile-nav-open {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .global-header__bar {
    grid-template-columns: 1fr auto;
  }

  .global-header__nav {
    display: none;
  }

  .global-header__phone {
    display: none;
  }

  .aot-carousel,
  .aot-highlight-grid,
  .aot-list-grid,
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* The burger is the mobile entry point: make sure it is shown whenever the
   desktop nav is hidden, and hide the desktop-only mega/search affordances. */
@media (min-width: 1181px) {
  .global-header__menu {
    display: none;
  }
}

@media (max-width: 899px) {
  :root {
    --aot-header-height: 64px;
    --aot-sys-template-main-padding: 20px;
  }

  .global-header__bar {
    height: var(--aot-header-height);
    gap: 12px;
  }

  .global-header__logo span:last-child {
    max-width: 190px;
    font-size: 14px;
    line-height: 1.1;
  }

  .global-header__mega,
  .global-header__search-panel {
    top: var(--aot-header-height);
    padding: 28px 20px;
  }

  .global-header__mega,
  .aot-split,
  .aot-detail-grid,
  .aot-contact-page,
  .footer__brand,
  .aot-contact-band {
    grid-template-columns: 1fr;
  }

  .global-header__mega-grid,
  .aot-carousel,
  .aot-highlight-grid,
  .aot-list-grid,
  .footer__grid,
  .aot-form {
    grid-template-columns: 1fr;
  }

  .aot-hero {
    min-height: min(640px, calc(100svh - var(--aot-header-height)));
  }

  .aot-hero__content {
    padding-top: 84px;
    padding-bottom: 64px;
  }

  .aot-card a {
    grid-template-rows: 220px auto 1fr;
  }

  .aot-list-card a {
    min-height: auto;
    grid-template-rows: 210px auto auto 1fr;
  }

  .aot-split img {
    min-height: 300px;
  }

  .aot-aside {
    position: static;
  }

  .aot-contact-actions {
    justify-content: flex-start;
  }

  .aot-highlight-grid--four {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

/* ------------------------------------------------------------------ *
 * Explicit phone breakpoint: stack everything to one column, reduce   *
 * section padding, clamp oversized hero type, guarantee tap targets    *
 * and readable body text down to 375px.                                *
 * ------------------------------------------------------------------ */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }

  .global-header__mega,
  .global-header__mega-grid,
  .aot-carousel,
  .aot-highlight-grid,
  .aot-list-grid,
  .aot-split,
  .aot-detail-grid,
  .aot-contact-page,
  .footer__brand,
  .footer__grid,
  .aot-contact-band,
  .aot-form {
    grid-template-columns: 1fr;
  }

  .aot-section,
  .aot-editorial,
  .aot-contact-page,
  .aot-detail-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .aot-section,
  .aot-editorial,
  .aot-detail-grid {
    padding-top: clamp(40px, 9vw, 64px);
    padding-bottom: clamp(40px, 9vw, 64px);
  }

  .aot-hero h1 {
    font-size: clamp(38px, 11vw, 60px);
    line-height: 1;
  }

  .aot-hero p:not(.aot-eyebrow) {
    font-size: clamp(17px, 4.6vw, 21px);
  }

  .aot-section__head h2,
  .aot-editorial h2,
  .aot-contact-band h2,
  .aot-contact-card h2,
  .aot-split h2 {
    font-size: clamp(30px, 8.5vw, 46px);
  }

  /* Tap targets: links, buttons, and form fields at least 44px tall. */
  .aot-button,
  .aot-form button,
  .aot-contact-band .aot-button {
    min-height: 48px;
    width: 100%;
    margin-top: 18px;
  }

  .aot-contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .aot-contact-actions .aot-button {
    margin-top: 12px;
  }

  .aot-form input,
  .aot-form textarea,
  .aot-form select,
  .eijci-h-contact-form input,
  .eijci-h-contact-form textarea,
  .eijci-h-contact-form select {
    min-height: 48px;
    font-size: 16px;
  }

  .aot-form textarea,
  .eijci-h-contact-form textarea {
    min-height: 120px;
  }

  .footer__grid a,
  .aot-aside a:not(.aot-button) {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .aot-card span {
    font-size: clamp(22px, 6.4vw, 30px);
  }

  .global-header__menu {
    color: var(--aot-ref-red-2);
  }

  .aot-breadcrumbs {
    width: calc(100% - 36px);
  }

  .contact__map {
    margin-left: 18px;
    margin-right: 18px;
  }
}

/* ------------------------------------------------------------------ *
 * Styling for the legacy "lakeland-*" location fragments (the -fl      *
 * pages) once they are wrapped in the themed document shell, so they   *
 * read on-theme and stay mobile-safe.                                  *
 * ------------------------------------------------------------------ */
.lakeland-loader {
  display: none;
}

.lakeland-title-band {
  padding: clamp(40px, 7vw, 90px) var(--aot-sys-template-main-padding) 0;
}

.lakeland-title-band h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 200;
}

.lakeland-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  padding: clamp(40px, 7vw, 90px) var(--aot-sys-template-main-padding);
}

.lakeland-copyblock p {
  margin: 0 0 20px;
  max-width: 940px;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: #2a2a2a;
}

.lakeland-faq {
  margin-top: 16px;
}

.lakeland-faq h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 200;
}

.lakeland-faq details {
  border-top: 1px solid var(--aot-ref-light-grey-4);
  padding: 16px 0;
}

.lakeland-faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
}

.lakeland-faq details p {
  margin: 12px 0 0;
  color: #4b4b4b;
}

.lakeland-sidebar {
  position: sticky;
  top: calc(var(--aot-header-height) + 24px);
  padding: 30px;
  background: var(--aot-ref-light-grey-1);
  border-top: 4px solid var(--aot-ref-red-2);
}

.lakeland-sidebar h2 {
  margin-top: 0;
  font-size: 22px;
  font-weight: 500;
}

.lakeland-button {
  min-height: 50px;
  margin: 18px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--aot-ref-red-2);
  color: #fff;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.lakeland-button:hover {
  background: #c9000c;
}

.lakeland-contact-band {
  padding: clamp(40px, 6vw, 78px) var(--aot-sys-template-main-padding);
  background: var(--aot-ref-light-grey-1);
}

.lakeland-band-title {
  margin-bottom: 22px;
  color: var(--aot-ref-red-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lakeland-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
}

.lakeland-form label {
  display: grid;
  gap: 9px;
  color: #3d3d3d;
  font-weight: 500;
}

.lakeland-form label:nth-last-of-type(1),
.lakeland-form label:nth-last-of-type(2) {
  grid-column: 1 / -1;
}

.lakeland-form input,
.lakeland-form select,
.lakeland-form textarea {
  width: 100%;
  border: 1px solid var(--aot-ref-light-grey-4);
  padding: 14px 16px;
  font-size: 16px;
}

.lakeland-form button {
  grid-column: 1 / -1;
  justify-self: start;
  min-height: 50px;
  border: 0;
  background: var(--aot-ref-red-2);
  color: #fff;
  padding: 0 24px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 899px) {
  .lakeland-detail {
    grid-template-columns: 1fr;
  }

  .lakeland-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .lakeland-form {
    grid-template-columns: 1fr;
  }

  .lakeland-form button {
    width: 100%;
  }
}
/* brand-logo-css */.brand-logo{height:38px;width:auto;display:block;max-width:340px}.global-header__logo,.footer__logo{display:inline-flex;align-items:center}
