:root {
    --border-radius-sm: 0.1rem;
    --border-radius-md: 0.25em;
    --border-radius-lg: 1.5rem;
    --bs-btn-hover-border-color: #your-color-here;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #2C0513D6;
    --bs-btn-border-color: #2C0513D6;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #500707D6;
    --bs-btn-hover-border-color: #1A020C;
    --bs-btn-focus-shadow-rgb: 44,5,19;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #1A020C;
    --bs-btn-active-border-color: #150208;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #2C0513D6;
    --bs-btn-disabled-border-color: #2C0513D6;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #f7f7f7;
    color:#333333;
}

a {
    color:#000000;
}

.lh-hr{
    line-height: 0.7;
}
.bg-primary {
    background-color: #700a0a !important;
}

.alert-debug {
    color: black;
    background-color: white;
    border-color: #d6e9c6;
  }
  
.alert-error {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #eed3d7;
}

.spinner-border {
    color: #f2a500;
    width: 1.25rem;
    height: 1.25rem;    
}

.selectdropdown {
    background: white;
    border: 1px solid #d7d7d7;
    padding: 0.25rem 0.5rem;
    box-shadow: 1px 1px #d7d7d7;
    border-radius: 5px;
  }

.selectdropdown:hover {
    cursor: pointer;
    box-shadow: 2px 2px;
  }

.border-primary {
    border-color: #f2a500!important;
}

.my-indicator{
    display:none;
  }
.htmx-request .my-indicator{
    display:inline-block;
}
.htmx-request.my-indicator{
    display:inline-block;
}

a.navbar-brand {
    color: #000000;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'DM Sans';
}

a.navbar-brand img {
    box-shadow: 0 0 0 0px;
    max-width: 100px;
    border-radius: 0;
}

h1, h2, h3, .text-red {
    color:#700a0a;
}

h5 {
    font-size: 1rem;
}

svg.bi.bi-three-dots {
    color: #f2a500;
    width: 20px;
    height: 20px;
}

.bi.bi-check-lg {
    color: #ff7800;
  }

.display-4 {
    font-size: calc(1.2rem + 2vw);
}

/* .main-hero {
    background: #fddc95;
}
 */
.lead {
    font-size: .975rem;
    font-weight: unset;
}

.red {
    color: #AD0000!important;
}

span.burger-menu {
    color: #353535;
    font-size: 1rem;
}

.btn {
    font-size: 1.25rem;
}

.usp {
    font-size: 0.75rem;
}


a.nav-link {
    color: #353535;
}

.dropdown-toggle::after {
    display: none;
}

svg.bi.bi-list {
    color: #353535;
}

svg.bi.bi-quote.quote {
    height: 3rem;
    margin-bottom: 1rem;
    color: #ffae00;
}

.navbar-toggler {
    padding: 0rem;
    margin-left: -5px;
}

.navbar-collapse {
    text-align: right;
}

ul.dropdown-menu {
    text-align: right;
}

img.img-thumbnail.review-image {
    padding: 0;
    border: none;
}

.blockquote-footer::before {
    content: "— ";
    color: #ffae00;
}

#id_captcha_question {
    font-size: 0.8rem;
  }

.dropdown-menu {
    display: block;
    opacity: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease-in;
 }
  .dropdown-menu.show {
    max-height: 500px;
    opacity: 1;
    padding: 0.5rem 0;
 }


 .dropdown-item:focus, .dropdown-item:hover {
    background-color: #fff;
    color: #000;
}

.navbar-nav .dropdown-menu.show {
    max-height: 500px;
}


.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0rem;
}

.btn-outline-primary {
    color: #000;
    border-radius: var(--border-radius-sm);
    border: 2px solid black;
}

.btn-outline-primary:hover {
    color: black;   
    background-color: #eee;
    border-color: #eee;
}

.btn-secondary {
    --bs-btn-color: #000000;
    --bs-btn-bg: #ffffff;
    --bs-btn-border-color: #000000;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #5a6268;
    --bs-btn-hover-border-color: #545b62;
    --bs-btn-focus-shadow-rgb: 108,117,125;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #545b62;
    --bs-btn-active-border-color: #4e555b;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #6c757d;
    --bs-btn-disabled-border-color: #6c757d;
    position: relative;
    transition: all 0.3s ease;
}

