/*-- -------------------------- -->
<---           Pitch            -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #pitch {
    padding: var(--sectionPadding);
    overflow: hidden;
    background-color: var(--white);
  }
  #pitch .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 4rem);
  }
  #pitch .cs-image-group {
    width: 100%;
    max-width: 33rem;
    margin-inline: auto;
    position: relative;
  }
  #pitch .cs-picture {
    display: block;
    overflow: hidden;
    border-radius: 0.5rem;
  }
  #pitch .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #pitch .cs-picture-large {
    width: 100%;
    aspect-ratio: 1/1;
  }
  #pitch .cs-picture-small {
    width: 55%;
    max-width: 16rem;
    aspect-ratio: 7/8;
    position: absolute;
    bottom: -1.5rem;
    right: -1rem;
    border: 5px solid var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }
  #pitch .cs-content {
    width: 100%;
    max-width: 33rem;
    margin-inline: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #pitch .cs-pitch-list {
    list-style: none;
    margin: 1.5rem 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }
  #pitch .cs-pitch-item {
    font-family: var(--bodyFont);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--bodyTextColor);
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
  }
  #pitch .cs-pitch-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.0625rem;
  }
}
@media only screen and (min-width: 64rem) {
  #pitch .cs-container {
    flex-direction: row;
    align-items: center;
  }
  #pitch .cs-image-group {
    width: 50%;
    max-width: 38rem;
    flex: none;
  }
  #pitch .cs-content {
    width: 50%;
    max-width: none;
  }
  #pitch .cs-picture-large {
    aspect-ratio: auto;
    height: 34rem;
  }
}

/*-- -------------------------- -->
<---         Packages           -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #packages {
    padding: var(--sectionPadding);
    background-color: var(--cream);
    position: relative;
  }
  #packages:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231c1a17' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }
  #packages .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  #packages .cs-content {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #packages .cs-packages {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 30rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  #packages .cs-package {
    background: var(--white);
    border-radius: 0.5rem;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--primary);
    display: flex;
    flex-direction: column;
    position: relative;
    transition:
      transform 0.3s,
      box-shadow 0.3s;
  }
  #packages .cs-package:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }
  #packages .cs-package--featured {
    background: var(--dark);
    border-top-color: var(--accent);
    box-shadow: 0 8px 30px rgba(28, 26, 23, 0.25);
  }
  #packages .cs-package-flag {
    position: absolute;
    top: -0.875rem;
    right: 1.5rem;
    background: var(--accent);
    color: var(--dark);
    font-family: var(--bodyFont);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
  }
  #packages .cs-package-header {
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--creamDark);
  }
  #packages .cs-package--featured .cs-package-header {
    border-bottom-color: rgba(245, 240, 232, 0.15);
  }
  #packages .cs-package-tier {
    font-family: var(--bodyFont);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
  }
  #packages .cs-package--featured .cs-package-tier {
    color: var(--accent);
  }
  #packages .cs-package-name {
    font-family: var(--headerFont);
    font-size: clamp(1.625rem, 2.5vw, 1.875rem);
    font-weight: 400;
    color: var(--headerColor);
    margin: 0 0 0.25rem 0;
  }
  #packages .cs-package--featured .cs-package-name {
    color: var(--bodyTextColorWhite);
  }
  #packages .cs-package-size {
    font-family: var(--bodyFont);
    font-size: 0.875rem;
    color: var(--bodyTextColor);
    display: block;
  }
  #packages .cs-package--featured .cs-package-size {
    color: rgba(245, 240, 232, 0.7);
  }
  #packages .cs-package-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex: 1;
  }
  #packages .cs-package-features li {
    font-family: var(--bodyFont);
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--bodyTextColor);
    padding-left: 1.5rem;
    position: relative;
  }
  #packages .cs-package-features li:before {
    content: "";
    width: 0.875rem;
    height: 0.875rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c0582e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0.4rem;
  }
  #packages .cs-package--featured .cs-package-features li {
    color: rgba(245, 240, 232, 0.85);
  }
  #packages .cs-package--featured .cs-package-features li:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4a24e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  }
  #packages .cs-package-cta {
    display: flex;
    flex-direction: column;
    padding-top: 1.25rem;
    border-top: 1px solid var(--creamDark);
  }
  #packages .cs-package--featured .cs-package-cta {
    border-top-color: rgba(245, 240, 232, 0.15);
  }
  #packages .cs-package-from {
    font-family: var(--bodyFont);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bodyTextColor);
    opacity: 0.7;
    margin-bottom: 0.125rem;
  }
  #packages .cs-package--featured .cs-package-from {
    color: rgba(245, 240, 232, 0.6);
  }
  #packages .cs-package-price {
    font-family: var(--headerFont);
    font-size: 2rem;
    color: var(--headerColor);
    line-height: 1;
  }
  #packages .cs-package--featured .cs-package-price {
    color: var(--accent);
  }
  #packages .cs-package-note {
    font-family: var(--bodyFont);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--bodyTextColor);
    text-align: center;
    margin: clamp(2rem, 4vw, 2.5rem) auto 0;
    max-width: 38rem;
  }
  #packages .cs-package-note a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
  }
  #packages .cs-package-note a:hover {
    color: var(--primaryDark);
    border-color: var(--primaryDark);
  }
}
@media only screen and (min-width: 64rem) {
  #packages .cs-packages {
    max-width: none;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
  #packages .cs-package--featured {
    transform: translateY(-1rem);
  }
  #packages .cs-package--featured:hover {
    transform: translateY(-1.5rem);
  }
}

/*-- -------------------------- -->
<---          Process           -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #process {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #process .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #process .cs-content {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #process .cs-process {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  #process .cs-step {
    background: var(--cream);
    border-radius: 0.5rem;
    padding: clamp(1.75rem, 3vw, 2.25rem);
    position: relative;
    transition:
      transform 0.3s,
      background-color 0.3s;
  }
  #process .cs-step:hover {
    transform: translateY(-4px);
    background-color: var(--creamDark);
  }
  #process .cs-step-number {
    font-family: var(--headerFont);
    font-size: 2.75rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.875rem;
    display: block;
  }
  #process .cs-step-title {
    font-family: var(--headerFont);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--headerColor);
    margin: 0 0 0.625rem 0;
  }
  #process .cs-step-text {
    font-family: var(--bodyFont);
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--bodyTextColor);
    margin: 0;
  }
}
@media only screen and (min-width: 48rem) {
  #process .cs-process {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 64rem) {
  #process .cs-process {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

/*-- -------------------------- -->
<---       Quote / CTA          -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #parallax-cta {
    padding: clamp(7.5rem, 15vw, 12.5rem) 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  #parallax-cta:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(28, 26, 23, 0.78);
    z-index: -1;
  }
  #parallax-cta:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url("../assets/images/parallax-warm.jpg") center/cover no-repeat;
    background-attachment: fixed;
  }
  #parallax-cta .cs-container {
    width: 100%;
    max-width: 50rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #parallax-cta .cs-topper {
    color: var(--accent);
  }
  #parallax-cta .cs-title {
    font-family: var(--headerFont);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    text-align: center;
    margin-bottom: 1.25rem;
  }
  #parallax-cta .cs-text {
    font-family: var(--bodyFont);
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 36rem;
  }
  #parallax-cta .cs-button-solid {
    font-family: var(--bodyFont);
    font-size: 1rem;
    font-weight: 700;
    line-height: 3.25rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 2.5rem;
    background-color: var(--primary);
    color: #fff;
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.3s;
  }
  #parallax-cta .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: var(--secondary);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #parallax-cta .cs-button-solid:hover:before {
    width: 100%;
  }
}
@supports not (background-attachment: fixed) {
  #parallax-cta:after {
    background-attachment: scroll;
  }
}
