body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #fff;
  color: #333;
}


header {
  background: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}


nav a {
  text-decoration: none;
  margin: 0 10px;
  color: #333;
  font-weight: bold;
  font-size: 14px;
}


.hero {
  width: 100%;
  height: 60vh;
  position: relative;
  overflow: hidden;
}


.section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}


.featured-posts, .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}


.post {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 390px;
}


.post:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


.post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s;
}


.post:hover img {
  transform: scale(1.05);
}


.post-content {
  padding: 15px;
}


.post-content h3 {
  font-size: 18px;
  margin: 0 0 10px;
}


.post-content p {
  font-size: 14px;
  color: #666;
}


footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}



logo-wrapper {
  padding-top:2px;
}

.image-wrappers {
  padding-top:0px;
  padding-bottom: 0px;	
}


/*attempt fix */

  .story-container {
    display: block !important;
  }
  .story-container::after {
    content: "";
    display: table;
    clear: both;
  }
  .story-image {
    float: left !important;
    width: 360px;
    height: auto;
    margin: 0 40px 20px 0;
  }
  .story-content {
    display: block !important;
  }

/*end of attempt fix */

/* Float the entire figure so the text wraps around it */
.story-figure {
  float: left;
  margin: 0 1.5rem 1.5rem 0;  /* right and bottom gutter */
  max-width: 360px;           /* match your image’s natural size */
  width: 100%;                /* scales down on narrow screens */
}

/* Make sure image is block-level and fully responsive */
.story-figure .story-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;      /* your existing rounding */
}

/* Caption sits immediately below the image inside the figure */
.story-figure .img-caption {
  margin-top: 0.5rem;
  font-family: 'Shadows Into Light', cursive;
  font-size: 0.9rem;
  color: #836953;
  text-align: center;
  line-height: 1.2;
}

.story-figure-right {
  float: right;
  margin: 0 0 1.5rem 1.5rem; /* bottom + left gutter */
  max-width: 360px;
  width: 100%;
}

.post-link {
  display: block;        /* let it fill the width of its container */
  text-decoration: none; /* remove the default underline */
  color: inherit;        /* keep your .post text colors */
}

.post-link .post {
  margin: 0; /* if you had margins on .post, keep them here */
  /* …any other existing .post rules… */
}



@media (max-width: 600px) {
  .hero {
    height: 75vh;
  }
	
/* Float the entire figure so the text wraps around it */
.story-figure {
  margin: 0 !important; /* right and bottom gutter */
	
	}		
	
  nav a {
    font-size: 12px;
  }

  .story-figure-right {
    float: none !important;
    display: block !important;
    width: auto !important;
    max-width: 360px !important;
    height: auto !important;
    margin: 0 auto 20px auto !important;
    border-radius: 10px !important;
    align-self: center !important;
  }

	

}


.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding: 10px 20px;
  background: #fff;
  color: #444;
  border-bottom: 1px solid #eee;
}


.top-bar .right a {
  margin-left: 10px;
  color: #444;
  text-decoration: none;
  font-size: 14px;
}


.top-bar .lang {
  margin-left: 15px;
}


.logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 10px;
  background: #fff;
}


.logo-bar h1.logo {
  font-size: 48px;
  font-weight: 700;
  margin: 0 20px;
  font-family: Georgia, serif;
  text-align: center;
}


.logo-bar h1.logo span {
  color: #c49a6c;
}


.logo-bar .left-line,
.logo-bar .right-line {
  flex: 1;
  height: 1px;
  background-color: #c49a6c; border: none;
  max-width: 120px;
}


.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
  border-bottom: 1px solid #eee;
}


.main-nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin-top: 25px;
}


.main-nav ul li {
  margin: 0 12px;
}


.main-nav ul li:first-child a {
  color: #c49a6c;
}


.main-nav .search {
  display: flex;
  border: 1px solid #ccc;
}


.main-nav .search input {
  border: none;
  padding: 6px 10px;
  outline: none;
}


.main-nav .search button {
  background-color: #c49a6c; border: none;
  border: none;
  padding: 6px 10px;
  color: #fff;
  cursor: pointer;
}