.btn-primary {
    position: relative;
    transition: all 0.3s ease;
}

.btn-primary::after, .btn-secondary::after {
    content: "›";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    transition: all 0.4s ease;
    font-size: 1.4em;
    font-weight: normal;
    margin-left:10px;
}

.btn-primary:hover, .btn-secondary:hover {
    padding-right: 30px!important;
}

.btn-primary:hover::after, .btn-secondary:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.btn-primary,
.btn-secondary
.btn-check:active, 
.btn-check:checked, 
.btn-outline-primary.active, 
.btn-outline-primary.dropdown-toggle.show, 
.btn-outline-primary:active {
    border-radius: var(--border-radius-md);
    }

.border-black {
    border: #353535;
}

.btn-white {
    background: white;
    border-radius: var(--border-radius-md);
}

.alert-primary {
    background-color: #fddc95;
    border: 1px solid #ffffff;
    border-radius: var(--border-radius-md);
}

.alert-success {
  color: #18791e;
  background-color: #ffffff36;
  border-radius: var(--border-radius-md);
  border: 1px solid #18791e40;
  font-weight: 600;
}

.alert-info {
    color: #353535;
    background-color: #ffffff;
    border-radius: var(--border-radius-md);
    border: 1px solid #b1b1b1;
}

.alert-warning {
    background-color: #fff8e1;
    border-color: #ffdd7c;
    border-radius: var(--border-radius-md);
}

.img-border{
    border-radius: var(--border-radius-md);
}

.card {
    border: 1px solid #b1b1b15e;
    border-radius: var(--border-radius-md);
}

.card-title {
    margin-bottom: 0.5rem;
    color: #353535;
    font-weight: 700;
}

.card-header {
    background-color: rgb(255 255 255 / 3%);
}

nav.main-menu {
    background: #ffffff;
}

a.nav-link.main-menu-item {
    color: #353535;
}

a#navbarScrollingDropdown {
    color: #353535;
}


.no-border {
    border: 0px;
}

.usp-top {
    font-size: 0.85rem;
}

svg.bi.bi-image, svg.bi.bi-truck, svg.bi.bi-brush {
    height: 40px;
    width: auto;
}

.spacer-mobile {
    height: 50px;
}

.spacer {
    height: 50px;
}

.nav-spacer {
    height: 94px;
}

.order-box {
    border: 1px solid #cacaca;
    padding: 1rem;
    border-radius: 15px;
}

.borderless table {
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    border-bottom-style: none;
}

.offer-form {
    background: #e2eeff;
    border-radius: 15px;
    color: #353535;
}

.main-color {
    color:#353535;
}

.fs-7 {
    font-size:0.75rem;
}

.card-img {
    object-fit: cover;
    height: 85vw;
    border-radius: 15px;
}

img, .card-img-top {
    border-radius: 12px;
    box-shadow: 4px 4px 20px 0px #00000026;
}

.alert-text, .alert-btn {
    font-size: 0.975rem;
}

.dropdown-divider {
    height: 0px!important;
    margin: 0rem;
    border-top: none;
}

.dropdown-menu {
    background-color: #353535;
    border:none;
}

.dropdown-item {
    color: #fff;
}

/* Onboarding */

.selected-card {
    border:3px solid #fddc95;
    border-radius: 15px;
}

hr {
    color: #999999;
}

ul.onboarding {
    display: contents;
}

ul.onboarding label {
    padding: 1rem;
    margin: 0.25rem 0rem;
    width: 100%;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    text-align: center;
    background: white;
    font-size: 1.25rem;
}

ul.onboarding label:hover {
    border: 1px solid black;
    cursor: pointer;
    font-weight: 700;
}
ul.onboarding li {
    list-style-type: none;
    display: flex;
}

.onboarding input {
    display: none;
}

.form-control {
    box-shadow: 1px 2px 0px 1px #0000000d;
    border: 1px solid #dedede;
    border-radius: var(--border-radius-sm);
  }

.form-control:hover {
    box-shadow: 2px 2px 5px 2px #00000021;
}

.alert-christmas {
    background: #e73f3f;
    border: 1px solid #ffffff;
    border-radius: var(--border-radius-md);
}

.alert-christmas h2 {
    font-family: "Dancing Script";
}

.alert-christmas h2 {
    color: white;
}

.alert-christmas p {
    color: white;
}

