@charset "UTF-8";
.text--black {
  color: var(--color-accent-black) !important;
}

.bg--red {
  background-color: var(--color-accent-red) !important;
}

.align--left {
  text-align: left;
}

.align--center {
  text-align: center;
}

.mw-50 {
  max-width: 50ch;
  margin: 0 auto;
}

.mt-0 {
  margin-top: 0;
}

.mt-xs {
  margin-top: 0.5rem;
}

.mt-sm {
  margin-top: 1rem;
}

.mt-md {
  margin-top: 1.5rem;
}

.mt-lg {
  margin-top: 2rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mt-xxl {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-xs {
  margin-bottom: 0.5rem;
}

.mb-sm {
  margin-bottom: 1rem;
}

.mb-md {
  margin-bottom: 1.5rem;
}

.mb-lg {
  margin-bottom: 2rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.mb-xxl {
  margin-bottom: 3rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-xs {
  padding-top: 0.5rem;
}

.pt-sm {
  padding-top: 1rem;
}

.pt-md {
  padding-top: 1.5rem;
}

.pt-lg {
  padding-top: 2rem;
}

.pt-xl {
  padding-top: 2rem;
}

.pt-xxl {
  padding-top: 3rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-xs {
  padding-bottom: 0.5rem;
}

.pb-sm {
  padding-bottom: 1rem;
}

.pb-md {
  padding-bottom: 1.5rem;
}

.pb-lg {
  padding-bottom: 2rem;
}

.pb-xl {
  padding-bottom: 2rem;
}

.pb-xxl {
  padding-bottom: 3rem;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex--start {
  align-items: flex-start;
}

.flex--center {
  align-items: center;
}

.flex--between {
  justify-content: space-between;
}

.justify-between {
  justify-content: space-between !important;
}

.gap-sm {
  gap: 0.5rem;
}

.gap-md {
  gap: 1rem;
}

.gap-lg {
  gap: 2rem;
}

.gap-xl {
  gap: 2.5rem;
}

.gap-xxl {
  gap: 3rem;
}

.relative {
  position: relative;
}

@media (max-width: 768px) {
  .shadow-mobile-0 {
    box-shadow: none !important;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  font-weight: 900 !important;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  color: var(--color-accent-red);
}

h1 {
  font-size: 3rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
}

h2 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}
h2.sm {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  h2.sm {
    font-size: 1.25rem;
  }
}

h3 {
  color: var(--color-grey-900);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

p {
  font-size: 1.1rem;
  line-height: 1.35;
  margin: 1.5rem 0;
}
p.small {
  font-size: 0.975rem;
}

:root {
  --font-family-body: "proxima-nova-wide",sans-serif;
  --font-family-heading: "transducer-extended",sans-serif;
  --color-accent-red: #CB0101;
  --color-accent-black: #000000;
  --color-grey-300: #E1E1E1;
  --color-grey-500: #B5B5B5;
  --color-grey-700: #7A7A7A;
  --color-grey-900: #3E3E3E;
  /* Fuel Grade Colors */
  --fuel-color-green: #16a34a;
  --fuel-color-blue: #22c55e;
  --fuel-color-yellow: #eab308;
  --fuel-color-purple: #f59e0b;
  --fuel-color-orange: #ef4444;
  --fuel-color-red: var(--color-accent-red);
}

.btn2 {
  display: inline-block;
  position: relative;
  padding: 1.15rem 3rem;
  border-radius: 0.5rem;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-family-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.62px;
  height: unset;
  line-height: unset;
  min-height: unset;
}
@media (max-width: 768px) {
  .btn2 {
    padding: 1rem 2rem;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}
.btn2--primary {
  background-color: var(--color-accent-red);
  color: #fff;
}
.btn2::before, .btn2::after {
  content: "";
  position: absolute;
  top: 50%;
  transition: width 0.3s ease-in-out;
  width: 1.75rem;
  height: 2px;
  transform: translateY(-50%);
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
@media (max-width: 768px) {
  .btn2::before, .btn2::after {
    width: 1.25rem;
  }
}
.btn2::before {
  left: 0;
}
@media (max-width: 768px) {
  .btn2::before {
    left: 0.75rem;
  }
}
.btn2::after {
  right: 0;
}
@media (max-width: 768px) {
  .btn2::after {
    right: 0.75rem;
  }
}
.btn2:hover::before, .btn2:hover::after {
  width: 1rem;
}
@media (max-width: 768px) {
  .btn2:hover::before, .btn2:hover::after {
    width: 0.75rem;
  }
}
.btn2.btn--small {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  .btn2.btn--small {
    padding: 0.75rem 1.25rem;
    font-size: 0.7rem;
  }
}

.swiper {
  width: 100vw;
  height: 400px;
  margin-left: calc(-50vw + 50%);
  padding: 2rem 0;
}
.swiper .swiper-wrapper {
  align-items: center;
}
.swiper .swiper-slide {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 400px !important;
  width: 85vw;
}
.swiper .swiper-slide.swiper-slide-active {
  z-index: 2;
}
.swiper .swiper-slide.swiper-slide-prev, .swiper .swiper-slide.swiper-slide-next {
  opacity: 0.7;
}
.swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.swiper .swiper-slide .slide-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: white;
  border-radius: 0.5rem;
  padding: 1rem;
  max-width: calc(100% - 2rem);
}
.swiper .swiper-slide .slide-overlay h3 {
  margin: 0 0 0.5rem 0;
  font-family: var(--font-family-heading);
  color: var(--color-accent-black);
  font-size: 1.1rem;
  font-weight: 700;
}
.swiper .swiper-slide .slide-overlay p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .swiper .swiper-slide {
    width: 90vw;
  }
}
@media (min-width: 768px) {
  .swiper .swiper-slide {
    width: 50vw;
  }
  .swiper .swiper-slide.swiper-slide-active {
    width: 75vw;
    transform: scale(1);
  }
  .swiper .swiper-slide.swiper-slide-prev, .swiper .swiper-slide.swiper-slide-next {
    width: 35vw;
    transform: scale(0.9);
    opacity: 0.8;
  }
}
.swiper .swiper-pagination {
  position: relative;
  margin-top: 2rem;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}
.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-accent-red);
  transform: scale(1.2);
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: var(--color-accent-red);
  background-color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
  font-size: 16px;
  font-weight: 700;
}
.swiper .swiper-button-next:hover,
.swiper .swiper-button-prev:hover {
  background-color: var(--color-accent-red);
  color: white;
}
@media (max-width: 768px) {
  .swiper .swiper-button-next,
  .swiper .swiper-button-prev {
    display: none;
  }
}
.swiper .swiper-button-next {
  right: 20px;
}
.swiper .swiper-button-prev {
  left: 20px;
}

@media (max-width: 768px) {
  .countdown--container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    line-height: 1;
    align-items: center;
    text-align: center;
  }
}

.countdown--digits {
  display: inline-flex;
  flex-direction: row;
  border: 1px solid #DED6D6;
  border-radius: 0.5rem;
  background: rgba(207, 203, 203, 0.24);
  margin: 0 0.5rem;
}
.countdown--digits .countdown--digit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #DED6D6;
  padding: 0.25rem 0.5rem;
}
.countdown--digits .countdown--digit:last-child {
  border-right: none;
}
.countdown--digits span.countdown--number {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 1rem;
  font-variant: tabular-nums;
}
.countdown--digits span.countdown--label {
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 106%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  color: var(--color-grey-700);
}

.promo-countdown {
  border: none;
  border-radius: 0;
  padding: 0.25rem 0.5rem;
  background: rgba(103, 103, 103, 0.25);
}
.promo-countdown .text-center {
  width: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.promo-countdown .font-bold {
  color: #FFF !important;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: var(--font-family-heading) !important;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  line-height: 106%; /* 15.9px */
  letter-spacing: -0.45px;
  text-transform: uppercase;
  font-variant: tabular-nums;
}
.promo-countdown div:not(.font-bold) {
  color: rgba(255, 255, 255, 0.8) !important;
  text-align: center;
  font-family: var(--font-family-body) !important;
  font-size: 8px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 2px;
}

#cta {
  padding-right: 0;
  background: linear-gradient(360deg, #efefef 0%, #FFF 100%);
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  #cta {
    padding-bottom: 5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
#cta .content--container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 6rem;
}
@media (max-width: 768px) {
  #cta .content--container {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }
}
@media (max-width: 768px) {
  #cta .section--header--graphic svg {
    margin: 0 auto 1rem;
  }
}
#cta hr {
  border-color: rgba(0, 0, 0, 0.1);
  max-width: 80%;
  margin: 2rem auto 2rem 0;
}
@media (max-width: 768px) {
  #cta hr {
    max-width: 100%;
    margin: 1.5rem auto;
  }
}
#cta .btn2 {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  #cta .btn2 {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
  }
}
#cta .split--right {
  width: 50%;
  position: relative;
  flex: 0 0 auto;
  transform: translateY(7.5%);
}
@media (max-width: 768px) {
  #cta .split--right {
    width: 100%;
    transform: none;
    height: 300px;
    margin-top: 2rem;
  }
}
#cta .split--right img {
  position: absolute;
  width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}
