@charset "UTF-8";
:root {
  
  --intercom-off-black:    #111111;
  --intercom-black-80:     #313130;
  --intercom-black-60:     #626260;
  --intercom-black-50:     #7b7b78;
  --intercom-tertiary:     #9c9fa5;
  --intercom-white:        #ffffff;
  --intercom-cream:        #faf9f6;
  --intercom-oat:          #dedbd6;
  --intercom-sand:         #d3cec6;
  --intercom-fin:          #ff5600;
  --intercom-report-orange:#fe4c02;
  --intercom-report-blue:  #65b5ff;
  --intercom-report-green: #0bdf50;
  --intercom-report-red:   #c41c1c;
  --intercom-report-pink:  #ff2067;
  --intercom-report-lime:  #b3e01c;
  --intercom-green:        #00da00;
  --intercom-green-active: #2c6415;
  --intercom-deep-blue:    #0007cb;

  --wsc-color-content-primary:   var(--intercom-white);
  --wsc-color-content-secondary: var(--intercom-black-60);
  --wsc-color-content-tertiary:  var(--intercom-tertiary);
  --wsc-color-black-80:          var(--intercom-black-80);
  --wsc-color-black-60:          var(--intercom-black-60);
  --wsc-color-black-50:          var(--intercom-black-50);

  --color-primary:    var(--intercom-off-black);
  --color-primary-dk: #000000;
  --color-secondary:  var(--intercom-fin);
  --color-bg:         var(--intercom-cream);
  --color-bg-alt:     var(--intercom-white);
  --color-bg-dark:    var(--intercom-off-black);
  --color-text:       var(--intercom-off-black);
  --color-muted:      var(--intercom-black-50);
  --color-border:     var(--intercom-oat);
  --color-success:    var(--intercom-green-active);
  --color-white:      var(--intercom-white);
  --radius:     4px;   
  --radius-lg:  8px;
  --radius-xl: 12px;
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: 0 2px 10px rgba(17, 17, 17, .06);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: .2s ease;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "calt", "ss01";
}

body {
  color: var(--intercom-off-black);
  background: var(--intercom-cream);
}

h1 {
  font-weight: 500;
  line-height: 1.00;
  letter-spacing: -0.03em;   
}
h2 {
  font-weight: 500;
  line-height: 1.00;
  letter-spacing: -0.03em;   
}
h3 {
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
h4 {
  font-weight: 500;
  line-height: 1.10;
  letter-spacing: -0.02em;
}
h5, h6 {
  font-weight: 500;
  letter-spacing: -0.015em;
}

a {
  color: var(--intercom-off-black);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover {
  color: var(--intercom-fin);
  text-decoration-color: var(--intercom-fin);
}

:focus-visible {
  outline: 2px solid var(--intercom-fin);
  outline-offset: 2px;
}

.site-header {
  background: var(--intercom-cream) !important;
  border-bottom: 1px solid var(--intercom-oat) !important;
  box-shadow: none !important;
}

.section--alt { background: var(--intercom-white); }

.hero { background: var(--intercom-off-black); }
.hero::before {
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.45) 0%,
    rgba(17, 17, 17, 0.75) 100%
  ) !important;
}
.hero h1 {
  font-weight: 500;
  line-height: 1.00;
  letter-spacing: -0.035em;
}

.card,
.info-box,
.carousel-card,
.structured-accordion__panel,
.faq-list__item {
  background: var(--intercom-cream);
  border: 1px solid var(--intercom-oat);
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.car-card__cta,
.booking-form__submit,
.contact-form__submit {
  background: var(--intercom-fin)!important;
  color: var(--intercom-white) !important;
  border-radius: var(--radius) !important;
  font-weight: 500 !important;
  border: 1px solid var(--intercom-fin)!important;
  transition: transform var(--transition), background var(--transition), color var(--transition) !important;
}
.car-card__cta:hover,
.booking-form__submit:hover,
.contact-form__submit:hover {
  background: var(--intercom-white) !important;
  color: var(--intercom-off-black) !important;
  transform: scale(1.04);   
}
.car-card__cta:active,
.booking-form__submit:active,
.contact-form__submit:active {
  background: var(--intercom-green-active) !important;
  color: var(--intercom-white) !important;
  border-color: var(--intercom-green-active) !important;
  transform: scale(0.96);
}

.tab-btn.is-active,
.filter-pill.is-active {
  background: var(--intercom-off-black) !important;
  color: var(--intercom-white) !important;
  border-color: var(--intercom-off-black) !important;
}

.tag, .pill, .badge, .chip {
  background: var(--intercom-cream) !important;
  color: var(--intercom-off-black) !important;
  border: 1px solid var(--intercom-oat) !important;
  border-radius: var(--radius) !important;
}

.brand-accent,
.eyebrow--fin {
  color: var(--intercom-fin);
}

.booking-form__input,
.contact-form__input,
.contact-form__textarea {
  border-radius: var(--radius) !important;
  border-color: var(--intercom-oat) !important;
}
.booking-form__input:focus,
.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--intercom-off-black) !important;
  outline-color: var(--intercom-fin) !important;
}

.site-footer {
  background: var(--intercom-off-black);
  color: var(--intercom-cream);
  border-top: none;
}
.site-footer a { color: var(--intercom-cream); }
.site-footer a:hover { color: var(--intercom-fin); }

@media (prefers-reduced-motion: reduce) {
  .car-card__cta,
  .booking-form__submit,
  .contact-form__submit {
    transition: none !important;
  }
  .car-card__cta:hover,
  .booking-form__submit:hover,
  .contact-form__submit:hover,
  .car-card__cta:active,
  .booking-form__submit:active,
  .contact-form__submit:active {
    transform: none !important;
  }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}
