* {
  box-sizing: border-box;
}

:root {
  --site-header-h: 64px;
}

html {
  height: 100%;
  height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-h) + 12px);
  font-family: "DM Sans", "Inter", Arial, sans-serif;
  line-height: 1.5;
  background: #141210;
  display: flex;
  flex-direction: column;
  min-height: 0;
  color: #eae6e1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.72);
  z-index: -1;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #241d19;
  box-shadow: 0 0 50px rgba(0, 0, 0, .3);
  padding: 5px;
  display: flex;
  justify-content: center;
}

.site-header-inner {
  width: 100%;
  max-width: 1200px;
  min-height: 45px;
  margin: 0 20px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header-img {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  gap: 8px;
}

.site-header-logo {
  display: block;
  height: 38px;
  width: auto;
}

.site-header-wordmark {
  display: block;
  height: 45px;
  width: auto;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px 16px;
  margin: -20px 0;
}

.site-nav a {
  display: inline-block;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 21px 2px;
  border-bottom: 5px solid transparent;
  color: #dcdcdc;
  transition: all 0.1s;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  filter: brightness(1.1);
  color: #ffffff;
  border-bottom-color: #ffffff;
  outline: none;
}

.site-nav a.is-current {
  border-bottom-color: #c97a42;
  /* color: #c97a42; */
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.site-nav-toggle:hover,
.site-nav-toggle:focus-visible {
  background: none;
  outline: none;
}

.site-nav-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: 35px;
}

.site-nav-toggle-bars span {
  display: block;
  height: 1px;
  background: #ffffff;
  border-radius: 1px;
}

.site-nav-drawer {
  display: none;
}

.site-nav-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  flex-shrink: 0;
}

.site-nav-drawer-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-nav-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: transparent;
  font-size: 4.5rem;
  line-height: 1;
  cursor: pointer;
}

.site-nav-drawer-close:hover,
.site-nav-drawer-close:focus-visible {
  background: rgba(0, 0, 0, 0.06);
  outline: none;
}

.site-nav--drawer ul {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  margin: 0;
  a {
    display: block;
    padding: 16px 22px 16px 90px;
    font-size: 2.5rem;
    border-bottom: none;
    font-family: "Knewave", "Inter", Arial, sans-serif;
  }
  a.is-current {
    background: rgba(20, 20, 20, 0.95);
  }
}

html.site-nav-drawer-open,
html.site-nav-drawer-open body {
  overflow: hidden;
}

@media (min-width: 641px) {
  .site-nav-toggle {
    display: none !important;
  }

  .site-nav-drawer {
    display: none !important;
  }
}

.page {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  width: 100%;
  flex: 1 0 auto;
  padding: calc(16px + var(--site-header-h)) 22px 48px;
}

.site-footer {
  flex-shrink: 0;
  width: 100%;
  background: rgba(139, 77, 14, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  .site-footer-inner {
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    flex-direction: row;
    gap: 21px;
  }
  .site-footer-social-container,
  .site-footer-contact {
    display: grid;
    gap: 6px;
    font-size: 0.9rem;
    .privacy-link {
      font-size: 0.7rem;
    } 
    a {
      font-size: 0.8rem;
      color: inherit;
      text-decoration: none;
      text-underline-offset: 3px;
      transition: color 0.1s ease;
      &:hover {
        color: #965121;
      }
    }
    p {
      margin: 0;
    }
  }
  .site-footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }
  .footer-item {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    .footer-label {
      width: 60px;
      text-align: right;
      font-style: italic;
      font-size: 0.7rem;
    }
  }
  .social-icon img {
    width: 30px;
    height: 30px;
    opacity: 0.7;
  }
  .site-footer-social-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }
}

.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  object-fit: cover;
  z-index: -2;
  overflow: hidden;
  filter: saturate(0.75) brightness(0.55);
}

.hero {
  position: relative;
  text-align: center;
  margin: 56px auto 34px;
  max-width: 900px;
}

.hero-logo {
  display: block;
  width: min(760px, 96%);
  margin: 0 auto 20px;
  height: auto;
  filter: none;
}

.hero-tight {
  margin-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #4d4d4d;
  margin-bottom: 14px;
  font-size: 0.8rem;
}

