@import url(https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Source+Sans+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&display=swap);
@charset "UTF-8";
/**
* Beans Adventure Main Stylesheet
*
* Using BEM methodology for component naming
* Block: Standalone entity that is meaningful on its own (.card)
* Element: Parts of a block with no standalone meaning
* (.card__title)
* Modifier: Flags on blocks or elements for appearance/behavior
* (.card--featured)
*/

/* Fix header padding consistency - all pages should use the same value */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2c3e50;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2c3e50;
  margin-bottom: 1rem;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

h5 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}
p.lead {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  color: #666666;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
ul li, ol li {
  margin-bottom: 0.25rem;
}
ul:last-child, ol:last-child {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

a {
  color: #7E5D4C;
  text-decoration: underline;
  text-decoration-color: rgba(126, 93, 76, 0.3);
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}
a:hover {
  color: #B8865E;
  text-decoration-color: #B8865E;
}
a:focus {
  outline: 2px solid #C9CC68;
  outline-offset: 2px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: #7E5D4C;
}

.text-secondary {
  color: #B8865E;
}

.text-accent {
  color: #C9CC68;
}

.text-muted {
  color: #666666;
}

.text-light {
  color: #999999;
}

.font-primary {
  font-family: "Playfair Display", serif;
}

.font-secondary {
  font-family: "Source Sans Pro", sans-serif;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-1 {
  margin-bottom: 0.5rem !important;
}

.u-mb-2 {
  margin-bottom: 1rem !important;
}

.u-mb-3 {
  margin-bottom: 2rem !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-hide {
  display: none !important;
}

.u-show {
  display: block !important;
}

/**
 * Header Styles
 * Band of Beans comprehensive header component styling
 */
.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(102, 102, 102, 0.1);
}

.header-main {
  background-color: #ffffff;
  padding: 1rem 0; /* Reduced from 1.5rem to match all pages consistently */
}
.header-main .header-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 1200px) {
  .header-main .header-main-content {
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .header-main .header-main-content {
    gap: 1rem;
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  .header-main .header-main-content {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.site-branding {
  flex-shrink: 0;
}
.site-branding .site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-branding .site-logo:hover {
  transform: translateY(-1px);
}
.site-branding .site-logo .logo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.site-branding .site-logo .logo-stack .logo-image {
  width: 228px;
  height: auto;
  max-height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media (max-width: 992px) {
  .site-branding .site-logo .logo-stack .logo-image {
    width: 192px;
    max-height: 51px;
  }
}
@media (max-width: 768px) {
  .site-branding .site-logo .logo-stack .logo-image {
    width: 168px;
    max-height: 42px;
  }
}
@media (max-width: 576px) {
  .site-branding .site-logo .logo-stack .logo-image {
    width: 144px;
    max-height: 36px;
  }
}
.site-branding .site-logo .logo-stack .site-tagline {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 0.75rem;
  color: #666666;
  line-height: 1;
  margin: 0;
  font-style: italic;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
@media (max-width: 992px) {
  .site-branding .site-logo .logo-stack .site-tagline {
    font-size: 0.7rem;
  }
}
@media (max-width: 768px) {
  .site-branding .site-logo .logo-stack .site-tagline {
    display: none;
  }
}

.header-search-reveal {
  background-color: #f8f9fa;
  border-bottom: 1px solid rgba(102, 102, 102, 0.1);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
.header-search-reveal.active {
  max-height: 120px;
  opacity: 1;
  padding: 1rem 0;
  margin-bottom: 0;
}
.header-search-reveal.active::after {
  content: "";
  display: block;
  height: 1.5rem;
  width: 100%;
}
.header-search-reveal .search-reveal-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 0;
}
.header-search-reveal .search-form {
  flex: 1;
  position: relative;
}
.header-search-reveal .search-wrapper {
  display: flex;
  background-color: #ffffff;
  border: 2px solid rgba(102, 102, 102, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.header-search-reveal .search-wrapper:focus-within {
  border-color: #C9CC68;
  box-shadow: 0 0 0 3px rgba(201, 204, 104, 0.1);
}
.header-search-reveal .search-field {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: none;
  background: transparent;
  color: #2c3e50;
}
.header-search-reveal .search-field::-moz-placeholder {
  color: rgba(102, 102, 102, 0.7);
  font-style: italic;
}
.header-search-reveal .search-field::placeholder {
  color: rgba(102, 102, 102, 0.7);
  font-style: italic;
}
.header-search-reveal .search-field:focus {
  outline: none;
}
.header-search-reveal .search-submit {
  padding: 0.75rem 1rem;
  background-color: #7E5D4C;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header-search-reveal .search-submit:hover {
  background-color: #B8865E;
  transform: scale(1.05);
}
.header-search-reveal .search-submit .search-icon {
  font-size: 1.2rem;
  filter: grayscale(1) brightness(10);
}
.header-search-reveal .search-suggestions {
  margin-top: 0.5rem;
}
.header-search-reveal .search-suggestions .search-hint {
  font-size: 0.8rem;
  color: rgba(102, 102, 102, 0.8);
  font-style: italic;
}
.header-search-reveal .search-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #666666;
  padding: 0.5rem;
  transition: color 0.3s ease;
}
.header-search-reveal .search-close:hover {
  color: #2c3e50;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.header-actions .search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #666666;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.header-actions .search-toggle:hover {
  color: #2c3e50;
  background-color: rgba(201, 204, 104, 0.1);
}
.header-actions .search-toggle .search-toggle-icon {
  font-size: 1.2rem;
}
.header-actions .adventure-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background-color: #C9CC68;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 0.95rem;
}
@media (max-width: 576px) {
  .header-actions .adventure-cta {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
.header-actions .adventure-cta:hover {
  background-color: rgb(187.3663366337, 191.1237623762, 65.8762376238);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 204, 104, 0.3);
}
@media (max-width: 576px) {
  .header-actions .adventure-cta .cta-text {
    display: none;
  }
}
.header-actions .adventure-cta .cta-icon {
  font-size: 1.1rem;
}
.header-actions .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (max-width: 992px) {
  .header-actions .mobile-menu-toggle {
    display: block;
  }
}
.header-actions .mobile-menu-toggle .hamburger {
  width: 24px;
  height: 3px;
  background-color: #2c3e50;
  position: relative;
  transition: all 0.3s ease;
}
.header-actions .mobile-menu-toggle .hamburger::before, .header-actions .mobile-menu-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  background-color: #2c3e50;
  transition: all 0.3s ease;
}
.header-actions .mobile-menu-toggle .hamburger::before {
  top: -8px;
}
.header-actions .mobile-menu-toggle .hamburger::after {
  top: 8px;
}
.header-actions .mobile-menu-toggle.active .hamburger {
  background-color: transparent;
}
.header-actions .mobile-menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.header-actions .mobile-menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

.main-navigation.platform-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.main-navigation.platform-nav .nav-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 992px) {
  .main-navigation.platform-nav .nav-items {
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .main-navigation.platform-nav .nav-items::-webkit-scrollbar {
    display: none;
  }
}
.main-navigation.platform-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #666666;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
}
@media (max-width: 992px) {
  .main-navigation.platform-nav .nav-item {
    flex-shrink: 0;
    padding: 0.4rem 0.8rem;
  }
}
@media (max-width: 768px) {
  .main-navigation.platform-nav .nav-item {
    padding: 0.3rem 0.6rem;
  }
}
.main-navigation.platform-nav .nav-item:hover, .main-navigation.platform-nav .nav-item.active {
  color: #7E5D4C;
  background-color: rgba(201, 204, 104, 0.1);
}
.main-navigation.platform-nav .nav-item:hover .nav-icon, .main-navigation.platform-nav .nav-item.active .nav-icon {
  transform: scale(1.1);
}
.main-navigation.platform-nav .nav-item .nav-icon {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  display: block;
  transition: transform 0.3s ease;
}
@media (max-width: 992px) {
  .main-navigation.platform-nav .nav-item .nav-icon {
    font-size: 1.2rem;
    margin-bottom: 0.1rem;
  }
}
@media (max-width: 768px) {
  .main-navigation.platform-nav .nav-item .nav-icon {
    font-size: 1rem;
    margin-bottom: 0;
  }
}
.main-navigation.platform-nav .nav-item .nav-label {
  font-family: "Stardos Stencil", serif;
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 0.1rem;
  letter-spacing: 0.03em;
}
@media (max-width: 992px) {
  .main-navigation.platform-nav .nav-item .nav-label {
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  .main-navigation.platform-nav .nav-item .nav-label {
    font-size: 0.7rem;
  }
}
.main-navigation.platform-nav .nav-item .nav-description {
  display: none; /* Hide descriptions to keep header height consistent */
  font-size: 0.65rem;
  color: rgba(102, 102, 102, 0.7);
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 992px) {
  .main-navigation.platform-nav .nav-item .nav-description {
    font-size: 0.6rem;
  }
}
@media (max-width: 768px) {
  .main-navigation.platform-nav .nav-item .nav-description {
    display: none;
  }
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-overlay .mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
@media (max-width: 480px) {
  .mobile-nav-overlay .mobile-nav-content {
    width: 100vw;
  }
}
.mobile-nav-overlay.active .mobile-nav-content {
  transform: translateX(0);
}
.mobile-nav-overlay .mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
}
.mobile-nav-overlay .mobile-nav-header .mobile-nav-title {
  font-family: "Stardos Stencil", serif;
  font-size: 1.2rem;
  color: #7E5D4C;
}
.mobile-nav-overlay .mobile-nav-header .mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666666;
  padding: 0.25rem;
}
.mobile-nav-overlay .mobile-nav-menu .mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  text-decoration: none;
  color: #2c3e50;
  border-bottom: 1px solid rgba(102, 102, 102, 0.1);
  transition: all 0.3s ease;
}
.mobile-nav-overlay .mobile-nav-menu .mobile-nav-item:hover {
  color: #7E5D4C;
  padding-left: 0.5rem;
}
.mobile-nav-overlay .mobile-nav-menu .mobile-nav-item .nav-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.mobile-nav-overlay .mobile-nav-menu .mobile-nav-item .nav-content .nav-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.mobile-nav-overlay .mobile-nav-menu .mobile-nav-item .nav-content .nav-description {
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.2;
}
.mobile-nav-overlay .mobile-nav-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(102, 102, 102, 0.2);
}
.mobile-nav-overlay .mobile-nav-footer .mobile-adventure-cta {
  display: block;
  width: 100%;
  padding: 1rem;
  background-color: #C9CC68;
  color: #2c3e50;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.mobile-nav-overlay .mobile-nav-footer .mobile-adventure-cta:hover {
  background-color: rgb(187.3663366337, 191.1237623762, 65.8762376238);
  transform: translateY(-1px);
}

body.mobile-nav-open {
  overflow: hidden;
}

/**
 * Footer Styles
 * Band of Beans footer component styling
 */
.site-footer {
  background-color: #2A1810;
  color: #F5F2ED;
  margin-top: 4rem;
}
.site-footer a {
  color: #F5F2ED;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer a:hover, .site-footer a:focus {
  color: #C9CC68;
  text-decoration: underline;
}

.footer-cta {
  background-color: #1F120B;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(184, 134, 94, 0.2);
}
.footer-cta .adventure-signup-footer {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.footer-cta .adventure-signup-footer h2 {
  font-family: "Stardos Stencil", serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #F5F2ED;
}
.footer-cta .adventure-signup-footer p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: rgba(245, 242, 237, 0.8);
}
.footer-cta .adventure-signup-footer .adventure-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1rem 2rem;
  background-color: rgba(201, 204, 104, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(201, 204, 104, 0.3);
}
@media (max-width: 600px) {
  .footer-cta .adventure-signup-footer .adventure-preview {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.footer-cta .adventure-signup-footer .adventure-preview .expedition-tag {
  font-family: "Stardos Stencil", serif;
  color: #C9CC68;
  font-size: 1rem;
  font-weight: 600;
}
.footer-cta .adventure-signup-footer .adventure-preview .countdown {
  color: rgba(245, 242, 237, 0.9);
  font-size: 0.9rem;
  background-color: rgba(184, 134, 94, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
}
.footer-cta .footer-email-signup .signup-wrapper {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .footer-cta .footer-email-signup .signup-wrapper {
    flex-direction: column;
  }
}
.footer-cta .footer-email-signup input[type=email] {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid #B8865E;
  background-color: rgba(42, 24, 16, 0.5);
  color: #F5F2ED;
  border-radius: 4px;
}
.footer-cta .footer-email-signup input[type=email]::-moz-placeholder {
  color: rgba(245, 242, 237, 0.5);
}
.footer-cta .footer-email-signup input[type=email]::placeholder {
  color: rgba(245, 242, 237, 0.5);
}
.footer-cta .footer-email-signup input[type=email]:focus {
  outline: none;
  border-color: #C9CC68;
  background-color: rgba(42, 24, 16, 0.8);
}
.footer-cta .footer-email-signup .signup-button {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: #C9CC68;
  color: #2A1810;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.footer-cta .footer-email-signup .signup-button:hover {
  background-color: rgb(187.3663366337, 191.1237623762, 65.8762376238);
  transform: translateY(-2px);
}

.footer-main {
  padding: 3rem 0;
}
.footer-main .footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-main .footer-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-main .footer-columns {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }
}
.footer-main .footer-column h3,
.footer-main .footer-column .footer-widget-title {
  font-family: "Stardos Stencil", serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #B8865E;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 1024px) {
  .footer-main .footer-column h3,
  .footer-main .footer-column .footer-widget-title {
    font-size: 1rem;
  }
}
.footer-main .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-main .footer-column ul li {
  margin-bottom: 0.8rem;
}
.footer-main .footer-column ul li a {
  font-size: 0.9rem;
  display: inline-block;
  padding: 0.2rem 0;
  font-weight: 500;
}
.footer-main .footer-column ul li a:hover {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}
.footer-main .footer-column ul li .nav-description {
  display: block;
  font-size: 0.75rem;
  color: rgba(245, 242, 237, 0.6);
  margin-top: 0.2rem;
  font-style: italic;
  line-height: 1.3;
}
.footer-main .footer-column.footer-column-3 .footer-widget-title {
  color: #C9CC68;
  font-weight: 600;
}

.footer-bottom {
  background-color: #1F120B;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(184, 134, 94, 0.1);
}
.footer-bottom .footer-bottom-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .footer-bottom .footer-bottom-content {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
  }
}
.footer-bottom .footer-brand .logo-placeholder {
  margin-bottom: 1rem;
}
.footer-bottom .footer-brand .logo-placeholder .brand-text h4 {
  font-family: "Stardos Stencil", serif;
  font-size: 1.5rem;
  color: #C9CC68;
  margin: 0 0 0.25rem 0;
}
.footer-bottom .footer-brand .logo-placeholder .brand-text .tagline {
  font-size: 0.9rem;
  color: rgba(245, 242, 237, 0.8);
  font-style: italic;
}
.footer-bottom .footer-brand .trademark {
  font-size: 0.8rem;
  color: rgba(245, 242, 237, 0.7);
  margin: 0;
  line-height: 1.4;
}
.footer-bottom .footer-brand .trademark .authenticity-note {
  display: block;
  margin-top: 0.5rem;
  font-style: italic;
  color: rgba(245, 242, 237, 0.6);
}
.footer-bottom .footer-adventure-follow {
  text-align: center;
}
.footer-bottom .footer-adventure-follow h4 {
  font-family: "Stardos Stencil", serif;
  font-size: 1.1rem;
  color: #B8865E;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-bottom .footer-adventure-follow .social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom .footer-adventure-follow .social-links .social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background-color: rgba(184, 134, 94, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-bottom .footer-adventure-follow .social-links .social-link .social-icon {
  font-size: 1.1rem;
}
.footer-bottom .footer-adventure-follow .social-links .social-link .social-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: #F5F2ED;
}
.footer-bottom .footer-adventure-follow .social-links .social-link:hover {
  background-color: rgba(201, 204, 104, 0.2);
  transform: translateY(-2px);
  border: 1px solid rgba(201, 204, 104, 0.3);
}
.footer-bottom .footer-adventure-follow .social-links .social-link:hover .social-text {
  color: #C9CC68;
}
@media (max-width: 600px) {
  .footer-bottom .footer-adventure-follow .social-links .social-link {
    padding: 0.6rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
  .footer-bottom .footer-adventure-follow .social-links .social-link .social-text {
    display: none;
  }
}
.footer-bottom .footer-info {
  text-align: right;
}
@media (max-width: 768px) {
  .footer-bottom .footer-info {
    text-align: center;
  }
}
.footer-bottom .footer-info .copyright {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  color: #F5F2ED;
  font-weight: 500;
}
.footer-bottom .footer-info .cultural-commitment {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(245, 242, 237, 0.7);
  line-height: 1.4;
}
.footer-bottom .footer-info .cultural-commitment .commitment-link {
  color: #C9CC68;
  text-decoration: underline;
}
.footer-bottom .footer-info .cultural-commitment .commitment-link:hover {
  color: rgb(214.6336633663, 216.8762376238, 142.1237623762);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}
@media (min-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
}

.button,
.btn,
.wp-element-button,
.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.button:focus,
.btn:focus,
.wp-element-button:focus,
.cta-button:focus {
  outline: 2px solid #C9CC68;
  outline-offset: 2px;
}

.button,
.btn,
.wp-element-button {
  background-color: #7E5D4C;
  color: #ffffff;
  border-color: #7E5D4C;
}
.button:hover,
.btn:hover,
.wp-element-button:hover {
  background-color: #B8865E;
  border-color: #B8865E;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(126, 93, 76, 0.3);
}

.cta-button.primary,
.button.primary {
  background-color: #C9CC68;
  color: #2c3e50;
  border-color: #C9CC68;
}
.cta-button.primary:hover,
.button.primary:hover {
  background-color: #B0BC5A;
  border-color: #B0BC5A;
  color: #2c3e50;
}

.btn--secondary,
.button.secondary {
  background-color: transparent;
  color: #7E5D4C;
  border-color: #7E5D4C;
}
.btn--secondary:hover,
.button.secondary:hover {
  background-color: #7E5D4C;
  color: #ffffff;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(102, 102, 102, 0.1);
  position: sticky;
  top: 0;
  z-index: 1010;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.main-navigation .site-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #7E5D4C;
  text-decoration: none;
}
.main-navigation .site-logo:hover {
  color: #B8865E;
}
.main-navigation .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
.main-navigation .nav-menu li {
  margin: 0;
}
.main-navigation .nav-menu a {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #2c3e50;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.main-navigation .nav-menu a:hover, .main-navigation .nav-menu a:focus {
  color: #7E5D4C;
  background-color: #f8f9fa;
}
.main-navigation .nav-menu .current-menu-item > a,
.main-navigation .nav-menu .current_page_item > a {
  color: #7E5D4C;
  border-bottom: 2px solid #C9CC68;
}
.main-navigation .menu-item-connect > a {
  position: relative;
  font-weight: 600;
}
.main-navigation .menu-item-connect > a::after {
  content: "•";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: #C9CC68;
  font-size: 1.2em;
}
.main-navigation .menu-item-connect > a:hover {
  color: #C9CC68;
}

.connect-navigation {
  background: white;
  border-bottom: 1px solid rgba(102, 102, 102, 0.1);
  position: sticky;
  top: 80px;
  z-index: 1020;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-items {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.nav-item {
  flex: 1;
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none;
  color: #666666;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.nav-item:hover, .nav-item.active {
  color: #7E5D4C;
  border-bottom-color: #C9CC68;
  background: #f8f9fa;
}
.nav-item .nav-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}
.nav-item .nav-label {
  display: block;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
.nav-item .nav-description {
  font-size: 0.875rem;
  color: #999999;
  margin: 0;
}

@media (max-width: 992px) {
  .main-navigation {
    padding: 0 1rem;
  }
  .main-navigation .nav-menu {
    display: none;
  }
  .nav-items {
    overflow-x: auto;
    gap: 0;
    -webkit-overflow-scrolling: touch;
  }
  .nav-item {
    min-width: 120px;
    flex-shrink: 0;
  }
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu-toggle .hamburger {
  width: 24px;
  height: 3px;
  background-color: #2c3e50;
  position: relative;
  transition: all 0.3s ease;
}
.mobile-menu-toggle .hamburger::before, .mobile-menu-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  background-color: #2c3e50;
  transition: all 0.3s ease;
}
.mobile-menu-toggle .hamburger::before {
  top: -8px;
}
.mobile-menu-toggle .hamburger::after {
  top: 8px;
}
.mobile-menu-toggle.active .hamburger {
  background-color: transparent;
}
.mobile-menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.mobile-menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/**
 * Klaviyo Forms Styles
 * Styles for email capture forms and messages
 */
.klaviyo-form-message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  text-align: center;
  animation: slideIn 0.3s ease-out;
}
.klaviyo-form-message.success {
  background-color: rgba(40, 167, 69, 0.1);
  color: rgb(30.1449275362, 125.8550724638, 52);
  border: 1px solid rgba(40, 167, 69, 0.3);
}
.klaviyo-form-message.error {
  background-color: rgba(220, 53, 69, 0.1);
  color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border: 1px solid rgba(220, 53, 69, 0.3);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-email-signup,
.adventure-signup {
  position: relative;
}
.footer-email-signup.loading input[type=email],
.footer-email-signup.loading button,
.adventure-signup.loading input[type=email],
.adventure-signup.loading button {
  opacity: 0.7;
  cursor: not-allowed;
}

.adventure-signup-message {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
}
.adventure-signup-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.adventure-signup-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
