/*-- -------------------------- -->
<---      Contact Form + Info   -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #contact-main {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #contact-main .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 4rem);
  }
  #contact-main .cs-form-wrapper {
    width: 100%;
  }
  #contact-main .cs-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  /* Form */
  .cs-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .cs-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .cs-contact-form .cs-form-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .cs-contact-form .cs-form-field {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .cs-contact-form .cs-form-label {
    font-family: var(--bodyFont);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--headerColor);
    margin-bottom: 0.5rem;
  }
  .cs-contact-form input,
  .cs-contact-form select,
  .cs-contact-form textarea {
    width: 100%;
    font-family: var(--bodyFont);
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.875rem 1rem;
    border: 1px solid var(--creamDark);
    border-radius: 0.375rem;
    background: var(--cream);
    color: var(--headerColor);
    box-sizing: border-box;
    transition:
      border-color 0.2s,
      background-color 0.2s,
      box-shadow 0.2s;
  }
  .cs-contact-form input:focus,
  .cs-contact-form select:focus,
  .cs-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(192, 88, 46, 0.15);
  }
  .cs-contact-form input::placeholder,
  .cs-contact-form textarea::placeholder {
    color: var(--bodyTextColor);
    opacity: 0.45;
  }
  .cs-contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c0582e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
  }
  .cs-contact-form textarea {
    min-height: 10rem;
    resize: vertical;
    font-family: var(--bodyFont);
  }
  .cs-contact-form .cs-submit {
    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;
    margin-top: 0.75rem;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    align-self: flex-start;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.3s;
  }
  .cs-contact-form .cs-submit:before {
    content: "";
    width: 0%;
    height: 100%;
    background: var(--dark);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  .cs-contact-form .cs-submit:hover:before {
    width: 100%;
  }

  /* Info aside */
  #contact-main .cs-info-wrapper {
    width: 100%;
  }
  #contact-main .cs-info-card {
    background: var(--cream);
    border-radius: 0.5rem;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border: 1px solid var(--creamDark);
  }
  #contact-main .cs-info-heading {
    font-family: var(--headerFont);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--headerColor);
    margin: 0 0 0.5rem 0;
  }
  #contact-main .cs-info-intro {
    font-family: var(--bodyFont);
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--bodyTextColor);
    margin: 0 0 1.75rem 0;
  }
  #contact-main .cs-info-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  #contact-main .cs-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  #contact-main .cs-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  #contact-main .cs-info-icon svg {
    width: 1.125rem;
    height: 1.125rem;
  }
  #contact-main .cs-info-title {
    font-family: var(--bodyFont);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--headerColor);
    margin: 0 0 0.25rem 0;
  }
  #contact-main .cs-info-text {
    font-family: var(--bodyFont);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--bodyTextColor);
    margin: 0;
  }
  #contact-main .cs-info-link {
    color: var(--bodyTextColor);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition:
      color 0.2s,
      border-color 0.2s;
  }
  #contact-main .cs-info-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
  }
  #contact-main .cs-info-social {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--creamDark);
  }
  #contact-main .cs-info-social .cs-info-title {
    margin-bottom: 0.75rem;
  }
  #contact-main .cs-social-group {
    display: flex;
    gap: 0.625rem;
  }
  #contact-main .cs-social-link {
    width: 2.25rem;
    height: 2.25rem;
    background: var(--white);
    border: 1px solid var(--creamDark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bodyTextColor);
    text-decoration: none;
    transition:
      background-color 0.3s,
      color 0.3s,
      border-color 0.3s;
  }
  #contact-main .cs-social-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
  }
}
@media only screen and (min-width: 48rem) {
  .cs-contact-form .cs-form-row {
    flex-direction: row;
  }
}
@media only screen and (min-width: 64rem) {
  #contact-main .cs-container {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(3rem, 5vw, 5rem);
  }
  #contact-main .cs-form-wrapper {
    flex: 1;
    max-width: 40rem;
  }
  #contact-main .cs-info-wrapper {
    width: 24rem;
    flex: none;
    position: sticky;
    top: 7.5rem;
  }
}

/*-- -------------------------- -->
<---            Map             -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #map-section {
    background-color: var(--cream);
    position: relative;
  }
  #map-section .cs-map-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    max-height: 32rem;
    min-height: 20rem;
    overflow: hidden;
    position: relative;
  }
  #map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.15) contrast(0.95);
  }
}
@media only screen and (min-width: 48rem) {
  #map-section .cs-map-wrapper {
    aspect-ratio: 21 / 7;
    max-height: 28rem;
  }
}

/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #faq {
    padding: var(--sectionPadding);
    background-color: var(--cream);
  }
  #faq .cs-container {
    width: 100%;
    max-width: 52rem;
    margin: 0 auto;
  }
  #faq .cs-content {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #faq .cs-faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }
  #faq .cs-faq-item {
    background: var(--white);
    border: 1px solid var(--creamDark);
    border-radius: 0.5rem;
    overflow: hidden;
    transition:
      box-shadow 0.2s,
      border-color 0.2s;
  }
  #faq .cs-faq-item[open] {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-color: transparent;
  }
  #faq .cs-faq-question {
    font-family: var(--headerFont);
    font-size: clamp(1.0625rem, 2vw, 1.1875rem);
    font-weight: 400;
    color: var(--headerColor);
    padding: 1.125rem 1.5rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s;
  }
  #faq .cs-faq-question::-webkit-details-marker {
    display: none;
  }
  #faq .cs-faq-question:hover {
    color: var(--primary);
  }
  #faq .cs-faq-question::after {
    content: "";
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    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='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.25s;
  }
  #faq .cs-faq-item[open] .cs-faq-question::after {
    transform: rotate(45deg);
  }
  #faq .cs-faq-answer {
    padding: 0 1.5rem 1.375rem;
  }
  #faq .cs-faq-answer p {
    font-family: var(--bodyFont);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--bodyTextColor);
    margin: 0;
  }
}
