@charset "UTF-8";
/* Queens Hive — Cottagecore Typography loaded via Google Fonts in base.html */
/* CODESTITCH STYLES, RESET, HEADER/NAVIGATION AND FOOTER */
/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
/* CodeStitch Root and Helpers */
@media only screen and (min-width: 0rem) {
  :root {
    /* Height of the free-shipping announcement bar — used to offset nav */
    --bar-height: 2rem;
    /* Bright Metallic Gold (Crown Royal Embroidery & Foil) */
    --primary: #D4AF37;
    --primaryLight: #F5D76E;
    /* Metallic Gold Gradient for Royal Feel */
    --goldGradient: linear-gradient(90deg, #997A15 0%, #D4AF37 20%, #F5D76E 45%, #F5D76E 55%, #D4AF37 80%, #997A15 100%);
    /* Deep Royal Purple (Crown Royal Velvet Bag) - Used for Footer & Accents */
    --brandPurple: #1C0D24;
    /* Very Deep Purple/Black - Brand Name, Outlines */
    --secondary: #D4AF37;
    --secondaryLight: #F5D76E;
    /* Text Colors — High Contrast on Dark Purple */
    --headerColor: #FFFFFF;
    --bodyTextColor: #F4EED8;
    --bodyTextColorWhite: #FFFFFF;
    /* Background — Dark Royal Purple (Velvet Base) */
    --background: #180D28;
    /* Accent Colors */
    --forestGreen: #FAFAFA;
    --accentLavender: #F4EED8;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
  }
  /* Website Corner Decorations */
  .site-corners {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10000;
    overflow: hidden;
  }
  .site-corners img {
    position: absolute;
    width: clamp(100px, 15vw, 180px);
    height: auto;
  }
  .site-corners .corner-tl {
    top: 0;
    left: 0;
  }
  .site-corners .corner-tr {
    top: 0;
    right: 0;
    transform: scaleX(-1);
  }
  .site-corners .corner-bl {
    bottom: 0;
    left: 0;
    transform: scaleY(-1);
  }
  .site-corners .corner-br {
    bottom: 0;
    right: 0;
    transform: scale(-1, -1);
  }
  /* Section Corner Decorations */
  .section-with-corners {
    position: relative;
  }
  .section-corners {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }
  .section-corners img {
    position: absolute;
    width: clamp(120px, 18vw, 220px);
    height: auto;
    opacity: 0.35;
    /* Subtle blend */
  }
  .section-corners .corner-tl {
    top: 0;
    left: 0;
  }
  .section-corners .corner-tr {
    top: 0;
    right: 0;
    transform: scaleX(-1);
  }
  .section-corners .corner-bl {
    bottom: 0;
    left: 0;
    transform: scaleY(-1);
  }
  .section-corners .corner-br {
    bottom: 0;
    right: 0;
    transform: scale(-1, -1);
  }
  .cs-topper {
    display: block;
    margin-bottom: 0.5rem;
    font-family: "Cinzel", serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1.2em;
    font-weight: 600;
    color: var(--primary);
    text-align: inherit;
  }
  .cs-title {
    position: relative;
    margin: 0 0 1rem 0;
    max-width: 43.75rem;
    font-size: var(--headerFontSize);
    line-height: 1.2em;
    font-weight: 400;
    font-family: "Cinzel", serif;
    color: var(--headerColor);
    text-align: inherit;
    /* Removed slant */
  }
  .cs-text {
    margin: 0;
    max-width: 40.625rem;
    width: 100%;
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    font-family: "Lora", serif;
    color: var(--bodyTextColor);
    text-align: inherit;
  }
  .cs-button-solid {
    z-index: 1;
    position: relative;
    display: inline-block;
    background-color: var(--primary);
    border-radius: 0.375rem;
    width: auto;
    white-space: nowrap;
    padding: 0 clamp(0.75rem, 3vw, 1.875rem);
    text-decoration: none;
    text-transform: none;
    /* Handwritten font doesn't need all-caps */
    font-family: "Cinzel", serif;
    font-size: clamp(1.1rem, 5vw, 1.4rem);
    line-height: 3.125em;
    font-weight: 400;
    /* Organic orientation */
    /* Removed slant */
    color: #000 !important;
    /* Force black text for contrast on gold */
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    transition-delay: 0s;
    text-align: center;
    border: none;
  }
  .cs-button-solid:hover {
    background-color: var(--primaryLight);
    transform: rotate(0deg) scale(1.05);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    color: #000 !important;
  }
  .cs-button-solid:before {
    display: none;
  }
  .cs-hide-on-mobile {
    display: none;
  }
  .cs-handwritten {
    font-family: "Cinzel", serif;
    letter-spacing: 0.05em;
    /* Optionally rotate slightly for a more organic feel */
    display: inline-block;
    /* Removed slant */
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  .cs-hide-on-mobile {
    display: block;
  }
  .cs-hide-on-desktop {
    display: none;
  }
}
/* Fonts and general styles */
@media only screen and (min-width: 0rem) {
  html {
    margin: 0;
    overflow-x: hidden;
    padding: 0;
    font-family: "Lato", Arial, sans-serif;
    font-size: 100%;
    color: var(--bodyTextColor);
    background-color: var(--background);
  }
  *,
  *:before,
  *:after {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
  }
  body {
    background-color: transparent;
  }
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("../images/noise-velvet.png");
    background-repeat: repeat;
    background-size: 256px 256px;
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
  }
  .container {
    position: relative;
    margin: auto;
    width: 92%;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    color: var(--headerColor);
    font-family: "Cinzel", serif;
    font-weight: 400;
  }
  p,
  li,
  a {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5em;
  }
  p,
  li {
    /* Ensure text correctly inherits global body color instead of hardcoded grey */
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
  #free-shipping-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
    background-color: var(--primary);
    background-image: var(--goldGradient);
    color: var(--brandPurple);
    text-align: center;
    font-family: "Cinzel", serif;
    font-size: clamp(0.72rem, 2.5vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.5rem 1rem;
    height: var(--bar-height);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: background-color 0.4s, background-image 0.4s, color 0.4s;
  }
  #free-shipping-bar strong {
    font-weight: 900;
  }
  #free-shipping-bar[data-freeship=progress] {
    background-color: #b8921e;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.05) 18%, rgba(255, 255, 255, 0.22) 36%, rgba(0, 0, 0, 0.06) 58%, rgba(255, 255, 255, 0.1) 82%, rgba(255, 255, 255, 0.16) 100%);
    border-top-color: rgba(255, 255, 255, 0.2);
    color: #fff;
  }
  #free-shipping-bar[data-freeship=qualified] {
    background-color: #2e7d32;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 22%, rgba(255, 255, 255, 0.18) 42%, rgba(0, 0, 0, 0.08) 64%, rgba(255, 255, 255, 0.08) 84%, rgba(255, 255, 255, 0.14) 100%);
    border-top-color: rgba(255, 255, 255, 0.2);
    color: #fff;
  }
  .skip {
    z-index: -1111111;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
}
/* Reset Margins */
@media only screen and (min-width: 1024px) {
  body,
  html {
    margin: 0;
    padding: 0;
  }
}
/* Scale full website with the viewport width */
@media only screen and (min-width: 3000px) {
  body,
  html {
    font-size: 0.55vw;
  }
}
/*-- -------------------------- -->
<---        Navigation          -->
<--- -------------------------- -*/
/* All screen sizes — hamburger + centered logo */
@media only screen and (min-width: 0rem) {
  body.cs-open {
    overflow: hidden;
  }
  #cs-navigation {
    z-index: 10000;
    position: fixed;
    top: var(--bar-height);
    background-color: var(--brandPurple);
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0 1rem;
    font-family: "Lato", Arial, sans-serif;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-bottom: 4px solid;
    border-image-source: var(--goldGradient);
    border-image-slice: 1;
    /* Shrunk state on scroll */
  }
  #cs-navigation::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/noise-grain.png");
    background-repeat: repeat;
    background-size: 150px 150px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
  }
  #cs-navigation .cs-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 1fr;
    align-items: stretch;
    width: 100%;
    height: 4.8rem;
    transition: height 0.4s ease;
  }
  #cs-navigation .cs-logo {
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Sits the image perfectly on the bottom */
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 12rem;
    box-sizing: border-box;
    filter: none;
  }
  #cs-navigation .cs-logo img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 4.2rem;
    /* A little smaller to fit inside 4.8rem */
    margin-bottom: 0.15rem;
    /* Tiny buffer above the bezel */
    object-fit: contain;
    transition: max-height 0.4s ease;
  }
  #cs-navigation.cs-scrolled .cs-container {
    height: 3.6rem;
  }
  #cs-navigation.cs-scrolled .cs-logo img {
    max-height: 3.1rem;
    /* Fits inside 3.6rem */
  }
  #cs-navigation .cs-toggle {
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 0.25rem;
    margin: 0;
    /* Remove any margins that might push it left */
    background-color: transparent;
    height: 2.5rem;
    width: 2.5rem;
  }
  #cs-navigation .cs-toggle .cs-line {
    background-color: var(--headerColor);
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    transform-origin: center;
  }
  #cs-navigation .cs-active .cs-line3 {
    bottom: 100%;
    opacity: 0;
  }
  #cs-navigation .cs-box {
    position: relative;
    /* 14px - 16px */
    height: clamp(0.875rem, 1.5vw, 1rem);
    /* 24px - 28px */
    width: clamp(1.5rem, 2vw, 1.75rem);
  }
  #cs-navigation .cs-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    background-color: #1a1a1a;
    height: 2px;
    width: 100%;
  }
  #cs-navigation .cs-line1 {
    top: 0;
    width: 65%;
    transform-origin: center;
    transition: transform 0.3s, top 0.3s, width 0.3s;
  }
  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    width: 75%;
    transition: transform 0.3s, bottom 0.3s, opacity 0.3s, width 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    z-index: -1;
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    background-color: var(--brandPurple);
    height: 100vh;
    width: min(78%, 26rem);
    overflow: hidden;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0s linear 0.45s;
  }
  #cs-navigation .cs-ul-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/noise-grain.png");
    background-repeat: repeat;
    background-size: 150px 150px;
    opacity: 0.08;
    pointer-events: none;
  }
  #cs-navigation .cs-ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1;
    margin: 0;
    width: 100%;
    overflow-y: auto;
    padding: 3rem 2.5rem 2rem clamp(1.75rem, 3vw, 2.5rem);
    gap: 1.25rem;
  }
  #cs-navigation .cs-li {
    opacity: 0;
    transform: translateX(-2.5rem);
    transition: transform 0.5s, opacity 0.6s;
    margin-right: 0;
    width: 100%;
    list-style: none;
    text-align: left;
  }
  #cs-navigation .cs-li-link {
    position: relative;
    display: inline-block;
    margin: 0;
    text-decoration: none;
    /* 16px - 24px */
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    line-height: 1.2em;
    color: var(--headerColor);
    font-family: "Cinzel", serif;
    font-weight: 400;
  }
  #cs-navigation .cs-li-link:before {
    position: absolute;
    bottom: -0.125rem;
    left: 0;
    /* active state underline */
    content: "";
    opacity: 1;
    display: none;
    background: currentColor;
    height: 1px;
    width: 100%;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    display: block;
  }
  #cs-navigation .cs-button-solid {
    display: none;
  }
  #cs-navigation:before {
    z-index: -11;
    position: absolute;
    top: 100%;
    left: 0;
    /* black blurred overlay */
    content: "";
    opacity: 0;
    display: block;
    background: rgba(0, 0, 0, 0.6);
    height: 100vh;
    width: 0%;
    transition: width 0.5s, opacity 0.3s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0s linear 0s;
  }
  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateX(0);
  }
  #cs-navigation.cs-active:before {
    opacity: 1;
    width: 100%;
  }
  #cs-navigation .cs-cart-button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 0.25rem;
    margin: 0;
    padding: 0;
    background-color: transparent;
    height: 2.5rem;
    width: 2.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
  }
  #cs-navigation .cs-cart-button:hover {
    background-color: rgba(212, 175, 55, 0.1);
  }
  #cs-navigation .cs-cart-icon {
    height: 1.25rem;
    width: 1.25rem;
    flex: none;
    color: var(--headerColor);
  }
  #cs-navigation .cs-cart-count {
    position: absolute;
    top: 0.05rem;
    right: 0.05rem;
    width: 1.15rem;
    height: 1.15rem;
    background: var(--primary);
    color: #110820;
    font-family: "Cinzel", serif;
    font-size: 0.58rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    pointer-events: none;
  }
  #cs-navigation .cs-nav-button-group {
    align-self: center;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/