.intro {
  margin: 0 auto;
  max-width: 580px;
  color: #2f2f2f;
}

.card-cont {
  width: 100%;
  display: flex;
  justify-content: center;
}

.card.email {
  width: min(100%, 700px);
  max-width: 100%;
}

.card.email h2 {
  margin: 0 0 12px;
}

.card {
  background: rgba(253, 251, 245, 0.909);
  border: .5px solid #1b1b1b;
  box-shadow: 0 0 30px rgba(62, 61, 59, 0.5);
  border-radius: 0;
  padding: 24px;
  margin-top: 18px;
}

.card a {
  color: #965121;
  font-weight: 600;
}

h2 {
  margin: 0 0 -20px 0;
  font-family: "Knewave", "Inter", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 2rem;
}

.form {
  display: grid;
  gap: 30px;
}

::placeholder {
  font-size: 0.9rem;
  font-style: italic;
}

label,
legend {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.q-cont label,
legend {
  font-size: 1.5rem;
  font-family: "Knewave", "Inter", Arial, sans-serif;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  border: 1px solid #1f1f1f;
  border-radius: 0;
  padding: 11px 12px;
  background: #fffdf8;
}

fieldset {
  border: solid 1px rgb(212, 110, 14);
  border-radius: 0;
  padding: 10px 12px;
  display: grid;
  gap: 8px;
}

.q-cont {
  select,
  textarea {
    margin-top: 10px;
    border: solid 1px rgb(212, 110, 14);
  }

  select {
    appearance: none;
    -webkit-appearance: none;
  }
}

fieldset label {
  align-items: flex-start;
  justify-content: flex-start;
  display: flex;
  white-space: nowrap;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  margin: 5px 0;
  color: initial;
  input {
    width: initial;
    margin-right: 10px;
  }
}

.row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.row input {
  flex: 1 1 240px;
}

button {
  background: #111111;
  color: #f9f6ef;
  border: 1px solid #111111;
  border-radius: 0;
  padding: 11px 16px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.82rem;
}

button:hover {
  background: #2a2a2a;
}

.side-table-dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.45);
}

.side-table-dialog-overlay.is-open {
  display: flex;
}

.side-table-dialog {
  width: min(100%, 380px);
  padding: 22px 22px 18px;
  background: #fdfbf5;
  border: 1px solid #1b1b1b;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.side-table-dialog-title {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111111;
}

.side-table-dialog-message {
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #2f2f2f;
}

.side-table-dialog-close {
  width: 100%;
  margin-top: 4px;
}

/* Survey submit: full-screen loading (Google Sheets fetch can take several seconds) */
.survey-submit-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 9, 8, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.survey-submit-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

html.survey-submit-loading,
html.survey-submit-loading body {
  overflow: hidden;
}

.survey-submit-overlay-inner {
  max-width: 320px;
  padding: 28px 32px;
  text-align: center;
  background: #fdfbf5;
  border: 1px solid rgba(26, 24, 22, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.survey-submit-spinner {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  border: 3px solid rgba(26, 24, 22, 0.12);
  border-top-color: #c97a42;
  border-radius: 50%;
  animation: survey-submit-spin 0.75s linear infinite;
}

@keyframes survey-submit-spin {
  to {
    transform: rotate(360deg);
  }
}

.survey-submit-overlay-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #1a1816;
}

@media (max-width: 640px) {
  :root {
    --site-header-h: 64px;
  }

  .site-header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 0.5px solid #1b1b1b55;
  }

  .about-points {
    font-style: italic;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-item {
    .footer-label {
      text-align: left !important;
    }
  }

  .site-footer-social-container {
    width: 100%;
    justify-content: space-between !important;
  }
  .page {
    overflow: hidden;
  }

  .site-nav ul {
    margin-top: 10%;
  }
  
  .site-nav a {
    rotate: -12deg;
    width: 120%;
    margin-left: -10%;
    padding: 15px 20px;
    color: #dcdcdc;
  }

  .site-footer {
    background: none;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-top: none;
    .site-footer-inner {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 18px 30px;
    }
  }

  .site-nav-toggle {
    display: inline-flex;
  }

  .site-nav--desktop {
    display: none !important;
  }

  .site-header {
    padding: 10px 10px 10px 35px;
  }
  .site-header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: initial;
    .site-nav-toggle {
      margin-left: 0;
      position: fixed;
      right: 10px;
      top: 10px;
    }
  }

  .site-nav-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0s linear 0.35s;
  }

  .site-nav-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav-drawer-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .site-nav-drawer.is-open .site-nav-drawer-backdrop {
    opacity: 1;
  }

  .site-nav-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    background: rgba(20, 16, 13, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overscroll-behavior: none !important;
    /* touch-action: pan-y; */
  }

  .site-nav-drawer.is-open .site-nav-drawer-panel {
    transform: translateX(0);
  }

  .site-nav--drawer {
    flex: 1;
    overscroll-behavior: none !important;
    /* overflow-y: auto; */
    /* -webkit-overflow-scrolling: touch; */
  }
}