@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }



  .main-nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }



  .main-nav ul li {
    margin: 5px 8px;
  }



  .main-nav .search {
    width: 100%;
    margin-top: 10px;
  }



  .main-nav .search input {
    flex: 1;
    width: 100%;
  }


}

.main-nav ul {
  position: relative;
}



.main-nav ul:hover li a::after {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}




.top-bar .right a {
  font-size: 18px;
}



@media (max-width: 768px) {
  .top-bar .right a {
    font-size: 16px;
  }


}


.brochure-button {
  padding: 3px 12px 3px 11px;
  background-color: #c49a6c;
  color: #fff;
  border: 2px solid #c49a6c;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
}



.brochure-button:hover {
  background-color: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px #c49a6c;
  background-image: linear-gradient(120deg, #c49a6c 0%, #000 100%);
  background-size: 300% 300%;
  animation: dissolveFade 0.7s forwards;
}



@keyframes dissolveFade {
  0% {
    background-position: 0% 50%;
    color: #fff;
  }


  100% {
    background-position: 100% 50%;
    color: #fff;
  }


}




.sticky-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  animation: slideDown 0.5s ease forwards;
  z-index: 1000;
}




.sticky-nav .menu-logo {
  display: inline-block;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: bold;
  color: #000000;
  margin-right: 20px;
  animation: fadeIn 0.5s ease forwards;
  white-space: nowrap;
}



.menu-logo {
  display: none;
}




@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }


  to {
    transform: translateY(0);
    opacity: 1;
  }


}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }


  to {
    opacity: 1;
    transform: translateX(0);
  }


}


@media (max-width: 768px) {
  .sticky-nav {
    flex-direction: column;
    align-items: flex-start;
  }


}



.menu-toggle {
  display: none;
  font-size: 28px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  color: #c49a6c;
  margin: 0 auto;
  padding: 10px 10px 20px 10px;
  text-align: center;
}



@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }



  .main-nav ul,
  .main-nav .brochure-button {
    display: none;
    width: 100%;
  }



  .main-nav ul {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }



  .main-nav ul li {
    width: 100%;
    text-align: center;
    margin: 5px 0;
  }



  .brochure-button {
    margin: 10px 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }



  .menu-logo {
    text-align: center;
    width: 100%;
    margin: 10px auto;
  }


}

@keyframes fadeInMenu {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }


  to {
    opacity: 1;
    transform: translateY(0);
  }


}



@media (max-width: 900px) {
  .main-nav,
  .sticky-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 20px;
  }

.image-wrappers {
  padding-top: 20px;
  padding-bottom: 20px;	
}

.logo-bar {
  padding: 40px 10px;
}


	
  .sticky-nav .menu-logo {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    font-size: 20px;
  }



  .main-nav ul,
  .main-nav .brochure-button {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }



  .main-nav ul li {
    flex: 1 1 45%;
    text-align: center;
  }



  .brochure-button {
    width: 100%;
    font-size: 14px;
    padding: 10px;
  }



  .menu-toggle {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    padding: 10px;
    margin-top: 10px;
    box-sizing: border-box;
  }


}


@media (max-width: 900px) {
  .main-nav ul,
  .main-nav .brochure-button {
    display: none;
  }


  .main-nav ul li {
    flex: 1 1 45%;
    text-align: center;
    margin: 4px 0;
  }


  .brochure-button {
    width: 100%;
    margin: 10px auto;
  }


}
@media (max-width: 767px) {
  .main-nav.show-menu ul {
    flex-direction: column;
    align-items: center;
  }


  .main-nav ul li {
    width: 100%;
    flex: none;
  }


}
.sticky-nav {
  padding-right: 16px;
  box-sizing: border-box;
}


.menu-toggle {
  z-index: 1001;
  background: #fff;
  position: relative;
}







@media (min-width: 1024px) and (max-width: 1105px) {


  .brochure-button {
    flex-shrink: 0;
    margin-left: auto;
  }


}


.sticky-nav {
  display: flex;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}