#cta .split--right img:nth-of-type(1) {
  height: 400px;
  right: 0;
  top: 0;
  transform: translateY(25%);
  z-index: 1;
  box-shadow: 0 4px 40px -8px rgba(0, 0, 0, 0.25);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
@media (max-width: 768px) {
  #cta .split--right img:nth-of-type(1) {
    height: 200px;
    width: 70%;
    transform: translateY(10%);
    right: 10%;
    border-radius: 1rem;
  }
}
#cta .split--right img:nth-of-type(2) {
  height: 400px;
  left: 0;
  top: 0;
  transform: translateY(-25%);
}
@media (max-width: 768px) {
  #cta .split--right img:nth-of-type(2) {
    height: 200px;
    width: 70%;
    transform: translateY(-10%);
    left: 10%;
  }
}
#cta .split--right svg {
  position: absolute;
  width: 150px;
  height: 150px;
}
#cta .split--right svg:nth-of-type(1) {
  right: 0;
  top: 0;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  #cta .split--right svg:nth-of-type(1) {
    width: 80px;
    height: 80px;
    transform: translateY(-25%);
  }
}
#cta .split--right svg:nth-of-type(2) {
  left: 0;
  bottom: 0;
  transform: translateY(-20%) scale(0.85);
}
@media (max-width: 768px) {
  #cta .split--right svg:nth-of-type(2) {
    width: 80px;
    height: 80px;
    transform: translateY(-10%) scale(0.7);
  }
}

.faq-section {
  background-color: #f8f9fa;
}
.faq-section .faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-section .faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-section .faq-header h2 {
  font-family: var(--font-family-heading);
  color: var(--color-accent-black);
  margin-bottom: 1rem;
}
.faq-section .faq-header p {
  color: var(--color-grey-700);
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 12px rgba(203, 1, 1, 0.1);
}
.faq-item.active {
  box-shadow: 0 4px 12px rgba(203, 1, 1, 0.15);
}
.faq-item.active .faq-question {
  color: var(--color-accent-red);
  border-bottom-color: #e5e7eb;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--color-accent-red);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-family-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-accent-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}
.faq-question:hover {
  color: var(--color-accent-red);
}
.faq-question:focus {
  outline: none;
  color: var(--color-accent-red);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--color-grey-500);
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.active {
  max-height: 500px;
  padding: 3rem !important;
}
.faq-answer p {
  color: var(--color-accent-black);
  line-height: 1.4;
  margin: 0;
  font-size: 0.9rem;
}
.faq-answer ul {
  color: var(--color-accent-black);
  line-height: 1.4;
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  font-size: 0.9rem;
}
.faq-answer ul li {
  margin-bottom: 0.5rem;
}
.faq-answer strong {
  color: var(--color-accent-black);
}
.faq-answer .highlight {
  color: var(--color-accent-red);
  font-weight: 600;
}

@media (max-width: 768px) {
  .faq-section .faq-container {
    padding: 0 1rem;
  }
  .faq-section .faq-header {
    margin-bottom: 2rem;
  }
  .faq-section .faq-header h2 {
    font-size: 2rem;
  }
  .faq-question {
    padding: 1.25rem;
    font-size: 1rem;
  }
  .faq-question .faq-icon {
    font-size: 1.125rem;
  }
  .faq-answer.active {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
}
#map {
  padding: 0;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background-color: #f7f7f7;
  margin-bottom: 4rem;
  z-index: 1;
  position: relative;
}
#map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, #efefef 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
#map .map--container {
  width: 100%;
  height: 80vh;
  flex: 1 1 auto;
  min-height: 0;
}
#map .map--overlay {
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  background-color: #fff;
  padding: 2rem 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
}
#map .map--overlay--header {
  font-family: var(--font-family-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: var(--color-grey-700);
}
#map a[href^="tel:"],
#map address {
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  margin: 1rem 0;
  text-align: center;
  text-decoration: none;
  color: var(--color-accent-black);
}
#map a[href^="tel:"] {
  margin-bottom: 0;
}
#map .btn2 {
  background-color: #CB0101;
  color: #fff;
  transform: translateY(50%);
  font-size: 0.75rem;
}

