@font-face {
  font-family: "Colus";
  src: url("fonts/colus.woff2") format("woff2");
  font-display: block;
}

@font-face {
  font-family: "Airborne";
  src: url("fonts/airborne.woff2") format("woff2");
  font-display: block;
}

:root {
  --red: #a60e19;
  --display: "Colus", Georgia, serif;
  --body: "Airborne", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #000;
  font-family: var(--body);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  padding: 12px 18px;
  color: #000;
  background: #fff;
  transform: translateY(-120%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 66px;
  pointer-events: none;
}

.site-header a {
  display: block;
  width: 300px;
  height: 35.828125px;
  margin-top: 15px;
  pointer-events: auto;
}

.site-header img {
  display: block;
  width: 300px;
  height: 35.828125px;
  filter: brightness(0) invert(1);
}

.video-backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: #111 url("images/video-poster.jpg") center / cover no-repeat;
}

.video-backdrop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5) 4.1187%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

@keyframes motion-fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: var(--comp-opacity, 1);
  }
}

@keyframes motion-slideIn {
  0.0001% {
    opacity: var(--comp-opacity, 1);
    transform: rotate(var(--comp-rotate-z, 0deg)) translate(var(--motion-translate-x, -100%), var(--motion-translate-y, 0%));
    clip-path: var(--motion-clip-start, polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%));
  }

  100% {
    transform: rotate(var(--comp-rotate-z, 0deg)) translate(0, 0);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html.motion-enabled .motion-fade:not(.motion-done) {
    animation: motion-fadeIn 1200ms 1ms cubic-bezier(0.445, 0.05, 0.55, 0.95) backwards 1 paused;
    animation-composition: replace;
  }

  html.motion-enabled .motion-slide-up:not(.motion-done),
  html.motion-enabled .motion-slide-down:not(.motion-done) {
    animation:
      motion-slideIn 1200ms 1ms cubic-bezier(0.645, 0.045, 0.355, 1) backwards 1 paused,
      motion-fadeIn 1200ms 1ms cubic-bezier(0.645, 0.045, 0.355, 1) backwards 1 paused;
    animation-composition: replace, replace;
  }

  html.motion-enabled .motion-slide-up:not(.motion-done) {
    --motion-clip-start: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
    --motion-translate-x: 0%;
    --motion-translate-y: 100%;
  }

  html.motion-enabled .motion-slide-down:not(.motion-done) {
    --motion-clip-start: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
    --motion-translate-x: 0%;
    --motion-translate-y: -100%;
  }

  html.motion-enabled .motion-running:not(.motion-done) {
    animation-play-state: running;
  }
}

.page-section {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 600px;
}

.hero-section {
  z-index: 1;
}

.about-section {
  z-index: 2;
}

.business-section {
  z-index: 3;
}

.contact-section {
  z-index: 4;
  height: calc(100svh + 10px);
}

.hero-section h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(800px, calc(100% - 48px));
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  transform: translate(-50%, -50%);
}

.section-panel {
  position: absolute;
  top: 6svh;
  bottom: 0;
  left: 40px;
  width: calc(100% - 80px);
  overflow: hidden;
  border-radius: 50px 50px 0 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.about-section .section-panel {
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
}

.business-section .section-panel {
  color: #fff;
  background: rgba(166, 14, 25, 0.75);
}

.contact-section .section-panel {
  background: #fff;
  display: grid;
  place-items: center;
}

.about-content {
  position: absolute;
  top: 121px;
  left: 50%;
  width: 800px;
  transform: translateX(-50%);
}

.about-content h2,
.business-content h2,
.contact-content h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  line-height: 39px;
}

.about-copy {
  margin-top: 13px;
  font-size: 15px;
  line-height: 24px;
}

.about-copy p {
  margin: 0 0 24px;
}

.business-content {
  position: absolute;
  top: 139px;
  left: 50%;
  width: 888px;
  transform: translateX(-50%);
}

.business-intro {
  width: 800px;
  margin: 5px 0 0;
  font-size: 15px;
  line-height: 24px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(7, 144px);
  grid-auto-rows: 130px;
  gap: 9px;
  justify-content: center;
  padding: 0;
  margin: 14px -86px 0;
  list-style: none;
}