.site-nav a.site-nav-cta {
  margin-left: 6px;
  padding: 7px 12px 7px;
  border-bottom: none;
  border-radius: 999px;
  background: #c97a42;
  color: #1a1816 !important;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
}

.site-nav a.site-nav-cta:hover,
.site-nav a.site-nav-cta:focus-visible {
  border-bottom-color: transparent;
  filter: brightness(1.05);
  color: #0f0e0d !important;
}

.page.page--home {
  max-width: none;
  margin: 0;
  padding: calc(12px + var(--site-header-h)) 0 64px;
  width: 100%;
}

.st-hero {
  position: relative;
  padding: clamp(28px, 6vw, 72px) clamp(20px, 5vw, 48px) clamp(40px, 8vw, 88px);
}

.st-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.st-kicker {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.72);
}

.st-lede {
  margin: 0 0 22px;
  max-width: 34rem;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.65;
  color: rgba(244, 239, 230, 0.88);
}

.st-display {
  margin: 0 0 26px;
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-transform: uppercase;
  color: #f4efe6;
  rotate: 0deg;
}

.st-hours-line {
  margin: 18px 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.55);
}

.st-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
}

.store-cart-toggle,
.st-btn--dark,
.st-btn--light {
  background: #c97a42;
  color: #1a1816 !important;
  border: 1px solid #c97a42;
}

.store-cart-toggle:hover,
.st-btn--dark:hover,
.st-btn--dark:focus-visible,
.st-btn--light:hover,
.st-btn--light:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  outline: none;
  background: #e9833a;
}

/* .st-btn--dark {
  background: #1a1816;
  color: #f4efe6;
  border: 1px solid #1a1816;
  cursor: pointer;
  font-family: inherit;
  background: #c97a42;
  color: #1a1816 !important;
  border: 1px solid #c97a42;
}

.st-btn--dark:hover,
.st-btn--dark:focus-visible {
  background: #2a2622;
  outline: none;
} */

.st-hero-media {
  margin: 0;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  /* box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55); */
}

.st-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(145deg, rgba(20, 18, 16, 0.15), transparent 42%); */
  pointer-events: none;
}

.st-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.02);
  animation: st-hero-ken 22s ease-in-out infinite alternate;
}

@keyframes st-hero-ken {
  from {
    transform: scale(1.02) translate(0, 0);
  }
  to {
    transform: scale(1.08) translate(-1.5%, -1%);
  }
}

.st-band--visit {
  background: rgb(244, 239, 230);
  color: #1a1816;
  padding: 80px 0;
  display: flex;
}

.st-band-inner {
  /* max-width: 900px; */
  width: 100%;
  margin: 0 25px;
  display: flex;
  flex-direction: column;
}

.st-visit-cont {
  text-align: right;
}

.st-section-title {
  margin: 0 0 22px;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 5.5rem;
  line-height: .9;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: right;
}

.st-visit-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 28px 40px;
  max-width: 1200px;
}

.st-label {
  margin: 0 0 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 24, 22, 0.75);
}

.st-visit-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.st-link-maps {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1816;
  text-underline-offset: 4px;
}

.st-story {
  padding: 100px 0 0 0;
  border-top: 1px solid #1a1816;
  border-bottom: 1px solid #1a1816;
  background: rgb(244, 239, 230);
}