@media (min-width: 1024px) and (max-width: 1105px) {


  .brochure-button {
    margin: 10px auto;
  }


}









.main-nav ul li a {
  position: relative;
  overflow: hidden;
  font-weight: bold;
  font-size: 14px;
  color: #222;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 6px;
}



.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #c49a6c;
  transition: width 0.3s ease;
}



.main-nav ul li a:hover::after {
  width: 100%;
}




.main-nav ul li a {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  color: #222;
  text-align: center;
  text-decoration: none;
}



.main-nav ul li a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: left;
  width: 100%;
  height: 2px;
  background-color: #c49a6c;
  transition: transform 0.3s ease;
  pointer-events: none;
}



.main-nav ul li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}




.sticky-social-icons {
  display: none;
  margin-left: auto;
}


.sticky-social-icons a {
  margin-left: 10px;
  color: #444;
  font-size: 18px;
  text-decoration: none;
}


.sticky-nav .sticky-social-icons {
  display: flex;
  align-items: center;
}




.main-nav .nav-core {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 12px;
}



.sticky-nav .nav-core {
  justify-content: center;
}




@media (max-width: 1105px) and (min-width: 1024px) {
  .sticky-nav {
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
  }



  .sticky-nav .nav-core {
    flex: 1;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
    flex-shrink: 1;
  }



  .sticky-nav .brochure-button {
    font-size: 13px;
    padding: 8px 16px;
    white-space: nowrap;
  }



  .sticky-social-icons {
    flex-shrink: 0;
  }



  .sticky-social-icons a {
    font-size: 16px;
    margin-left: 8px;
  }



  .sticky-nav ul li a {
    font-size: 13px;
    padding-bottom: 4px;
  }


}


.logo-bar .left-line,
.logo-bar .right-line {
  max-width: 120px;
}




.logo-bar .left-line,
.logo-bar .right-line {
  max-width: 120px;
  margin: 0 20px;
}



.painless-trip {
  background-color: #ffffff;
  padding: 60px 20px;
}


.trip-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}


.trip-text {
  flex: 1 1 400px;
}


.trip-text h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 10px;
}


.trip-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}


.trip-image {
  flex: 1 1 400px;
  text-align: center;
}


.trip-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}



@media (max-width: 768px) {
  .trip-container {
    flex-direction: column;
    text-align: center;
  }


  .trip-text, .trip-image {
    flex: 1 1 100%;
  }


}



.brochure-button {
  display: flex;
  align-items: center;
  gap: 11px;
}



.brochure-button .brochure-logo {
  height: 33px;
  width: auto;
}





@media (min-width: 1106px) {
  .main-nav.sticky-nav .nav-core ul li a {
    position: relative;
    top: 3px;
  }


}



@media (min-width: 1106px) {
  .main-nav.sticky-nav .brochure-button {
    padding-top: 2px;
    padding-bottom: 2px;
  }


}























.main-nav.sticky-nav .brochure-button {
  padding: 3px 12px 3px 9px;
}





.hero {
  position: relative;
  width: 100%;
  height: 600px; /* adjust to match your design */
  background-size: cover;
  background-position: center center;
}












.hero {
  overflow: hidden;
}




.hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 80px;
  pointer-events: none;}






:root {
  --color-bg: #fdf9ee;
  --color-olive: #556b2f;
  --color-brown: #8b4513;
  --color-footer-bg: #4b3621;
}




body {
  background-color: var(--color-bg);
}




header, .top-bar, nav {
  background-color: var(--color-olive);
}









a:hover, a:focus {
  color: var(--color-brown);
}




footer {
  background-color: var(--color-footer-bg);
  color: var(--color-bg);
}




footer a {
  color: var(--color-bg);
}





.top-bar,
.top-bar a,
.top-bar .social-icons a {
  color: #fdf9ee !important;
}




.story-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}



.story-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 60px;
}



.story-image {
  float: left;
  margin: 0 2rem 1.25rem 0;  
  border-radius: 10px;
  
  /* let it size itself, but never overflow */
  width: auto;
  max-width: 360px;   /* or 40%, or remove if you don’t need a cap */
  height: auto;
}