/* All screen sizes — dropdown in drawer */
@media only screen and (min-width: 0rem) {
  #cs-navigation .cs-dropdown {
    position: relative;
    color: var(--bodyTextColorWhite);
  }
  #cs-navigation .cs-dropdown .cs-li-link {
    position: relative;
    transition: opacity 0.3s;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    margin: 0.75rem 0 0 0;
    height: auto;
    padding: 1.5rem;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
    opacity: 1;
  }
  #cs-navigation .cs-dropdown-button {
    border: none;
    background-color: transparent;
    font-family: "Cinzel", serif;
    font-weight: 400;
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    color: var(--headerColor);
    /* Dark text for light background */
    cursor: pointer;
    appearance: none;
  }
  #cs-navigation .cs-drop-icon {
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
    height: auto;
    width: 0.9375rem;
  }
  #cs-navigation .cs-drop-ul {
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0;
    background-color: var(--primary);
    height: 0;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0 1.5rem 0 1.5rem;
    transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, transform 0.3s, visibility 0.3s;
    gap: 0.75rem;
    transform-origin: top left;
  }
  #cs-navigation .cs-drop-li {
    list-style: none;
    text-align: left;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: #110820;
  }
}
/* Desktop — larger header and logo */
@media only screen and (min-width: 64rem) {
  #cs-navigation {
    padding: 0 2rem;
  }
  #cs-navigation .cs-container {
    height: 5.5rem;
  }
  #cs-navigation .cs-logo {
    max-width: 15.4rem;
  }
  #cs-navigation .cs-logo img {
    max-height: 5.06rem;
    /* Fits inside 5.5rem container */
  }
  #cs-navigation.cs-scrolled .cs-container {
    height: 3.85rem;
  }
  #cs-navigation.cs-scrolled .cs-logo img {
    max-height: 3.41rem;
    /* Fits inside 3.85rem container */
  }
}
/*-- -------------------------- -->
<---   Interior Page Header     -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #int-hero {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 35vh;
    /* Slightly taller for photo impact */
    padding-top: 3.125rem;
    border-bottom: 4px solid;
    border-image-source: var(--goldGradient);
    border-image-slice: 1;
  }
  #int-hero picture {
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  #int-hero picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #int-hero h1 {
    position: relative;
    margin: 0 auto;
    margin-top: 4.375rem;
    margin-bottom: 1.875rem;
    max-width: 50rem;
    width: 96%;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: #fff !important;
    /* Pure white text for photo background */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    text-align: center;
    font-family: "Cinzel", serif;
    font-weight: 400;
    /* Removed slant */
  }
  #int-hero p {
    display: block;
    margin: auto;
    margin-bottom: 1.875rem;
    max-width: 37.5rem;
    width: 96%;
    color: #fff !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
    font-family: "Cinzel", serif;
    font-size: 1.5rem;
  }
  #int-hero:before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.6;
    /* Semi-transparent dark overlay to let photo through */
    display: block;
    background-color: #000;
    height: 100%;
    width: 100%;
  }
}
/* Tablet */
@media only screen and (min-width: 48rem) {
  #int-hero {
    font-size: 100%;
  }
  #int-hero h1 {
    font-size: 4rem;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64rem) {
  #int-hero {
    background-attachment: fixed;
    min-height: 18.75rem;
    height: auto;
    padding-top: 11.25rem;
    font-size: inherit;
    padding-block-end: 6.25rem;
  }
}
/*-- -------------------------- -->
<---    Final Call To Action    -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #cta {
    position: relative;
    padding: clamp(3rem, 8vw, 5rem) 0;
    border-bottom: 4px solid;
    border-image-source: var(--goldGradient);
    border-image-slice: 1;
  }
  #cta .container {
    text-align: center;
  }
  #cta .title {
    margin-bottom: 2.25rem;
    font-size: min(9vw, 3.5rem);
    line-height: 1.2083333333em;
    font-weight: 400;
    font-family: "Cinzel", serif;
    color: var(--headerColor);
    text-align: center;
  }
  #cta p {
    margin: auto;
    margin-bottom: 2.25rem;
    max-width: 37.375rem;
    width: 96%;
    color: var(--headerColor);
    text-align: center;
    font-family: "Lato", Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1.5em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64rem) {
  #cta {
    padding: clamp(5rem, 8vw, 8rem) 0;
  }
}
/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #footer {
    position: relative;
    z-index: 3;
    background-color: var(--brandPurple);
    border-top: 4px solid;
    border-bottom: 4px solid;
    border-image-source: var(--goldGradient);
    border-image-slice: 1;
    padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
    font-size: min(4vw, 1.2em);
    color: var(--bodyTextColorWhite);
    position: relative;
    overflow: hidden;
  }
  #footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/noise-grain.png");
    background-repeat: repeat;
    background-size: 150px 150px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
  }
  #footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #footer .section-corners {
    overflow: visible;
  }
  #footer .left-section {
    margin: auto;
    margin-bottom: 0;
    padding-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
  }
  #footer .left-section .logo {
    display: inline-block;
    margin: auto;
    margin-bottom: 1.5rem;
    height: 4rem;
    width: auto;
    text-align: center;
    /* Make logo white for dark background */
    filter: none;
  }
  #footer .left-section .logo img {
    display: block;
    height: 100%;
    width: auto;
  }
  #footer .left-section p {
    opacity: 0.9;
    margin: auto;
    width: 100%;
    font-size: 1.1rem;
    line-height: 1.6em;
    color: var(--bodyTextColorWhite);
    text-align: center;
    font-family: "Lato", sans-serif;
  }
  #footer .right-section {
    margin: auto;
    max-width: 25.4375rem;
    width: 96%;
    padding-top: 1.5rem;
    position: relative;
    z-index: 10;
  }
  #footer .right-section .lists {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem 1rem;
    margin: auto;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  #footer .right-section .lists ul {
    margin-top: 0;
    margin-bottom: 2rem;
    padding: 0;
  }
  #footer .right-section .lists ul li {
    opacity: 0.9;
    margin-bottom: 0.75rem;
    list-style: none;
    font-size: 1rem;
    color: var(--bodyTextColorWhite);
  }
  #footer .right-section .lists ul li a {
    text-decoration: none;
    line-height: 1.5em;
    color: var(--bodyTextColorWhite);
    font-family: "Cinzel", serif;
    font-size: 1.3rem;
    transition: color 0.3s;
  }
  #footer .right-section .lists ul li a:hover {
    color: var(--primary);
  }
  #footer .right-section .lists ul h2 {
    position: relative;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    line-height: 1.2em;
    font-family: "Cinzel", serif;
    font-weight: bold;
    color: var(--primary);
  }
  #footer .right-section .lists ul h2:before {
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    opacity: 1;
    display: block;
    background: var(--primary);
    height: 2px;
    width: 2rem;
  }
  #footer .right-section .lists ul:nth-of-type(3) {
    margin-top: 0;
  }
  #footer .right-section .lists ul:nth-of-type(3) li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
  }
  #footer .right-section .lists ul:nth-of-type(3) li:last-of-type {
    margin-bottom: 0;
  }
  #footer .right-section .buttons {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
  #footer .right-section .cs-button-solid {
    margin: 0;
    width: auto;
    padding: 0 2rem;
  }
  #footer .footer-divider {
    border: none;
    border-top: 1px solid rgba(244, 240, 230, 0.15);
    width: 60%;
    margin: 0;
    padding: 0;
    align-self: center;
  }
  #footer .credit {
    margin: auto;
    margin-top: 2.5rem;
    width: 96%;
    font-size: 0.9rem;
    line-height: 1.5em;
    color: var(--bodyTextColorWhite);
    text-align: center;
    border-top: 1px solid rgba(244, 240, 230, 0.1);
    padding-top: 2rem;
  }
  #footer .credit a {
    text-decoration: none;
    color: var(--primary);
  }
  #footer .credit a:hover {
    text-decoration: underline;
  }
  #footer .credit .copyright {
    display: block;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64rem) {
  #footer {
    font-size: min(1.2vw, 1em);
  }
  #footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    max-width: 1600px;
    width: 100%;
    padding: 0 2rem;
    gap: 1.5rem;
  }
  #footer .left-section {
    margin: 0;
    margin-bottom: 0;
    width: 100%;
    max-width: 560px;
    text-align: center;
  }
  #footer .left-section .logo {
    margin-left: auto;
    margin-right: auto;
    height: 5rem;
    text-align: center;
  }
  #footer .left-section p {
    text-align: center;
  }
  #footer .right-section {
    margin: 0;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #footer .right-section .lists {
    margin: 0;
    width: 100%;
    max-width: 800px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  #footer .right-section .lists ul {
    text-align: center;
  }
  #footer .right-section .lists ul h2::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  #footer .right-section .buttons {
    justify-content: center;
    width: 100%;
  }
  #footer .credit .copyright {
    display: inline-block;
  }
}