.st-story-index {
  margin: 0 15% 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a1816;

}

.st-story-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  .st-story-copy {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
  }
  .st-story-heading {
    margin: 0 0 16px;
    font-family: "Bebas Neue", "Impact", sans-serif;
    font-size: 6rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    list-style: 0.5;
    line-height: 1 !important;
    display: inline;
    color: #1a1816; 
    margin-left: 10%;
  }
   p {
    width: 35%;
    margin-right: 20px;
  }
  .st-story-media {
    width: 100%;
    object-fit: cover;
    object-position: top;

  }
}

@media (max-width: 641px) {
  .st-story-grid {
    .st-story-copy {
      flex-direction: column;
      .st-story-heading {
        margin-left: 0;
        margin-bottom: 20px;
        text-align: center;
      }
      p {
        padding: 0 30px;
        width: 100%;
      }
      .store-line-hint {
        padding: 0;
      }
    }
  }
}



.st-story-media {
  margin: 0;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); */
}

.st-story-media img {
  display: block;
  width: 100%;
  height: auto;
}

.st-story-body {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #1a1816; 
}

.st-shop {
  padding: clamp(48px, 8vw, 88px) clamp(20px, 5vw, 48px);
  background: #f4efe6;
  color: #1a1816;
}

.st-shop-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.st-shop-title {
  margin: 0 0 36px;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #1a1816;
}

.st-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.st-shop-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 0 0 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.st-shop-card-media {
  overflow: hidden;
  aspect-ratio: 1;
}

.st-shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.st-shop-card:hover .st-shop-card-media img {
  transform: scale(1.05);
}

.st-shop-card-title {
  margin: 18px 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.st-shop-card-desc {
  margin: 0 0 16px;
  flex: 1 1 auto;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(26, 24, 22, 0.78);
}

.st-shop-card-link {
  margin: 0 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b4510;
  text-decoration: none;
  text-underline-offset: 3px;
}

.st-shop-card-link:hover,
.st-shop-card-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.st-contact {
  padding: clamp(48px, 8vw, 88px) clamp(20px, 5vw, 48px);
  background: #161412;
}

.st-contact-inner {
  max-width: 960px;
  margin: 0 auto;
}

.st-contact-title {
  margin: 0 0 12px;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #f4efe6;
}

.st-contact-email {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.st-contact-email a {
  color: #c97a42;
  text-decoration: none;
}

.st-contact-email a:hover,
.st-contact-email a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.st-contact-address {
  margin: 0 0 36px;
  color: rgba(244, 239, 230, 0.65);
  font-size: 0.95rem;
}

.st-contact-forms {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: start;
}

.st-card {
  background: rgba(244, 239, 230, 0.06);
  border: 1px solid rgba(244, 239, 230, 0.12);
  padding: 24px 22px 28px;
}

.st-card-title {
  margin: 0 0 18px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f4efe6;
}

.st-card-note {
  margin: -8px 0 16px;
  font-size: 0.88rem;
  color: rgba(244, 239, 230, 0.65);
}

.st-form {
  display: grid;
  gap: 16px;
}

.st-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.st-field {
  display: grid;
  gap: 6px;
}

.st-field-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.75);
}

.st-req {
  color: #c97a42;
}

.st-form input,
.st-form textarea {
  border: 1px solid rgba(244, 239, 230, 0.22);
  border-radius: 2px;
  padding: 11px 12px;
  background: rgba(10, 9, 8, 0.55);
  color: #f4efe6;
  font-family: inherit;
}

.st-form input::placeholder,
.st-form textarea::placeholder {
  color: rgba(244, 239, 230, 0.35);
  font-style: normal;
}

.st-form textarea {
  resize: vertical;
  min-height: 120px;
}

.st-form--compact {
  gap: 14px;
}

/* Scroll: section h2 fades in over 2s */
.reveal-h2 {
  opacity: 0;
  transition: opacity 2s ease;
}

.reveal-h2.is-visible {
  opacity: 1;
}

/* Scroll: image “wipe” reveal (clip-path) */
.reveal-img {
  overflow: hidden;
}

