:root {
  --kj-cream: #fff8f0;
  --kj-footer: #f2d5b8;
  --kj-text: #333333;
  --kj-heading: #3d3d3d;
  --kj-accent: #d80909;
  --kj-primary-btn: #4a7ec7;
  --kj-whatsapp: #25d366;
  --kj-container: 1280px;
  --kj-header-sticky: 5.5rem;
  --kj-tour-dock-height: 4.5rem;
  --font-sans: "Montserrat", system-ui, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--kj-text);
  background: var(--kj-cream);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 2rem, var(--kj-container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  background: var(--kj-cream);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}

.site-header__inner > .site-logo {
  flex: 0 0 auto;
}

.site-logo {
  flex: 0 0 auto;
  text-decoration: none;
}

.site-logo__img {
  display: block;
  height: auto;
  max-height: 72px;
  width: auto;
}

.site-header__whatsapp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding: 0.4rem 0.75rem;
  background: var(--kj-whatsapp);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.85rem;
}

.site-header__whatsapp:has(.kj-whatsapp-img--header) {
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.kj-whatsapp-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.kj-whatsapp-img--header {
  height: 48px;
  width: auto;
}

.kj-whatsapp-img--footer {
  height: 36px;
  width: auto;
}

.kj-whatsapp-img--contact {
  height: 40px;
  width: auto;
}

.site-header__whatsapp-icon::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3C/svg%3E");
}

.site-header__whatsapp-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--kj-text);
}

.site-nav {
  flex: 1 1 100%;
  order: 3;
  min-width: 0;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.25rem 1.5rem;
}

.site-nav__link {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.site-nav__link--active {
  border-bottom: 3px solid #1a1a1a;
}

.site-nav__item--has-dropdown {
  position: relative;
}

.site-nav__caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.site-nav__caret::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(2px);
}

.site-nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 50;
}

.site-nav__item--has-dropdown:hover .site-nav__dropdown,
.site-nav__item--has-dropdown:focus-within .site-nav__dropdown,
.site-nav__item--open .site-nav__dropdown {
  display: block;
}

.site-nav__dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-size: 0.9rem;
}

.site-nav__dropdown a:hover {
  background: #f5f5f5;
}

/* Footer */
.site-footer {
  background: var(--kj-footer);
  margin-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.site-footer h2 {
  font-size: 1.125rem;
  margin: 0 0 1rem;
  color: var(--kj-heading);
}

.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__contact li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  align-items: flex-start;
}

.site-footer__contact a {
  color: #c45a2a;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 280px;
}

.newsletter-form input {
  padding: 0.55rem 0.65rem;
  border: 1px solid #ccc;
  font: inherit;
  background: #fff;
}

.site-footer__trustindex {
  margin-top: 1rem;
}

.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.5rem;
  font-size: 0.8rem;
}

.site-footer__copyright a {
  color: #c45a2a;
}

.site-footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
}

.site-footer__social a {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--kj-text);
  text-decoration: none;
}

.site-footer__social a.site-footer__whatsapp-link {
  width: auto;
  min-width: 36px;
  height: 36px;
  padding: 0 4px;
  border: none;
  background: transparent;
}

.site-footer__social .kj-whatsapp-img--footer {
  height: 32px;
}

.icon-facebook::before { content: "f"; font-weight: 700; }
.icon-instagram::before { content: "◎"; }
.icon-whatsapp::before { content: "W"; font-weight: 700; }

/* Contact page */
.contact-hero {
  width: 100%;
  min-height: clamp(220px, 32vw, 420px);
  overflow: hidden;
  background-color: #3a3a3a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-hero__img {
  display: block;
  width: 100%;
  min-height: clamp(220px, 32vw, 420px);
  height: clamp(220px, 32vw, 420px);
  object-fit: cover;
  object-position: center;
}

.contact-details {
  padding: 3.5rem 0 2rem;
}

.contact-details__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  text-align: center;
}

.contact-details__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-details__icon svg {
  width: 2.5rem;
  height: 2.5rem;
  fill: #1a1a1a;
}

.contact-details__title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--kj-heading);
}

.contact-details__item p {
  margin: 0;
  line-height: 1.65;
  font-size: 0.98rem;
}

.contact-details__item a {
  color: var(--kj-accent);
  text-decoration: none;
}

.contact-details__item a:hover {
  text-decoration: underline;
}

.contact-follow {
  text-align: center;
  padding: 2.5rem 0 1rem;
}

.contact-follow__title {
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--kj-heading);
}

.contact-follow__social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-follow__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--kj-accent);
  color: #fff;
  text-decoration: none;
}

