@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 {
    /* Honey Gold — buttons, highlights, the bee */
    --primary: #E5A93A;
    --primaryLight: #f5c967;
    /* Metallic Gold Gradient */
    --goldGradient: linear-gradient(90deg, #8A6623 0%, #E5A93A 20%, #F9E49F 45%, #F9E49F 55%, #E5A93A 80%, #8A6623 100%);
    /* Brand Blue — used for decorative strips and dark sections */
    --brandBlue: #1B2B3A;
    /* Rich Earth Brown — brand name, dark outlines */
    --secondary: #4A3525;
    --secondaryLight: #6B4E38;
    /* Rich Earth Brown — headings and body dark text */
    --headerColor: #4A3525;
    --bodyTextColor: #5C4A38;
    --bodyTextColorWhite: #fafbfc;
    /* Background — textured cream */
    --background: #F4F0E6;
    /* Forest Green — headers, accents */
    --forestGreen: #2D4A22;
    /* Soft Lavender — delicate accents */
    --accentLavender: #9B84AD;
    /* 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;
  }
  .cs-topper {
    display: block;
    margin-bottom: 0.5rem;
    font-family: "Fraunces", serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1.2em;
    font-weight: 700;
    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: "Caveat Brush", cursive;
    color: var(--headerColor);
    text-align: inherit;
    transform: rotate(-1deg);
  }
  .cs-text {
    margin: 0;
    max-width: 40.625rem;
    width: 100%;
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    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: "Caveat Brush", cursive;
    font-size: clamp(1.1rem, 5vw, 1.4rem);
    line-height: 3.125em;
    font-weight: 400;
    /* Organic orientation */
    transform: rotate(-1.5deg);
    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;
    /* Vary rotation for "random" unique look */
  }
  .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-button-solid:nth-of-type(2n) {
    transform: rotate(1.2deg);
  }
  .cs-button-solid:nth-of-type(3n) {
    transform: rotate(-2.2deg);
  }
  .cs-button-solid:nth-of-type(4n) {
    transform: rotate(1.8deg);
  }
  .cs-button-solid:nth-of-type(5n) {
    transform: rotate(-1.2deg);
  }
  .cs-hide-on-mobile {
    display: none;
  }
  .cs-handwritten {
    font-family: "Caveat Brush", cursive;
    letter-spacing: 0.05em;
    /* Optionally rotate slightly for a more organic feel */
    display: inline-block;
    transform: rotate(-2deg);
  }
}
/* 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) {
  body,
  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: var(--background);
    /* Subtle paper/fibrous texture via SVG data URI */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.04' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.1 0'/%3E%3C/filter%3E%3Crect width='400' height='400' fill='%23F4F0E6'/%3E%3Crect width='400' height='400' filter='url(%23a)'/%3E%3C/svg%3E");
    background-blend-mode: multiply;
    transition: background-color 0.3s;
  }
  .container {
    position: relative;
    margin: auto;
    width: 92%;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    color: var(--headerColor);
    font-family: "Caveat Brush", cursive;
    font-weight: 400;
  }
  p,
  li,
  a {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5em;
  }
  p,
  li {
    color: #353535;
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
  .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;
  }
}
/*-- -------------------------- -->
<---      Dark Mode Toggle      -->
<--- -------------------------- -*/
/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
    overflow: hidden;
  }
  #cs-navigation {
    z-index: 10000;
    position: fixed;
    background-color: var(--brandBlue);
    /* Sandpaper grain texture */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    background-blend-mode: overlay;
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0.5rem 1rem;
    /* Greatly reduced from 12px */
    /* remove the font family so the Stitch inherits the fonts from your global stylesheet */
    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;
  }
  #cs-navigation .cs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 3.5rem;
  }
  #cs-navigation .cs-logo {
    z-index: 10;
    display: flex;
    justify-content: flex-start;
    /* Ensure logo is left */
    align-items: center;
    margin: 0;
    height: 2.5rem;
    max-width: 9.125rem;
    width: auto;
    box-sizing: border-box;
    padding: 0;
    filter: brightness(0) invert(1);
  }
  #cs-navigation .cs-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: left;
  }
  #cs-navigation .cs-toggle {
    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: #fff;
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    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;
    transform-origin: center;
  }
  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
  }
  #cs-navigation .cs-ul-wrapper {
    z-index: -1;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: scaleX(0);
    background-color: var(--brandBlue);
    /* Sandpaper grain texture for mobile menu */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    background-blend-mode: overlay;
    height: 100vh;
    overflow: hidden;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    transform-origin: top right;
  }
  #cs-navigation .cs-ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 0;
    height: 65vh;
    min-width: 40%;
    width: auto;
    overflow: scroll;
    /* 28px - 40px */
    padding: 3rem clamp(1.75rem, 3vw, 2.5rem) 2rem 4.375rem;
    gap: 1.25rem;
  }
  #cs-navigation .cs-li {
    opacity: 0;
    /* transition from these values */
    transform: translateX(-2.5rem);
    margin-right: 0;
    width: 100%;
    list-style: none;
    text-align: right;
  }
  #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);
    /* Slightly larger for handwriting */
    line-height: 1.2em;
    color: var(--background);
    /* Light color for dark background */
    font-family: "Caveat Brush", cursive;
    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%;
    right: 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: scaleX(1);
    transition-delay: 0.2s;
  }
  #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: none;
  }
  #cs-navigation .cs-nav-button-group {
    display: none;
  }
}
/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  #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: "Caveat Brush", cursive;
    font-weight: 400;
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    color: var(--background);
    /* Light color */
    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-end;
    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 right;
  }
  #cs-navigation .cs-drop-li {
    list-style: none;
    text-align: inherit;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: #fff;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-dropdown {
    position: relative;
  }
  #cs-navigation .cs-dropdown.cs-active, #cs-navigation .cs-dropdown:hover {
    cursor: pointer;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul, #cs-navigation .cs-dropdown:hover .cs-drop-ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-li, #cs-navigation .cs-dropdown:hover .cs-drop-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-dropdown-button {
    border: none;
    background-color: transparent;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    appearance: none;
  }
  #cs-navigation .cs-drop-icon {
    display: inline-block;
    height: auto;
    width: 0.9375rem;
  }
  #cs-navigation .cs-drop-ul {
    z-index: -100;
    /* if you have 8 or more links in your dropdown nav, uncomment the columns property to make the list into 2 even columns. Change it to 3 or 4 if you need extra columns. Then remove the transition delays on the cs-drop-li so they don't have weird scattered animations */
    position: absolute;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0);
    border-bottom: 5px solid var(--primary);
    margin: 0;
    background-color: var(--background);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.04' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.1 0'/%3E%3C/filter%3E%3Crect width='400' height='400' fill='%23F4F0E6'/%3E%3Crect width='400' height='400' filter='url(%23a)'/%3E%3C/svg%3E");
    background-blend-mode: multiply;
    min-width: 12.5rem;
    overflow: hidden;
    padding: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 10px 16px;
    transform-origin: top;
  }
  #cs-navigation .cs-drop-li {
    opacity: 0;
    transform: translateY(-0.625rem);
    display: block;
    height: auto;
    width: 100%;
    list-style: none;
    text-decoration: none;
    font-size: 1rem;
    color: var(--bodyTextColor);
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    display: block;
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0.75rem;
    white-space: nowrap;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
  }
  #cs-navigation .cs-li-link.cs-drop-link:hover {
    background-color: #f7f7f7;
  }
  #cs-navigation .cs-li-link.cs-drop-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -4px;
  }
  #cs-navigation .cs-li-link.cs-drop-link:before {
    display: none;
  }
}
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation {
    z-index: 10000;
    position: fixed;
    background-color: var(--brandBlue);
    /* Sandpaper grain texture */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    background-blend-mode: overlay;
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0 1rem;
    /* remove the font family so the Stitch inherits the fonts from your global stylesheet */
    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;
    /* Group the buttons on the right column */
  }
  #cs-navigation .cs-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    /* 3 columns for perfect centering */
    align-items: center;
    margin: auto;
    max-width: 1600px;
    width: 100%;
    gap: 1.5rem;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-logo {
    z-index: 100;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    height: 4.0625rem;
    max-width: 21.875rem;
    width: auto;
    padding: 0;
    /* White logo for dark nav */
    filter: brightness(0) invert(1);
  }
  #cs-navigation .cs-logo img {
    height: 100%;
    width: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }
  #cs-navigation .cs-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 2;
    /* Center column */
  }
  #cs-navigation .cs-nav-button-group {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    flex: 1;
    /* Right column */
  }
  #cs-navigation .cs-ul {
    display: flex;
    justify-content: center;
    /* Center the links */
    align-items: center;
    margin: 0;
    width: auto;
    padding: 0;
    /* 20px - 36px */
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
  }
  #cs-navigation .cs-li {
    padding: 2rem 0;
    list-style: none;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #cs-navigation .cs-li-link {
    position: relative;
    display: block;
    margin: 0;
    text-decoration: none;
    font-family: "Caveat Brush", cursive;
    font-weight: 400;
    /* 14px - 16px */
    font-size: clamp(1.1rem, 1.2vw, 1.25rem);
    line-height: 1.5em;
    color: var(--background);
    /* Light text */
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }
  #cs-navigation .cs-li-link:hover:before {
    width: 100%;
  }
  #cs-navigation .cs-li-link:before {
    position: absolute;
    bottom: 0rem;
    left: 0;
    /* active state underline */
    content: "";
    opacity: 1;
    display: block;
    background: var(--primary);
    height: 2px;
    width: 0%;
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
  }
  #cs-navigation .cs-li-link.cs-active:before {
    width: 100%;
  }
  #cs-navigation .cs-cart-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.375rem;
    border: none;
    border-radius: 0.25rem;
    margin: 0;
    padding: 0 1rem;
    background-color: transparent;
    height: 2.75rem;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--background);
    /* Light text */
    white-space: nowrap;
    cursor: pointer;
    flex: none;
    font-family: "Caveat Brush", cursive;
    transform: rotate(1.5deg);
    /* Slanted */
    transition: transform 0.3s, background-color 0.3s;
  }
  #cs-navigation .cs-cart-button:hover {
    background-color: var(--primary);
    color: #000;
    transform: rotate(0deg) scale(1.05);
    /* Straighten and grow */
  }
  #cs-navigation .cs-nav-button {
    background-color: var(--primary);
    color: #000 !important;
    /* Force black text */
    font-family: "Caveat Brush", cursive;
    font-size: 1.4rem;
    text-transform: none;
    font-weight: 400;
    transform: rotate(-1.2deg);
    /* Unique slant */
    width: auto;
    /* Force auto width */
    padding: 0 1.5rem;
    transition: transform 0.3s, background-color 0.3s;
  }
  #cs-navigation .cs-nav-button:hover {
    background-color: var(--primaryLight);
    color: #000 !important;
    transform: rotate(0deg) scale(1.05);
    /* Straighten and grow */
  }
  #cs-navigation .cs-cart-icon {
    height: 1.125rem;
    width: 1.125rem;
    flex: none;
    /* White icon for dark nav */
    filter: brightness(0) invert(1);
  }
}
/*-- -------------------------- -->
<---   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: "Caveat Brush", cursive;
    font-weight: 400;
    transform: rotate(-1.5deg);
  }
  #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: "Caveat Brush", cursive;
    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;
    /* Reduced vertical padding */
    border-bottom: 4px solid;
    border-image-source: var(--goldGradient);
    border-image-slice: 1;
  }
  #cta .container {
    text-align: center;
    position: relative;
    z-index: 10;
  }
  #cta picture {
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  #cta picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #cta picture:before {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.85;
    /* High contrast but let honeycomb through */
    display: block;
    background-color: var(--brandBlue);
    /* Pronounced sandpaper grain texture */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    background-blend-mode: overlay;
    height: 100%;
    width: 100%;
  }
  #cta .title {
    position: relative;
    margin-bottom: 2.25rem;
    font-size: min(9vw, 3.5rem);
    line-height: 1.2083333333em;
    font-weight: 400;
    font-family: "Caveat Brush", cursive;
    color: var(--headerColor) !important;
    /* Dark brand brown */
    text-shadow: none;
    text-align: center;
    transform: rotate(-1.5deg);
  }
  #cta p {
    opacity: 1;
    margin: auto;
    margin-bottom: 2.25rem;
    max-width: 37.375rem;
    width: 96%;
    color: var(--headerColor) !important;
    /* Dark brand brown */
    text-shadow: none;
    text-align: center;
    font-family: "Lato", Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1.5em;
  }
  #cta:before {
    z-index: -3;
    /* Bottom-most layer */
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 1;
    display: block;
    background-color: var(--brandBlue);
    /* Pronounced sandpaper grain texture */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    background-blend-mode: overlay;
    height: 100%;
    width: 100%;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64rem) {
  #cta {
    padding: clamp(5rem, 8vw, 8rem) 0;
  }
}
/* Large Desktop */
@media only screen and (min-width: 1300px) {
  #cta {
    position: relative;
    margin-top: 6.25rem;
  }
  #cta .container {
    margin: auto;
    width: 90.0625%;
  }
  #cta picture {
    left: 50%;
    transform: translateX(-50%);
    width: 90.0625%;
  }
  #cta picture:before {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.9;
    /* High contrast overlay */
    display: block;
    background-color: var(--brandBlue);
    /* Pronounced sandpaper grain texture */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    background-blend-mode: overlay;
    height: 100%;
    width: 100%;
  }
  #cta .title {
    color: var(--headerColor) !important;
    text-shadow: none;
  }
  #cta p {
    color: var(--headerColor) !important;
    text-shadow: none;
  }
  #cta:before {
    display: none;
  }
  #cta:after {
    z-index: -3;
    position: absolute;
    bottom: 0;
    left: 50%;
    content: "";
    opacity: 1;
    transform: translateX(-50%);
    display: block;
    background: url("/assets/svgs/cta-squares.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 69.25rem;
    width: 125rem;
  }
}
/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #footer {
    background-color: var(--brandBlue);
    /* Sandpaper grain texture */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    background-blend-mode: overlay;
    border-top: 4px solid;
    border-bottom: 4px solid;
    border-image-source: var(--goldGradient);
    border-image-slice: 1;
    padding: clamp(4rem, 10vw, 7rem) 0 2rem;
    font-size: min(4vw, 1.2em);
    color: var(--bodyTextColorWhite);
    position: relative;
    overflow: visible;
    /* Footer Wildflower clusters */
  }
  #footer .left-section {
    margin: auto;
    margin-bottom: 3.125rem;
    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: brightness(0) invert(1);
  }
  #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(--background);
    text-align: center;
    font-family: "Lato", sans-serif;
  }
  #footer .right-section {
    margin: auto;
    max-width: 25.4375rem;
    width: 96%;
    position: relative;
    z-index: 10;
  }
  #footer .right-section .lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin: auto;
    max-width: 35rem;
    width: 96%;
  }
  #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(--background);
  }
  #footer .right-section .lists ul li a {
    text-decoration: none;
    line-height: 1.5em;
    color: var(--background);
    font-family: "Caveat Brush", cursive;
    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: "Fraunces", serif;
    font-weight: bold;
    color: var(--primary);
  }
  #footer .right-section .lists ul h2:before {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    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: flex-start;
    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 .credit {
    margin: auto;
    margin-top: 4rem;
    width: 96%;
    font-size: 0.9rem;
    line-height: 1.5em;
    color: var(--background);
    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;
  }
  #footer .footer-flower {
    position: absolute;
    width: clamp(60px, 12vw, 120px);
    height: auto;
    color: var(--primary);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
  }
  #footer .footer-flower--l {
    left: 2%;
    bottom: 10%;
    transform: rotate(-10deg);
  }
  #footer .footer-flower--r {
    right: 2%;
    top: 10%;
    transform: rotate(15deg) scaleX(-1);
  }
}
/* Small Desktop */
@media only screen and (min-width: 64rem) {
  #footer {
    font-size: min(1.2vw, 1em);
  }
  #footer .container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    /* 3 columns matching nav */
    align-items: flex-start;
    margin: auto;
    max-width: 1600px;
    width: 100%;
    padding: 0 2rem;
    gap: 4rem;
  }
  #footer .left-section {
    margin: 0;
    width: 100%;
    text-align: left;
  }
  #footer .left-section .logo {
    margin-left: 0;
    height: 5rem;
    text-align: left;
  }
  #footer .left-section p {
    margin-left: 0;
    text-align: left;
  }
  #footer .right-section {
    margin: 0;
    max-width: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Align to right */
  }
  #footer .right-section .lists {
    margin: 0;
    width: 100%;
    justify-content: flex-end;
  }
  #footer .right-section .lists ul {
    text-align: right;
  }
  #footer .right-section .lists ul h2::before {
    left: auto;
    right: 0;
  }
  #footer .right-section .buttons {
    justify-content: flex-end;
    width: 100%;
  }
  #footer .credit {
    grid-column: span 3;
  }
  #footer .credit .copyright {
    display: inline-block;
  }
}