.reveal-img img {
  will-change: clip-path;
  transition: clip-path 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.st-shop-card-media.reveal-img img {
  transition: clip-path 1.2s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s ease;
}

.reveal-img--from-left:not(.is-visible) img {
  clip-path: inset(0 100% 0 0);
}

.reveal-img--from-right:not(.is-visible) img {
  clip-path: inset(0 0 0 100%);
}

.reveal-img--from-top:not(.is-visible) img {
  clip-path: inset(100% 0 0 0);
}

.reveal-img--from-bottom:not(.is-visible) img {
  clip-path: inset(0 0 100% 0);
}

.reveal-img.is-visible img {
  clip-path: inset(0 0 0 0);
}

.st-ticker {
  overflow: hidden;
  background: #c97a42;
  color: #1a1816;
  border-top: 1px solid rgba(26, 24, 22, 0.12);
  border-bottom: 1px solid rgba(26, 24, 22, 0.12);
}

.st-ticker-track {
  display: flex;
  width: max-content;
  animation: st-marquee 38s linear infinite;
}

.st-ticker-segment {
  flex-shrink: 0;
  padding: 14px 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 3rem;
}

@keyframes st-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.site-footer.site-footer--theme {
  background: rgba(12, 11, 10, 0.95);
  border-top: 1px solid rgba(244, 239, 230, 0.08);
  color: rgba(244, 239, 230, 0.78);
}

.site-footer.site-footer--theme a {
  color: #c97a42;
}

.site-footer.site-footer--theme .footer-label {
  color: rgba(244, 239, 230, 0.5);
}

.site-footer.site-footer--theme .privacy-link {
  color: rgba(244, 239, 230, 0.45);
}

.site-footer.site-footer--theme .social-icon img {
  opacity: 0.6;
}

@media (max-width: 640px) {
  .page.page--home,
  .page.page--inner {
    overflow-x: clip;
    overflow-y: visible;
  }
}

@media (max-width: 900px) {
  .st-hero-inner {
    grid-template-columns: 1fr;
  }

  .st-hero-media {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .st-shop-grid {
    grid-template-columns: 1fr;
  }

  .st-contact-forms {
    grid-template-columns: 1fr;
  }

  .st-form-row {
    grid-template-columns: 1fr;
  }

  .st-visit-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Inner pages (about, survey) */
.page.page--inner {
  max-width: 720px;
  margin: 0 auto;
  padding: calc(20px + var(--site-header-h)) 22px 56px;
  width: 100%;
}

.st-sub-hero {
  text-align: center;
  padding: clamp(8px, 2vw, 20px) 0 clamp(24px, 4vw, 40px);
}

.st-lede--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.st-display--survey {
  font-size: clamp(1.75rem, 5vw, 2.65rem);
  line-height: 1.05;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

h1.st-display {
  text-shadow: none;
  font-size: clamp(4rem, 8vw, 6rem);
  font-family: "Bebas Neue", "Impact", sans-serif;
}

.page--inner .card {
  background: rgba(244, 239, 230, 0.06);
  border: 1px solid rgba(244, 239, 230, 0.12);
  box-shadow: none;
  color: rgba(244, 239, 230, 0.92);
}

.page--inner .card h2 {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: clamp(1.55rem, 3.8vw, 1.95rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #c97a42;
  margin: 26px 0 12px;
}

.page--inner .card h2:first-child {
  margin-top: 0;
}

.page--inner .card p,
.page--inner .card.about .about-points div {
  color: rgba(244, 239, 230, 0.86);
  line-height: 1.65;
}

.page--inner .card.jobs ul.jobs-list {
  margin: 0 0 8px;
  padding-left: 1.15em;
  color: rgba(244, 239, 230, 0.86);
  line-height: 1.65;
}

.page--inner .card.jobs ul.jobs-list li {
  margin-bottom: 6px;
}

.page--inner .card.jobs .jobs-apply {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 239, 230, 0.14);
}

.page--inner .card.jobs .jobs-apply h2 {
  margin-top: 0;
}

.page--inner .card.jobs .jobs-apply-actions {
  text-align: center;
  margin-bottom: 0;
  margin-top: 20px;
}

.page--inner .card.jobs .jobs-apply-actions .st-btn {
  display: inline-flex;
  text-decoration: none;
}

/* Store page: hero + full-bleed .st-story (gift card + shop, home-style cream band) */
.page.page--inner.page--store {
  max-width: 100%;
  width: 100%;
  /* padding: calc(20px + var(--site-header-h)) clamp(16px, 4vw, 28px) 56px; */
  padding: 0;
}

.page--store .st-sub-hero {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.page--store .st-story--store {
  /* margin-top: clamp(40px, 6vw, 72px); */
  /* margin-left: calc(50% - 50vw); */
  /* margin-right: calc(50% - 50vw); */
  width: 100vw;
  padding-bottom: clamp(56px, 10vw, 100px);
}

.st-story--store .st-story-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

.st-story--store .st-story-index {
  margin: 0 0 18px;
}

.st-story--store .st-story-grid--store {
  display: block;
}

.st-story--store .st-story-copy--store-shop {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  max-width: 100%;
}

.st-story--store .st-story-copy--store-shop .st-story-heading {
  margin: 0 0 16px;
  margin-left: 0;
  display: block;
  font-size: clamp(2.75rem, 14vw, 5.5rem);
  line-height: 0.95;
  text-align: left;
}

.st-story--store .st-story-copy--store-shop .st-story-body {
  width: 100% !important;
  max-width: 40rem;
  margin: 0 0 28px !important;
  margin-right: 0 !important;
  padding: 0 !important;
}

.st-story--store .store-gift-note a {
  font-weight: 600;
  color: #8b4d0e;
}

.st-story--store .store-gift-note a:hover {
  color: #1a1816;
}

.st-story--store .store-gift-banner {
  margin: clamp(16px, 3vw, 28px) calc(50% - 50vw) clamp(22px, 4vw, 36px);
  width: 100vw;
  max-width: none;
  border-radius: 0;
  overflow: hidden;
}

.st-story--store .store-gift-banner img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 641px) {
  .st-story--store .store-gift-banner img {
    height: 300px;
    width: auto;
    margin-left: -35%;
  }
  .st-story--store .st-story-index {
    text-align: center;
  }
}

.st-story--store .store-gift-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.st-story--store .store-gift-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.st-story--store .store-gift-actions-row .store-select {
  flex: 1;
  min-width: 72px;
}

.st-story--store .store-gift-actions-row .store-add-btn {
  flex: 1 1 auto;
  min-width: 140px;
}

.st-story--store .store-line-hint {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(26, 24, 22, 0.55);
}

/* #menus store product cards: title + price row, description, quantity + wide CTA */
.page--store #menus .st-shop-card.store-product-card {
  padding: 0;
  background: #f4efe6;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(26, 24, 22, 0.1);
}

.page--store #menus .store-product-card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.page--store #menus .store-product-card-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.page--store #menus .store-product-card-heading-row .st-shop-card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1816;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}

.page--store #menus .store-product-card-heading-row .store-product-price {
  margin: 0;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #8b4d0e;
}

.page--store #menus .store-product-card-body .st-shop-card-desc {
  margin: 0 0 18px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(26, 24, 22, 0.62);
  flex: 0 1 auto;
}

.page--store #menus .store-product-card-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.page--store #menus .store-product-card-footer .store-field-label {
  margin: 0;
  color: rgba(26, 24, 22, 0.45);
  font-size: 0.68rem;
}