.btn-christmas {
    background: #5c7c5c;
    color: white;
    border-radius: var(--border-radius-md);
    border: none;
}

.btn-christmas:hover {
    background: white;
}

img.christmas-img-1 {
    box-shadow: none;
    position: absolute;
    left: -15px;
    bottom: -40px;
    width: 75px;
}

img.christmas-img-2 {
    box-shadow: none;
    position: absolute;
    right: -10px;
    top: -30px;
    width: 75px;
}

img.christmas-img-3 {
    position: absolute;
    left: -4px;
    top: 5px;
    box-shadow: none;
    width: 18vw;
    rotate: 20deg;
}

img.christmas-img-4 {
    box-shadow: none;
    position: absolute;
    right: -6px;
    top: -10px;
    width: 20vw;
    rotate: 0deg;
}

img.email {
    border-radius: 0;
    box-shadow: none;
    width: 197px;
}

.christmas-text {
    color: #d04541!important;
}

.step-circle {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-circle p {
    font-size: 0.75rem;
    color:black!important;
  }


.review-card {
  background-color: #ffffff36;
  border: 1px solid #ffae005c !important;
}

.review {
    background: #f0f0f0;
    border-radius: 5px;
}

.review p, small {
font-size: 0.8rem;
}

.carousel-indicators [data-bs-target] {
    background-color: #ffae00;}

.carousel-indicators {
        justify-content: left;
        margin-right: 0;
        margin-left: 0;
}

/* Text & Media gallery arrows - more visible */
[id^="textMediaSlider-"] .carousel-control-prev,
[id^="textMediaSlider-"] .carousel-control-next {
    width: 12%;
    opacity: 1;
}

[id^="textMediaSlider-"] .carousel-control-prev-icon,
[id^="textMediaSlider-"] .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    background-size: 50% 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

[id^="textMediaSlider-"] .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f2a500'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

[id^="textMediaSlider-"] .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f2a500'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.review-wrapper {
    background:white;
}

.text-orange {
    color:#ffae00;
}

.bg-orange {
    background-color:#ffae00;
}

.marquee {
    overflow: hidden;
    position: relative;
    background: #efefef;
    color: #333;
  }
  
  .marquee__inner {
    width: 100%; 
    display: flex;
    animation: marquee 20s linear infinite;
  }

  .not-allowed {
    cursor: not-allowed !important;
  }

  .arrow-img {
    transform: rotate(45deg);
    width: 60%;
    box-shadow: none;
    opacity: 0.3;   
  }

  .player {
    z-index: 10;
    overflow: hidden;
    border-radius: 0px;
  }


  .upsell-check {
    background: #fffee4;
    padding: 4px 8px;
    border-bottom: 1px solid #ccc;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

  .product-options {
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background: #f7f7f7;
  }
@media (min-width: 781px) {

    .py-lg-6 {
        padding-top: 7rem !important;
        padding-bottom: 7rem !important;
    }

    .pb-lg-6 {
        padding-bottom: 7rem !important;
    }

    .pt-lg-6 {
        padding-top: 7rem !important;
    }

    .player video {
        border-radius: var(--border-radius-md);
      }
      
    .sticky-summary {
        position: sticky; 
        top: 0;
    }

    .step-circle button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-circle p {
        font-size: 1rem;
      }

    .offcanvas-end {
        width: 500px;
      }

    h5 {
        font-size: 1.25rem;
    }

    .usp {
        font-size: 1rem;
    }

    ul.onboarding label {
        padding: 1rem;
        margin: 0.5rem 0.5rem;
        font-size: 1.25rem;
    }
    

    img.christmas-img-1 {
        box-shadow: none;
        position: absolute;
        left: -100px;
        bottom: -70px;
        width: 175px;
    }

    img.christmas-img-2 {
        box-shadow: none;
        position: absolute;
        right: -55px;
        top: -60px;
        width: 150px;
    }

    img.christmas-img-3 {
        position: absolute;
        left: 235px;
        top: -45px;
        box-shadow: none;
        width: 8vw;
        rotate: 20deg;
    }

    img.christmas-img-4 {
        box-shadow: none;
        position: absolute;
        right: 280px;
        top: -40px;
        width: 7vw;
        rotate: 20deg;
    }
    .dropdown-divider {
        height: 0;
        margin: 0.5rem 0;
        overflow: hidden;
        border-top: 1px solid rgba(0,0,0,.15);
    }

    .dropdown-menu {
        background-color: #fff;
        border: 1px solid rgba(0,0,0,.15);
    }
    
    .dropdown-item {
        color: #000;
    }

    
    .alert-text {
        font-size: 1.675rem;
    }

    .alert-btn {
        font-size: 1.375rem;
    }

    .lead {
        font-size: 1.25rem;
    }

    .navbar-collapse {
        text-align: left;
    }
    
    ul.dropdown-menu {
        text-align: left;
    }
    

    .fs-7 {
        font-size: 0.85rem;
    }

    .spacer {
        height: 150px;
    }

    .spacer-mobile {
        height: 0px;
    }

    .prices td {
        padding: 0.75rem;
    }

    .card-img {
        height: 22vw;
    }

  }

.image-background {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #ffeec8;
  z-index: 0;
  border-radius: var(--border-radius-md);
  box-shadow: inset 0px 0px 30px rgba(7, 7, 7, 0.09);
}
  
  @media (max-width: 768px) {
    @keyframes marquee {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-100%);
        }
      }
}