.story-image-right {
  float: right;
  margin: 20px;
  border-radius: 10px;	
  
  /* let it size itself, but never overflow */
  width: auto;
  max-width: 360px;   /* or 40%, or remove if you don’t need a cap */
  height: auto;
}


.story-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}



.story-content p {
  margin: 0em;
  padding-bottom: 10px;
}



@media (max-width: 900px) {
  .story-container {
    flex-direction: column;
    align-items: center;
  }


  .story-image {
    margin-bottom: 1px;
  }


  /* override the right float at narrow widths */
  .story-image-right {
    float: none !important;             /* remove the float */
    display: block !important;          /* ensure it’s a block */
    width: auto !important;             /* use the intrinsic size */
    max-width: 360px !important;        /* cap it so it’s always smaller than the container */
    height: auto !important;
    margin: 0 auto 20px auto !important;/* center it horizontally */
    border-radius: 10px !important;     /* keep your rounding */
    align-self: center !important;      /* in case you’re still in a flex context */
  }
	
	
	
@media (max-width: 600px) {
  .hero {
    height: 75vh;
  }
  nav a {
    font-size: 12px;
  }
	
.logo-bar {
  padding: 20px 10px 10px 10px;
}
	
	.logo-bar h1.logo {
  font-size: 33px;
}
	
}

@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }

  .main-nav ul li {
    margin: 5px 8px;
  }

  .main-nav .search {
    width: 100%;
    margin-top: 10px;
  }

  .main-nav .search input {
    flex: 1;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .top-bar .right a {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .sticky-nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav ul,
  .main-nav .brochure-button {
    display: none;
    width: 100%;
  }

  .main-nav.show-menu ul,
  .main-nav.show-menu .brochure-button {
    display: block;
    animation: fadeInMenu 0.3s ease-in-out;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .main-nav ul li {
    width: 100%;
    text-align: center;
    margin: 5px 0;
  }

  .brochure-button {
    margin: 10px 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  .menu-logo {
    text-align: center;
    width: 100%;
    margin: 10px auto;
  }
}

@media (max-width: 956px) {
  .menu-toggle {
    display: block;
  }

  .main-nav ul,
  .main-nav .brochure-button {
    display: none;
    width: 100%;
  }

  .main-nav.show-menu ul,
  .main-nav.show-menu .brochure-button {
    display: block;
    animation: fadeInMenu 0.3s ease-in-out;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .main-nav ul li {
    width: 100%;
    text-align: center;
    margin: 5px 0;
  }

  .brochure-button {
    margin: 10px 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  .menu-logo {
    text-align: center;
    width: 100%;
    margin: 10px auto;
  }
}

@media (max-width: 956px) {
  .menu-toggle {
    display: block;
    font-size: 28px;
    font-weight: bold;
    background: none;
    border: 2px solid #c49a6c;
    border-radius: 12px;
    color: #c49a6c;
    margin: 0 auto;
    padding: 8px 16px;
    text-align: center;
    transition: background 0.3s, color 0.3s;
  }

  .menu-toggle:hover {
    background-color: #c49a6c;
    color: #fff;
  }

  .main-nav ul,
  .main-nav .brochure-button {
    display: none;
    width: 100%;
  }

  .main-nav.show-menu ul,
  .main-nav.show-menu .brochure-button {
    display: block;
    animation: fadeInMenu 0.3s ease-in-out;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .main-nav ul li {
    width: 100%;
    text-align: center;
    margin: 5px 0;
  }

  .brochure-button {
    margin: 10px 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  .menu-logo {
    text-align: center;
    width: 100%;
    margin: 10px auto;
  }
}

@media (max-width: 956px) {
  .menu-toggle {
    display: block;
    width: 100%;
    font-size: 22px;
    font-weight: bold;
    background: none;
    border: 1px solid #c49a6c;
    border-radius: 10px;
    color: #c49a6c;
    padding: 12px;
    text-align: center;
    box-sizing: border-box;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }

  .menu-toggle:hover {
    background-color: #c49a6c;
    color: #fff;
  }

  .main-nav ul,
  .main-nav .brochure-button {
    display: none;
    width: 100%;
  }

  .main-nav.show-menu ul,
  .main-nav.show-menu .brochure-button {
    display: block;
    animation: fadeInMenu 0.3s ease-in-out;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .main-nav ul li {
    width: 100%;
    text-align: center;
    margin: 5px 0;
  }

  .brochure-button {
    margin: 10px 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  .menu-logo {
    text-align: center;
    width: 100%;
    margin: 10px auto;
  }
}

@media (max-width: 900px) {
  .main-nav,
  .sticky-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px;
  }
	
  .sticky-nav .menu-logo {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    font-size: 20px;
  }

  .main-nav ul,
  .main-nav .brochure-button {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .main-nav ul li {
    flex: 1 1 45%;
    text-align: center;
  }

  .brochure-button {
    width: 100%;
    font-size: 14px;
    padding: 10px;
  }

  .menu-toggle {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    padding: 10px;
    margin-top: 10px;
    box-sizing: border-box;
  }
}

@media (max-width: 900px) {
  .main-nav ul,
  .main-nav .brochure-button {
    display: none;
  }
  .main-nav.show-menu ul,
  .main-nav.show-menu .brochure-button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInMenu 0.3s ease-in-out;
  }
  .main-nav ul li {
    flex: 1 1 45%;
    text-align: center;
    margin: 4px 0;
  }
  .brochure-button {
    width: 100%;
    margin: 10px auto;
  }
}

@media (max-width: 767px) {
  .main-nav.show-menu ul {
    flex-direction: column;
    align-items: center;
      }
      
  .main-nav ul li {
    width: 100%;
    flex: none;
  }
}



@media (min-width: 1024px) and (max-width: 1105px) {
  .main-nav {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
  }

  .main-nav ul {
    flex: 1 1 auto;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .brochure-button {
    flex-shrink: 0;
    margin-left: auto;
  }
}

@media (min-width: 1024px) and (max-width: 1105px) {
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .main-nav ul {
    flex: 1 1 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .brochure-button {
    margin: 10px auto;
  }
}

@media (max-width: 1105px) and (min-width: 1024px) {
  .sticky-nav {
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .sticky-nav .nav-core {
    flex: 1;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
    flex-shrink: 1;
  }

  .sticky-nav .brochure-button {
    font-size: 13px;
    padding: 8px 16px;
    white-space: nowrap;
  }

  .sticky-social-icons {
    flex-shrink: 0;
  }

  .sticky-social-icons a {
    font-size: 16px;
    margin-left: 8px;
  }

  .sticky-nav ul li a {
    font-size: 13px;
    padding-bottom: 4px;
  }
}

@media (max-width: 768px) {
  .trip-container {
    flex-direction: column;
    text-align: center;
  }
  .trip-text, .trip-image {
    flex: 1 1 100%;
  }
}

@media (min-width: 1106px) {
  .main-nav.sticky-nav .nav-core ul li a {
    position: relative;
    top: 3px;
  }
}

@media (min-width: 1106px) {
  .main-nav.sticky-nav .brochure-button {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .main-nav.sticky-nav .brochure-logo {
    height: 20px;
    width: auto;
  }
  .main-nav.sticky-nav .nav-core ul li a {
    font-size: 11px;
    position: relative;
    top: 3px;
  }
}

@media (max-width: 1000px) {
  
  
  
  .intro-text p {
    column-count: 1;
  }
}

@media (max-width: 800px) {
  
  
  
  .intro-text p {
    column-count: 1;
  }
}

@media (max-width: 660px) {
  
  
  
  .intro-text p {
    column-count: 1;
  }
}

@media (max-width: 500px) {
  
  
  .intro-text p {
    column-count: 1;
  }
}

@media (max-width: 900px) {
  .story-container {
    flex-direction: column;
    align-items: center;
  }
  .story-image {
    margin-bottom: 1px;
  }

}










.story-content p {
  margin: 0 0 1em 0;
  padding-bottom: 2px;
}


@media (min-width: 601px) {
  .story-container {
    display: block !important;           /* cancel flex, allow wrap */
  }

  .story-image {
    float: left;
    width: 360px;
    height: 450px;
    margin: 0 40px 20px 0;               /* space on right & bottom */
  }

  .story-content {
    display: block !important;
  }

  
  .story-container::after {
    content: "";
    display: block;
    clear: both;
  }
}


@media (max-width: 600px) {
  .story-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .story-image {
    float: none;                         /* stop wrapping */
    margin: 0 0 20px 0;                  /* space below image */
  }
}





@media (min-width: 601px) {
  .story-container {
    display: block !important;      /* allow float wrapping */
  }

  .story-image {
    float: left;
    width: 360px;
    height: 450px;
    margin: 0 40px 20px 0;          /* space for text */
  }

  .story-content {
    display: block !important;
  }

  .story-content p {
    margin: 0 0 1em;               /* consistent paragraph spacing */
    padding-bottom: 2px;
  }

  
  .story-container::after {
    content: "";
    display: block;
    clear: both;
  }
}

@media (max-width: 600px) {
  .story-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .story-image {
    float: none;
    margin: 0 0 20px;
  }

  .story-content p {
    margin: 0 0 1em;
	padding-bottom: 2px;
  }
}
}


/* For viewports 600px and narrower: stack image above text */
@media (max-width: 600px) {
  .story-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .story-image {
    float: none !important;
    width: 100% !important;
    margin: 0 0 20px !important;
  }
  .story-content {
    display: block !important;
  }
}



/* ===== Hero <img> Cover Replacement ===== */
.hero {
  position: relative;
  overflow: hidden; /* ensure container crops the image */
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}


/* ====== TEAM GALLERY STYLES START ====== */
.team-gallery .auto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size, 14rem), 1fr));
  grid-gap: var(--auto-grid-gap, 0);
  padding: 0;
}

.team-gallery .flow > * + * {
  margin-top: var(--flow-space, 1em);
}

.team-gallery .team {
  --flow-space: 2em;
}

.team-gallery .profile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 1/1;
  position: relative;
  padding: 1.5rem;
  color: #ffffff;
  backface-visibility: hidden;
  text-decoration: none;
  overflow: hidden;
}

.team-gallery .profile::before,
.team-gallery .profile::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.team-gallery .profile::before {
  background: linear-gradient(
    to top,
    hsl(0 0% 0% / 0.79) 0%,
    hsl(0 0% 0% / 0) 100%
  );
  transition: 300ms opacity linear;
}

.team-gallery .profile::after {
  background: linear-gradient(
    45deg,
    hsl(5 97% 63% / 0.7) 0,
    hsl(5 97% 63% / 0) 100%
  );
  opacity: 0;
  transition: 300ms opacity linear;
}

.team-gallery .profile > * {
  z-index: 1;
}

.team-gallery .profile img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  z-index: -1;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 200ms ease, transform 250ms linear;
}

.team-gallery .profile h2,
.team-gallery .profile p {
  transform: translateY(2ex);
}

.team-gallery .profile h2 {
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.03ch;
  transition: 300ms transform ease;
}

.team-gallery .profile p {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0;
  transition: 300ms opacity linear, 300ms transform ease-in-out;
}

.team-gallery .profile:focus {
  outline: 0.5rem solid white;
  outline-offset: -0.5rem;
}

.team-gallery .profile:hover :is(h2, p),
.team-gallery .profile:focus :is(h2, p) {
  transform: none;
}

.team-gallery .profile:hover::after,
.team-gallery .profile:focus::after,
.team-gallery .profile:hover::before,
.team-gallery .profile:focus::before {
  opacity: 0.7;
}

.team-gallery .profile:hover p,
.team-gallery .profile:focus p {
  opacity: 1;
  transition-delay: 200ms;
}

.team-gallery .profile:hover img,
.team-gallery .profile:focus img {
  filter: grayscale(0);
  transform: scale(1.05) rotate(1deg);
}

.team-gallery ul {
  list-style: none;
}

/* ====== TEAM GALLERY STYLES END ====== */