.page--store #menus .store-product-card-buy-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
}

.page--store #menus .store-product-card-buy-row .store-select {
  flex: 0 0 auto;
  width: auto;
  min-width: 56px;
  max-width: 128px;
  padding: 10px 28px 10px 10px;
  background-position: right 8px center;
}

.page--store #menus .store-product-card-buy-row .store-add-btn {
  flex: 1 1 auto;
  min-width: 0;
  align-self: stretch;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 2px;
}

.cap-size.store-add-btn {
  flex: 0 0 auto !important;
}

.page--store .store-field-label {
  font-family: "DM Sans", "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 24, 22, 0.65);
}

.page--store .store-select {
  width: 100%;
  max-width: 120px;
  padding: 10px 38px 10px 12px;
  font-family: inherit;
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a1816' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px 16px;
  border: 1px solid rgba(26, 24, 22, 0.22);
  border-radius: 2px;
  color: #1a1816;
  cursor: pointer;
}

.page--store .store-select option {
  background: #fff;
  color: #1a1816;
}

.page--store .store-add-btn {
  align-self: flex-start;
  cursor: pointer;
  border: none;
  font: inherit;
}

@media (max-width: 641px) {
  .st-story--store .st-story-copy--store-shop .st-story-heading {
    text-align: center;
    margin-left: 0;
  }

  .st-story--store .st-story-copy--store-shop .st-story-body {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Header cart (all pages): desktop flex order + top-right on mobile */
.site-header-inner:has(.store-cart-toggle) {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

@media (min-width: 641px) {
  .store-cart-toggle {
    display: none !important;
  }

  .site-nav--desktop .site-nav-li--order-mobile {
    display: none !important;
  }
}

/* Drawer clone: plain Store li only; rich desktop Store is hidden here */
.site-nav--drawer .site-nav-li--order-desktop {
  display: none !important;
}

/* Desktop: cart count + icon live on Store */
.site-nav-store {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.site-nav-store-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-nav--drawer .site-nav-order-icon,
.site-nav--drawer .site-nav-order-badge {
  display: none;
}

.site-nav--drawer .site-nav-store-row {
  gap: 0;
}

.site-nav-order-icon {
  display: flex;
  line-height: 0;
}

.site-nav-order-icon svg {
  display: block;
}

.store-cart-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.store-cart-toggle-icon svg {
  display: block;
}

.store-cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 6px;
  margin-left: auto;
  font-family: "DM Sans", "Inter", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1816;
  background: #c97a42;
  border: 1px solid #c97a42;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-cart-toggle:hover,
.store-cart-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  outline: none;
}
.store-cart-badge,
.site-nav-order-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  font-size: 0.65rem;
  letter-spacing: 0;
  background: #1a1816;
  color: #f4efe6;
  border-radius: 999px;
}

.site-nav-order-badge {
  min-width: 20px;
  height: 20px;
  font-size: 0.6rem;
}

@media (min-width: 641px) {
  .site-header-inner:has(.store-cart-toggle) .site-header-img {
    order: 1;
  }

  .site-header-inner:has(.store-cart-toggle) #siteNavDesktop {
    order: 2;
    margin-left: auto;
  }

  .site-header-inner:has(.store-cart-toggle) .store-cart-toggle {
    order: 3;
    margin-left: 0;
  }

  .site-header-inner:has(.store-cart-toggle) #siteNavToggle {
    order: 4;
  }
}

