/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #hero-1950 {
    min-height: 100dvh;
    padding: clamp(12.5rem, 12vw, 18.75rem) 1rem clamp(3.75rem, 8vw, 6.25rem)
      1rem;
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 1;
  }
  #hero-1950 .cs-container {
    width: 100%;
    max-width: 85.5625rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: clamp(3.75rem, 13vw, 11.25rem);
  }
  #hero-1950 .cs-content {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #hero-1950 .cs-title {
    font-family: var(--headerFont);
    font-size: clamp(2.4375rem, 5vw, 3.8125rem);
    margin-bottom: 1.75rem;
    color: #fff;
  }
  #hero-1950 .cs-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 1.25rem;
    color: #fff;
    opacity: 0.85;
  }
  #hero-1950 .cs-flex-group {
    max-width: 30rem;
  }
  #hero-1950 .cs-button-solid {
    font-family: var(--bodyFont);
    font-size: 1rem;
    font-weight: 700;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
    padding: 0 clamp(2rem, 4vw, 3rem);
    background-color: var(--primary);
    color: #fff;
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.3s;
  }
  #hero-1950 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: var(--dark);
    opacity: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #hero-1950 .cs-button-solid:hover:before {
    width: 100%;
  }
  #hero-1950 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #hero-1950 .cs-background:before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgba(28, 26, 23, 0.92) 8%,
      rgba(28, 26, 23, 0.15) 45%,
      rgba(28, 26, 23, 0.88) 85%
    );
    pointer-events: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #hero-1950 .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media only screen and (min-width: 48rem) {
  #hero-1950 .cs-content {
    text-align: left;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 2rem;
  }
  #hero-1950 .cs-title {
    width: 55%;
    max-width: 39.375rem;
    margin-bottom: 0;
    flex: none;
  }
  #hero-1950 .cs-flex-group {
    max-width: 30rem;
  }
}
@media only screen and (min-width: 100rem) {
  #hero-1950 .cs-background {
    background: url("../assets/images/hero-campfire-mug.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  #hero-1950 .cs-background img {
    display: none;
  }
}

/*-- -------------------------- -->
<---        Stats Bar           -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #stats-bar {
    background-color: var(--dark);
    padding: clamp(2rem, 4vw, 3rem) 1rem;
    position: relative;
    z-index: 2;
  }
  #stats-bar .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  #stats-bar .cs-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 8rem;
    padding: 0.5rem 1rem;
  }
  #stats-bar .cs-stat-number {
    font-family: var(--headerFont);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--accent);
    line-height: 1.2;
  }
  #stats-bar .cs-stat-label {
    font-family: var(--bodyFont);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--bodyTextColorWhite);
    opacity: 0.7;
    margin-top: 0.25rem;
  }
  #stats-bar .cs-stat-divider {
    display: none;
  }
}
@media only screen and (min-width: 48rem) {
  #stats-bar .cs-container {
    flex-wrap: nowrap;
    gap: 0;
  }
  #stats-bar .cs-stat {
    flex: 1;
  }
  #stats-bar .cs-stat-divider {
    display: block;
    width: 1px;
    height: 3rem;
    background: rgba(245, 240, 232, 0.15);
    flex-shrink: 0;
  }
}

/*-- -------------------------- -->
<---       About / Story        -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #about {
    padding: var(--sectionPadding);
    overflow: hidden;
    background-color: var(--white);
  }
  #about .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 4rem);
  }
  #about .cs-image-group {
    width: 100%;
    max-width: 33rem;
    margin-inline: auto;
    position: relative;
  }
  #about .cs-picture {
    display: block;
    overflow: hidden;
    border-radius: 0.5rem;
  }
  #about .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #about .cs-picture-large {
    width: 100%;
    aspect-ratio: 1/1;
  }
  #about .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);
  }
  #about .cs-badge {
    width: 5.5rem;
    height: 5.5rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -1rem;
    right: -0.5rem;
    box-shadow: 0 4px 20px rgba(192, 88, 46, 0.4);
  }
  #about .cs-badge-number {
    font-family: var(--headerFont);
    font-size: 1.75rem;
    color: #fff;
    line-height: 1;
  }
  #about .cs-badge-text {
    font-family: var(--bodyFont);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    line-height: 1.3;
  }
  #about .cs-content {
    width: 100%;
    max-width: 33rem;
    margin-inline: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #about .cs-button-outline {
    font-family: var(--bodyFont);
    font-size: 1rem;
    font-weight: 700;
    line-height: 3rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2rem;
    padding: 0 2rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    transition:
      background-color 0.3s,
      color 0.3s;
  }
  #about .cs-button-outline:hover {
    background-color: var(--primary);
    color: #fff;
  }
}
@media only screen and (min-width: 64rem) {
  #about .cs-container {
    flex-direction: row;
    align-items: center;
  }
  #about .cs-image-group {
    width: 50%;
    max-width: 38rem;
    flex: none;
  }
  #about .cs-content {
    width: 50%;
    max-width: none;
  }
  #about .cs-picture-large {
    aspect-ratio: auto;
    height: 32rem;
  }
}

/*-- -------------------------- -->
<---      Menu Highlights       -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #menu {
    padding: var(--sectionPadding);
    background-color: var(--cream);
    position: relative;
  }
  /* Subtle texture overlay */
  #menu: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;
  }
  #menu .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  #menu .cs-content {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #menu .cs-menu-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  #menu .cs-menu-card {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition:
      transform 0.3s,
      box-shadow 0.3s;
  }
  #menu .cs-menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  #menu .cs-menu-picture {
    width: 100%;
    aspect-ratio: 16/10;
    display: block;
    overflow: hidden;
  }
  #menu .cs-menu-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  #menu .cs-menu-card:hover .cs-menu-picture img {
    transform: scale(1.06);
  }
  #menu .cs-menu-info {
    padding: 1.25rem 1.5rem 1.5rem;
  }
  #menu .cs-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }
  #menu .cs-menu-name {
    font-family: var(--headerFont);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--headerColor);
    margin: 0;
  }
  #menu .cs-menu-price {
    font-family: var(--bodyFont);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
  }
  #menu .cs-menu-desc {
    font-family: var(--bodyFont);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--bodyTextColor);
    margin: 0;
  }
  #menu .cs-menu-button {
    font-family: var(--bodyFont);
    font-size: 1rem;
    font-weight: 700;
    line-height: 3.25rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: clamp(2rem, 4vw, 3rem);
    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;
  }
  #menu .cs-menu-button:before {
    content: "";
    width: 0%;
    height: 100%;
    background: var(--dark);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #menu .cs-menu-button:hover:before {
    width: 100%;
  }
}
@media only screen and (min-width: 36rem) {
  #menu .cs-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 64rem) {
  #menu .cs-menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*-- -------------------------- -->
<---      Parallax Divider      -->
<--- -------------------------- -*/
@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.75);
    z-index: -1;
  }
  #parallax-cta:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url("../assets/images/parallax-coffee.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: 2rem;
  }
  #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;
  }
}