.business-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.business-grid img {
  width: 55.5px;
  height: 61.046875px;
  padding: 0;
  margin: 23.6875px 0 7.0834px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.business-grid span {
  display: block;
  width: 83.1636%;
  color: #fff;
  font-size: 13px;
  line-height: normal;
  text-align: center;
}

.contact-portrait {
  position: absolute;
  top: auto;
  right: 63.775px;
  bottom: -0.5px;
  width: 386.8193px;
  height: 687.1929px;
  object-fit: cover;
  object-position: 50% 21%;
}

.contact-content {
  position: relative;
  z-index: 1;
  width: 652.84375px;
  height: 539.171875px;
  display: flex;
  flex-direction: column;
}

.contact-content h2,
.contact-content h1 {
  flex: 0 0 auto;
  margin-bottom: 17.9047px;
  text-align: center;
}

.contact-brand {
  flex: 0 0 auto;
  width: 565.74px;
  height: 80.82px;
  margin: 0 0 99.2876px 34.8375px;
}

.contact-brand img {
  display: block;
  width: 100%;
  height: 100%;
}

.lead-form {
  width: 604.84375px;
  height: 302.1875px;
  padding: 24px 0;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 278.421875px);
  gap: 25px 36px;
}

.form-grid label,
.form-grid input {
  display: block;
  width: 100%;
}

.form-grid input {
  height: 34px;
  padding: 4px 0 6px;
  color: #000;
  font-size: 15px;
  line-height: 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  outline: 0;
}

.form-grid input::placeholder {
  color: #000;
  opacity: 1;
}

.form-grid input:focus {
  border-bottom-width: 2px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
}

.consent-row {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-top: 25px;
  font-size: 15px;
  line-height: 22.5px;
  cursor: pointer;
}

.consent-row + .consent-row {
  margin-top: 24px;
}

.consent-row input {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 3.25px 1px 0 0;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.21);
  border-radius: 0;
}