.contact-follow__social a.contact-follow__whatsapp-link {
  width: auto;
  min-width: 44px;
  height: 44px;
  padding: 0 6px;
  background: transparent;
}

.contact-follow__social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Contact form section */
.contact-section {
  background: var(--kj-cream);
  padding: 2rem 0 4rem;
}

.contact-section__inner {
  max-width: 560px;
  margin-inline: auto;
}

.contact-section h2 {
  text-align: center;
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
}

.contact-section__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form .form-field {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.contact-form .required {
  color: var(--kj-accent);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid #ccc;
  font: inherit;
  background: #fff;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border: none;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
}

.btn--primary {
  background: var(--kj-primary-btn);
  color: #fff;
}

.btn--dark {
  background: #1a1a1a;
  color: #fff;
}

.form-error {
  color: var(--kj-accent);
  font-size: 0.875rem;
  margin: 0.35rem 0 0;
}

.flash-messages {
  padding-top: 0.75rem;
}

.flash {
  padding: 0.75rem 1rem;
  background: #e8f5e9;
  border-radius: 4px;
}

.home-intro {
  padding: 3rem 0 2rem;
  text-align: center;
}

.home-intro h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.75rem;
  color: var(--kj-heading);
}

.home-intro__lead {
  max-width: 40rem;
  margin: 0 auto 1rem;
  font-size: 1.125rem;
}

.home-intro__cta {
  margin: 0;
}

.home-intro__cta a {
  color: var(--kj-accent);
  font-weight: 600;
  text-decoration: none;
}

.home-intro__cta a:hover {
  text-decoration: underline;
}

/* Blog index (matches kyushujourneys.com /blogs/) */
.blog-index-hero {
  text-align: center;
  padding: 4rem 0 3rem;
}

.blog-index-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--kj-heading);
}

.blog-index-hero__intro {
  max-width: 52rem;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--kj-text);
}

.blog-index-grid-section {
  padding: 0 0 4rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
}

.blog-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card__media {
  display: block;
  text-decoration: none;
}

.blog-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 400 / 260;
  object-fit: cover;
}

.blog-card__img--placeholder {
  background: linear-gradient(135deg, #e8e4df 0%, #d4cfc7 100%);
}

.blog-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
}

.blog-card__title a {
  color: #000;
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--kj-accent);
}

.blog-card__excerpt {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}

.blog-card__more {
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--kj-accent);
  text-decoration: none;
}

.blog-card__more:hover {
  text-decoration: underline;
}

.blog-index-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #666;
}

/* Blog article */
.blog-article__header {
  padding: 2.5rem 0 1rem;
  text-align: center;
}

.blog-article__category {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--kj-accent);
}

.blog-article__header h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--kj-heading);
}

.blog-article__date {
  font-size: 0.9rem;
  color: #666;
}

.blog-article__featured {
  margin-bottom: 2rem;
}

.blog-article__featured-img {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 4px;
}

.blog-article__content {
  max-width: 48rem;
  padding-bottom: 4rem;
  line-height: 1.7;
}

.blog-article__content img {
  border-radius: 4px;
}

.blog-article__content h2,
.blog-article__content h3 {
  margin-top: 2rem;
  color: var(--kj-heading);
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* About Us */
.about-intro {
  padding: 5rem 0 2.5rem;
}

.about-intro__inner {
  max-width: 46rem;
}

.about-intro__title {
  margin: 0 0 1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--kj-heading);
}

.about-intro__lead {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 42rem;
}

.about-pillars {
  padding: 2.5rem 0 4rem;
}

.about-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
}

.about-pillar__icon {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  margin-bottom: 1rem;
  color: var(--kj-accent);
}

.about-pillar__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.about-pillar__title {
  margin: 0 0 0.75rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--kj-heading);
}

.about-pillar__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.about-team {
  padding: 5rem 0 3rem;
}

.about-team__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.about-team__title {
  margin: 0 0 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--kj-heading);
}

.about-team__intro {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
}

.about-member {
  display: grid;
  grid-template-columns: minmax(7rem, 33%) 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
}

.about-member__photo {
  flex-shrink: 0;
}

.about-member__img {
  display: block;
  width: 100%;
  max-width: 11rem;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.about-member__name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--kj-heading);
}

.about-member__role {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--kj-heading);
}

.about-member__bio {
  font-size: 0.875rem;
  line-height: 1.6;
}

.about-member__bio p {
  margin: 0;
}

.about-member__bio a {
  color: var(--kj-accent);
  font-weight: 600;
  text-decoration: none;
}

.about-member__bio a:hover {
  text-decoration: underline;
}

.about-license {
  padding: 5rem 0 5rem;
  border-bottom: 4px solid var(--kj-footer);
}