.fuel-grade-card {
  background: #f7f7f7;
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}
.fuel-grade-card:hover {
  transform: translateY(-2px);
}
.fuel-grade-card.featured {
  border-color: var(--color-accent-red);
  transform: scale(1.05);
  background: white;
}
.fuel-grade-card.featured:hover {
  transform: scale(1.05) translateY(-2px);
}

.fuel-grade-header {
  position: relative;
  text-align: center;
  margin-bottom: 0;
}
.fuel-grade-header .fuel-octane {
  margin: 0 auto 1rem;
}
.fuel-grade-header h3 {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-black);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fuel-price {
  font-family: var(--font-family-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-accent-red);
  margin-bottom: 0.5rem;
}
.fuel-price span {
  font-size: 1rem;
  color: var(--color-grey-700);
  font-weight: 500;
}

.fuel-grade-content p {
  color: var(--color-grey-700);
  font-size: 0.85rem;
  line-height: 1.25;
  margin: 0 0 0.75rem;
}

.discount-badge {
  position: absolute;
  bottom: -8px;
  right: 1rem;
  background: #16a34a;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  box-shadow: 0 2px 4px rgba(22, 163, 74, 0.3);
}
.discount-badge span {
  font-family: var(--font-family-heading);
  font-weight: 700;
}

@media (max-width: 768px) {
  .fuel-grade-card {
    padding: 1.5rem;
  }
  .fuel-grade-card.featured {
    transform: none;
  }
  .fuel-grade-card.featured:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 768px) {
  .fuel-price {
    font-size: 2rem;
  }
}

.fuel-prices-section {
  padding: 5rem 0;
  background: white;
}

.fuel-prices-container {
  max-width: 48rem;
  margin: 0 auto;
}

.fuel-prices-table {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #d1d5db;
  overflow: hidden;
}

.fuel-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s ease;
}
.fuel-price-row:last-child {
  border-bottom: none;
}
.fuel-price-row--white {
  background-color: #ffffff;
}
.fuel-price-row--gray {
  background-color: #f9fafb;
}
.fuel-price-row:hover {
  background-color: #fee2e2;
}

.fuel-type {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}

.fuel-price-wrapper {
  text-align: right;
  margin-left: 2rem;
}

.fuel-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: #dc2626;
  transition: opacity 0.3s ease-in-out;
  line-height: 1;
}
.fuel-price sup {
  font-size: 50%;
  top: -1em;
}
.fuel-price .price-unit {
  font-size: 1.125rem;
  color: #4b5563;
  font-weight: 400;
  margin-left: 0.25rem;
}

.refresh-btn::before, .refresh-btn::after {
  width: 0.75rem !important;
}
.refresh-btn:hover::before, .refresh-btn:hover::after {
  width: 0.5rem !important;
}

