/*
Theme Name: Hawaii By Storm
Theme URI: https://hawaiibystorm.com/
Author: Hawaii By Storm
Description: A custom classic WordPress theme for Hawaii By Storm private Maui tours.
Version: 1.0.79
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: hawaii-by-storm
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --hbs-ink: #17130f;
  --hbs-black: #080706;
  --hbs-cream: #fcf9f6;
  --hbs-paper: #ffffff;
  --hbs-bronze: #7e6849;
  --hbs-bronze-dark: #57452f;
  --hbs-gold: #d19f40;
  --hbs-gold-bright: #e1b452;
  --hbs-muted: #6d675f;
  --hbs-line: #dfd7cc;
  --hbs-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --hbs-sans: "Josefin Sans", "Avenir Next", "Trebuchet MS", Arial, sans-serif;
  --hbs-body: Lato, "Avenir Next", Arial, sans-serif;
  --hbs-content: 1080px;
  --hbs-wide: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 145px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--hbs-paper);
  color: var(--hbs-ink);
  font-family: var(--hbs-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
  font-family: var(--hbs-body);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

blockquote,
figure {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--hbs-gold-bright);
  outline-offset: 4px;
}

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

.skip-link:focus {
  position: fixed !important;
  top: 8px;
  left: 8px;
  z-index: 99999;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  clip: auto;
  overflow: visible;
  background: white;
  color: black;
  font-weight: 700;
}

.site-main {
  min-height: 50vh;
}

.promo-bar {
  position: sticky;
  top: 0;
  z-index: 1200;
  min-height: 33px;
  display: grid;
  place-items: center;
  padding: 5px 24px;
  background: var(--hbs-bronze);
  color: white;
  font-family: var(--hbs-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.promo-bar strong {
  color: #ffe4a8;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 33px;
  z-index: 1100;
  height: 98px;
  background: rgba(8, 7, 6, 0.985);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.header-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 max(3vw, 30px);
}

.brand {
  flex: 0 0 auto;
  display: block;
}

.brand img {
  width: 197px;
  height: auto;
}

.primary-navigation {
  margin-left: auto;
  color: white;
  font-family: var(--hbs-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  line-height: 1;
  text-transform: uppercase;
}

.primary-menu,
.primary-menu .sub-menu,
.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.1vw, 34px);
}

.primary-menu > li {
  position: relative;
}

.primary-menu > li > a {
  display: block;
  padding: 18px 0;
  transition: color 160ms ease;
}

.primary-menu > li > a:hover,
.primary-menu > li:focus-within > a,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-ancestor > a {
  color: var(--hbs-gold-bright);
}

.primary-menu > .menu-item-has-children > a::after {
  content: "⌄";
  display: inline-block;
  margin-left: 8px;
  color: var(--hbs-gold-bright);
  transform: translateY(-1px);
}

.primary-menu .sub-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: -24px;
  width: 245px;
  display: grid;
  padding: 16px 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  background: #050505;
  border-top: 3px solid white;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.primary-menu .sub-menu a {
  display: block;
  padding: 12px 24px;
  color: white;
  font-size: 12px;
  letter-spacing: 1.5px;
  line-height: 1.35;
}

.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--hbs-gold-bright);
}

.primary-menu > .menu-book > a {
  min-width: 152px;
  padding: 14px 20px;
  background: var(--hbs-gold);
  color: white;
  text-align: center;
}

.primary-menu > .menu-book > a:hover {
  background: var(--hbs-gold-bright);
  color: var(--hbs-black);
}

.menu-toggle {
  position: relative;
  width: 45px;
  height: 42px;
  display: none;
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle > span:last-child {
  content: "";
  position: absolute;
  left: 6px;
  width: 33px;
  height: 2px;
  background: var(--hbs-gold-bright);
  transition: opacity 160ms ease, top 160ms ease, transform 160ms ease;
}

.menu-toggle::before {
  top: 10px;
}

.menu-toggle > span:last-child {
  top: 20px;
}

.menu-toggle::after {
  top: 30px;
}

.menu-is-open .menu-toggle::before {
  top: 20px;
  transform: rotate(45deg);
}

.menu-is-open .menu-toggle > span:last-child {
  opacity: 0;
}

.menu-is-open .menu-toggle::after {
  top: 20px;
  transform: rotate(-45deg);
}

.button,
.wp-block-button__link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px 11px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--hbs-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.wp-block-button__link:hover {
  transform: translateY(-2px);
}

.button-gold,
.wp-block-button__link {
  background: var(--hbs-gold);
  color: white;
}

.button-gold:hover,
.wp-block-button__link:hover {
  background: var(--hbs-gold-bright);
  color: var(--hbs-black);
}

.button-black {
  background: var(--hbs-black);
  color: white;
}

.button-black:hover {
  background: var(--hbs-bronze);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: white;
}

.button-outline:hover {
  background: white;
  color: var(--hbs-black);
}

.button-outline-dark {
  border-color: var(--hbs-bronze);
  color: var(--hbs-bronze-dark);
}

.button-outline-dark:hover {
  background: var(--hbs-bronze);
  color: white;
}

.eyebrow {
  margin: 0 0 15px;
  color: #f0d29b;
  font-family: var(--hbs-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3.1px;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--hbs-bronze);
}

.home-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #31291f;
  color: white;
}

.home-hero-poster,
.home-hero-video,
.home-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-poster {
  display: block;
}

.home-hero-poster img,
.home-hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.home-hero-video {
  opacity: 0;
  transition: opacity 500ms ease;
}

.home-hero-video.is-ready {
  opacity: 1;
}

.hbs-deferred-picture {
  display: block;
}

.home-hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.38), rgba(8, 7, 6, 0.56)),
    linear-gradient(90deg, rgba(8, 7, 6, 0.24), transparent 70%);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 48px));
  padding: 70px 0 95px;
  text-align: center;
}

.stars {
  width: 148px;
  height: auto;
}

.home-hero-content .stars,
.reviews-heading .stars,
.difference-intro .stars {
  margin: 0 auto 22px;
}

.home-hero h1,
.simple-hero h1 {
  margin: 0;
  color: white;
  font-family: var(--hbs-display);
  font-size: clamp(54px, 7.2vw, 86px);
  font-weight: 700;
  letter-spacing: -2.5px;
  line-height: 0.98;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.28);
}

.hero-subtitle {
  max-width: 790px;
  margin: 26px auto 32px;
  font-family: var(--hbs-sans);
  font-size: clamp(20px, 2.4vw, 31px);
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.25;
}

.hero-actions,
.story-actions,
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-actions {
  gap: 30px;
}

.text-link-light {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  font-family: var(--hbs-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 2;
  display: grid;
  gap: 3px;
  color: white;
  font-family: var(--hbs-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span:last-child {
  color: var(--hbs-gold-bright);
  font-size: 22px;
}

.award-strip {
  display: grid;
  gap: 20px;
  padding: 34px 24px 40px;
  background: var(--hbs-cream);
  border-bottom: 1px solid var(--hbs-line);
  text-align: center;
}

.award-strip > p {
  margin: 0;
  color: var(--hbs-bronze);
  font-family: var(--hbs-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.award-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 6vw, 80px);
}

.award-logos img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.section {
  padding: 92px max(5vw, 24px);
}

.section-cream,
.blog-section,
.booking-section {
  background: var(--hbs-cream);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.difference-intro h2,
.story-copy h2,
.article-end-cta h2,
.empty-state h2 {
  margin: 0 0 18px;
  color: var(--hbs-bronze);
  font-family: var(--hbs-display);
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.08;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--hbs-muted);
  font-size: 18px;
  line-height: 1.75;
}

.destination-grid,
.vehicle-grid,
.post-grid,
.review-grid {
  width: min(var(--hbs-content), 100%);
  margin: 0 auto;
  display: grid;
  gap: 36px;
}

.destination-grid,
.post-grid,
.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.destination-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e8dfd4;
}

.destination-image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(126, 104, 73, 0.2);
  pointer-events: none;
}

.destination-image-link img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 500ms ease;
}

.destination-image-link:hover img {
  transform: scale(1.035);
}

.destination-card h3,
.vehicle-copy h3 {
  margin: 24px 0 10px;
  color: var(--hbs-ink);
  font-family: var(--hbs-sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.25;
  text-transform: uppercase;
}

.destination-card > p,
.vehicle-copy > p:not(.eyebrow) {
  margin: 0 0 16px;
  color: var(--hbs-muted);
  font-size: 16px;
  line-height: 1.7;
}

.underlined-link {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--hbs-gold);
  color: var(--hbs-bronze-dark);
  font-family: var(--hbs-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.vehicle-section {
  background: white;
}

.vehicle-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.vehicle-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--hbs-line);
  background: var(--hbs-cream);
}

.vehicle-image-wrap {
  min-height: 335px;
  display: grid;
  place-items: end center;
  padding: 30px 26px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(209, 159, 64, 0.19), transparent 60%),
    #f0ebe4;
}

.vehicle-image-wrap img {
  width: 100%;
  max-width: 520px;
}

.vehicle-copy {
  padding: 32px 34px 38px;
  text-align: center;
}

.vehicle-copy .eyebrow {
  margin-bottom: 6px;
}

.vehicle-copy h3 {
  margin-top: 0;
}

.reviews-section {
  padding: 82px max(5vw, 24px) 90px;
  background: #000;
  color: white;
}

.reviews-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.reviews-heading > p {
  margin: 0 0 9px;
  color: #e1dbd4;
  font-family: var(--hbs-sans);
  font-size: 15px;
  font-weight: 500;
}

.reviews-heading h2 {
  margin: 0 0 24px;
  color: white;
  font-family: var(--hbs-sans);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.15;
  text-transform: uppercase;
}

.review-platforms {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #d7d0c8;
  font-family: var(--hbs-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.review-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.04);
}

.review-stars {
  margin-bottom: 14px;
  color: var(--hbs-gold-bright);
  letter-spacing: 3px;
}

.review-card > p {
  margin: 0 0 22px;
  color: #eee9e3;
  font-size: 17px;
  line-height: 1.75;
}

.review-card footer {
  margin-top: auto;
  color: white;
  font-family: var(--hbs-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.review-card footer span {
  color: #aaa198;
}

.difference-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: center;
  padding: 90px max(6vw, 24px);
  background:
    linear-gradient(135deg, rgba(126, 104, 73, 0.18), transparent 45%),
    var(--hbs-black);
  border-top: 1px solid rgba(225, 180, 82, 0.28);
  color: white;
}

.difference-intro {
  max-width: 600px;
}

.difference-intro .stars {
  margin-left: 0;
}

.difference-intro h2 {
  color: white;
}

.difference-intro > p:last-child {
  margin: 0;
  color: #d9d1c8;
  font-size: 20px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.feature {
  min-height: 0;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.feature-summary {
  min-height: 105px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  cursor: pointer;
  list-style: none;
}

.feature-summary::-webkit-details-marker {
  display: none;
}

.feature-summary:focus-visible {
  outline: 3px solid var(--hbs-gold-bright);
  outline-offset: -4px;
}

.feature-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  position: relative;
  border: 1px solid var(--hbs-gold-bright);
  border-radius: 50%;
  color: var(--hbs-gold-bright);
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.feature-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.feature[open] .feature-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.feature-title {
  margin: 0;
  font-family: var(--hbs-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.45;
  text-transform: uppercase;
}

.feature-detail {
  padding: 0 22px 22px;
}

.feature-detail p {
  margin: 0;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #d9d1c8;
  font-family: var(--hbs-body);
  font-size: 14px;
  line-height: 1.65;
}

.story-section {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  gap: 40px;
  align-items: center;
  overflow: hidden;
  background: var(--hbs-cream);
}

.story-copy {
  width: 100%;
  max-width: 680px;
  margin-left: auto;
}

.story-copy > p:not(.eyebrow) {
  color: var(--hbs-muted);
  font-size: 18px;
  line-height: 1.85;
}

.story-actions {
  justify-content: flex-start;
  margin-top: 30px;
}

.story-image-wrap {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  justify-items: center;
}

.story-image-wrap img {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  max-height: 600px;
  object-fit: contain;
}

.story-sun {
  position: absolute;
  top: 45px;
  left: 50%;
  width: min(380px, 75vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #e6d4b5;
  transform: translateX(-50%);
}

.simple-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-color: #4a3f33;
  background-position: center;
  background-size: cover;
  color: white;
}

.simple-hero-content {
  position: relative;
  z-index: 1;
  width: min(1020px, calc(100% - 48px));
  padding: 70px 0;
  text-align: center;
}

.simple-hero h1 {
  font-size: clamp(46px, 6.4vw, 78px);
  line-height: 1.05;
}

.article-hero h1,
.search-hero h1 {
  font-size: clamp(42px, 5.8vw, 70px);
}

.booking-frame-wrap {
  width: min(1020px, 100%);
  margin: 0 auto;
  padding: 18px;
  background: white;
  border: 1px solid var(--hbs-line);
}

.booking-frame {
  width: 100%;
  min-height: 980px;
  border: 0;
  background: white;
}

.booking-fallback {
  padding: 22px;
  background: var(--hbs-cream);
  text-align: center;
}

.booking-fallback p {
  margin: 0 0 14px;
}

.page-content .hbs-waimoku-intro {
  position: relative;
  padding: clamp(48px, 6vw, 86px) max(24px, 4vw) clamp(58px, 7vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 4%, rgba(209, 159, 64, 0.17), transparent 28%),
    linear-gradient(180deg, #fffdfb 0%, #f8f3ec 100%);
}

.page-content .hbs-waimoku-intro::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--hbs-gold), var(--hbs-bronze), var(--hbs-gold));
}

.page-content .hbs-waimoku-intro__header {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  margin: 0 auto clamp(34px, 4vw, 54px);
  text-align: center;
}

.page-content .hbs-waimoku-intro__eyebrow,
.page-content .hbs-waimoku-intro__kicker {
  margin: 0 0 11px;
  color: var(--hbs-bronze-dark);
  font-family: var(--hbs-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  line-height: 1.35;
  text-transform: uppercase;
}

.page-content .hbs-waimoku-intro__header h1 {
  margin: 0;
  color: var(--hbs-bronze-dark);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.98;
}

.page-content .hbs-waimoku-intro__subtitle {
  margin: 18px 0 0;
  color: var(--hbs-muted);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 600;
  line-height: 1.45;
}

.page-content .hbs-waimoku-intro__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  justify-content: center;
  margin: 16px 0 0;
  color: var(--hbs-black);
  font-family: var(--hbs-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.7px;
  line-height: 1.4;
  text-transform: uppercase;
}

.page-content .hbs-waimoku-intro__summary span[aria-hidden="true"] {
  color: var(--hbs-gold);
}

.page-content .hbs-waimoku-intro__grid {
  position: relative;
  z-index: 1;
  width: min(var(--hbs-wide), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
}

.page-content .hbs-waimoku-intro__media {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d9ccb9;
  background: #d8d0c4;
  box-shadow: 0 24px 62px rgba(48, 34, 21, 0.17);
}

.page-content .hbs-waimoku-intro__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(9, 7, 5, 0.68) 100%);
  pointer-events: none;
}

.page-content .hbs-waimoku-intro__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center 52%;
}

.page-content .hbs-waimoku-intro__media figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 28px 24px;
  color: white;
  font-family: var(--hbs-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.45px;
  line-height: 1.5;
  text-transform: uppercase;
}

.page-content .hbs-waimoku-intro__content {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid #e0d5c8;
  border-top: 5px solid var(--hbs-gold);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 62px rgba(48, 34, 21, 0.11);
}

.page-content .hbs-waimoku-intro__content h2 {
  margin: 0 0 22px;
  color: var(--hbs-black);
  font-size: clamp(34px, 4vw, 49px);
  line-height: 1.08;
}

.page-content .hbs-waimoku-intro__content > p:not([class]) {
  margin: 0 0 17px;
  color: var(--hbs-muted);
  font-size: 16px;
  line-height: 1.72;
}

.page-content .hbs-waimoku-intro__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 27px 0 18px;
}

.page-content .hbs-waimoku-intro__fact {
  padding: 18px;
  border: 1px solid #e6dbcf;
  border-left: 4px solid var(--hbs-gold);
  background: var(--hbs-cream);
}

.page-content .hbs-waimoku-intro__fact > span {
  display: block;
  margin-bottom: 7px;
  color: var(--hbs-bronze-dark);
  font-family: var(--hbs-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.35px;
  line-height: 1.35;
  text-transform: uppercase;
}

.page-content .hbs-waimoku-intro__fact strong {
  display: block;
  color: var(--hbs-black);
  font-size: 14px;
  line-height: 1.45;
}

.page-content .hbs-waimoku-intro__fact p {
  margin: 7px 0 0;
  color: var(--hbs-muted);
  font-size: 13px;
  line-height: 1.5;
}

.page-content .hbs-waimoku-intro__price {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  align-items: center;
  margin: 18px 0;
  padding: 22px 24px;
  background: var(--hbs-black);
  color: white;
}

.page-content .hbs-waimoku-intro__price div > span,
.page-content .hbs-waimoku-intro__price small {
  display: block;
  color: var(--hbs-gold-bright);
  font-family: var(--hbs-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
  line-height: 1.4;
  text-transform: uppercase;
}

.page-content .hbs-waimoku-intro__price strong {
  display: block;
  margin: 4px 0;
  color: white;
  font-family: var(--hbs-display);
  font-size: 31px;
  line-height: 1.05;
}

.page-content .hbs-waimoku-intro__price p {
  margin: 0;
  color: #e4ded7;
  font-size: 12px;
  line-height: 1.65;
}

.page-content .hbs-waimoku-intro__notes {
  display: grid;
  gap: 6px;
  margin: 0 0 22px;
}

.page-content .hbs-waimoku-intro__notes p {
  margin: 0;
  color: var(--hbs-muted);
  font-size: 13px;
  line-height: 1.55;
}

.page-content .hbs-waimoku-intro__notes strong {
  color: var(--hbs-black);
}

.page-content .hbs-waimoku-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-content .hbs-waimoku-intro a.hbs-waimoku-intro__button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px 12px;
  border: 1px solid var(--hbs-black);
  color: white;
  font-family: var(--hbs-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.page-content .hbs-waimoku-intro a.hbs-waimoku-intro__button--primary {
  border-color: var(--hbs-gold);
  background: var(--hbs-gold);
  color: var(--hbs-black);
}

.page-content .hbs-waimoku-intro a.hbs-waimoku-intro__button--secondary {
  background: var(--hbs-black);
}

.page-content .hbs-waimoku-intro a.hbs-waimoku-intro__button:hover,
.page-content .hbs-waimoku-intro a.hbs-waimoku-intro__button:focus-visible {
  border-color: var(--hbs-bronze-dark);
  background: var(--hbs-bronze-dark);
  color: white;
}

.page-content .hbs-waimoku-intro__service-note {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.page-content .hbs-waimoku-intro__service-note a {
  color: var(--hbs-bronze-dark);
  font-weight: 700;
}

.page-content .hbs-fareharbor-calendar {
  width: min(var(--hbs-content), calc(100% - 48px));
  min-height: 320px;
  margin: clamp(42px, 5vw, 70px) auto 0;
  overflow: hidden;
  background: white;
  scroll-margin-top: 120px;
}

.page-content .hbs-tour-booking {
  width: min(var(--hbs-wide), calc(100% - 48px));
  margin: clamp(44px, 5vw, 72px) auto;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid #e4d9cb;
  background:
    radial-gradient(circle at 8% 0%, rgba(209, 159, 64, 0.14), transparent 32%),
    linear-gradient(145deg, #fffdfb 0%, var(--hbs-cream) 100%);
  box-shadow: 0 24px 70px rgba(52, 39, 25, 0.1);
  scroll-margin-top: 120px;
}

.page-content .hbs-tour-booking__heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.page-content .hbs-tour-booking__eyebrow {
  margin: 0 0 10px;
  color: var(--hbs-bronze-dark);
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-content .hbs-tour-booking__heading h2 {
  margin: 0;
  color: var(--hbs-bronze);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
}

.page-content .hbs-tour-booking__heading > p:last-child {
  max-width: 650px;
  margin: 16px auto 0;
  color: var(--hbs-muted);
  font-size: 17px;
  line-height: 1.7;
}

.page-content .hbs-tour-booking .hbs-fareharbor-calendar {
  width: 100%;
  margin: 32px 0 0;
  border: 1px solid var(--hbs-line);
  background: white;
}

.hbs-fareharbor-calendar iframe {
  width: 100% !important;
  border: 0 !important;
}

.hbs-fareharbor-fallback {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--hbs-line);
  background: var(--hbs-cream);
  color: var(--hbs-muted);
  text-align: center;
}

.hbs-fareharbor-fallback a {
  color: var(--hbs-bronze-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-content .hbs-waimoku-itinerary {
  position: relative;
  width: min(var(--hbs-wide), calc(100% - 48px));
  margin: clamp(60px, 7vw, 100px) auto;
  padding: clamp(34px, 5vw, 68px);
  overflow: clip;
  border: 1px solid #e4d9cb;
  background:
    radial-gradient(circle at 6% 0%, rgba(209, 159, 64, 0.15), transparent 34%),
    linear-gradient(145deg, #fffdfb 0%, var(--hbs-cream) 100%);
  box-shadow: 0 26px 75px rgba(52, 39, 25, 0.1);
}

.page-content .hbs-waimoku-itinerary::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--hbs-gold), var(--hbs-bronze), var(--hbs-gold));
}

.page-content .hbs-waimoku-itinerary__header {
  max-width: 760px;
  margin: 0 auto clamp(34px, 4vw, 54px);
  text-align: center;
}

.page-content .hbs-waimoku-itinerary__eyebrow {
  margin: 0 0 12px;
  color: var(--hbs-bronze-dark);
  font-family: var(--hbs-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  line-height: 1.3;
  text-transform: uppercase;
}

.page-content .hbs-waimoku-itinerary__header h2 {
  margin: 0;
  color: var(--hbs-bronze-dark);
  font-size: clamp(38px, 4.4vw, 58px);
}

.page-content .hbs-waimoku-itinerary__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.96fr);
  grid-template-areas:
    "map itinerary"
    "description itinerary";
  column-gap: clamp(38px, 5vw, 76px);
  row-gap: clamp(24px, 3vw, 36px);
  align-items: start;
}

.page-content .hbs-waimoku-itinerary__map {
  grid-area: map;
  margin: 0;
}

.page-content .hbs-waimoku-itinerary__map-frame {
  padding: clamp(12px, 1.5vw, 20px);
  border: 1px solid #e2d6c7;
  background: white;
  box-shadow: 0 18px 45px rgba(50, 37, 24, 0.12);
}

.page-content .hbs-waimoku-itinerary__map-canvas {
  position: relative;
}

.page-content .hbs-waimoku-itinerary__map img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
}

.page-content .hbs-waimoku-itinerary__marker-highlight {
  --hbs-marker-x: 37.1493%;
  --hbs-marker-y: 30.58%;
  position: absolute;
  z-index: 2;
  top: var(--hbs-marker-y);
  left: var(--hbs-marker-x);
  width: clamp(24px, 2.2vw, 30px);
  aspect-ratio: 1;
  border: 2px solid var(--hbs-black);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.95),
    0 0 0 6px rgba(209, 159, 64, 0.9),
    0 7px 18px rgba(32, 22, 13, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.72);
  transition:
    top 280ms ease,
    left 280ms ease,
    opacity 180ms ease,
    transform 280ms ease;
}

.page-content .hbs-waimoku-itinerary__marker-highlight::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--hbs-black);
  transform: translate(-50%, -50%);
}

.page-content .hbs-waimoku-itinerary.is-interactive .hbs-waimoku-itinerary__marker-highlight {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.page-content .hbs-waimoku-itinerary__map figcaption {
  margin-top: 14px;
  color: var(--hbs-muted);
  font-family: var(--hbs-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.7px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.page-content .hbs-waimoku-itinerary__details {
  grid-area: itinerary;
  min-width: 0;
}

.page-content .hbs-waimoku-itinerary__endpoint {
  min-height: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 5px;
  overflow: hidden;
  border: 1px solid var(--hbs-black);
  background: var(--hbs-black);
  color: white;
  box-shadow: none;
}

.page-content .hbs-waimoku-itinerary__endpoint-label {
  display: block;
  padding: 16px 0 16px 18px;
  background: transparent;
  color: white;
  font-family: var(--hbs-body);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.page-content .hbs-waimoku-itinerary__endpoint-label::after {
  content: ":";
}

.page-content .hbs-waimoku-itinerary__endpoint p {
  align-self: center;
  margin: 0;
  padding: 16px 18px 16px 0;
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.page-content .hbs-waimoku-itinerary__endpoint--finish .hbs-waimoku-itinerary__endpoint-label {
  background: transparent;
  color: white;
}

.page-content .hbs-waimoku-itinerary__stops {
  margin: 10px 0;
  padding: 0;
  list-style: none;
}

.page-content .hbs-waimoku-itinerary__stops li {
  margin: 0 0 10px;
  padding: 0;
}

.page-content .hbs-waimoku-itinerary__stops a.hbs-waimoku-itinerary__stop {
  width: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 13px 14px 12px 12px;
  border: 1px solid #e4dbd0;
  border-left: 3px solid var(--hbs-gold);
  background: #fbf8f3;
  color: #4f4942;
  box-shadow: none;
  text-align: left;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.page-content .hbs-waimoku-itinerary__stops a.hbs-waimoku-itinerary__stop:hover {
  border-color: #d4c5b4;
  border-left-color: var(--hbs-gold);
  background: #f7f0e6;
  box-shadow: 0 6px 16px rgba(66, 48, 30, 0.08);
  color: var(--hbs-black);
  transform: translateX(2px);
}

.page-content .hbs-waimoku-itinerary__stops a.hbs-waimoku-itinerary__stop:focus-visible {
  outline: 3px solid var(--hbs-gold);
  outline-offset: 3px;
}

.page-content .hbs-waimoku-itinerary__stops a.hbs-waimoku-itinerary__stop.is-active,
.page-content .hbs-waimoku-itinerary__stops a.hbs-waimoku-itinerary__stop[aria-current="step"] {
  border-color: #c99a45;
  border-left-color: var(--hbs-gold);
  background: #f5ecdf;
  color: var(--hbs-black);
  box-shadow: 0 7px 18px rgba(66, 48, 30, 0.1);
  transform: translateX(2px);
}

.page-content .hbs-waimoku-itinerary__stop-number {
  width: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--hbs-bronze-dark);
  font-family: var(--hbs-body);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.page-content .hbs-waimoku-itinerary__stop-copy {
  font-size: 15px;
  line-height: 1.55;
}

.page-content .hbs-waimoku-itinerary__stop-details {
  grid-area: description;
  min-width: 0;
  min-height: 184px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid #dccdbb;
  border-top: 4px solid var(--hbs-gold);
  background: white;
  box-shadow: 0 14px 38px rgba(50, 37, 24, 0.1);
}

.page-content .hbs-waimoku-itinerary__stop-detail + .hbs-waimoku-itinerary__stop-detail {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eadfd3;
}

.page-content .hbs-waimoku-itinerary__stop-detail[hidden] {
  display: none;
}

.page-content .hbs-waimoku-itinerary__detail-eyebrow {
  margin: 0 0 8px;
  color: var(--hbs-bronze-dark);
  font-family: var(--hbs-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1.3;
  text-transform: uppercase;
}

.page-content .hbs-waimoku-itinerary__stop-detail h3 {
  margin: 0 0 10px;
  color: var(--hbs-black);
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.15;
}

.page-content .hbs-waimoku-itinerary__stop-detail > p:last-child {
  margin: 0;
  color: var(--hbs-muted);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .page-content .hbs-waimoku-intro__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-content .hbs-waimoku-intro__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .page-content .hbs-waimoku-itinerary__grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "map"
      "description"
      "itinerary";
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .page-content .hbs-waimoku-intro {
    padding: 40px 12px 54px;
  }

  .page-content .hbs-waimoku-intro__header {
    margin-bottom: 28px;
  }

  .page-content .hbs-waimoku-intro__summary {
    font-size: 11px;
  }

  .page-content .hbs-waimoku-intro__media {
    aspect-ratio: 1;
  }

  .page-content .hbs-waimoku-intro__media figcaption {
    inset: auto 18px 17px;
    font-size: 9px;
  }

  .page-content .hbs-waimoku-intro__content {
    padding: 27px 20px;
  }

  .page-content .hbs-waimoku-intro__facts,
  .page-content .hbs-waimoku-intro__price {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-content .hbs-waimoku-intro__actions,
  .page-content .hbs-waimoku-intro a.hbs-waimoku-intro__button {
    width: 100%;
  }

  .page-content .hbs-fareharbor-calendar {
    width: calc(100% - 24px);
  }

  .page-content .hbs-tour-booking {
    width: calc(100% - 24px);
    margin: 36px auto 50px;
    padding: 28px 12px 18px;
  }

  .page-content .hbs-tour-booking .hbs-fareharbor-calendar {
    width: 100%;
    margin-top: 24px;
  }

  .page-content .hbs-waimoku-itinerary {
    width: calc(100% - 24px);
    margin: 46px auto 60px;
    padding: 32px 18px 24px;
  }

  .page-content .hbs-waimoku-itinerary__header {
    margin-bottom: 28px;
  }

  .page-content .hbs-waimoku-itinerary__endpoint p {
    padding: 14px 14px 14px 0;
    font-size: 15px;
  }

  .page-content .hbs-waimoku-itinerary__stops a.hbs-waimoku-itinerary__stop {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 9px;
    padding: 12px 12px 11px 10px;
  }

  .page-content .hbs-waimoku-itinerary__stop-number {
    width: 28px;
  }

  .page-content .hbs-waimoku-itinerary__stop-copy {
    font-size: 14px;
  }

  .page-content .hbs-waimoku-itinerary__stop-details {
    min-height: 0;
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-content .hbs-waimoku-itinerary__marker-highlight,
  .page-content .hbs-waimoku-itinerary__stops a.hbs-waimoku-itinerary__stop {
    transition: none;
  }
}

.page-content .hbs-waimoku-packing {
  position: relative;
  width: min(var(--hbs-content), calc(100% - 48px));
  margin: 0 auto clamp(72px, 8vw, 110px);
  padding: clamp(36px, 5vw, 64px);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(209, 159, 64, 0.22), transparent 36%),
    var(--hbs-black);
  color: white;
  box-shadow: 0 26px 70px rgba(28, 20, 12, 0.2);
}

.page-content .hbs-waimoku-packing__header {
  max-width: 720px;
  margin: 0 auto clamp(28px, 4vw, 42px);
  text-align: center;
}

.page-content .hbs-waimoku-packing__eyebrow {
  margin: 0 0 12px;
  color: var(--hbs-gold-bright);
  font-family: var(--hbs-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  line-height: 1.3;
  text-transform: uppercase;
}

.page-content .hbs-waimoku-packing__header h2 {
  margin: 0;
  color: white;
  font-size: clamp(36px, 4.2vw, 54px);
}

.page-content .hbs-waimoku-packing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  border: 1px solid rgba(209, 159, 64, 0.34);
  background: rgba(209, 159, 64, 0.34);
  list-style: none;
}

.page-content .hbs-waimoku-packing__item {
  min-width: 0;
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: #17130f;
  color: #f7f2ec;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.page-content .hbs-waimoku-packing__icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hbs-gold);
  border-radius: 50%;
  color: var(--hbs-gold-bright);
  font-family: var(--hbs-sans);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.page-content .hbs-waimoku-packing__text {
  min-width: 0;
  flex: 1 1 auto;
}

.page-content .hbs-waimoku-packing__badge {
  flex: 0 0 auto;
  padding: 6px 8px 5px;
  border: 1px solid rgba(225, 180, 82, 0.6);
  color: var(--hbs-gold-bright);
  font-family: var(--hbs-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.1px;
  line-height: 1;
  text-transform: uppercase;
}

.page-content .hbs-waimoku-packing__note {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  padding: 18px 22px;
  background: var(--hbs-bronze-dark);
  color: white;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.page-content .hbs-waimoku-packing__icon--note {
  border: 1px solid var(--hbs-gold-bright);
  background: var(--hbs-gold);
  color: var(--hbs-black);
}

@media (max-width: 900px) {
  .page-content .hbs-waimoku-packing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-content .hbs-waimoku-packing__item:nth-child(9) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .page-content .hbs-waimoku-packing {
    width: calc(100% - 24px);
    margin-bottom: 64px;
    padding: 32px 18px 20px;
  }

  .page-content .hbs-waimoku-packing__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-content .hbs-waimoku-packing__item,
  .page-content .hbs-waimoku-packing__item:nth-child(9) {
    grid-column: 1;
  }

  .page-content .hbs-waimoku-packing__item {
    min-height: 78px;
    padding: 17px;
  }
}

.page-content .hbs-tour-options {
  position: relative;
  padding: clamp(58px, 8vw, 108px) max(24px, 4vw);
  overflow: hidden;
  border-top: 1px solid #e6dbcf;
  background:
    radial-gradient(circle at 92% 0%, rgba(209, 159, 64, 0.16), transparent 30%),
    linear-gradient(180deg, #fffdfb 0%, #f8f3ec 100%);
}

.page-content .hbs-tour-options::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--hbs-gold), var(--hbs-bronze), var(--hbs-gold));
}

.page-content .hbs-tour-options__header {
  width: min(880px, 100%);
  margin: 0 auto clamp(36px, 5vw, 58px);
  text-align: center;
}

.page-content .hbs-tour-options__eyebrow {
  margin: 0 0 12px;
  color: var(--hbs-bronze-dark);
  font-family: var(--hbs-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.3px;
  line-height: 1.35;
  text-transform: uppercase;
}

.page-content .hbs-tour-options__header h2 {
  margin: 0;
  color: var(--hbs-bronze-dark);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
}

.page-content .hbs-tour-options__header > p:last-child {
  margin: 17px 0 0;
  color: var(--hbs-muted);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.5;
}

.page-content .hbs-tour-options__grid {
  width: min(var(--hbs-wide), 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 32px);
}

.page-content .hbs-tour-options__card {
  min-width: 0;
  flex: 1 1 320px;
  max-width: 395px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dfd3c5;
  border-top: 4px solid var(--hbs-gold);
  background: white;
  box-shadow: 0 18px 44px rgba(50, 37, 24, 0.09);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.page-content .hbs-tour-options__card:hover {
  border-color: #c5ac88;
  box-shadow: 0 25px 58px rgba(50, 37, 24, 0.16);
  transform: translateY(-5px);
}

.page-content .hbs-tour-options__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d9d1c7;
}

.page-content .hbs-tour-options__image img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease;
}

.page-content .hbs-tour-options__card:hover .hbs-tour-options__image img {
  transform: scale(1.035);
}

.page-content .hbs-tour-options__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 32px);
}

.page-content .hbs-tour-options__duration {
  margin: 0 0 10px;
  color: var(--hbs-bronze-dark);
  font-family: var(--hbs-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.7px;
  line-height: 1.35;
  text-transform: uppercase;
}

.page-content .hbs-tour-options__body h3 {
  margin: 0 0 13px;
  color: var(--hbs-black);
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.13;
}

.page-content .hbs-tour-options__description {
  margin: 0 0 23px;
  color: var(--hbs-muted);
  font-size: 15px;
  line-height: 1.65;
}

.page-content .hbs-tour-options__vehicles {
  width: 100%;
  margin: auto 0 24px;
}

.page-content .hbs-tour-options__vehicles > p {
  margin: 0 0 8px;
  color: var(--hbs-bronze-dark);
  font-family: var(--hbs-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.35;
  text-transform: uppercase;
}

.page-content .hbs-tour-options__vehicles ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-content .hbs-tour-options__vehicles li {
  margin: 0;
}

.page-content .hbs-tour-options__vehicles a.hbs-tour-options__vehicle-link {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 13px;
  border: 1px solid #e5dbcf;
  border-left: 3px solid var(--hbs-gold);
  background: var(--hbs-cream);
  color: var(--hbs-black);
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.page-content .hbs-tour-options__vehicles a.hbs-tour-options__vehicle-link:hover,
.page-content .hbs-tour-options__vehicles a.hbs-tour-options__vehicle-link:focus-visible {
  border-color: var(--hbs-gold);
  border-left-color: var(--hbs-gold-bright);
  background: var(--hbs-black);
  color: white;
  transform: translateY(-1px);
}

.page-content .hbs-tour-options__vehicles a.hbs-tour-options__vehicle-link:focus-visible {
  outline: 3px solid var(--hbs-gold-bright);
  outline-offset: 2px;
}

.page-content .hbs-tour-options__vehicle-link span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.page-content .hbs-tour-options__vehicle-link small {
  flex: 0 0 auto;
  color: currentColor;
  font-family: var(--hbs-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 1.3;
  text-align: right;
  text-transform: uppercase;
}

.page-content .hbs-tour-options a.hbs-tour-options__link {
  align-self: center;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px 11px;
  border: 1px solid var(--hbs-black);
  background: var(--hbs-black);
  color: white;
  font-family: var(--hbs-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.35px;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.page-content .hbs-tour-options a.hbs-tour-options__link:hover,
.page-content .hbs-tour-options a.hbs-tour-options__link:focus-visible {
  border-color: var(--hbs-gold);
  background: var(--hbs-gold);
  color: var(--hbs-black);
}

.page-content .hbs-tour-options__link span {
  font-size: 17px;
  line-height: 1;
}

@media (max-width: 720px) {
  .page-content .hbs-tour-options {
    padding: 52px 12px 64px;
  }

  .page-content .hbs-tour-options__header {
    margin-bottom: 32px;
  }

  .page-content .hbs-tour-options__grid {
    gap: 18px;
  }

  .page-content .hbs-tour-options__card {
    flex-basis: 100%;
    max-width: 520px;
  }

  .page-content .hbs-tour-options__body {
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-content .hbs-tour-options__card,
  .page-content .hbs-tour-options__image img {
    transition: none;
  }

  .page-content .hbs-tour-options__card:hover,
  .page-content .hbs-tour-options__card:hover .hbs-tour-options__image img {
    transform: none;
  }
}

.category-pills {
  width: min(var(--hbs-content), 100%);
  margin: 0 auto 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.category-pills a {
  padding: 9px 15px 7px;
  border: 1px solid var(--hbs-bronze);
  color: var(--hbs-bronze-dark);
  font-family: var(--hbs-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.category-pills a:hover {
  background: var(--hbs-bronze);
  color: white;
}

.post-grid {
  gap: 30px;
}

.post-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  background: white;
  border: 1px solid var(--hbs-line);
}

.post-card-image {
  overflow: hidden;
  background: #d8d1c8;
}

.post-card-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 400ms ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.035);
}

.post-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
}

.post-card-meta {
  margin: 0 0 10px;
  color: var(--hbs-bronze);
  font-family: var(--hbs-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
  line-height: 1.45;
  text-transform: uppercase;
}

.post-card h2 {
  margin: 0 0 12px;
  font-family: var(--hbs-display);
  font-size: 25px;
  line-height: 1.23;
}

.post-card h2 a:hover {
  color: var(--hbs-bronze);
}

.post-card-excerpt,
.post-card-excerpt p {
  margin: 0 0 20px;
  color: var(--hbs-muted);
  font-size: 15px;
  line-height: 1.65;
}

.post-card-copy .underlined-link {
  margin-top: auto;
}

.category-description {
  max-width: 780px;
  margin: 0 auto 45px;
  color: var(--hbs-muted);
  font-size: 18px;
  text-align: center;
}

.category-description > *:first-child {
  margin-top: 0;
}

.pagination {
  width: min(var(--hbs-content), 100%);
  margin: 55px auto 0;
  text-align: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.page-numbers {
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 7px 11px;
  background: white;
  border: 1px solid var(--hbs-line);
  color: var(--hbs-bronze-dark);
  font-family: var(--hbs-sans);
  font-size: 12px;
  font-weight: 700;
}

.page-numbers.current,
.page-numbers:hover {
  background: var(--hbs-bronze);
  color: white;
}

.article-shell {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 90px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 42px;
  color: var(--hbs-muted);
  font-family: var(--hbs-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.1px;
  line-height: 1.5;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--hbs-bronze);
}

.article-body {
  font-size: 18px;
  line-height: 1.86;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
  color: var(--hbs-bronze-dark);
  font-family: var(--hbs-display);
  font-weight: 700;
  line-height: 1.18;
}

.article-body h2 {
  margin: 52px 0 18px;
  font-size: clamp(32px, 4vw, 44px);
}

.article-body h3 {
  margin: 38px 0 14px;
  font-size: 28px;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 28px;
  padding-left: 30px;
}

.article-body li {
  margin-bottom: 9px;
}

.article-body a {
  color: #9b6e22;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body figure,
.article-body .wp-block-image {
  margin: 42px 0;
}

.article-body img {
  width: 100%;
  height: auto;
}

.article-body figcaption {
  padding-top: 8px;
  color: var(--hbs-muted);
  font-size: 13px;
  text-align: center;
}

.article-end-cta {
  margin-top: 70px;
  padding: 48px;
  background: var(--hbs-cream);
  border: 1px solid var(--hbs-line);
  text-align: center;
}

.article-end-cta h2 {
  font-size: clamp(34px, 4vw, 46px);
}

.article-end-cta > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 24px;
  color: var(--hbs-muted);
}

.page-cta-shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 6vw, 76px) 0 90px;
}

.page-cta-shell .article-end-cta {
  margin-top: 0;
}

.post-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--hbs-line);
  border: 1px solid var(--hbs-line);
}

.post-navigation > div {
  min-width: 0;
  background: white;
}

.post-navigation > div:last-child {
  text-align: right;
}

.post-navigation a {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  font-family: var(--hbs-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.post-navigation a span {
  margin-bottom: 7px;
  color: var(--hbs-bronze);
  font-family: var(--hbs-sans);
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* Imported WordPress/Divi-rendered HTML. Import processing removes scripts and
   legacy shared footer sections while preserving these safe structural classes. */