/* Cart drawer */
.store-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
  visibility: hidden;
}

.store-cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.store-cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.55);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.store-cart-drawer.is-open .store-cart-backdrop {
  opacity: 1;
}

.store-cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 400px);
  height: 100%;
  max-height: 100%;
  background: #1a1816;
  border-left: 1px solid rgba(244, 239, 230, 0.12);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.store-cart-drawer.is-open .store-cart-panel {
  transform: translateX(0);
}

.store-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
}

.store-cart-head h2 {
  margin: 0;
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  color: #f4efe6;
}

.store-cart-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: #f4efe6;
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.store-cart-close:hover,
.store-cart-close:focus-visible {
  background: rgba(244, 239, 230, 0.08);
  outline: none;
}

.store-cart-lines {
  list-style: none;
  margin: 0;
  padding: 12px 16px;
  overflow-y: auto;
  flex: 1;
}

.store-cart-empty {
  padding: 24px 8px;
  text-align: center;
  color: rgba(244, 239, 230, 0.55);
  font-size: 0.95rem;
}

.store-cart-line {
  display: grid;
  grid-template-columns: 56px 1fr auto 32px;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}

.store-cart-line-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(244, 239, 230, 0.12);
}

.store-cart-line-mid {
  min-width: 0;
}

.store-cart-line-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(244, 239, 230, 0.92);
  line-height: 1.3;
}