.about-license__inner {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.about-license__title {
  margin: 0 0 1.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--kj-heading);
}

.about-license__body {
  font-size: 1.125rem;
  line-height: 1.6;
}

.about-license__body p {
  margin: 0 0 1.25rem;
}

.about-license__body p:last-child {
  margin-bottom: 0;
}

.about-license__body a {
  color: var(--kj-accent);
  font-weight: 600;
  text-decoration: none;
}

.about-license__body a:hover {
  text-decoration: underline;
}

/* Tour pages */
.page-tour {
  /* Space for fixed mobile booking dock */
}

.tour-hero {
  padding: 2rem 0 1.5rem;
}

.tour-hero__inner {
  display: grid;
  gap: 1.5rem;
}

.tour-hero__media--placeholder {
  min-height: 280px;
  background: var(--kj-footer) center / cover no-repeat
    url("../images/tour-placeholder.svg");
  border-radius: 4px;
}

.tour-hero__img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 4px;
}

.tour-hero__title {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--kj-heading);
}

.tour-hero__subtitle {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.5;
}

/* Two-column shell: scrollable content + sticky booking rail */
.tour-shell {
  padding: 2rem 0 4rem;
}

.tour-shell__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(320px, 30%);
  gap: 2.5rem;
  /* stretch both columns to the same row height so sticky has room to work */
  align-items: stretch;
}

.tour-shell__rail {
  position: relative;
  min-height: 100%;
}

.tour-booking-rail {
  position: sticky;
  top: var(--kj-header-sticky);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  /* Stay within the tall rail column for the full scroll of main content */
  align-self: start;
  max-height: calc(100vh - var(--kj-header-sticky) - 1.5rem);
  overflow-y: auto;
}

.tour-booking-card {
  padding: 1.5rem;
  background: #fcebd0;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.tour-booking-card__price {
  margin: 0 0 0.35rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

.tour-booking-card__label {
  margin: 0 0 0.25rem;
  font-weight: 700;
  font-size: 1.05rem;
}

.tour-booking-card__basis {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.tour-booking-card__meta {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  line-height: 1.55;
}

.tour-booking-card__meta li {
  margin-bottom: 0.35rem;
}

.tour-booking-card__meta-label {
  font-weight: 600;
}

.tour-booking-rail__nav {
  padding: 0 0.25rem;
  font-size: 0.875rem;
}

.tour-booking-rail__nav-title {
  margin: 0 0 0.5rem;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--kj-heading);
}

.tour-booking-rail__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-booking-rail__nav a {
  display: block;
  padding: 0.35rem 0;
  color: var(--kj-text);
  text-decoration: none;
}

.tour-booking-rail__nav a:hover {
  color: var(--kj-accent);
}

/* Fixed bottom bar — tablet/mobile */
.tour-booking-dock {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: #fcebd0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.tour-booking-dock__inner {
  padding: 0.65rem 0;
}

.tour-booking-card--compact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.tour-booking-card--compact .tour-booking-card__head {
  flex: 1 1 auto;
  min-width: 0;
}

.tour-booking-card--compact .tour-booking-card__price {
  margin: 0;
  font-size: 1.35rem;
}

.tour-booking-card--compact .tour-booking-card__dates {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.85;
}

.tour-booking-card--compact .tour-booking-card__cta {
  flex: 0 0 auto;
  width: auto;
  min-width: 8.5rem;
  padding: 0.75rem 1.25rem;
  white-space: nowrap;
}

.tour-section {
  margin-bottom: 3.5rem;
  scroll-margin-top: calc(var(--kj-header-sticky) + 1rem);
}

.tour-section__title {
  margin: 0 0 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--kj-heading);
}

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

.tour-intro__body {
  font-size: 1.05rem;
  line-height: 1.65;
}

.tour-day {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tour-day:last-child {
  border-bottom: none;
}

.tour-day__label {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--kj-heading);
}

.tour-day__highlight,
.tour-day__details,
.tour-day__footer {
  margin: 0 0 0.75rem;
  line-height: 1.6;
}

.tour-day__footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.95rem;
}

.tour-inclusions__grid {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 36%);
  gap: 2rem;
  align-items: start;
}

.tour-inclusions__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.tour-inclusions__img--placeholder {
  min-height: 360px;
  object-fit: cover;
  background: var(--kj-footer);
}

.tour-inclusions__guarantee {
  margin-top: 1.5rem;
}

.tour-testimonials__track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.tour-testimonial {
  margin: 0;
  padding: 1.25rem;
  background: #f0ebe3;
  border-radius: 4px;
}