.image--container--inner-label {
  position: absolute;
  top: 1.5rem;
  background-color: #fff;
  padding: 0.85rem;
  line-height: 1;
  font-family: var(--font-family-heading);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 0.5rem;
}
.image--container--inner {
  position: relative;
  max-width: calc(50vw - 1rem);
}
.image--container--divider {
  position: relative;
  z-index: 1;
}
.image--container--divider svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.image--container--divider img {
  height: 100px !important;
  width: auto !important;
  overflow: visible;
}
.image--container img {
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--container--inner:nth-of-type(1) {
  animation: slideInFromLeft 0.8s ease-out;
}
.image--container--inner:nth-of-type(1) img {
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
}
.image--container--inner:nth-of-type(1) .image--container--inner-label {
  left: auto;
  right: 1.5rem;
  z-index: 1;
}
.image--container--inner:nth-of-type(2) {
  animation: slideInFromRight 0.8s ease-out;
}
.image--container--inner:nth-of-type(2) img {
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.image--container--inner:nth-of-type(2) .image--container--inner-label {
  left: 1.5rem;
  right: auto;
  z-index: 1;
}

/* Alternate Versions */
.image--container.fancy .image--container--inner {
  display: flex;
  height: 400px;
  align-items: stretch;
  border-radius: 0;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  overflow: hidden;
}
.image--container.fancy .image--container--inner:nth-of-type(2) {
  flex-direction: row-reverse;
  border-radius: 0;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.image--container.fancy .image--container--inner-graphic img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.image--container.fancy .image--container--inner-text {
  padding: 4rem;
  color: #fff;
  text-align: center;
  color: #fff;
  background-color: var(--color-accent-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.image--container.fancy h4 {
  font-size: 2rem;
}
.image--container.fancy h5 {
  font-weight: 400;
  margin: 0.75rem 0 0;
  color: var(--color-grey-500);
}
.image--container.fancy p {
  font-size: 0.85rem;
  margin: 1.5rem 0;
  color: var(--color-grey-300);
}

img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
img:hover {
  filter: grayscale(0%);
}

.logo-container img,
.footer-logo img,
img[alt*=logo],
img[src*=logo] {
  filter: none !important;
}
.logo-container img:hover,
.footer-logo img:hover,
img[alt*=logo]:hover,
img[src*=logo]:hover {
  filter: none !important;
}

svg,
img[src$=".svg"] {
  filter: none !important;
}
svg:hover,
img[src$=".svg"]:hover {
  filter: none !important;
}

.fuel-grade-card img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.fuel-grade-card:hover img {
  filter: grayscale(0%);
}

.sticky-image {
  filter: grayscale(100%);
  transition: filter 0.8s ease-in-out, opacity 0.8s ease-in-out;
}
.sticky-image.active {
  filter: grayscale(0%);
}

.split--right img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.split--right img:hover {
  filter: grayscale(30%);
}

.membership-card {
  position: relative;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 2px solid #e5e7eb;
  background: #f7f7f7;
  transition: all 0.3s ease;
}
.membership-card:hover {
  transform: translateY(-2px);
}
.membership-card.featured {
  border-color: var(--color-accent-red);
  transform: scale(1.05);
  background: white;
}
.membership-card.featured:hover {
  transform: scale(1.05) translateY(-2px);
}

.membership-header {
  position: relative;
  text-align: center;
  padding-bottom: 1.5rem;
}
.membership-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-black);
  margin: 1rem 0 0 0;
  font-family: var(--font-family-heading);
}

.membership-period {
  color: #6b7280;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  font-family: var(--font-family-body);
  text-transform: uppercase;
  letter-spacing: 1.62px;
}

.membership-price {
  margin: 0 auto 1rem;
}
.membership-price span {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-family-heading);
}

.membership-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.membership-content ul li {
  padding: 0.5rem 0;
  color: var(--color-accent-black);
  font-size: 0.9rem;
  line-height: 1.4;
  border-bottom: 1px solid #f3f4f6;
}
.membership-content ul li:last-child {
  border-bottom: none;
}
.membership-content ul li:before {
  content: "✓ ";
  color: var(--fuel-color-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .membership-card {
    padding: 1.5rem;
  }
  .membership-card.featured {
    transform: none;
  }
  .membership-card.featured:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 768px) {
  .membership-header h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .membership-price span {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  #promo-bar {
    padding: 0.5rem 0.5rem 0;
    text-align: center;
  }
}

.slider {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #e5e7eb;
  outline: none;
  border-radius: 8px;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #CB0101;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #CB0101;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.slider-tutorial {
  position: relative;
}

.slider-tutorial::-webkit-slider-thumb {
  animation: pulse-ring 2s ease-in-out infinite;
}

.slider-tutorial::-moz-range-thumb {
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(203, 1, 1, 0.7), 0 0 0 0 rgba(203, 1, 1, 0.4);
  }
  50% {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 8px rgba(203, 1, 1, 0), 0 0 0 16px rgba(203, 1, 1, 0);
  }
  75% {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(203, 1, 1, 0.5), 0 0 0 12px rgba(203, 1, 1, 0.3);
  }
}
.slider-interacted::-webkit-slider-thumb,
.slider-interacted::-moz-range-thumb {
  animation: none;
}

.savings-result-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.savings-result-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.savings-result-card.featured-result {
  border-color: #CB0101;
  position: relative;
}

.savings-breakdown {
  text-align: left;
  background: #f9fafb;
  padding: 1rem;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .savings-result-card {
    padding: 1rem;
  }
  .savings-breakdown {
    padding: 0.75rem;
  }
}
.slider-container-highlight {
  position: relative;
  transition: all 0.3s ease;
}

.slider-container-highlight.highlight-active {
  background: rgba(203, 1, 1, 0.03);
  border-radius: 12px;
  padding: 1rem;
  margin: -1rem;
  box-shadow: 0 0 0 0 rgba(203, 1, 1, 0);
  animation: pulse-container 2s ease-in-out infinite;
}

@keyframes pulse-container {
  0%, 100% {
    background: rgba(203, 1, 1, 0.03);
    box-shadow: 0 0 0 0 rgba(203, 1, 1, 0.3);
  }
  50% {
    background: rgba(203, 1, 1, 0.06);
    box-shadow: 0 0 0 4px rgba(203, 1, 1, 0.15), 0 0 0 8px rgba(203, 1, 1, 0.08);
  }
}
.slider-input-wrapper {
  position: relative;
}

.tutorial-cta-text {
  text-align: center;
  color: #CB0101;
  font-size: 18px;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  margin: 0 auto 1.5rem;
  max-width: 4xl;
  padding: 0 1rem;
}

.tutorial-cta-text.visible {
  opacity: 1;
  visibility: visible;
  animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.02);
  }
}
@media (max-width: 768px) {
  .tutorial-cta-text {
    font-size: 16px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 640px) {
  .tutorial-cta-text {
    font-size: 14px;
    margin-bottom: 0.75rem;
  }
}
.steps--container.steps--stacked {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.steps--container.steps--quality {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .steps--container.steps--quality {
    grid-template-columns: 1fr;
  }
}
.steps--container.steps--vertical .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.steps--container.steps--vertical .step--content {
  margin-left: 0;
  text-align: center;
}
.steps--container.steps--horizontal .step {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 1.5rem;
}
.steps--container.steps--horizontal .step--content {
  margin-left: 0;
  text-align: left;
}

.savings-row {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.savings-row:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .savings-row {
    padding: 1rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .savings-row .savings-dots {
    display: none;
  }
}

.savings-usage {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent-black);
  min-width: 180px;
}
@media (max-width: 768px) {
  .savings-usage {
    min-width: auto;
    font-size: 1rem;
  }
}

.savings-dots {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, transparent 10%, var(--color-accent-red) 10%, var(--color-accent-red) 20%, transparent 20%, transparent 30%, var(--color-accent-red) 30%, var(--color-accent-red) 40%, transparent 40%);
  background-size: 20px 2px;
  background-repeat: repeat-x;
  margin: 0 2rem;
}

.savings-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fuel-color-green);
  text-align: right;
  min-width: 200px;
}
@media (max-width: 768px) {
  .savings-amount {
    min-width: auto;
    font-size: 1.1rem;
    text-align: left;
  }
}

.steps--container:not(.steps--stacked):not(.steps--quality) {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .steps--container:not(.steps--stacked):not(.steps--quality) {
    grid-template-columns: 1fr;
  }
}