.consent-row input:checked {
  background:
    linear-gradient(45deg, transparent 44%, #fff 44% 53%, transparent 53%) 3px 5px / 5px 5px no-repeat,
    linear-gradient(-45deg, transparent 42%, #fff 42% 52%, transparent 52%) 6px 3px / 7px 8px no-repeat,
    var(--red);
  border-color: var(--red);
}

.consent-row input:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.consent-row a {
  text-underline-offset: 2px;
}

.lead-form button {
  width: 100%;
  height: 43.1875px;
  margin-top: 24px;
  color: #000;
  background: rgba(166, 14, 25, 0);
  border: 1px solid #000;
  border-radius: 0;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out, border-width 0.2s ease-in-out;
}

.lead-form button:hover,
.lead-form button:focus-visible {
  color: #000;
  background: rgba(166, 14, 25, 0);
  text-decoration: underline;
}

.home-footer {
  position: absolute;
  right: auto;
  bottom: 32px;
  left: 50%;
  z-index: 2;
  width: 666.515625px;
  font-size: 12px;
  line-height: normal;
  text-align: center;
  transform: translateX(-50%);
}

.home-footer p {
  margin: 0;
}

.home-footer a {
  text-decoration: none;
}

.home-footer a:hover,
.home-footer a:focus-visible {
  text-decoration: underline;
}

.footer-brand {
  font-family: var(--display);
  font-weight: 400;
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  background: #fff;
}

.legal-document {
  width: min(865px, calc(100% - 48px));
  margin: 0 auto;
  padding: 50px 0;
  font-size: 15px;
  line-height: 24px;
}

.legal-document h1 {
  margin: 0 0 15px;
  color: var(--red);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}

.legal-content p {
  margin: 0;
}

.legal-content ul,
.legal-content ol {
  margin: 0;
  padding-left: 38px;
}

.legal-content li {
  margin: 0;
}

.legal-content a {
  text-underline-offset: 2px;
}

/* Standalone contact and confirmation pages */
.plain-header {
  display: flex;
  justify-content: center;
  padding: 22px 24px;
}

.plain-header img {
  display: block;
  width: 300px;
  height: auto;
}

.standalone-contact {
  display: grid;
  place-items: center;
  position: relative;
  width: min(1200px, calc(100% - 80px));
  min-height: 687px;
  margin: 18px auto 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50px 50px 0 0;
}

.standalone-contact h1 {
  margin: 0 0 17.9047px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  line-height: 39px;
  text-align: center;
}

.standalone-contact .contact-portrait {
  top: auto;
  bottom: -0.5px;
}

.standalone-contact .home-footer {
  bottom: 18px;
}

.confirmation-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
  text-align: center;
}

.confirmation-card {
  width: min(620px, 100%);
}

.confirmation-card img {
  width: min(300px, 80%);
}

.confirmation-card h1 {
  margin: 42px 0 16px;
  color: var(--red);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
}

.confirmation-card p {
  font-size: 15px;
  line-height: 24px;
}

.confirmation-card a {
  display: inline-block;
  margin-top: 18px;
}

/* Supplied cookie banner, with the invalid "@Flash" token corrected. */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #ffffff; border-top: 1px solid #e0e0e0; box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1); padding: 16px 20px; z-index: 9999; font-size: 14px; line-height: 1.5; display: flex; justify-content: space-between; align-items: center; gap: 20px; animation: slideUp 0.4s ease-out; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif; }
#cookie-banner.hidden { display: none !important; }
.cookie-content { flex: 1; display: flex; gap: 16px; align-items: center; }
.cookie-text { color: #333; font-size: 14px; }
.cookie-text a { color: #0066cc; text-decoration: none; font-weight: 500; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.cookie-btn { padding: 8px 16px; border: none; border-radius: 6px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s ease; white-space: nowrap; min-height: 36px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif; }
.cookie-btn-reject { background: #f0f0f0; color: #333; border: 1px solid #d0d0d0; }
.cookie-btn-reject:hover { background: #e5e5e5; border-color: #bbb; }
.cookie-btn-accept { background: #0066cc; color: white; }
.cookie-btn-accept:hover { background: #0052a3; }
.cookie-close { width: 24px; height: 24px; background: none; border: none; cursor: pointer; color: #666; font-size: 18px; padding: 0; display: flex; align-items: center; justify-content: center; }
.cookie-close:hover { color: #333; }
@keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
#cookie-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.5); display: none; justify-content: center; align-items: center; z-index: 10000; padding: 20px; }
#cookie-modal.show { display: flex; }
.modal-content { background: white; border-radius: 12px; padding: 28px; max-width: 500px; width: 100%; max-height: 80vh; overflow-y: auto; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); animation: popIn 0.3s ease-out; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif; }
@keyframes popIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.modal-header h2 { font-size: 20px; color: #222; margin: 0; }
.modal-close { width: 28px; height: 28px; background: none; border: none; cursor: pointer; font-size: 24px; color: #666; padding: 0; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { color: #333; }
.cookie-category { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #e0e0e0; }
.cookie-category:last-child { border-bottom: none; margin-bottom: 16px; padding-bottom: 0; }
.category-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.category-name { font-weight: 600; color: #222; margin-bottom: 4px; }
.category-desc { font-size: 13px; color: #666; }
.toggle-switch { width: 40px; height: 24px; background: #ccc; border: none; border-radius: 12px; cursor: pointer; position: relative; padding: 0; transition: background 0.2s; flex-shrink: 0; appearance: none; -webkit-appearance: none; }
.toggle-switch::after { content: ''; position: absolute; width: 20px; height: 20px; background: white; border-radius: 50%; top: 2px; left: 2px; transition: left 0.2s; }
.toggle-switch:checked { background: #0066cc; }
.toggle-switch:checked::after { left: 18px; }
.toggle-switch:disabled { cursor: not-allowed; opacity: 0.5; }
.modal-footer { display: flex; gap: 12px; margin-top: 24px; }
.modal-footer button { flex: 1; padding: 10px 16px; border: none; border-radius: 6px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif; }
.modal-btn-reject { background: #f0f0f0; color: #333; }
.modal-btn-reject:hover { background: #e0e0e0; }
.modal-btn-accept { background: #0066cc; color: white; }
.modal-btn-accept:hover { background: #0052a3; }
.cookie-settings-link { color: #0066cc; text-decoration: none; cursor: pointer; font-weight: 500; border: none; background: none; padding: 0; font-size: inherit; font-family: inherit; }
.cookie-settings-link:hover { text-decoration: underline; }

@media (max-width: 1023px) {
  .hero-section h1 {
    width: 650px;
    font-size: 40px;
    line-height: 40px;
  }

  .section-panel {
    top: 4.8svh;
    left: 0;
    width: 100%;
  }

  .contact-section {
    height: 803px;
    min-height: 803px;
  }

  .contact-section .section-panel {
    top: 0;
  }

  .about-content {
    top: 236px;
    width: 650px;
  }

  .business-content {
    top: 241px;
    width: 650px;
  }

  .business-intro {
    width: 650px;
  }

  .business-grid {
    grid-template-columns: repeat(4, 155px);
    grid-auto-rows: 77px;
    gap: 9px;
    margin: 16px 0 0;
  }

  .business-grid li:nth-child(13) {
    grid-column: 2;
  }

  .business-grid li:nth-child(14) {
    grid-column: 3;
  }

  .business-grid img {
    width: 46.94px;
    height: 46.94px;
    padding: 0;
    margin: 0.5px 0 12.23px;
  }

  .business-grid span {
    width: 83.1636%;
    font-size: 13px;
  }

  .contact-portrait {
    display: none;
  }

  .contact-content {
    width: 652.84375px;
    height: 430.96px;
  }

  .contact-brand {
    width: 565.74px;
    height: 80.82px;
    margin: 0 auto 59.5624px;
  }

  .contact-content h2,
  .contact-content h1 {
    width: 67.6799%;
    margin-right: auto;
    margin-bottom: 10.578px;
    margin-left: auto;
  }

  .lead-form {
    width: 442px;
    height: 241px;
    padding: 0;
  }

  .form-grid {
    grid-template-columns: repeat(2, 203px);
  }

  .standalone-contact {
    width: 100%;
    margin-top: 0;
    border-right: 0;
    border-left: 0;
  }

  .home-footer {
    bottom: 40px;
    width: 65.1042%;
  }
}

@media (max-width: 599px) {
  .site-header {
    height: 79px;
  }

  .site-header a {
    margin-top: 22px;
  }

  .page-section {
    height: 100svh;
    min-height: 700px;
  }

  .contact-section {
    height: 100svh;
    min-height: 700px;
  }

  .hero-section h1 {
    top: 42.8%;
    width: calc(100% - 60px);
    font-size: 30px;
    line-height: 30px;
  }

  .section-panel {
    top: 79px;
    border-radius: 50px 50px 0 0;
  }

  .contact-section .section-panel {
    top: 79px;
  }

  .about-section .section-panel {
    background: rgba(0, 0, 0, 0.65);
  }

  .about-content,
  .business-content {
    top: 25px;
    width: calc(100% - 60px);
  }

  .about-content h2,
  .business-content h2,
  .contact-content h2 {
    font-size: 20px;
    line-height: 26px;
  }

  .about-copy {
    margin-top: 4px;
    font-size: 12px;
    line-height: 19.2px;
  }

  .about-copy p {
    margin-bottom: 19.2px;
  }

  .business-content h2 {
    line-height: 20px;
    white-space: nowrap;
  }

  .business-intro {
    width: 100%;
    margin-top: 7px;
    font-size: 12px;
    line-height: 19.2px;
  }

  .business-grid {
    grid-template-columns: repeat(3, 103px);
    grid-auto-rows: 58px;
    gap: 9px;
    margin: 10px 0 0;
  }

  .business-grid li:nth-child(13) {
    grid-column: 1;
    margin-left: 0;
    transform: translateX(56px);
  }

  .business-grid li:nth-child(14) {
    grid-column: 2;
    margin-left: 0;
    transform: translateX(56px);
  }

  .business-grid img {
    width: 40.19px;
    height: 40.19px;
    padding: 0;
    margin: 0.5px 0 6.16px;
  }

  .business-grid span {
    width: 93.88%;
    font-size: 10px;
  }

  .contact-content {
    width: 330px;
    max-width: calc(100% - 60px);
    height: 365.72px;
  }

  .contact-brand {
    width: 301.7855px;
    height: 43.1086px;
    margin: 0 auto 50.25px;
  }

  .contact-content h2,
  .contact-content h1 {
    width: 100%;
    margin-bottom: 5.359px;
  }

  .lead-form {
    width: 282px;
    max-width: 100%;
    height: 241px;
    padding: 0;
    margin-top: 0;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 117px));
    gap: 25px 36px;
  }

  .consent-row {
    gap: 10px;
    margin-top: 20px;
  }

  .consent-row + .consent-row {
    margin-top: 24px;
  }

  .lead-form button {
    margin-top: 30px;
  }

  .section-panel {
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
  }

  .home-footer {
    bottom: 29px;
    width: 84.6154%;
    padding: 0;
    font-size: 10px;
  }

  .legal-document {
    width: calc(100% - 60px);
    padding-top: 34px;
    font-size: 12px;
    line-height: 19.2px;
  }

  .legal-document h1 {
    font-size: 20px;
    line-height: 26px;
  }

  .plain-header img {
    width: min(300px, 100%);
  }

  .standalone-contact {
    min-height: 844px;
    border-radius: 50px 50px 0 0;
  }

  .standalone-contact h1 {
    font-size: 20px;
    line-height: 26px;
  }

  #cookie-banner { flex-direction: column; gap: 12px; padding: 16px; align-items: stretch; }
  .cookie-content { flex-direction: column; gap: 12px; }
  .cookie-buttons { width: 100%; justify-content: space-between; }
  .cookie-btn { flex: 1; min-height: 40px; }
  .modal-content { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