.page-content {
  overflow: hidden;
  background: white;
}

.page-content > .et_pb_section,
.page-content .et_pb_section {
  position: relative;
  padding: 76px max(5vw, 24px);
  background-color: white;
  background-position: center;
  background-size: cover;
}

.page-content .et_pb_section:nth-of-type(even) {
  background-color: var(--hbs-cream);
}

.page-content .et_pb_section:empty,
.page-content .et_pb_row_empty,
.page-content .et_pb_code_inner:empty,
.page-content .et_pb_module:empty {
  display: none;
}

.page-content .et_pb_row,
.page-content .et_pb_fullwidth_header_container {
  position: relative;
  z-index: 2;
  width: min(var(--hbs-content), 100%);
  max-width: var(--hbs-content);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.page-content .et_pb_row + .et_pb_row {
  margin-top: 32px;
}

.page-content .et_pb_column {
  min-width: 0;
  flex: 1 1 280px;
}

.page-content .et_pb_column_4_4 {
  flex-basis: 100%;
}

.page-content .et_pb_column_1_2,
.page-content .et_pb_column_2_4,
.page-content .et_pb_column_3_6 {
  flex-basis: calc(50% - 16px);
}

.page-content .et_pb_column_1_3,
.page-content .et_pb_column_2_6 {
  flex-basis: calc(33.333% - 22px);
}

.page-content .et_pb_column_2_3,
.page-content .et_pb_column_4_6 {
  flex-basis: calc(66.666% - 22px);
}

.page-content .et_pb_column_1_4 {
  flex-basis: calc(25% - 24px);
}

.page-content .et_pb_text_inner,
.page-content .et_pb_blurb_description,
.page-content .et_pb_header_content_wrapper {
  color: var(--hbs-muted);
  font-size: 18px;
  line-height: 1.85;
}

.page-content .et_pb_text_align_center,
.page-content .et_pb_button_alignment_center {
  text-align: center;
}

.page-content .et_pb_text_align_right {
  text-align: right;
}

.page-content p {
  margin: 0 0 20px;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6,
.page-content .et_pb_module_header,
.page-content .et_pb_module_heading {
  margin: 0 0 22px;
  color: var(--hbs-bronze);
  font-family: var(--hbs-display);
  font-weight: 700;
  line-height: 1.08;
}

.page-content h1,
.page-content .et_pb_module_heading:first-child {
  font-size: clamp(48px, 6.4vw, 76px);
}

.page-content h2,
.page-content .et_pb_module_header {
  font-size: clamp(38px, 5vw, 58px);
}

.page-content h3 {
  font-size: clamp(28px, 3.2vw, 38px);
}

.page-content h4 {
  font-family: var(--hbs-sans);
  font-size: 21px;
  line-height: 1.4;
}

.page-content ul,
.page-content ol {
  margin: 0 0 28px;
  padding-left: 28px;
}

.page-content a:not(.et_pb_button) {
  color: #95691f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-content .et_pb_image,
.page-content .et_pb_image_wrap,
.page-content .et_pb_image_wrap a {
  display: block;
}

.page-content .et_pb_image {
  background-position: center;
  background-size: cover;
}

.page-content .et_pb_image img,
.page-content figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Replace the imported low-resolution review stars with a crisp local vector. */
.page-content #reviews .et_pb_image_wrap {
	width: 148px;
	max-width: 100%;
	margin-inline: auto;
	background: url("assets/images/stars.svg") center / 148px 21px no-repeat;
}

.page-content #reviews .et_pb_image img[src$="/stars.png"] {
	width: 148px;
	max-width: 100%;
	height: auto;
	opacity: 0;
}

.page-content .et_pb_button_module_wrapper {
  margin: 18px 0;
  text-align: center;
}

.page-content .et_pb_button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px 11px;
  background: var(--hbs-black);
  color: white;
  font-family: var(--hbs-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.page-content .et_pb_button:hover {
  background: var(--hbs-gold);
}

.page-content .et_pb_section_video,
.page-content .et_pb_fullwidth_header {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 70px max(5vw, 24px);
  background-color: #4b4033;
  color: white;
}

.page-content .et_pb_section_video::after,
.page-content .et_pb_fullwidth_header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10, 8, 6, 0.5);
  pointer-events: none;
}