.step--number {
  width: 87px;
  height: 87px;
  background-color: var(--color-accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-family: var(--font-family-heading);
  font-weight: 900;
  font-style: italic;
  color: #fff;
  flex-shrink: 0;
  position: relative;
}
.step--number span {
  z-index: 1;
  display: block;
}
.step--number svg {
  color: var(--color-accent-red);
  position: absolute;
  left: 50%;
  height: 100px;
  top: 50%;
  transform: translate(-100%, -50%);
  width: 100px;
}

.step--number--green {
  background-color: var(--fuel-color-green);
}
.step--number--green svg {
  color: var(--fuel-color-green);
}

.step--number--yellow {
  background-color: var(--fuel-color-yellow);
}
.step--number--yellow svg {
  color: var(--fuel-color-yellow);
}

.step--number--red {
  background-color: var(--fuel-color-red);
}
.step--number--red svg {
  color: var(--fuel-color-red);
}

.step--number--blue {
  background-color: var(--fuel-color-blue);
}
.step--number--blue svg {
  color: var(--fuel-color-blue);
}

.step--number--purple {
  background-color: var(--fuel-color-purple);
}
.step--number--purple svg {
  color: var(--fuel-color-purple);
}

.step--number--orange {
  background-color: var(--fuel-color-orange);
}
.step--number--orange svg {
  color: var(--fuel-color-orange);
}

.fuel-octane {
  font-size: 2rem;
}
.fuel-octane.step--number--green svg {
  color: var(--fuel-color-green);
}
.fuel-octane.step--number--yellow svg {
  color: var(--fuel-color-yellow);
}
.fuel-octane.step--number--red svg {
  color: var(--fuel-color-red);
}
.fuel-octane.step--number--blue svg {
  color: var(--fuel-color-blue);
}
.fuel-octane.step--number--purple svg {
  color: var(--fuel-color-purple);
}
.fuel-octane.step--number--orange svg {
  color: var(--fuel-color-orange);
}

.step--number--large {
  width: 4rem;
  height: 4rem;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.step--number--large svg {
  height: 120px;
  width: 120px;
}

.step--content--header {
  font-family: var(--font-family-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  line-height: 1;
}

.step--content--subheader {
  font-size: 0.85rem;
  color: var(--color-grey-500);
}

.sticky-section {
  display: flex;
  min-height: 100vh;
}
.sticky-section .sticky-content {
  width: 50vw;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sticky-section .sticky-content {
    width: 100vw;
  }
}
.sticky-section .scrolling-content {
  width: 50vw;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .sticky-section .scrolling-content {
    width: 100vw;
  }
}
.sticky-section .savings-display .savings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}
.sticky-section .savings-display .savings-row:last-child {
  border-bottom: none;
}
.sticky-section .savings-display .savings-usage {
  font-weight: 600;
  color: var(--color-accent-black);
  font-size: 0.9rem;
  flex-shrink: 0;
  min-width: 120px;
  font-family: var(--font-family-body);
}
.sticky-section .savings-display .savings-dots {
  flex-grow: 1;
  height: 1px;
  background: repeating-linear-gradient(to right, #d1d5db, #d1d5db 4px, transparent 4px, transparent 8px);
  margin: 0 1rem;
}
.sticky-section .savings-display .savings-amount {
  font-weight: 700;
  color: #16a34a;
  font-size: 0.95rem;
  flex-shrink: 0;
  text-align: right;
  font-family: var(--font-family-heading);
}
.sticky-section.sticky-right {
  padding-right: 0 !important;
}
.sticky-section.sticky-right .sticky-content {
  order: 2;
}
.sticky-section.sticky-right .scrolling-content {
  order: 1;
  padding-right: 0;
  margin-right: 0;
}
.sticky-section.sticky-left {
  padding-left: 0 !important;
}
.sticky-section.sticky-left .sticky-content {
  order: 1;
}
.sticky-section.sticky-left .scrolling-content {
  order: 2;
  padding-left: 2rem;
}

.sticky-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
}
.sticky-image-container .sticky-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.sticky-image-container .sticky-image.active {
  opacity: 1;
}
.sticky-image-container .image-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.5rem;
  padding: 1.5rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.sticky-image-container .image-overlay h3 {
  font-family: var(--font-family-heading);
  color: var(--color-accent-black);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}
.sticky-image-container .image-overlay p {
  color: var(--color-grey-700);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.sticky-scroll-item {
  padding: 4rem 2rem;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.sticky-right .sticky-scroll-item {
  padding-left: 4rem;
  padding-right: 10rem;
}
.sticky-left .sticky-scroll-item {
  padding-left: 10rem;
  padding-right: 4rem;
}
.sticky-scroll-item:first-child {
  padding-top: 2rem;
}
.sticky-scroll-item:last-child {
  padding-bottom: 2rem;
}
.sticky-scroll-item .item-header {
  margin-bottom: 0;
}
.sticky-scroll-item .item-header h3 {
  font-family: var(--font-family-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent-black);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}
.sticky-scroll-item .item-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-accent-black);
  margin-bottom: 1.5rem;
}
.sticky-scroll-item .item-content ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.sticky-scroll-item .item-content ul li {
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--color-accent-black);
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  padding-left: 2rem;
}
.sticky-scroll-item .item-content ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent-red);
  font-weight: 700;
}
.sticky-scroll-item .item-content ul li:last-child {
  border-bottom: none;
}

.sticky-map-container {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.sticky-map-container #map--container {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form-section {
  background: white;
  border-radius: 1rem;
  padding: 3rem;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}
.contact-form-section h3 {
  font-family: var(--font-family-heading);
  color: var(--color-accent-black);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.contact-form-section .form-group {
  margin-bottom: 1.5rem;
}
.contact-form-section .form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-accent-black);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-form-section .form-group input,
.contact-form-section .form-group textarea,
.contact-form-section .form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form-section .form-group input:focus,
.contact-form-section .form-group textarea:focus,
.contact-form-section .form-group select:focus {
  outline: none;
  border-color: var(--color-accent-red);
  box-shadow: 0 0 0 3px rgba(203, 1, 1, 0.1);
}
.contact-form-section .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form-section .submit-btn2 {
  background: var(--color-accent-red);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  font-family: var(--font-family-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.contact-form-section .submit-btn2:hover {
  background: var(--color-accent-black);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .sticky-section {
    flex-direction: column;
    min-height: auto;
  }
  .sticky-section .sticky-content,
  .sticky-section .scrolling-content {
    width: 100vw;
    position: relative;
    top: auto;
    height: auto;
  }
  .sticky-section .sticky-content {
    height: 60vh;
    order: 1 !important;
  }
  .sticky-section .scrolling-content {
    order: 2 !important;
    padding: 2rem 1rem;
  }
  .sticky-scroll-item {
    min-height: auto;
    padding: 2rem 0;
  }
  .sticky-scroll-item .item-header h3 {
    font-size: 2rem;
  }
  .contact-form-section {
    padding: 2rem;
    margin: 1rem 0;
  }
}
.sticky-section.location-sticky,
.sticky-section.contact-sticky {
  padding: 0 !important;
}
.sticky-section.location-sticky .scrolling-content,
.sticky-section.contact-sticky .scrolling-content {
  width: 37.5vw !important;
  padding: 0 4rem !important;
}
@media (max-width: 768px) {
  .sticky-section.location-sticky .scrolling-content,
  .sticky-section.contact-sticky .scrolling-content {
    width: 100% !important;
    padding: 0 !important;
  }
}
.sticky-section.location-sticky .sticky-content,
.sticky-section.contact-sticky .sticky-content {
  width: 62.5vw !important;
}
@media (max-width: 768px) {
  .sticky-section.location-sticky .sticky-content,
  .sticky-section.contact-sticky .sticky-content {
    width: 100% !important;
  }
}

.wash-package-card {
  position: relative;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 2px solid #e5e7eb;
  background: #f7f7f7;
  transition: all 0.3s ease;
}
.wash-package-card:hover {
  transform: translateY(-2px);
}
.wash-package-card.featured {
  border-color: var(--color-accent-red);
  transform: scale(1.05);
  background: white;
}
.wash-package-card.featured:hover {
  transform: scale(1.05) translateY(-2px);
}

.wash-package-header {
  position: relative;
  text-align: center;
  padding-bottom: 1.5rem;
}
.wash-package-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-black);
  margin: 1rem 0 0.5rem 0;
  font-family: var(--font-family-heading);
}