/* ===== Bento Box section ===== */
.bento-section {
  padding: 3rem 0;
}

.bento-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.bento-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #700a0a;
  margin-bottom: 0.75rem;
}

.bento-heading {
  color: #700a0a;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.bento-intro {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bento-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.bento-card--featured {
  grid-row: span 2;
}

.bento-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.bento-card--featured .bento-card__media {
  aspect-ratio: 4 / 5;
}

.bento-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bento-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.bento-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.5rem;
}

.bento-card__title {
  color: #700a0a;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.bento-card__text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.bento-card__subjects {
  margin-bottom: 1.25rem;
}

.bento-subjects-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #999;
  margin-bottom: 0.6rem;
}

.bento-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bento-pill {
  display: inline-block;
  background: #f1ece6;
  color: #333;
  font-size: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

a.bento-pill:hover {
  background: #f2a500;
  color: #fff;
}

.bento-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #700a0a;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.15s ease, color 0.15s ease;
}

.bento-cta:hover {
  color: #f2a500;
  gap: 0.65rem;
}

/* Panel card (no image) */
.bento-card--panel {
  background: #3a2225;
  border-color: #3a2225;
}

.bento-card--panel .bento-card__title {
  color: #fff;
}

.bento-card--panel .bento-card__text {
  color: rgba(255, 255, 255, 0.75);
}

.bento-card--panel .bento-cta {
  color: #f2a500;
}

.bento-card--panel .bento-cta:hover {
  color: #ffae00;
}

.bento-panel-icon {
  display: inline-flex;
  color: #f2a500;
  margin-bottom: 1.25rem;
}

/* Responsive */
@media (max-width: 991.98px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card--featured {
    grid-row: span 1;
  }
  .bento-card--featured .bento-card__media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 575.98px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Before / After slider ===== */
.ba {
  --ba-pos: 50%;
  position: relative;
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  cursor: ew-resize;
  background: #000;
}

.ba__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ba__before-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ba__before {
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}

.ba__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 2px;
  background: #fff;
  transform: translateX(-1px);
  pointer-events: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}

.ba__handle {
  position: absolute;
  top: 50%;
  left: var(--ba-pos);
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2c0513;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  cursor: ew-resize;
  touch-action: none;
}

.ba.is-dragging {
  cursor: ew-resize;
}

.ba__label {
  position: absolute;
  top: 1rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  text-transform: uppercase;
  border-radius: 4px;
  pointer-events: none;
}

.ba__label--before { left: 1rem; }
.ba__label--after { right: 1rem; }

/* ===== How it works (timeline) ===== */
.hiw {
  background: #fff;
  padding: 4rem 0 5rem;
}