/*-- -------------------------- -->
<---        Testimonials        -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #reviews {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #reviews .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
  }
  #reviews .cs-content {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #reviews .cs-review-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  #reviews .cs-review-card {
    background: var(--cream);
    border-radius: 0.5rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--creamDark);
    transition: transform 0.3s;
  }
  #reviews .cs-review-card:hover {
    transform: translateY(-2px);
  }
  #reviews .cs-review-stars {
    font-size: 1.25rem;
    color: var(--accent);
    letter-spacing: 0.15em;
  }
  #reviews .cs-review-text {
    font-family: var(--bodyFont);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--bodyTextColor);
    margin: 0;
    font-style: italic;
  }
  #reviews .cs-review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.5rem;
  }
  #reviews .cs-review-avatar {
    width: 2.75rem;
    height: 2.75rem;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--headerFont);
    font-size: 1.125rem;
    flex-shrink: 0;
  }
  #reviews .cs-review-name {
    font-family: var(--bodyFont);
    font-size: 1rem;
    font-weight: 700;
    color: var(--headerColor);
    display: block;
  }
  #reviews .cs-review-role {
    font-family: var(--bodyFont);
    font-size: 0.8125rem;
    color: var(--bodyTextColor);
    opacity: 0.7;
    display: block;
    margin-top: 0.125rem;
  }
}
@media only screen and (min-width: 48rem) {
  #reviews .cs-review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*-- -------------------------- -->
<---     Location & Hours       -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #contact {
    padding: var(--sectionPadding);
    background-color: var(--cream);
    overflow: hidden;
  }
  #contact .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 4rem);
  }
  #contact .cs-content {
    width: 100%;
    max-width: 33rem;
    margin-inline: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #contact .cs-info-group {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  #contact .cs-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  #contact .cs-info-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  #contact .cs-info-icon svg {
    width: 1.125rem;
    height: 1.125rem;
  }
  #contact .cs-info-title {
    font-family: var(--bodyFont);
    font-size: 1rem;
    font-weight: 700;
    color: var(--headerColor);
    margin: 0 0 0.25rem 0;
  }
  #contact .cs-info-text {
    font-family: var(--bodyFont);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--bodyTextColor);
    margin: 0;
  }
  #contact .cs-map-wrapper {
    width: 100%;
    max-width: 40rem;
    margin-inline: auto;
  }
  #contact .cs-map-picture {
    width: 100%;
    aspect-ratio: 4/3;
    display: block;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }
  #contact .cs-map-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media only screen and (min-width: 64rem) {
  #contact .cs-container {
    flex-direction: row;
    align-items: center;
  }
  #contact .cs-content {
    width: 50%;
    max-width: none;
    flex: none;
  }
  #contact .cs-map-wrapper {
    width: 50%;
    max-width: none;
  }
  #contact .cs-map-picture {
    aspect-ratio: auto;
    height: 28rem;
  }
}