.wash-description {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-family: var(--font-family-body);
}

.wash-price {
  margin: 0 auto 1rem;
}
.wash-price span {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-family-heading);
}

.wash-package-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wash-package-content ul li {
  padding: 0.5rem 0;
  color: var(--color-accent-black);
  font-size: 0.9rem;
  line-height: 1.4;
  border-bottom: 1px solid #f3f4f6;
}
.wash-package-content ul li:last-child {
  border-bottom: none;
}
.wash-package-content ul li:before {
  content: "✓ ";
  color: #16a34a;
  font-weight: bold;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .wash-package-card {
    padding: 1.5rem;
  }
  .wash-package-card.featured {
    transform: none;
  }
  .wash-package-card.featured:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 768px) {
  .wash-package-header h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .wash-price span {
    font-size: 1rem;
  }
}

/* Contact Page Sticky Layout */
.contact-sticky .scrolling-content {
  width: 37.5%; /* 3/8ths */
  padding: 0 2rem 0 0; /* No top, no left, 2rem right, no bottom */
}
.contact-sticky .sticky-content.contact-form-sticky {
  width: 62.5%; /* 5/8ths */
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 2rem 4rem !important;
  background: #f9fafb;
}

.contact-scroll-item {
  padding: 4rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.contact-scroll-item:first-child {
  padding-top: 2rem; /* Less top padding for first item */
}
.contact-scroll-item:last-child {
  border-bottom: none;
}
.contact-scroll-item .item-header {
  margin-bottom: 2rem;
}
.contact-scroll-item .item-header h1 {
  text-align: left !important;
}
.contact-scroll-item .item-header h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--color-accent-black) !important;
}
.contact-scroll-item .item-header p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-accent-black);
}

.contact-info-grid {
  display: grid;
  gap: 2rem;
}
.contact-info-grid .contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-grid .contact-info-item svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.contact-info-grid .contact-info-item h4 {
  font-weight: 600;
  color: var(--color-accent-black);
  margin-bottom: 0.5rem;
}
.contact-info-grid .contact-info-item p, .contact-info-grid .contact-info-item div {
  color: var(--color-accent-black);
  line-height: 1.4;
}
.contact-info-grid .contact-info-item a {
  text-decoration: none;
}
.contact-info-grid .contact-info-item a:hover {
  text-decoration: underline;
}

.contact-form-container {
  max-width: 100%;
}
.contact-form-container h2 {
  color: var(--color-accent-black);
}
.contact-form-container .space-y-6 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1.5rem;
}
.contact-form-container label {
  color: var(--color-accent-black);
  font-weight: 500;
}
.contact-form-container .sms-opt-in-label {
  display: block;
  margin-bottom: 0;
  text-transform: none;
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.contact-form-container .input, .contact-form-container .select, .contact-form-container .textarea {
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  transition: border-color 0.2s;
}
.contact-form-container .input:focus, .contact-form-container .select:focus, .contact-form-container .textarea:focus {
  border-color: #CB0101;
  outline: none;
}

@media (max-width: 1024px) {
  .contact-sticky {
    flex-direction: column;
  }
  .contact-sticky .scrolling-content {
    width: 100%;
    order: 1;
    padding: 0; /* Remove all padding on mobile */
  }
  .contact-sticky .sticky-content.contact-form-sticky {
    width: 100%;
    position: relative;
    height: auto;
    order: 2;
    border-left: none;
    border-top: 1px solid #e5e7eb;
  }
  .contact-scroll-item {
    padding: 2rem 1rem;
  }
  .contact-scroll-item:first-child {
    padding-top: 1rem;
  }
}
@media (max-width: 768px) {
  .contact-form-container .grid {
    grid-template-columns: 1fr !important;
  }
}
/* Fuel Grade Card Styles */
.fuel-grade-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}
.fuel-grade-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #CB0101;
}
.fuel-grade-card.featured {
  border-color: #CB0101;
  position: relative;
  box-shadow: 0 8px 30px rgba(203, 1, 1, 0.15);
}
.fuel-grade-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #CB0101;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(203, 1, 1, 0.3);
}

.fuel-grade-header {
  text-align: center;
  margin-bottom: 1rem;
}

.fuel-octane {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
}
.fuel-octane span {
  font-size: 1.75rem;
  z-index: 2;
  position: relative;
}

.fuel-price {
  font-size: 2rem;
  font-weight: bold;
  color: #CB0101;
  margin-top: 0.5rem;
}
.fuel-price span {
  font-size: 1rem;
  color: #6b7280;
}