.page-content .et_pb_section_video_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-content .et_pb_section_video_bg video,
.page-content .et_pb_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-content .et_pb_section_video > *:not(.et_pb_section_video_bg),
.page-content .et_pb_fullwidth_header > *:not(.et_pb_section_video_bg) {
  position: relative;
  z-index: 2;
}

.page-content .et_pb_section_video h1,
.page-content .et_pb_section_video h2,
.page-content .et_pb_fullwidth_header h1,
.page-content .et_pb_fullwidth_header h2,
.page-content .et_pb_section_video .et_pb_text_inner,
.page-content .et_pb_fullwidth_header .et_pb_header_content_wrapper {
  color: white;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

/*
 * The imported Pipiwai + Summit page lost Divi's dynamic background and
 * responsive-visibility declarations. Restore the intended photograph and
 * show one hero per breakpoint instead of two empty brown panels.
 */
.hbs-product-pipiwai-and-summit .page-content > .et_pb_section_0 {
  background-image: url("/wp-content/uploads/2024/11/HawaiiByStormTours-348598-pipwai-trail-hawaii-blogbanner1.jpg");
  background-color: rgba(0, 0, 0, 0.34);
  background-blend-mode: multiply;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hbs-product-page .page-content img[src*="watercolor-divider-01"] {
  display: none !important;
}

.hbs-product-page .page-content .et_pb_image:has(img[src*="watercolor-divider-01"]) {
  display: none !important;
}

/* Remove the entire legacy divider row so it cannot leave a blank hero gap. */
.hbs-product-pipiwai-and-summit .page-content > .et_pb_section_0 > .et_pb_row_1 {
  display: none !important;
}

.hbs-product-pipiwai-and-summit .page-content > .et_pb_section_0 .et_pb_text_0 {
  text-align: center !important;
}

.hbs-product-pipiwai-and-summit .page-content > .et_pb_section_0 .et_pb_text_0 h2,
.hbs-product-pipiwai-and-summit .page-content > .et_pb_section_0 .et_pb_text_0 h2 span {
  color: #fff !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.82);
}

.hbs-product-pipiwai-and-summit .page-content > .et_pb_section_1 {
  padding: 0;
}

.hbs-product-pipiwai-and-summit .page-content > .et_pb_section_1 .et_pb_fullwidth_header_0 {
  width: 100%;
  background-image: url("/wp-content/uploads/2024/11/HawaiiByStormTours-348598-pipwai-trail-hawaii-blogbanner1.jpg");
  background-color: rgba(0, 0, 0, 0.28);
  background-blend-mode: multiply;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hbs-product-pipiwai-and-summit .page-content > .et_pb_section_1 .et_pb_module_header {
  color: #fff !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.82);
}

.hbs-product-pipiwai-and-summit .page-content > .et_pb_section_3 .et_pb_heading_0,
.hbs-product-pipiwai-and-summit .page-content > .et_pb_section_3 .et_pb_text_4,
.hbs-product-pipiwai-and-summit .page-content > .et_pb_section_3 .et_pb_text_inner {
  text-align: center !important;
}

.hbs-product-pipiwai-and-summit .page-content > .et_pb_section > p:empty {
  display: none;
}

.hbs-product-pipiwai-and-summit .hbs-pipiwai-hero-facts {
  position: relative;
  z-index: 5;
  width: min(980px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -45px auto 76px;
  overflow: hidden;
  border-top: 5px solid var(--hbs-gold);
  background: #fff;
  box-shadow: 0 22px 56px rgba(25, 18, 11, 0.24);
  color: var(--hbs-black);
}

.hbs-product-pipiwai-and-summit .hbs-pipiwai-hero-facts div {
  min-width: 0;
  padding: 23px 28px 21px;
  text-align: center;
}

.hbs-product-pipiwai-and-summit .hbs-pipiwai-hero-facts div + div {
  border-left: 1px solid var(--hbs-line);
}

.hbs-product-pipiwai-and-summit .hbs-pipiwai-hero-facts span,
.hbs-product-pipiwai-and-summit .hbs-pipiwai-hero-facts strong {
  display: block;
}

.hbs-product-pipiwai-and-summit .hbs-pipiwai-hero-facts span {
  margin-bottom: 6px;
  color: var(--hbs-bronze);
  font-family: var(--hbs-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.7px;
  line-height: 1.35;
  text-transform: uppercase;
}

.hbs-product-pipiwai-and-summit .hbs-pipiwai-hero-facts strong {
  font-size: 17px;
  line-height: 1.35;
}

.hbs-product-pipiwai-and-summit .hbs-product-packing--normalized .et_pb_toggle_content {
  padding: clamp(24px, 3vw, 38px) !important;
}

.hbs-product-pipiwai-and-summit .hbs-product-packing-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hbs-product-pipiwai-and-summit .hbs-product-packing-list li {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--hbs-line);
  background: var(--hbs-cream);
  color: var(--hbs-ink);
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

.hbs-product-pipiwai-and-summit .hbs-product-packing-list__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hbs-gold);
  border-radius: 50%;
  color: var(--hbs-bronze-dark);
  font-size: 14px;
  line-height: 1;
}

.hbs-product-pipiwai-and-summit .hbs-product-packing-list__label {
  flex: 1 1 auto;
}

.hbs-product-pipiwai-and-summit .hbs-product-packing-list small {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(209, 159, 64, 0.16);
  color: var(--hbs-bronze-dark);
  font-family: var(--hbs-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.hbs-product-pipiwai-and-summit .hbs-product-packing-note {
  margin: 20px 0 0 !important;
  color: var(--hbs-muted);
  font-style: italic;
  text-align: center !important;
}

.hbs-product-pipiwai-and-summit .hbs-pipiwai-hero-booking {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 28px auto 0;
  color: white;
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.1px;
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
  text-transform: uppercase;
}

.hbs-product-pipiwai-and-summit .hbs-pipiwai-hero-booking__button,
.hbs-product-pipiwai-and-summit .hbs-pipiwai-hero-booking__button:visited {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border: 2px solid var(--hbs-gold-bright);
  background: var(--hbs-gold);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
  color: var(--hbs-black) !important;
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.2;
  text-decoration: none !important;
  text-shadow: none;
  text-transform: uppercase;
}

.hbs-product-pipiwai-and-summit .hbs-pipiwai-hero-booking__button:hover,
.hbs-product-pipiwai-and-summit .hbs-pipiwai-hero-booking__button:focus-visible {
  background: var(--hbs-gold-bright);
  color: var(--hbs-black) !important;
}

.hbs-product-pipiwai-and-summit .page-content > .et_pb_section_6 {
  display: none !important;
}

.hbs-product-pipiwai-and-summit .hbs-pipiwai-booking-jump {
  width: min(640px, calc(100% - 24px));
  margin: 34px auto;
  padding: 24px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(209, 159, 64, 0.58);
  background: var(--hbs-black);
  box-shadow: 0 18px 40px rgba(32, 24, 17, 0.16);
  text-align: center;
}

.hbs-product-pipiwai-and-summit .hbs-pipiwai-booking-jump[hidden] {
  display: none !important;
}

.hbs-product-pipiwai-and-summit .hbs-pipiwai-booking-jump p {
  margin: 0;
  color: white;
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  line-height: 1.45;
  text-transform: uppercase;
}

.hbs-product-pipiwai-and-summit .hbs-pipiwai-booking-jump__button,
.hbs-product-pipiwai-and-summit .hbs-pipiwai-booking-jump__button:visited {
  min-height: 50px;
  width: min(100%, 290px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid var(--hbs-gold-bright);
  background: var(--hbs-gold);
  color: var(--hbs-black) !important;
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.2;
  text-decoration: none !important;
  text-transform: uppercase;
}

.hbs-product-pipiwai-and-summit .hbs-pipiwai-booking-jump__button:hover,
.hbs-product-pipiwai-and-summit .hbs-pipiwai-booking-jump__button:focus-visible {
  background: var(--hbs-gold-bright);
}

@media (min-width: 981px) {
  .hbs-product-pipiwai-and-summit .page-content > .et_pb_section_0 {
    min-height: 680px;
    display: grid;
    align-items: center;
  }

  .hbs-product-pipiwai-and-summit .page-content > .et_pb_section_2,
  .hbs-product-pipiwai-and-summit .page-content > .et_pb_section_3,
  .hbs-product-pipiwai-and-summit .page-content > .et_pb_section_4 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hbs-product-pipiwai-and-summit .page-content > .et_pb_section_1 {
    display: none;
  }
}

@media (max-width: 980px) {
  .hbs-product-pipiwai-and-summit .page-content {
    display: flex;
    flex-direction: column;
  }

  .hbs-product-pipiwai-and-summit .page-content > .et_pb_section_0 {
    display: none;
  }

  .hbs-product-pipiwai-and-summit .page-content > .et_pb_section_1 {
    display: block;
    order: 0;
  }

  .hbs-product-pipiwai-and-summit .hbs-pipiwai-hero-facts {
    order: 0;
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    margin-top: -34px;
    margin-bottom: 24px;
  }

  .hbs-product-pipiwai-and-summit .hbs-pipiwai-hero-facts div {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    text-align: left;
  }

  .hbs-product-pipiwai-and-summit .hbs-pipiwai-hero-facts div + div {
    border-top: 1px solid var(--hbs-line);
    border-left: 0;
  }

  .hbs-product-pipiwai-and-summit .hbs-pipiwai-hero-facts span {
    margin: 0;
  }

  .hbs-product-pipiwai-and-summit .page-content > .et_pb_section_2 {
    display: contents;
  }

  .hbs-product-pipiwai-and-summit .page-content > .et_pb_section_2 > .et_pb_row_2 {
    order: 1;
    width: calc(100% - 40px);
    margin: 0 auto !important;
    padding-top: 0;
  }

  .hbs-product-pipiwai-and-summit .page-content > .et_pb_section_4 {
    order: 2;
  }

  .hbs-product-pipiwai-and-summit .page-content > .et_pb_section_2 > .et_pb_row_3 {
    order: 3;
    width: calc(100% - 40px);
    margin: 32px auto 0 !important;
    padding-bottom: 64px;
  }

  .hbs-product-pipiwai-and-summit .page-content > .et_pb_section_3 {
    order: 4;
  }

  .hbs-product-pipiwai-and-summit .hbs-pipiwai-booking-jump--midpage {
    order: 5;
  }

  .hbs-product-pipiwai-and-summit .page-content > .et_pb_section_5 {
    order: 6;
  }

  .hbs-product-pipiwai-and-summit .page-content > .et_pb_section_6 {
    order: 7;
  }

  .hbs-product-pipiwai-and-summit .page-content > .hbs-tour-options {
    order: 8;
  }

  .hbs-product-pipiwai-and-summit .hbs-pipiwai-booking-jump {
    display: flex;
  }

  .hbs-product-pipiwai-and-summit .page-content > .et_pb_section_1 .et_pb_fullwidth_header_0 {
    min-height: clamp(420px, 66vh, 520px);
    padding: 56px 24px;
  }

  .hbs-product-pipiwai-and-summit .hbs-pipiwai-hero-booking {
    width: min(100%, 300px);
    margin-top: 24px;
  }

  .hbs-product-pipiwai-and-summit .hbs-pipiwai-hero-booking__button {
    width: 100%;
  }

  .hbs-product-pipiwai-and-summit .floating-book-button {
    display: none;
  }

  .hbs-product-pipiwai-and-summit .hbs-pipiwai-booking-jump--after-packing {
    margin-top: 28px;
    margin-bottom: 18px;
  }
}

@media (max-width: 900px) {
  .hbs-product-pipiwai-and-summit .hbs-product-packing-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hbs-product-pipiwai-and-summit .hbs-product-packing-list {
    grid-template-columns: 1fr;
  }

  .hbs-product-pipiwai-and-summit .hbs-product-packing-list li {
    min-height: 68px;
  }
}

.page-content .et_pb_video,
.page-content .et_pb_video_box,
.page-content .et_pb_video_overlay {
  position: relative;
  width: 100%;
}

.page-content .et_pb_video_overlay {
  min-height: 420px;
  display: grid;
  place-items: center;
  background-position: center;
  background-size: cover;
}

.page-content .et_pb_video_play::before {
  content: "▶";
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border: 4px solid white;
  border-radius: 50%;
  color: white;
  font-size: 32px;
}

.page-content .et_pb_toggle,
.page-content .et_pb_accordion_item {
  margin-bottom: 12px;
  padding: 22px 24px;
  border: 1px solid var(--hbs-line);
  background: white;
}

.page-content .et_pb_toggle_title {
  margin: 0 0 10px;
  font-family: var(--hbs-sans);
  font-size: 18px;
  cursor: default;
}

.page-content .et_pb_toggle_content,
.page-content .et_pb_tab {
  display: block !important;
}

.page-content .et_pb_tabs_controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.page-content .et_pb_tabs_controls li {
  padding: 9px 14px;
  border: 1px solid var(--hbs-line);
  font-family: var(--hbs-sans);
  font-size: 12px;
  font-weight: 700;
}

.page-content table,
.article-body table {
  width: 100%;
  border-collapse: collapse;
}

.page-content th,
.page-content td,
.article-body th,
.article-body td {
  padding: 12px;
  border: 1px solid var(--hbs-line);
  text-align: left;
}

.page-content iframe,
.article-body iframe {
  width: 100%;
  border: 0;
}

.alignwide {
  width: min(var(--hbs-wide), calc(100vw - 40px));
  max-width: none;
  margin-right: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.alignfull {
  width: 100vw;
  max-width: none;
  margin-right: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.site-footer {
  background:
    linear-gradient(145deg, rgba(126, 104, 73, 0.2), transparent 42%),
    var(--hbs-black);
  color: white;
}

.footer-cta {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 46px max(7vw, 24px);
  background: var(--hbs-bronze);
}

.footer-cta p {
  margin: 0 0 7px;
  font-family: var(--hbs-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.15;
}

.footer-cta strong {
  font-family: var(--hbs-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-cta-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 12px;
}

.footer-grid {
  width: min(var(--hbs-content), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  gap: 80px;
  padding: 75px 0 65px;
}

.footer-brand > a > img {
  width: 270px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand h2 {
  margin: 0 0 5px;
  color: white;
  font-family: var(--hbs-display);
  font-size: 24px;
}

.footer-brand p {
  margin: 0;
  color: #c9c0b5;
  font-size: 14px;
}

.footer-brand p a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.social-links a {
  color: var(--hbs-gold-bright);
  font-family: var(--hbs-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footer-nav h3 {
  margin: 0 0 14px;
  color: var(--hbs-gold-bright);
  font-family: var(--hbs-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-menu a {
  color: #e6e0d8;
  font-family: var(--hbs-sans);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footer-menu a:hover {
  color: var(--hbs-gold-bright);
}

.footer-bottom {
  width: min(var(--hbs-content), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #918b84;
  font-size: 12px;
}

.not-found {
  min-height: 650px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 80px 24px;
  background: var(--hbs-cream);
  text-align: center;
}

.not-found h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--hbs-bronze);
  font-family: var(--hbs-display);
  font-size: clamp(46px, 6vw, 72px);
  line-height: 1.05;
}

.not-found > p:not(.eyebrow) {
  margin: 0 0 30px;
  color: var(--hbs-muted);
}

.not-found-actions {
  display: flex;
  gap: 12px;
}

.search-form-shell {
  width: min(660px, 100%);
  margin: 0 auto 45px;
}

.not-found .search-form-shell {
  margin: 36px auto 0;
}

.search-form {
  display: flex;
  gap: 8px;
}

.search-form label {
  flex: 1 1 auto;
}

.search-field {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  background: white;
  border: 1px solid var(--hbs-line);
  border-radius: 0;
}

.search-submit {
  min-height: 50px;
  padding: 11px 22px;
  background: var(--hbs-black);
  border: 0;
  border-radius: 0;
  color: white;
  font-family: var(--hbs-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
}

.empty-state {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 56px 30px;
  background: white;
  border: 1px solid var(--hbs-line);
  text-align: center;
}

.empty-state p {
  color: var(--hbs-muted);
}

.comments-area {
  margin-top: 70px;
  padding-top: 45px;
  border-top: 1px solid var(--hbs-line);
}

.comments-title,
.comment-reply-title {
  font-family: var(--hbs-display);
  font-size: 30px;
}

.comment-list {
  margin: 0 0 42px;
  padding: 0;
  list-style: none;
}

.comment-list .comment-body {
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid var(--hbs-line);
}

.comment-form label {
  display: block;
  margin-bottom: 5px;
  font-family: var(--hbs-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.comment-form input:not([type="checkbox"]):not([type="submit"]),
.comment-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--hbs-line);
  border-radius: 0;
}

.comment-form input[type="submit"] {
  padding: 13px 22px;
  background: var(--hbs-gold);
  border: 0;
  border-radius: 0;
  color: white;
  font-family: var(--hbs-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-bar .promo-bar {
  top: 32px;
}

.admin-bar .site-header {
  top: 65px;
}

@media (max-width: 1100px) {
  .primary-menu {
    gap: 17px;
  }

  .primary-navigation {
    font-size: 10px;
    letter-spacing: 1.7px;
  }

  .primary-menu > .menu-book > a {
    min-width: 120px;
  }

  .difference-section {
    gap: 45px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 128px;
  }

  .promo-bar {
    min-height: 42px;
  }

  .site-header {
    top: 42px;
    height: 82px;
  }

  .admin-bar .site-header {
    top: 74px;
  }

  .header-inner {
    padding: 0 22px;
  }

  .brand img {
    width: 155px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-navigation {
    position: absolute;
    top: 100%;
    right: 22px;
    width: min(320px, calc(100vw - 32px));
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .menu-is-open .primary-navigation {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-menu {
    display: grid;
    gap: 0;
    padding: 15px 0 20px;
    background: #050505;
    border-top: 3px solid var(--hbs-gold-bright);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
  }

  .primary-menu > li > a {
    padding: 10px 24px;
    font-size: 12px;
    letter-spacing: 1.6px;
    line-height: 1.4;
  }

  .primary-menu > .menu-item-has-children > a::after {
    display: none;
  }

  .primary-menu .sub-menu {
    position: static;
    width: auto;
    display: grid;
    padding: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    border: 0;
    box-shadow: none;
  }

  .primary-menu .sub-menu a {
    padding: 8px 24px 8px 40px;
    color: #d8d2ca;
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .primary-menu > .menu-book {
    padding: 0 20px;
  }

  .primary-menu > .menu-book > a {
    margin-top: 12px;
    padding: 14px 20px;
  }

  .home-hero {
    min-height: 720px;
  }

  .destination-grid,
  .post-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .difference-section {
    grid-template-columns: 1fr;
  }

  .difference-intro {
    max-width: none;
    text-align: center;
  }

  .difference-intro .stars {
    margin-left: auto;
  }

  .story-section {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .story-copy {
    max-width: 760px;
    margin: 0 auto;
  }

  .story-image-wrap {
    min-height: 470px;
  }

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.75fr 0.75fr;
    gap: 34px;
  }

  .page-content .et_pb_column_1_3,
  .page-content .et_pb_column_2_3,
  .page-content .et_pb_column_1_4,
  .page-content .et_pb_column_1_2,
  .page-content .et_pb_column_2_4,
  .page-content .et_pb_column_3_6,
  .page-content .et_pb_column_2_6,
  .page-content .et_pb_column_4_6 {
    flex-basis: calc(50% - 16px);
  }
}

@media (max-width: 782px) {
  .admin-bar .promo-bar {
    top: 46px;
  }

  .admin-bar .site-header {
    top: 88px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .promo-bar {
    padding: 7px 14px;
    font-size: 9px;
    letter-spacing: 1.3px;
  }

  .header-inner {
    padding: 0 18px;
  }

  .primary-navigation {
    right: 16px;
  }

  .home-hero {
    min-height: 760px;
  }

  .home-hero-content {
    width: min(calc(100% - 32px), 650px);
    padding-top: 65px;
  }

  .home-hero h1 {
    font-size: clamp(54px, 17vw, 74px);
  }

  .hero-subtitle {
    font-size: 23px;
  }

  .hero-actions,
  .story-actions,
  .footer-cta-actions,
  .not-found-actions,
  .cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .text-link-light {
    align-self: center;
  }

  .award-strip {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .award-logos {
    display: grid;
    grid-template-columns: repeat(2, 100px);
    gap: 28px 50px;
  }

  .award-logos img {
    width: 100px;
    height: 100px;
  }

  .section {
    padding: 72px 20px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .destination-grid,
  .vehicle-grid,
  .post-grid,
  .review-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .destination-card,
  .vehicle-card,
  .post-card,
  .review-card {
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .vehicle-image-wrap {
    min-height: 265px;
  }

  .reviews-section,
  .difference-section {
    padding: 76px 20px;
  }

  .review-platforms {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .feature {
    min-height: 88px;
  }

  .story-section {
    padding: 76px 20px 0;
  }

  .story-image-wrap {
    min-height: 410px;
  }

  .simple-hero {
    min-height: 460px;
  }

  .simple-hero-content {
    width: calc(100% - 30px);
  }

  .simple-hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .article-shell {
    width: min(calc(100% - 32px), 900px);
  }

  .article-body {
    font-size: 17px;
  }

  .article-end-cta {
    padding: 35px 22px;
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }

  .booking-frame-wrap {
    padding: 8px;
  }

  .booking-frame {
    min-height: 1120px;
  }

  .page-content > .et_pb_section,
  .page-content .et_pb_section {
    padding: 64px 20px;
  }

  .page-content .et_pb_row,
  .page-content .et_pb_fullwidth_header_container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-content .et_pb_column,
  .page-content .et_pb_column_1_3,
  .page-content .et_pb_column_2_3,
  .page-content .et_pb_column_1_4,
  .page-content .et_pb_column_1_2,
  .page-content .et_pb_column_2_4,
  .page-content .et_pb_column_3_6,
  .page-content .et_pb_column_2_6,
  .page-content .et_pb_column_4_6 {
    width: 100%;
  }

  .page-content .et_pb_section_video,
  .page-content .et_pb_fullwidth_header {
    min-height: 500px;
  }

  .page-content .et_pb_video_overlay {
    min-height: 260px;
  }

  .footer-cta {
    padding: 50px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 65px 0 55px;
  }

  .footer-brand > a > img {
    width: 230px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .search-form {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 138px;
  }

  .award-logos {
    gap: 25px 30px;
  }

  .vehicle-copy {
    padding: 28px 22px 32px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .home-hero-video {
    display: none;
  }
}

/* Route-specific rebuilds for the Tours and Road to Hana landing pages. */
.route-page {
  background: var(--hbs-paper);
}

.route-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 78vh, 820px);
  display: grid;
  place-items: center;
  padding: 130px max(5vw, 24px) 110px;
  overflow: hidden;
  background-color: #26362f;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  text-align: center;
}

.route-hero-hana {
  background-position: center 58%;
}

.route-hero-inner {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin: 0 auto;
}

.route-hero-video,
.route-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-hero-video {
  z-index: 0;
  object-fit: cover;
}

.route-hero-shade {
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 10, 9, 0.22), rgba(7, 8, 7, 0.7));
  pointer-events: none;
}

.route-hero h1 {
  max-width: 960px;
  margin: 0 auto;
  color: white;
  font-family: var(--hbs-display);
  font-size: clamp(55px, 7.2vw, 88px);
  font-weight: 700;
  letter-spacing: -2.5px;
  line-height: 0.98;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.32);
}

.route-hero-subtitle {
  max-width: 820px;
  margin: 27px auto 32px;
  font-family: var(--hbs-sans);
  font-size: clamp(19px, 2.2vw, 27px);
  font-weight: 700;
  letter-spacing: 0.1px;
  line-height: 1.38;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.route-overview {
  width: min(var(--hbs-content), calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0 110px;
}

.route-overview-media {
  overflow: hidden;
  margin-bottom: 68px;
  background: #0d0d0d;
  box-shadow: 0 24px 58px rgba(42, 32, 22, 0.16);
}

.route-overview-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.route-overview-copy {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.route-overview-copy h2,
.route-section-heading h2,
.route-story h2,
.hana-introduction h2,
.hana-story h2,
.hana-two-day h2 {
  margin: 0 0 24px;
  color: var(--hbs-bronze);
  font-family: var(--hbs-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -1.3px;
  line-height: 1.06;
}

.route-overview-copy > p:not(.eyebrow) {
  margin: 0 0 18px;
  color: #49443e;
  font-size: 18px;
  line-height: 1.82;
}

.route-overview-compact {
  padding-bottom: 86px;
}

.route-destinations {
  padding: 100px max(5vw, 24px) 110px;
  background: var(--hbs-cream);
}

.route-section-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.route-destination-list {
  width: min(var(--hbs-content), 100%);
  margin: 0 auto;
}

.route-destination-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  padding: 70px 0;
  border-top: 1px solid var(--hbs-line);
}

.route-destination-card:last-child {
  padding-bottom: 10px;
}

.route-destination-card:nth-child(even) .route-destination-copy {
  order: 2;
}

.route-destination-card:nth-child(even) .route-destination-media {
  order: 1;
}

.route-destination-copy h3 {
  margin: 0 0 22px;
  color: var(--hbs-bronze);
  font-family: var(--hbs-display);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -1.4px;
  line-height: 0.98;
  text-transform: uppercase;
}

.route-destination-copy p {
  margin: 0 0 28px;
  color: #49443e;
  font-size: 17px;
  line-height: 1.78;
}

.route-destination-media {
  position: relative;
  display: block;
  padding: 18px;
}

.route-destination-media::before {
  content: "";
  position: absolute;
  inset: 3% 1% 1% 4%;
  border: 1px solid rgba(126, 104, 73, 0.18);
  border-radius: 53% 47% 43% 57% / 42% 54% 46% 58%;
  background: #eee5da;
  transform: rotate(-2deg);
}

.route-destination-card:nth-child(even) .route-destination-media::before {
  transform: rotate(2deg);
}

.route-destination-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 47% 53% 49% 51% / 43% 46% 54% 57%;
  object-fit: cover;
  box-shadow: 0 22px 45px rgba(40, 29, 20, 0.2);
  transition: transform 220ms ease, filter 220ms ease;
}

.route-destination-media:hover img {
  filter: saturate(1.05);
  transform: translateY(-3px);
}

.route-booking-cta {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0;
}

.route-booking-cta .article-end-cta {
  margin-top: 0;
}

.route-products {
  padding: 100px max(5vw, 24px);
  background: var(--hbs-cream);
}

.route-product-grid {
  width: min(var(--hbs-content), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 34px;
}

.route-product-grid-two {
  max-width: 820px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.route-product-card {
  overflow: hidden;
  border: 1px solid #d9d4cd;
  background: white;
  box-shadow: 0 18px 42px rgba(37, 29, 23, 0.12);
}

.route-product-image {
  overflow: hidden;
  background: #e8dfd4;
  aspect-ratio: 1;
}

.route-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-product-action {
  width: 100%;
  min-height: 64px;
  padding-right: 18px;
  padding-left: 18px;
  font-size: 12px;
  letter-spacing: 1.4px;
}

.route-product-note {
  margin: 30px auto 0;
  color: var(--hbs-muted);
  font-style: italic;
  text-align: center;
}

.route-story {
  padding: 100px max(5vw, 24px);
  background: var(--hbs-paper);
}

.route-story-inner {
  max-width: 900px;
  margin: 0 auto;
}

.route-story-inner .eyebrow,
.route-story-inner h2 {
  text-align: center;
}

.route-story-inner > p:not(.eyebrow) {
  margin: 0 0 20px;
  color: #49443e;
  font-size: 18px;
  line-height: 1.82;
}

.route-story-inner > p:last-child {
  margin-bottom: 0;
}

.route-story-white {
  background: var(--hbs-paper);
}

.route-highlights {
  padding: 80px max(5vw, 24px);
  background: var(--hbs-cream);
}

.route-highlight-grid {
  width: min(var(--hbs-content), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.route-highlight-card {
  padding: 42px 34px 38px;
  border: 1px solid var(--hbs-line);
  background: white;
  text-align: center;
}

.route-highlight-card h3 {
  margin: 0 0 14px;
  color: var(--hbs-bronze);
  font-family: var(--hbs-display);
  font-size: 29px;
  font-weight: 700;
  line-height: 1.1;
}

.route-highlight-card p {
  margin: 0;
  color: #514b44;
  font-size: 16px;
  line-height: 1.7;
}

.route-gallery {
  padding: 100px max(4vw, 20px);
  background: var(--hbs-paper);
}

.route-gallery-grid {
  width: min(var(--hbs-wide), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 16px;
}

.route-gallery-item {
  min-width: 0;
  overflow: hidden;
  background: #e8dfd4;
}

.route-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.route-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.route-gallery-item:hover img {
  filter: saturate(1.04);
  transform: scale(1.025);
}

.hana-introduction {
  padding: 100px max(5vw, 24px) 56px;
  background: var(--hbs-paper);
}

.hana-introduction-inner {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.hana-introduction-inner > p:last-child {
  margin: 0;
  color: #49443e;
  font-size: 18px;
  line-height: 1.82;
}

.hana-products {
  padding: 52px max(5vw, 24px) 100px;
  background: var(--hbs-paper);
}

.hana-product-grid {
  width: min(var(--hbs-content), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 30px;
}

.hana-product-card {
  overflow: hidden;
  border: 1px solid #d9d4cd;
  background: white;
  box-shadow: 0 18px 42px rgba(37, 29, 23, 0.12);
}

.hana-product-image {
  display: block;
  overflow: hidden;
  background: #e8dfd4;
  aspect-ratio: 1;
}

.hana-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hana-product-price {
  width: 100%;
  min-height: 64px;
  padding-right: 18px;
  padding-left: 18px;
  font-size: 12px;
  letter-spacing: 1.4px;
}

.hana-price-note {
  margin: 30px auto 0;
  color: var(--hbs-muted);
  font-style: italic;
  text-align: center;
}

.hana-story {
  padding: 100px max(5vw, 24px);
  background: var(--hbs-cream);
}

.hana-story-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hana-story-inner .eyebrow,
.hana-story-inner h2 {
  text-align: center;
}

.hana-story-inner > p:not(.eyebrow) {
  margin: 0 0 20px;
  color: #49443e;
  font-size: 18px;
  line-height: 1.82;
}

.hana-story-inner > p:last-child {
  margin-bottom: 0;
}

.hana-two-day {
  padding: 100px max(5vw, 24px);
  background: var(--hbs-paper);
}

.hana-two-day-inner {
  width: min(var(--hbs-content), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
}

.hana-two-day-copy > p:not(.eyebrow) {
  margin: 0 0 28px;
  color: #49443e;
  font-size: 18px;
  line-height: 1.78;
}

.hana-two-day-image {
  display: block;
  overflow: hidden;
  box-shadow: 0 22px 46px rgba(39, 29, 21, 0.18);
}

.hana-two-day-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 240ms ease;
}

.hana-two-day-image:hover img {
  transform: scale(1.02);
}

@media (max-width: 980px) {
  .route-hero {
    min-height: 680px;
  }

  .route-overview {
    padding: 82px 0 90px;
  }

  .route-overview-media {
    margin-bottom: 52px;
  }

  .route-destinations,
  .route-products,
  .route-story,
  .route-gallery,
  .hana-story,
  .hana-two-day {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .route-destination-card,
  .hana-two-day-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .route-destination-card:nth-child(even) .route-destination-copy,
  .route-destination-card:nth-child(even) .route-destination-media {
    order: initial;
  }

  .route-destination-media {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .hana-product-grid {
    max-width: 620px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .route-product-grid-two {
    max-width: 620px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .route-highlight-grid {
    max-width: 680px;
    grid-template-columns: 1fr;
  }

  .route-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 250px;
  }

  .hana-two-day-image {
    width: min(680px, 100%);
  }
}

@media (max-width: 640px) {
  .route-hero {
    min-height: 600px;
    padding: 110px 20px 82px;
  }

  .route-hero h1 {
    font-size: clamp(43px, 13vw, 59px);
    letter-spacing: -1.7px;
  }

  .route-hero-subtitle {
    margin-top: 22px;
    font-size: 19px;
  }

  .route-overview {
    width: calc(100% - 34px);
    padding: 70px 0 76px;
  }

  .route-overview-media {
    margin-bottom: 42px;
  }

  .route-overview-copy h2,
  .route-section-heading h2,
  .route-story h2,
  .hana-introduction h2,
  .hana-story h2,
  .hana-two-day h2 {
    font-size: clamp(37px, 11vw, 48px);
  }

  .route-overview-copy > p:not(.eyebrow),
  .route-story-inner > p:not(.eyebrow),
  .hana-introduction-inner > p:last-child,
  .hana-story-inner > p:not(.eyebrow),
  .hana-two-day-copy > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.72;
  }

  .route-destinations,
  .route-products,
  .route-story,
  .route-gallery,
  .hana-story,
  .hana-two-day {
    padding: 70px 20px;
  }

  .route-section-heading {
    margin-bottom: 20px;
  }

  .route-destination-card {
    gap: 30px;
    padding: 58px 0;
  }

  .route-destination-copy h3 {
    font-size: 47px;
  }

  .route-destination-media {
    padding: 10px;
  }

  .route-destination-media img {
    aspect-ratio: 4 / 3;
  }

  .route-booking-cta {
    width: calc(100% - 32px);
    padding: 70px 0;
  }

  .route-products .route-section-heading,
  .route-gallery .route-section-heading {
    margin-bottom: 36px;
  }

  .route-product-action {
    min-height: 60px;
  }

  .route-highlights {
    padding: 64px 20px;
  }

  .route-highlight-card {
    padding: 34px 25px 31px;
  }

  .route-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }

  .route-gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .hana-introduction {
    padding: 70px 20px 34px;
  }

  .hana-products {
    padding: 38px 20px 72px;
  }

  .hana-product-grid {
    gap: 32px;
  }

  .hana-product-price {
    min-height: 60px;
  }

  .hana-two-day-inner {
    gap: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-hero-video {
    display: none;
  }
}

/*
 * Live-site homepage baseline.
 *
 * Keep the first-party build visually close to the current production page
 * before layering on any redesign work. These rules intentionally flatten the
 * editorial card treatment introduced in 1.0.6.
 */
.home-hero {
  min-height: max(590px, 70vh);
  background-color: #302a24;
}

.home-hero-overlay {
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.2), rgba(8, 7, 6, 0.48));
}

.home-hero-content {
  width: min(1080px, calc(100% - 48px));
  padding: 15vh 0 95px;
}

.home-review-proof-strip {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	padding: 8px 24px;
	background: var(--hbs-bronze);
	color: #fff;
	font-family: var(--hbs-sans);
	font-size: 11px;
	letter-spacing: 1px;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.home-review-proof-strip:hover,
.home-review-proof-strip:focus-visible {
	background: var(--hbs-bronze-dark);
	color: #fff;
}

.home-review-proof-strip__rating {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0;
}

.home-review-proof-strip__stars {
	color: var(--hbs-gold-bright);
	font-size: 14px;
	letter-spacing: 1px;
}

.home-review-proof-strip strong {
	padding-left: 13px;
	border-left: 1px solid rgba(255, 255, 255, 0.42);
	font-size: inherit;
	letter-spacing: 1.25px;
}

.home-review-proof-strip__platforms {
	color: #f0ebe5;
}

.home-review-proof-strip__action {
	margin-left: 8px;
	color: #fff1cc;
	font-weight: 700;
}

.home-hero h1 {
  font-size: clamp(48px, 5vw, 56px);
  letter-spacing: -1px;
  line-height: 1.34;
}

.home-hero .hero-subtitle {
  max-width: 1040px;
  margin: 4px auto 22px;
  color: white;
  font-family: var(--hbs-sans);
  font-size: clamp(24px, 2.75vw, 32px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: none;
}

.home-hero .button {
  min-height: 42px;
  padding: 12px 24px 9px;
  font-size: 14px;
}

.scroll-cue {
  bottom: 13px;
  gap: 0;
  font-size: 25px;
  letter-spacing: 0;
  line-height: 0.55;
}

.scroll-cue span:last-child {
  color: white;
  font-size: inherit;
}

.award-strip {
  display: block;
  padding: 18px 24px 28px;
  border-bottom: 0;
}

.award-logos {
  width: min(500px, 100%);
  margin: 0 auto;
  gap: 28px;
}

.award-logos img {
  width: 90px;
  height: 90px;
}

#discover,
.vehicle-section {
  background: var(--hbs-cream);
}

#discover {
  padding-top: 58px;
  padding-bottom: 64px;
}

#discover .section-heading,
.vehicle-section .section-heading {
  margin-bottom: 38px;
}

#discover .section-heading h2,
.vehicle-section .section-heading h2,
.difference-intro h2,
.story-copy h2 {
  margin-bottom: 8px;
  color: var(--hbs-bronze);
  font-size: clamp(31px, 3.3vw, 36px);
  letter-spacing: 0;
  line-height: 1.16;
  text-transform: uppercase;
}

.section-heading > .home-section-subtitle {
  margin: 0;
  color: #111;
  font-family: var(--hbs-sans);
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.destination-grid {
  gap: 50px;
}

.destination-image-link::after {
  display: none;
}

.destination-card h3,
.vehicle-copy h3 {
  margin: 12px 0 9px;
  font-family: var(--hbs-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.destination-card .button,
.vehicle-card .button {
  min-height: 40px;
  padding: 12px 24px 10px;
  font-size: 10px;
  letter-spacing: 0.4px;
}

.vehicle-section {
  position: relative;
  padding-top: 50px;
  padding-bottom: 68px;
}

.vehicle-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(900px, calc(100% - 48px));
  border-top: 1px solid rgba(126, 104, 73, 0.55);
  transform: translateX(-50%);
}

.vehicle-grid {
  width: min(900px, 100%);
  gap: 56px;
}

.vehicle-card {
  display: block;
  border: 0;
  background: transparent;
}

.vehicle-image-wrap {
  min-height: 0;
  display: block;
  padding: 0;
  background: transparent;
}

.vehicle-image-wrap img {
  width: 100%;
  max-width: none;
  height: auto;
}

.vehicle-copy {
  padding: 0;
}

.reviews-section {
	min-height: 0;
	display: block;
	padding: 52px 24px 56px;
	background: #000;
}

.reviews-heading {
	margin: 0 auto 30px;
}

.reviews-heading .stars {
  margin-bottom: 18px;
}

.reviews-heading > p {
  margin-bottom: 9px;
  font-family: var(--hbs-body);
  font-size: 15px;
}

.reviews-heading > p strong {
	color: #fff;
	font-weight: 700;
}

.reviews-heading h2 {
	margin: 0;
  font-family: var(--hbs-sans);
  font-size: clamp(27px, 3.2vw, 36px);
  font-weight: 400;
	line-height: 1.2;
}

.review-slider {
	width: min(860px, 100%);
	margin: 0 auto;
}

.review-slider__viewport {
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	border: 1px solid rgba(225, 180, 82, 0.32);
	background: rgba(255, 255, 255, 0.035);
}

.review-slider__viewport::-webkit-scrollbar {
	display: none;
}

.review-slider__viewport:focus-visible {
	outline-color: var(--hbs-gold-bright);
}

.review-slider__track {
	position: relative;
	display: flex;
}

.review-slider .review-slide {
	min-height: 215px;
	flex: 0 0 100%;
	align-items: center;
	justify-content: center;
	padding: 30px 50px;
	border: 0;
	background: transparent;
	scroll-snap-align: start;
	text-align: center;
}

.review-slider .review-stars {
	margin-bottom: 12px;
	font-size: 17px;
	line-height: 1;
}

.review-slider .review-slide > p {
	max-width: 720px;
	margin: 0 auto 20px;
	font-size: 18px;
	line-height: 1.65;
}

.review-slider .review-slide footer {
	margin-top: 0;
}

.review-slider .review-slide footer a {
	color: var(--hbs-gold-bright);
	text-decoration: none;
}

.review-slider .review-slide footer a:hover,
.review-slider .review-slide footer a:focus-visible {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.review-slider__controls {
	display: flex;
	align-items: center;
	justify-content: center;
}

.review-slider__controls {
	gap: 18px;
	margin-top: 20px;
}

.review-slider__arrow {
	appearance: none;
	border: 0;
	cursor: pointer;
}

.review-slider__arrow {
	width: 40px;
	height: 40px;
	display: inline-grid;
	place-items: center;
	padding: 0;
	border: 1px solid rgba(225, 180, 82, 0.68);
	border-radius: 50%;
	background: transparent;
	color: var(--hbs-gold-bright);
	font-size: 21px;
	line-height: 1;
}

.review-slider__arrow svg {
	display: block;
	width: 22px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.review-slider__arrow:hover,
.review-slider__arrow:focus-visible {
	background: var(--hbs-gold);
	color: #000;
}

.review-slider__arrow:disabled {
	border-color: rgba(255, 255, 255, 0.22);
	background: transparent;
	color: #6f6860;
	cursor: not-allowed;
}

.review-slider__counter {
	min-width: 72px;
	color: #fff;
	font-family: var(--hbs-sans);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-align: center;
}

.difference-section {
  display: block;
  padding: 72px max(5vw, 24px) 82px;
  background: white;
  border: 0;
  color: var(--hbs-ink);
}

.difference-intro {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.difference-intro h2 {
  color: var(--hbs-bronze);
}

.difference-intro > p:last-child {
  margin: 0;
  color: var(--hbs-muted);
  font-size: 17px;
  line-height: 1.8;
}

.feature-grid {
  width: min(1080px, 100%);
  margin: 40px auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.feature {
  min-height: 0;
  display: block;
  padding: 0;
  border: 1px solid #ccc;
  background: var(--hbs-cream);
  text-align: center;
}

.feature:hover,
.feature[open] {
  border-color: var(--hbs-bronze);
}

.feature[open] {
  background: #fffdf9;
  box-shadow: 0 12px 28px rgba(87, 69, 47, 0.1);
}

.feature-summary {
  min-height: 130px;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 20px 18px;
}

.feature-summary:focus-visible {
  outline-color: var(--hbs-bronze);
}

.feature-icon {
  flex-basis: 28px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--hbs-bronze);
  color: var(--hbs-bronze);
}

.feature-title {
  color: #111;
  font-family: var(--hbs-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.feature-detail {
  padding: 0 20px 22px;
}

.feature-detail p {
  padding-top: 18px;
  border-color: var(--hbs-line);
  color: var(--hbs-muted);
  font-size: 14px;
  line-height: 1.65;
  text-align: left;
}

.story-section {
  min-height: 650px;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 1fr);
  gap: 70px;
  padding: 82px max(8vw, 24px);
  background: var(--hbs-cream);
}

.story-copy {
  max-width: 560px;
}

.story-copy h2 {
  margin-bottom: 5px;
}

.story-kicker {
  margin: 0 0 22px !important;
  color: #111 !important;
  font-family: var(--hbs-sans);
  font-size: 21px !important;
  font-weight: 600;
  line-height: 1.35 !important;
  text-transform: uppercase;
}

.story-copy > p:not(.story-kicker) {
  color: var(--hbs-muted);
  font-size: 16px;
  line-height: 1.8;
}

.story-copy > p a {
  color: var(--hbs-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.story-sun {
  display: none;
}

.story-image-wrap {
  min-height: 460px;
}

.story-image-wrap img {
  width: min(500px, 100%);
}

@media (max-width: 980px) {
  .home-hero {
    min-height: 680px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-section {
    gap: 30px;
  }
}

@media (max-width: 720px) {
  .home-hero {
    min-height: 720px;
  }

  .home-hero-video {
    display: none;
  }

  .home-hero-content {
    width: calc(100% - 32px);
    padding: 78px 0 85px;
  }

  .home-hero h1 {
    font-size: clamp(52px, 16vw, 62px);
    line-height: 1.23;
  }

  .home-hero .hero-subtitle {
    margin-top: 14px;
    margin-bottom: 30px;
    font-size: clamp(25px, 8vw, 31px);
    line-height: 1.1;
  }

  .home-hero .hero-actions {
    width: auto;
    align-items: center;
  }

	.home-hero .hero-actions .button {
		min-width: 210px;
	}

	.home-review-proof-strip {
		min-height: 58px;
		flex-wrap: wrap;
		gap: 4px 8px;
		padding: 7px 14px;
		font-size: 9px;
	}

	.home-review-proof-strip__rating {
		font-size: 15px;
	}

	.home-review-proof-strip__stars {
		font-size: 12px;
		letter-spacing: 0;
	}

	.home-review-proof-strip strong {
		padding-left: 8px;
	}

	.home-review-proof-strip__platforms {
		flex-basis: 100%;
	}

	.home-review-proof-strip__action {
		display: none;
	}

  .award-strip {
    padding: 30px 20px;
  }

  .award-logos {
    display: grid;
    grid-template-columns: repeat(2, 82px);
    gap: 22px 42px;
  }

  .award-logos img {
    width: 82px;
    height: 82px;
  }

  #discover,
  .vehicle-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .destination-grid,
  .vehicle-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .destination-grid {
    gap: 50px;
  }

  .vehicle-grid {
    gap: 44px;
  }

	.reviews-section {
		min-height: 0;
		padding: 42px 18px 44px;
	}

	.reviews-heading {
		margin-bottom: 26px;
	}

	.review-slider .review-slide {
		min-height: 270px;
		padding: 26px 20px;
	}

	.review-slider .review-slide > p {
		font-size: 16px;
		line-height: 1.6;
	}

	.review-slider__controls {
		margin-top: 17px;
	}

  .difference-section {
    padding: 68px 20px 72px;
  }

  .difference-intro > p:last-child {
    font-size: 16px;
  }

  .feature-grid {
    gap: 16px;
  }

  .feature {
    min-height: 0;
  }

  .feature-summary {
    min-height: 105px;
  }

  .story-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 70px 24px 0;
  }

  .story-image-wrap {
    min-height: 390px;
  }
}

/* Shared polish for imported Divi product-page controls. The product body
   class keeps these overrides away from editorial and category galleries. */
.hbs-product-page .page-content .et_pb_gallery {
  width: min(1080px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.hbs-product-page .page-content .et_pb_gallery_items {
  display: grid !important;
  grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.8fr);
  grid-auto-rows: clamp(140px, 12vw, 190px);
  gap: 14px;
  height: auto !important;
}

.hbs-product-page .page-content .et_pb_gallery_item {
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  display: block !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  overflow: hidden;
  background: #e7dfd4;
}

.hbs-product-page .page-content .et_pb_gallery_item:first-child {
  grid-row: span 3;
}

.hbs-product-page .page-content .et_pb_gallery_image,
.hbs-product-page .page-content .et_pb_gallery_image > a {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.hbs-product-page .page-content .et_pb_gallery_image img {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover;
  object-position: center;
  transition: transform 320ms ease;
}

.hbs-product-page .page-content .et_pb_gallery_image > a:hover img,
.hbs-product-page .page-content .et_pb_gallery_image > a:focus-visible img {
  transform: scale(1.025);
}

.hbs-product-page .page-content #pickuptimes {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto 42px !important;
  padding: clamp(24px, 4vw, 38px) !important;
  border: 1px solid #dfd3c5;
  background: #fffdf9;
  box-shadow: 0 16px 38px rgba(50, 37, 24, 0.08);
  text-align: center;
}

.hbs-product-page .page-content #pickuptimes img {
  display: none !important;
}

.hbs-product-page .page-content #pickuptimes .et_pb_toggle_content p:has(> img:only-child) {
  display: none !important;
}

.hbs-product-page .page-content #pickuptimes .et_pb_toggle_title,
.hbs-product-page .page-content #pickuptimes .et_pb_toggle_content,
.hbs-product-page .page-content #pickuptimes .et_pb_toggle_content p {
  text-align: center !important;
}

.hbs-product-page .page-content #pickuptimes .et_pb_toggle_title {
  margin: 0;
  color: var(--hbs-bronze-dark) !important;
  font-size: clamp(24px, 3.5vw, 34px) !important;
  line-height: 1.2;
}

.hbs-product-page .page-content #pickuptimes .et_pb_toggle_content {
  max-width: 650px;
  margin: 0 auto;
  padding: 16px 0 0 !important;
  color: var(--hbs-muted);
}

.hbs-product-page .page-content #pickuptimes .et_pb_toggle_content p {
  margin: 0;
}

@media (max-width: 800px) {
  .hbs-product-page .page-content .et_pb_gallery_items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 12px;
  }

  .hbs-product-page .page-content .et_pb_gallery_item {
    aspect-ratio: 4 / 3;
  }

  .hbs-product-page .page-content .et_pb_gallery_item:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .hbs-product-page .page-content .et_pb_gallery_item:nth-child(4) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 560px) {
  .page-content .hbs-tour-options__vehicles a.hbs-tour-options__vehicle-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .page-content .hbs-tour-options__vehicle-link small {
    text-align: left;
  }

  .hbs-product-page .page-content .et_pb_gallery_items {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hbs-product-page .page-content .et_pb_gallery_item,
  .hbs-product-page .page-content .et_pb_gallery_item:first-child,
  .hbs-product-page .page-content .et_pb_gallery_item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .hbs-product-page .page-content #pickuptimes {
    width: calc(100% - 24px);
    margin-bottom: 30px !important;
    padding: 22px 18px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
	.review-slider__viewport {
		scroll-behavior: auto;
	}

  .hbs-product-page .page-content .et_pb_gallery_image img {
    transition: none;
  }

  .hbs-product-page .page-content .et_pb_gallery_image > a:hover img,
  .hbs-product-page .page-content .et_pb_gallery_image > a:focus-visible img {
    transform: none;
  }
}