/* ===== USP bar ===== */
.usp {
  padding: 1.25rem 0;
}
.usp--bg-cream { background: #f4eee2; }
.usp--bg-white { background: #fff; }
.usp--bg-transparent { background: transparent; }

.usp__list {
  display: grid;
  grid-template-columns: repeat(var(--usp-cols, 4), 1fr);
  grid-auto-columns: 1fr;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(112, 10, 10, 0.18);
  border-bottom: 1px solid rgba(112, 10, 10, 0.18);
}

.usp__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  padding: 0.25rem 1.25rem;
  color: #2c0513;
  font-size: 0.95rem;
  border-left: 1px solid rgba(112, 10, 10, 0.18);
}

.usp__item:first-child {
  border-left: none;
}

.usp__icon {
  display: inline-flex;
  color: #700a0a;
  flex-shrink: 0;
}

.usp__label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 991.98px) {
  .usp__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .usp__item:nth-child(odd) { border-left: none; }
  .usp__item:nth-child(n + 3) { border-top: 1px solid rgba(112, 10, 10, 0.18); margin-top: -1px; padding-top: 1rem; }
}

@media (max-width: 575.98px) {
  .usp__list {
    grid-template-columns: 1fr;
  }
  .usp__item {
    border-left: none !important;
    border-top: 1px solid rgba(112, 10, 10, 0.18);
    justify-content: flex-start;
  }
  .usp__item:first-child { border-top: none; }
}

/* ===== Satisfaction Guarantee banner ===== */
.guarantee-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #dfe5d6;
  padding: 2rem;
  border-radius: 4px;
}

.guarantee-banner__icon {
  flex-shrink: 0;
  color: #2c0513;
}

.guarantee-banner__content {
  flex: 1 1 auto;
  min-width: 0;
}

.guarantee-banner__heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.guarantee-banner__title {
  color: #2c0513;
  font-size: 1.4rem;
  margin: 0;
}

.guarantee-banner__rule {
  flex: 0 1 80px;
  height: 1px;
  background: rgba(44, 5, 19, 0.35);
}

.guarantee-banner__summary {
  color: #4a3a3a;
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  max-width: 640px;
}

.guarantee-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: none;
  color: #700a0a;
  font-weight: 400;
  font-size: 0.875rem;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: gap 0.15s ease, color 0.15s ease;
}

.guarantee-banner__cta svg {
  width: 14px;
  height: 14px;
}

.guarantee-banner__cta:hover,
.guarantee-banner__cta:focus {
  color: #000;
  gap: 0.5rem;
  outline: none;
}

.guarantee-banner__stamp {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  color: #2c0513;
  opacity: 0.85;
}

.guarantee-banner__stamp svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 767.98px) {
  .guarantee-banner {
    flex-wrap: wrap;
    padding: 1.5rem 1.25rem 1.5rem 1.5rem;
    gap: 1rem;
  }
  .guarantee-banner__icon svg { width: 44px; height: 44px; }
  .guarantee-banner__stamp { display: none; }
  .guarantee-banner__rule { display: none; }
  .guarantee-banner__title { font-size: 1.2rem; }
}

/* Footer link colors - burgundy instead of bootstrap blue */
.site-footer .nav-link {
  color: #222;
}
.site-footer .nav-link:hover,
.site-footer .nav-link:focus {
  color: #700a0a;
}

.hiw__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: #700a0a;
  margin-bottom: 1rem;
}

.hiw__title {
  color: #2c0513;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hiw__subtitle {
  color: #5a4a4a;
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.hiw__timeline {
  display: grid;
  grid-template-columns: repeat(var(--hiw-cols, 4), 1fr);
  gap: 1.5rem;
  position: relative;
  text-align: left;
}

.hiw__step {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 0.5rem;
}

.hiw__num {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #700a0a;
  margin-bottom: 0.4rem;
  padding-left: 2px;
}

.hiw__rail {
  position: relative;
  height: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

/* Connecting line spans full row, drawn behind dots */
.hiw__rail::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #700a0a;
  transform: translateY(-50%);
}

/* Cap line at edges of first/last cells */
.hiw__step:first-child .hiw__rail::before { left: 8px; }
.hiw__step:last-child .hiw__rail::before { right: 8px; }

.hiw__dot {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #700a0a;
}

.hiw__icon {
  color: #700a0a;
  margin-bottom: 1.25rem;
}

.hiw__step-title {
  color: #2c0513;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.hiw__step-text {
  color: #5a4a4a;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .hiw__timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
  }
  .hiw__rail::before {
    left: 0 !important;
    right: 0 !important;
  }
}

@media (max-width: 575.98px) {
  .hiw__timeline {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hiw__rail::before { display: none; }
  .hiw__step { align-items: center; }
  .hiw__rail { justify-content: center; }
  .hiw__num { padding-left: 0; }
}
}