.fuel-grade-content {
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.fuel-grade-content p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.fuel-grade-content a {
  font-weight: 500;
  text-decoration: none;
}
.fuel-grade-content a:hover {
  text-decoration: underline;
}

/* Calculator Price Colors */
.calc-price-green {
  color: var(--fuel-color-green) !important;
}

.calc-price-blue {
  color: var(--fuel-color-blue) !important;
}

.calc-price-yellow {
  color: var(--fuel-color-yellow) !important;
}

.calc-price-purple {
  color: var(--fuel-color-purple) !important;
}

.calc-price-orange {
  color: var(--fuel-color-orange) !important;
}

.calc-price-red {
  color: var(--fuel-color-red) !important;
}

/* Calculator Styles */
.fuel-price-result-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.fuel-price-result-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #CB0101;
}
.fuel-price-result-card.featured-price {
  border-color: #CB0101;
  position: relative;
  background: linear-gradient(135deg, #fff5f5, #fef2f2);
  box-shadow: 0 8px 30px rgba(203, 1, 1, 0.15);
  overflow: visible;
}
.fuel-price-result-card.featured-price::before {
  content: "Featured";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #CB0101;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(203, 1, 1, 0.3);
}

/* Price Slider Styles */
.slider {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  height: 8px;
  border-radius: 5px;
  background: linear-gradient(to right, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
  outline: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.slider:hover {
  opacity: 1;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #CB0101;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(203, 1, 1, 0.4);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.slider::-webkit-slider-thumb:hover {
  width: 28px;
  height: 28px;
  box-shadow: 0 6px 20px rgba(203, 1, 1, 0.6);
}
.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #CB0101;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(203, 1, 1, 0.4);
  border: none;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.slider::-moz-range-thumb:hover {
  width: 28px;
  height: 28px;
  box-shadow: 0 6px 20px rgba(203, 1, 1, 0.6);
}

/* Input Styling */
#basePrice {
  font-size: 1.25rem;
  font-weight: 600;
}
#basePrice:focus {
  box-shadow: 0 0 0 3px rgba(203, 1, 1, 0.1);
}

@media (max-width: 768px) {
  .fuel-grade-card {
    padding: 1.5rem 1rem;
    min-height: 280px;
  }
  .fuel-octane {
    width: 70px;
    height: 70px;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .fuel-price {
    font-size: 1.75rem;
  }
  .fuel-grade-content p {
    font-size: 0.9rem;
  }
  .fuel-price-result-card {
    padding: 1.25rem;
  }
}
@media (max-width: 480px) {
  .fuel-grade-card {
    padding: 1.25rem 0.75rem;
    min-height: 260px;
  }
  .fuel-grade-card.featured::before {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
  .fuel-octane {
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
  }
}
.location-sticky .scrolling-content {
  width: 37.5%;
  padding: 0 6rem 6rem 0;
}
@media (max-width: 768px) {
  .location-sticky .scrolling-content {
    width: 100%;
    padding: 0;
  }
}
.location-sticky .sticky-content.location-map-sticky {
  width: 62.5%;
  position: sticky;
  top: 0 !important;
  height: 100vh;
  padding: 0 !important;
}
@media (max-width: 768px) {
  .location-sticky .sticky-content.location-map-sticky {
    width: 100%;
    position: relative;
    height: 400px;
  }
}

.location-scroll-item {
  padding: 4rem 0 2rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.location-scroll-item:first-child {
  padding-top: 2rem;
}
.location-scroll-item:last-child {
  border-bottom: none;
}
.location-scroll-item .item-header {
  margin-bottom: 2rem;
}
.location-scroll-item .item-header h1 {
  text-align: left !important;
}
.location-scroll-item .item-header h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--color-accent-black) !important;
}
.location-scroll-item .item-header p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-accent-black);
}

.location-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.location-info .info-item svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.location-info .info-item h4 {
  font-weight: 600;
  color: var(--color-accent-black);
  margin-bottom: 0.5rem;
}
.location-info .info-item p {
  color: var(--color-accent-black);
  line-height: 1.4;
}
.location-info .info-item a {
  text-decoration: none;
}
.location-info .info-item a:hover {
  text-decoration: underline;
}

.hours-grid {
  display: grid;
  gap: 1.5rem;
}
.hours-grid .hours-card {
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  background: white;
}
.hours-grid .hours-card.fuel-hours {
  background: #CB0101;
  color: white;
  border-color: #CB0101;
}
.hours-grid .hours-card h4 {
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: inherit;
}
.hours-grid .hours-card .hours-time {
  font-size: 0.95rem;
  line-height: 1.4;
}

.landmarks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.landmarks-grid .landmark-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 6px;
}
.landmarks-grid .landmark-item .landmark-name {
  font-weight: 500;
  color: var(--color-accent-black);
}
.landmarks-grid .landmark-item .landmark-distance {
  font-size: 0.875rem;
  color: #6b7280;
}

@media (max-width: 1024px) {
  .location-sticky {
    flex-direction: column;
  }
  .location-sticky .scrolling-content {
    width: 100%;
    order: 2;
    padding: 0; /* Remove all padding on mobile */
  }
  .location-sticky .sticky-content.location-map-sticky {
    width: 100%;
    position: relative;
    height: 400px;
    order: 1;
  }
  .location-scroll-item {
    padding: 2rem 1rem;
  }
  .location-scroll-item:first-child {
    padding-top: 1rem;
  }
  .landmarks-grid {
    grid-template-columns: 1fr;
  }
}
footer {
  border-top: none;
  margin-top: 0;
  padding: 3rem 0;
  position: relative;
}
@media (max-width: 768px) {
  footer {
    padding: 2rem 1rem;
    text-align: center;
  }
}
footer svg.accent {
  position: absolute;
  bottom: 0;
  left: 0;
  height: auto;
  z-index: -1;
}
@media (max-width: 768px) {
  footer svg.accent {
    display: none;
  }
}

.footer-separator {
  height: 200px;
  width: 1px;
  background: var(--color-grey-300);
  margin: 0 2rem;
}
@media (max-width: 768px) {
  .footer-separator {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-contact-info {
    display: none;
  }
  .footer-contact-info address, .footer-contact-info a {
    text-align: center !important;
  }
}
.footer-contact-info .contact-header {
  font-family: var(--font-family-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: var(--color-grey-700);
}
@media (max-width: 768px) {
  .footer-contact-info .contact-header {
    text-align: center;
    margin-bottom: 0.5rem;
  }
}
.footer-contact-info address, .footer-contact-info a {
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
  text-decoration: none;
  color: var(--color-accent-black);
}
.footer-contact-info a:hover {
  color: var(--color-accent-red);
  transition: color 0.3s ease;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 0;
    margin: 0;
    line-height: 1;
  }
}

.footer-nav-link {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-accent-black);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}
.footer-nav-link:hover {
  color: var(--color-accent-red);
}
.footer-nav-link:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent-red);
}

.footer-copyright {
  color: var(--color-grey-500);
  text-align: center;
  font-family: var(--font-family-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  max-width: 40ch;
}
.footer-copyright .footer-credit-link {
  color: inherit;
  text-decoration: none;
}
.footer-copyright .footer-credit-link:hover {
  color: var(--color-accent-red);
  transition: color 0.3s ease;
}

.navbar {
  padding: 1.5rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.navbar-start {
  width: unset;
}
@media (max-width: 768px) {
  .navbar-start {
    width: 100%;
    justify-content: space-between;
  }
}

.logo-container {
  display: flex;
  align-items: center;
}
.logo-container img {
  height: 100px;
  width: auto;
}
@media (max-width: 768px) {
  .logo-container img {
    height: 60px;
  }
}

.navbar-center {
  margin: 0 auto 0 4rem;
  height: 50px;
}
@media (max-width: 768px) {
  .navbar-center {
    display: none;
    width: 100%;
    margin: 1rem 0 0 0;
    height: auto;
  }
  .navbar-center.mobile-nav-open {
    display: block;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.25rem;
}
.main-nav li {
  margin: 0;
}
@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .main-nav li {
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 0;
  }
  .main-nav li:last-child {
    border-bottom: none;
  }
}

.nav-link {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-accent-black);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: var(--color-accent-red);
}
.nav-link:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent-red);
}
.nav-link.active {
  color: var(--color-accent-red);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0.35rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent-red);
}