.store-cart-line-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.store-cart-qty-btn {
  width: 28px;
  height: 28px;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
  color: #f4efe6;
  background: rgba(244, 239, 230, 0.1);
  border: 1px solid rgba(244, 239, 230, 0.2);
  border-radius: 4px;
  cursor: pointer;
}

.store-cart-qty-btn:hover,
.store-cart-qty-btn:focus-visible {
  background: rgba(244, 239, 230, 0.16);
  outline: none;
}

.store-cart-qty-val {
  min-width: 22px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(244, 239, 230, 0.85);
}

.store-cart-line-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e8b882;
  text-align: right;
}

.store-cart-remove {
  width: 32px;
  height: 32px;
  padding: 0;
  font-size: 1.25rem;
  line-height: 1;
  color: rgba(244, 239, 230, 0.5);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.store-cart-remove:hover,
.store-cart-remove:focus-visible {
  color: #f4efe6;
  background: rgba(244, 239, 230, 0.08);
  outline: none;
}

.store-cart-foot {
  padding: 16px 18px 22px;
  border-top: 1px solid rgba(244, 239, 230, 0.1);
  background: rgba(0, 0, 0, 0.25);
}

.store-cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(244, 239, 230, 0.65);
}

.store-cart-total-row strong {
  font-size: 1.35rem;
  letter-spacing: 0;
  text-transform: none;
  color: #f4efe6;
}

.store-cart-checkout {
  width: 100%;
  cursor: pointer;
  border: none;
  font: inherit;
}

html.store-cart-open,
html.store-cart-open body {
  overflow: hidden;
}

@media (max-width: 640px) {
  .store-cart-toggle {
    position: fixed;
    top: 13px;
    left: 0;
    right: auto;
    z-index: 1001;
    margin-left: 0;
  }
}

.page--inner .card a {
  color: #c97a42;
}

h2.card-header  {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 2.5rem);
  letter-spacing: 0.04em;
  color: #c97a42;
  margin: 0 0 24px;
}

.page--inner .card.survey .form {
  gap: 22px;
}

.page--inner .card.survey .q-cont label,
.page--inner .card.survey legend {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: clamp(1.55rem, 3.8vw, 1.95rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page--inner .card.survey fieldset {
  border: 1px solid rgba(244, 239, 230, 0.22);
  border-radius: 2px;
  padding: 14px 16px;
}

.page--inner .card.survey fieldset label {
  color: #c97a42;
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  white-space: normal;
}

.page--inner .card.survey select,
.page--inner .card.survey textarea {
  background: rgba(10, 9, 8, 0.55);
  border: 1px solid rgba(244, 239, 230, 0.22);
  color: #f4efe6;
  width: 100%;
}

.page--inner .card.survey select option {
  background: #1a1816;
  color: #f4efe6;
}

.page--inner .card.survey .q-cont select,
.page--inner .card.survey .q-cont textarea {
  border-color: rgba(244, 239, 230, 0.22);
}

@media (max-width: 640px) {
  .page--inner .card.about,
  .page--inner .card.jobs,
  .page--inner .card.survey {
    margin-top: 20px;
    padding: 22px 18px 32px !important;
    text-align: left;
    background: rgba(244, 239, 230, 0.06) !important;
    border: 1px solid rgba(244, 239, 230, 0.12) !important;
  }

  .page--inner .card.survey {
    text-align: left;
  }

  .page--inner .card.survey h2 {
    margin-left: 0 !important;
    text-align: center;
    color: #c97a42;
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }

  .st-hero-media img {
    animation: none;
    transform: none;
  }

  .st-ticker-track {
    animation: none;
  }

  .reveal-h2 {
    opacity: 1;
    transition: none;
  }

  .reveal-img img {
    clip-path: inset(0 0 0 0) !important;
    transition: none;
  }

  .st-shop-card,
  .st-shop-card-media img {
    transition: none;
  }

  .st-shop-card:hover {
    transform: none;
  }

  .st-shop-card:hover .st-shop-card-media img {
    transform: none;
  }

  .st-btn--light:hover,
  .st-btn--light:focus-visible {
    transform: none;
  }
}

.jobs-list {
  color: #ffffff;
}

.center {
  text-align: center;
}

#primaryNavDrawerList a.is-current {
  color: #c97a42;
}