.tour-testimonial__author {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.tour-testimonial__quote {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.tour-testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.tour-testimonials__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.tour-testimonials__dot.is-active {
  background: var(--kj-heading);
}

.tour-faq__item {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.tour-faq__item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.tour-faq__question {
  padding: 1rem 2rem 1rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.tour-faq__question::-webkit-details-marker {
  display: none;
}

.tour-faq__question::after {
  content: "";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s;
}

.tour-faq__item[open] .tour-faq__question::after {
  transform: translateY(-30%) rotate(-135deg);
}

.tour-faq__answer {
  padding: 0 0 1.25rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.tour-ask {
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  scroll-margin-top: calc(var(--kj-header-sticky) + 1rem);
}

.tour-ask__title {
  margin: 0 0 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.tour-ask__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.tour-ask__contact-item {
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tour-ask__contact a {
  color: inherit;
  text-decoration: none;
}

.tour-ask__contact a:hover {
  color: var(--kj-accent);
}

.tour-ask .btn--send {
  background: var(--kj-accent);
  color: #fff;
  width: 100%;
  max-width: 12rem;
}

.tour-explore__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tour-explore__card {
  text-decoration: none;
  color: inherit;
}

.tour-explore__media {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.tour-explore__img {
  display: block;
  width: 100%;
  aspect-ratio: 400 / 260;
  object-fit: cover;
  transition: transform 0.25s;
}

.tour-explore__card:hover .tour-explore__img {
  transform: scale(1.03);
}

.tour-explore__img--placeholder {
  background: var(--kj-footer);
}

.tour-explore__label {
  display: block;
  font-weight: 700;
  font-size: 1rem;
}

.btn--book {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: var(--kj-accent);
  color: #fff;
  padding: 0.85rem 1rem;
  font-weight: 700;
  border-radius: 2px;
}

.btn--book:hover {
  filter: brightness(0.92);
  color: #fff;
}

@media (max-width: 1100px) {
  .page-tour {
    padding-bottom: calc(var(--kj-tour-dock-height) + 1rem);
  }

  .tour-shell__grid {
    grid-template-columns: 1fr;
  }

  .tour-shell__rail {
    display: none;
  }

  .tour-booking-dock {
    display: block;
  }

  .tour-inclusions__grid {
    grid-template-columns: 1fr;
  }

  .tour-explore__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-ask__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tour-explore__grid {
    grid-template-columns: 1fr;
  }

  .tour-testimonials__track {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .about-pillars__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-team__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-intro {
    padding: 3rem 0 2rem;
  }

  .about-intro__title,
  .about-pillar__title,
  .about-team__title,
  .about-license__title {
    font-size: 1.75rem;
  }

  .about-member {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .about-member__body {
    width: 100%;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-index-hero {
    padding: 2.5rem 0 2rem;
  }
}

@media (max-width: 900px) {
  .contact-details__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 28rem;
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header__whatsapp {
    order: 2;
    margin-left: auto;
  }

  .nav-toggle {
    order: 3;
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 4;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }

  .site-nav__item--open .site-nav__dropdown {
    display: block;
  }
}

@media (min-width: 901px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    flex-wrap: nowrap;
    column-gap: 1.5rem;
  }

  .site-logo {
    grid-column: 1;
    justify-self: start;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    grid-column: 2;
    flex: none;
    order: unset;
    display: block;
    justify-self: center;
    width: 100%;
  }

  .site-header__whatsapp {
    grid-column: 3;
    order: unset;
    justify-self: end;
    margin-left: 0;
  }
}

/* Site access gate (coming soon / maintenance) */
.site-access-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: var(--kj-cream);
}

.site-access-gate__card {
  width: min(100%, 28rem);
  text-align: center;
}

.site-access-gate__logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.site-access-gate__logo-img {
  max-height: 4rem;
  width: auto;
}

.site-access-gate__brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--kj-heading);
  margin: 0 0 1.5rem;
}

.site-access-gate__title {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  color: var(--kj-heading);
}

.site-access-gate__message {
  margin: 0 0 1.5rem;
  color: var(--kj-text);
}

.site-access-gate__form {
  text-align: left;
  margin-bottom: 1rem;
}

.site-access-gate__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.site-access-gate__input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  font: inherit;
  margin-bottom: 0.75rem;
}

.site-access-gate__error {
  color: var(--kj-accent);
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
}

.site-access-gate__submit {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 4px;
  background: var(--kj-primary-btn);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.site-access-gate__submit:hover {
  filter: brightness(1.05);
}

.site-access-gate__hint {
  font-size: 0.85rem;
  color: var(--kj-text);
  margin: 0;
}

.site-access-gate__hint a {
  color: var(--kj-primary-btn);
}