.fuel-price-nav-container {
  display: flex;
  flex-direction: column;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .fuel-price-nav-container {
    display: none;
  }
}
@media (max-width: 1024px) {
  .fuel-price-nav-container .nav-fuel-price {
    display: none;
  }
}

.nav-link-secondary {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-accent-black);
  padding: 0.5rem 1rem;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link-secondary:hover {
  color: var(--color-accent-red);
}
.nav-link-secondary:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: var(--color-accent-red);
}

.nav-fuel-price {
  font-size: 12px;
  text-align: center;
  opacity: 0.75;
}

.nav-fuel-price-disclaimer {
  font-size: 10px;
  text-align: center;
  opacity: 0.75;
  margin-top: 0.25rem;
}

.btn-member {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  background-color: var(--color-accent-red);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.btn-member:hover {
  background-color: var(--color-accent-black);
}
@media (max-width: 768px) {
  .btn-member {
    display: none;
  }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu-toggle .hamburger {
  display: flex;
  flex-direction: column;
  width: 24px;
  height: 18px;
}
.mobile-menu-toggle .hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--color-accent-black);
  margin: 2px 0;
  transition: 0.3s;
}
.mobile-menu-toggle .hamburger span:first-child {
  margin-top: 0;
}
.mobile-menu-toggle .hamburger span:last-child {
  margin-bottom: 0;
}
.mobile-menu-toggle .hamburger.open span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.mobile-menu-toggle .hamburger.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle .hamburger.open span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .mobile-nav-menu {
    display: block;
  }
}
.mobile-nav-menu.open {
  transform: translateY(0);
}
.mobile-nav-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out 0.1s;
}
.mobile-nav-menu.open::before {
  transform: translateY(0);
}

.mobile-nav-container {
  position: relative;
  z-index: 1;
  padding: 1rem;
  padding-top: calc(100px + 1rem);
  height: 100%;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .mobile-nav-container {
    padding-top: calc(80px + 1rem);
  }
}

.mobile-nav-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  color: var(--color-accent-black);
  transition: all 0.3s ease;
}
.mobile-nav-close:hover {
  background-color: #f1f1f1;
  color: var(--color-accent-red);
}
.mobile-nav-close svg {
  width: 24px;
  height: 24px;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid #f1f1f1;
}
.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-accent-black);
  transition: color 0.3s ease;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--color-accent-red);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #f1f1f1;
}
.mobile-nav-actions .btn2 {
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.mobile-nav-actions .btn2.btn2--primary {
  background-color: var(--color-accent-red);
  color: white;
}
.mobile-nav-actions .btn2.btn2--primary:hover {
  background-color: var(--color-accent-black);
}
.mobile-nav-actions .btn2.btn2--secondary {
  background-color: transparent;
  color: var(--color-accent-black);
  border: 2px solid var(--color-accent-black);
}
.mobile-nav-actions .btn2.btn2--secondary:hover {
  background-color: var(--color-accent-black);
  color: white;
}

@media (max-width: 768px) {
  section#pains h2 {
    font-size: 1.25rem;
    text-align: left;
  }
}
section#pains li {
  line-height: 1.25;
}

@media (max-width: 768px) {
  section#value .section--header {
    padding-inline: 2rem;
  }
}
@media (max-width: 768px) {
  section#value h3 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  section#value .image--container {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  section#value .image--container--inner {
    max-width: 100%;
    border-radius: 0;
    flex-direction: column;
    height: unset;
  }
}
@media (max-width: 768px) {
  section#value .image--container--divider {
    transform: scale(1.5);
  }
}

body {
  max-width: 1480px;
  margin: 0 auto;
  font-family: var(--font-family-body);
}

section {
  padding: 6rem;
}
section.full-width {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  section {
    padding: 3rem 1rem;
  }
  section.full-width {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  .content--container {
    padding: 0 1rem;
  }
}

img[src$=".jpg"],
img[src$=".jpeg"] {
  filter: grayscale(100%) !important;
}

img.color {
  filter: grayscale(0) !important;
}

.hero {
  min-height: 60vh;
}
@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
    padding: 2rem 1rem;
  }
}

.section--header:not(.full-width) {
  max-width: 80ch;
  margin: 0 auto;
}
.section--header--graphic svg {
  width: 100px;
  height: 36px;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .section--header--graphic svg {
    width: 80px;
    height: 28px;
  }
}
.section--header.align--center svg {
  margin: 0 auto 1rem;
}
@media (max-width: 768px) {
  .section--header {
    text-align: center;
  }
  .section--header h2 {
    font-size: 1.75rem;
    line-height: 1.2;
  }
}

.disclaimer {
  font-size: 0.75rem;
  color: #B5B5B5;
}

strong.h1 {
  font-family: var(--font-family-heading);
  color: var(--color-accent-red);
  font-size: 110%;
}

#splash h1 {
  font-size: 3rem;
  max-width: 20ch;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #splash h1 {
    font-size: 1.25rem;
    line-height: 1.2;
    max-width: 15ch;
  }
}
#splash .disclaimer {
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  #splash .disclaimer {
    font-size: 0.7rem;
  }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.pains--container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .pains--container {
    gap: 1rem;
    padding: 0 1rem;
  }
}
.pains--container .pain {
  flex: 0 0 calc(33.333% - 1rem);
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0.875rem 1.25rem;
  border: 1px solid rgba(203, 1, 1, 0.15);
  background: linear-gradient(135deg, #fef7f7 0%, #f8f8f8 100%);
  gap: 0.75rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  z-index: 1;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.pains--container .pain svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  flex-shrink: 0;
}
.pains--container .pain:hover {
  background: linear-gradient(135deg, #fef2f2 0%, #f5f5f5 100%);
  border-color: rgba(203, 1, 1, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .pains--container .pain {
    flex: 0 0 calc(50% - 0.5rem);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    gap: 0.5rem;
  }
  .pains--container .pain svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .pains--container .pain {
    flex: 0 0 100%;
  }
}

#pains svg.accent {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-10%);
}

body.location #map {
  display: none;
}/*# sourceMappingURL=styles.css.map */