/* ═══════════════════════════════════════════════════════════════════════════
   MACHAME ROUTE – 6 DAYS — Tour Detail Page
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Shared ─── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(196, 162, 101, 0.4);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--obsidian);
  margin-bottom: 20px;
}

.section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
  max-width: 600px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.t-hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 80px;
}

.t-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.t-hero__img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 30%;
}

.t-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.25) 0%,
    rgba(10, 10, 10, 0.15) 40%,
    rgba(10, 10, 10, 0.65) 100%
  );
}

.t-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.t-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.t-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.t-hero__breadcrumb a:hover {
  color: var(--gold);
}

.t-hero__breadcrumb--active {
  color: var(--white);
}

.t-hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.t-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}

.t-hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 16px;
}

.t-hero__desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin-bottom: 32px;
}

.t-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.t-hero__meta-item {
  display: flex;
  flex-direction: column;
}

.t-hero__meta-val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

.t-hero__meta-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.t-hero__buttons {
  display: flex;
  gap: 16px;
}

.t-hero__buttons .btn {
  min-width: 180px;
  text-align: center;
}


/* ═══════════════════════════════════════════════════════════════════════════
   2. QUICK INFO
   ═══════════════════════════════════════════════════════════════════════════ */
.t-quickinfo {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.t-quickinfo__grid {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.t-quickinfo__item {
  padding: 28px 40px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.t-quickinfo__item:last-child {
  border-right: none;
}

.t-quickinfo__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.t-quickinfo__value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--obsidian);
}


/* ═══════════════════════════════════════════════════════════════════════════
   3. OVERVIEW
   ═══════════════════════════════════════════════════════════════════════════ */
.t-overview {
  padding: 80px 0;
  background: var(--cream);
}

.t-overview__split {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.t-overview__content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 20px;
}

.t-overview__content p:last-child {
  margin-bottom: 0;
}

.t-overview__image-col {
  position: relative;
}

.t-overview__image-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.t-overview__image {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.t-overview__image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  z-index: 1;
}


/* ═══════════════════════════════════════════════════════════════════════════
   4. WHY MACHAME
   ═══════════════════════════════════════════════════════════════════════════ */
.t-why {
  padding: 80px 0;
  background: var(--white);
}

.t-why__split {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.t-why__left {
  position: sticky;
  top: 120px;
}

.t-why__intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin-top: 16px;
}

.t-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.t-why__item {
  padding: 32px 28px;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.t-why__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.t-why__icon {
  color: var(--gold);
  margin-bottom: 16px;
}

.t-why__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--obsidian);
  margin-bottom: 8px;
}

.t-why__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}


/* ═══════════════════════════════════════════════════════════════════════════
   5. ROUTE AT A GLANCE
   ═══════════════════════════════════════════════════════════════════════════ */
.t-route {
  padding: 80px 0;
  background: var(--cream);
}

.t-route__header {
  text-align: center;
  margin-bottom: 72px;
}

.t-route__header .section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.t-route__timeline {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.t-route__line {
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(196, 162, 101, 0.2));
}

.t-route__step {
  position: relative;
  padding: 16px 0;
  padding-left: 32px;
}

.t-route__dot {
  position: absolute;
  left: -40px;
  top: 20px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  z-index: 2;
}

.t-route__dot--summit {
  background: var(--gold);
  width: 30px;
  height: 30px;
  left: -43px;
  top: 17px;
}

.t-route__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.t-route__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--obsidian);
}

.t-route__alt {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
}

.t-route__alt--summit {
  color: var(--gold);
  font-weight: 600;
}

.t-route__step--summit .t-route__name {
  font-size: 20px;
  color: var(--gold);
}


/* ═══════════════════════════════════════════════════════════════════════════
   6. ITINERARY
   ═══════════════════════════════════════════════════════════════════════════ */
.t-itinerary {
  padding: 80px 0;
  background: var(--white);
}

.t-itinerary__header {
  text-align: center;
  margin-bottom: 72px;
}

.t-itinerary__header .section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.t-itinerary__list {
  max-width: 900px;
  margin: 0 auto;
}

.t-itinerary__day {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.t-itinerary__day--summit {
  border-bottom: none;
}

.t-itinerary__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
}

.t-itinerary__toggle:hover {
  background: rgba(0, 0, 0, 0.01);
}

.t-itinerary__day-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 60px;
}

.t-itinerary__day-info {
  flex: 1;
}

.t-itinerary__day-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--obsidian);
  margin-bottom: 4px;
}

.t-itinerary__day-meta {
  font-size: 13px;
  color: var(--gray);
}

.t-itinerary__icon {
  color: var(--gold);
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}

.t-itinerary__toggle[aria-expanded="true"] .t-itinerary__icon {
  transform: rotate(180deg);
}

.t-itinerary__content {
  display: none;
  padding: 0 0 32px 84px;
}

.t-itinerary__day.is-open .t-itinerary__content {
  display: block;
}

.t-itinerary__text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 16px;
}

.t-itinerary__text p:last-child {
  margin-bottom: 20px;
}

.t-itinerary__notice {
  padding: 16px 20px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  line-height: 1.6;
  color: var(--obsidian);
  margin-bottom: 20px;
}

.t-itinerary__notice--summit {
  background: rgba(196, 162, 101, 0.08);
}

.t-itinerary__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-itinerary__detail {
  padding: 12px 16px;
  background: var(--cream);
}

.t-itinerary__detail-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.t-itinerary__detail-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--obsidian);
}

.t-itinerary__summit-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  background: var(--obsidian);
  margin-bottom: 24px;
}

.t-itinerary__summit-alt {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--gold);
}

.t-itinerary__summit-feet {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.t-itinerary__summit-label {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
}


/* ═══════════════════════════════════════════════════════════════════════════
   7. ACCOMMODATION
   ═══════════════════════════════════════════════════════════════════════════ */
.t-accommodation {
  padding: 80px 0;
  background: var(--white);
}

.t-accommodation__split {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.t-accommodation__image-col {
  position: relative;
}

.t-accommodation__image-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.t-accommodation__image {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.t-accommodation__image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  z-index: 1;
}

.t-accommodation__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--obsidian);
  margin-bottom: 16px;
}

.t-accommodation__desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 32px;
}

.t-accommodation__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.t-accommodation__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.t-accommodation__item svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px;
}

.t-accommodation__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--obsidian);
  margin-bottom: 4px;
}

.t-accommodation__item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
}


/* ═══════════════════════════════════════════════════════════════════════════
   10. PRICING
   ═══════════════════════════════════════════════════════════════════════════ */
.t-pricing {
  padding: 80px 0;
  background: var(--cream);
}

.t-pricing__header {
  text-align: center;
  margin-bottom: 64px;
}

.t-pricing__header .section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.t-pricing__split {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ─── Price Table ─── */
.t-pricing__table-wrap {
  background: var(--white);
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.t-pricing__table {
  width: 100%;
  border-collapse: collapse;
}

.t-pricing__table thead {
  border-bottom: 2px solid var(--gold);
}

.t-pricing__table th {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  padding: 16px 0;
}

.t-pricing__table th:last-child {
  text-align: right;
}

.t-pricing__table td {
  font-size: 16px;
  color: var(--obsidian);
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.t-pricing__table tr:last-child td {
  border-bottom: none;
}

.t-pricing__table td:last-child {
  text-align: right;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--obsidian);
}

.t-pricing__table tr:hover td {
  background: rgba(196, 162, 101, 0.04);
}

.t-pricing__note {
  margin-top: 20px;
  font-size: 13px;
  font-style: italic;
  color: var(--gray);
  line-height: 1.6;
}

/* ─── Inquiry Form ─── */
.t-pricing__form-wrap {
  background: var(--white);
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.t-pricing__form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--obsidian);
  margin-bottom: 8px;
}

.t-pricing__form-desc {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}

.t-pricing__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.t-pricing__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.t-pricing__field {
  display: flex;
  flex-direction: column;
}

.t-pricing__field-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--obsidian);
  margin-bottom: 6px;
}

.t-pricing__input,
.t-pricing__select,
.t-pricing__textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--cream);
  color: var(--obsidian);
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
}

.t-pricing__input:focus,
.t-pricing__select:focus,
.t-pricing__textarea:focus {
  border-color: var(--gold);
}

.t-pricing__textarea {
  resize: vertical;
  min-height: 80px;
}

.t-pricing__submit {
  width: 100%;
  text-align: center;
  cursor: pointer;
}


/* ═══════════════════════════════════════════════════════════════════════════
   9. INCLUDED / NOT INCLUDED
   ═══════════════════════════════════════════════════════════════════════════ */
.t-included {
  padding: 80px 0;
  background: var(--white);
}

.t-included__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.t-included__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--obsidian);
  margin-bottom: 32px;
}

.t-included__title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.t-included__subtitle {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--obsidian);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.t-included__subtitle--out {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.t-included__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.t-included__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray);
}

.t-included__check {
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.t-included__cross {
  color: #999;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.t-included__note {
  margin-top: 24px;
  font-size: 14px;
  font-style: italic;
  color: var(--gray);
}

.t-included__note a {
  color: var(--gold);
  text-decoration: underline;
}


/* ═══════════════════════════════════════════════════════════════════════════
   12. SAFETY
   ═══════════════════════════════════════════════════════════════════════════ */
.t-safety {
  padding: 80px 0;
  background: var(--cream);
}

.t-safety__split {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.t-safety__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--obsidian);
  margin-bottom: 16px;
}

.t-safety__desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 32px;
}

.t-safety__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.t-safety__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.t-safety__feature svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.t-safety__feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--obsidian);
  margin-bottom: 4px;
}

.t-safety__feature p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
}

.t-safety__note {
  font-size: 14px;
  font-style: italic;
  color: var(--gray);
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: var(--white);
}

.t-safety__image-col {
  position: relative;
}

.t-safety__image-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.t-safety__image {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.t-safety__image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  z-index: 1;
}


/* ═══════════════════════════════════════════════════════════════════════════
   13. PACKING
   ═══════════════════════════════════════════════════════════════════════════ */
.t-packing {
  padding: 80px 0;
  background: var(--white);
}

.t-packing__header {
  text-align: center;
  margin-bottom: 64px;
}

.t-packing__header .section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.t-packing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 32px;
}

.t-packing__cat {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--obsidian);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.t-packing__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.t-packing__list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
  padding-left: 16px;
  position: relative;
}

.t-packing__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.t-packing__note {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
}

.t-packing__note a {
  color: var(--gold);
  text-decoration: underline;
}


/* ═══════════════════════════════════════════════════════════════════════════
   14. BEST TIME
   ═══════════════════════════════════════════════════════════════════════════ */
.t-season {
  padding: 80px 0;
  background: var(--cream);
}

.t-season__header {
  text-align: center;
  margin-bottom: 64px;
}

.t-season__header .section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.t-season__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 32px;
}

.t-season__item {
  position: relative;
  background: var(--white);
  padding: 32px 28px;
  border-top: 3px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.4s var(--ease);
}

.t-season__item:hover {
  transform: translateY(-3px);
}

.t-season__item--best {
  border-top-color: var(--gold);
}

.t-season__bar {
  width: 40px;
  height: 4px;
  margin-bottom: 20px;
}

.t-season__bar--good {
  background: #8BC34A;
}

.t-season__bar--best {
  background: var(--gold);
}

.t-season__bar--variable {
  background: #FF9800;
}

.t-season__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--obsidian);
  margin-bottom: 8px;
}

.t-season__status {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.t-season__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}

.t-season__note {
  text-align: center;
  font-size: 14px;
  font-style: italic;
  color: var(--gray);
}


/* ═══════════════════════════════════════════════════════════════════════════
   15. GROUP CLIMBS
   ═══════════════════════════════════════════════════════════════════════════ */
.t-groups {
  padding: var(--section-py) 0;
  background: var(--white);
}

.t-groups__header {
  text-align: center;
  margin-bottom: 64px;
}

.t-groups__header .section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.t-groups__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.t-groups__card {
  text-align: center;
  padding: 48px 32px;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.4s var(--ease);
}

.t-groups__card:hover {
  transform: translateY(-3px);
}

.t-groups__card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--obsidian);
  margin-bottom: 12px;
}

.t-groups__card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 28px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   16. GALLERY
   ═══════════════════════════════════════════════════════════════════════════ */
.t-gallery {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.t-gallery__header {
  text-align: center;
  margin-bottom: 64px;
}

.t-gallery__header .section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.t-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.t-gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.t-gallery__item--tall {
  grid-row: span 2;
}

.t-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.t-gallery__item:hover .t-gallery__img {
  transform: scale(1.06);
}

.t-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.t-gallery__item:hover .t-gallery__overlay {
  opacity: 1;
}

.t-gallery__overlay span {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}


/* ─── Lightbox ─── */
.t-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.t-lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.t-lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  z-index: 2;
}

.t-lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}


/* ═══════════════════════════════════════════════════════════════════════════
   17. REVIEWS
   ═══════════════════════════════════════════════════════════════════════════ */
.t-reviews {
  padding: 80px 0;
  background: var(--white);
}

.t-reviews__header {
  text-align: center;
  margin-bottom: 64px;
}

.t-reviews__header .section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.t-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.t-reviews__card {
  padding: 40px 32px;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.4s var(--ease);
}

.t-reviews__card:hover {
  transform: translateY(-3px);
}

.t-reviews__stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.t-reviews__text {
  font-family: var(--font-accent);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--obsidian);
  margin-bottom: 24px;
}

.t-reviews__author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--obsidian);
}

.t-reviews__author span {
  font-size: 13px;
  color: var(--gray);
}


/* ═══════════════════════════════════════════════════════════════════════════
   18. FAQ
   ═══════════════════════════════════════════════════════════════════════════ */
.t-faq {
  padding: 80px 0;
  background: var(--cream);
}

.t-faq__header {
  text-align: center;
  margin-bottom: 64px;
}

.t-faq__header .section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.t-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.t-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.t-faq__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
}

.t-faq__toggle span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--obsidian);
  flex: 1;
}

.t-faq__icon {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}

.t-faq__toggle[aria-expanded="true"] .t-faq__icon {
  transform: rotate(45deg);
}

.t-faq__answer {
  display: none;
  padding: 0 0 24px;
}

.t-faq__item.is-open .t-faq__answer {
  display: block;
}

.t-faq__answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
}


/* ═══════════════════════════════════════════════════════════════════════════
   19. FINAL CTA
   ═══════════════════════════════════════════════════════════════════════════ */
.t-finalcta {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}

.t-finalcta__bg {
  position: absolute;
  inset: 0;
}

.t-finalcta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-finalcta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.7) 100%);
}

.t-finalcta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.t-finalcta__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.t-finalcta__desc {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.t-finalcta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   20. STICKY BOOKING BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.t-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--obsidian);
  border-top: 1px solid rgba(196, 162, 101, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.t-sticky.is-visible {
  transform: translateY(0);
}

.t-sticky__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.t-sticky__route {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-right: 24px;
}

.t-sticky__price {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
}

.t-sticky__btn {
  display: inline-block;
  background: var(--gold);
  color: var(--obsidian);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 28px;
  transition: background 0.3s, transform 0.3s;
}

.t-sticky__btn:hover {
  background: #d4b275;
  transform: translateY(-1px);
}


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .t-hero {
    min-height: 80vh;
    padding-bottom: 60px;
  }

  .t-quickinfo__grid {
    justify-content: center;
  }

  .t-quickinfo__item {
    padding: 20px 24px;
  }

  .t-overview__split {
    gap: 48px;
  }

  .t-overview__image {
    height: 480px;
  }

  .t-why__split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .t-why__left {
    position: static;
    text-align: center;
  }

  .t-why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .t-zones__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .t-zones__item:nth-child(4),
  .t-zones__item:nth-child(5) {
    grid-column: span 1;
  }

  .t-accommodation__split {
    gap: 48px;
  }

  .t-pricing__split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .t-pricing__table-wrap,
  .t-pricing__form-wrap {
    padding: 32px 24px;
  }

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

  .t-season__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

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

  .t-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .t-safety__split {
    gap: 48px;
  }

  .t-safety__image {
    height: 440px;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .t-hero {
    min-height: 700px;
    padding-bottom: 40px;
  }

  .t-hero__title {
    font-size: clamp(36px, 10vw, 56px);
  }

  .t-hero__meta {
    gap: 16px;
  }

  .t-hero__buttons {
    flex-direction: column;
    gap: 12px;
  }

  .t-hero__buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .t-quickinfo__grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .t-quickinfo__item {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .t-quickinfo__item:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
  }

  .t-quickinfo__item:last-child {
    border-bottom: none;
    border-right: none;
  }

  .t-overview__split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .t-overview__image {
    height: 360px;
  }

  .t-why__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .t-route__timeline {
    padding-left: 30px;
  }

  .t-itinerary__content {
    padding-left: 0;
  }

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

  .t-itinerary__summit-alt {
    font-size: 36px;
  }

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

  .t-accommodation__split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .t-accommodation__image {
    height: 360px;
  }

  .t-pricing__form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .t-pricing__table-wrap,
  .t-pricing__form-wrap {
    padding: 28px 20px;
  }

  .t-included__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .t-safety__split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .t-safety__image {
    height: 360px;
  }

  .t-packing__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .t-season__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .t-groups__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .t-reviews__grid {
    grid-template-columns: 1fr;
  }

  .t-finalcta {
    padding: 100px 0;
  }

  .t-finalcta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .t-finalcta__buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .t-sticky__route {
    font-size: 14px;
  }

  .t-sticky__price {
    display: none;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — 480px
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .t-hero {
    min-height: 600px;
    padding-bottom: 32px;
  }

  .t-hero__breadcrumb {
    font-size: 11px;
    flex-wrap: wrap;
  }

  .t-hero__desc {
    font-size: 15px;
  }

  .t-hero__meta {
    gap: 12px;
  }

  .t-quickinfo__grid {
    flex-direction: column;
    align-items: center;
  }

  .t-quickinfo__item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px 20px;
  }

  .t-quickinfo__item:last-child {
    border-bottom: none;
  }

  .t-itinerary__toggle {
    gap: 12px;
    padding: 20px 0;
  }

  .t-itinerary__day-num {
    min-width: 50px;
    font-size: 12px;
  }

  .t-itinerary__day-title {
    font-size: 16px;
  }

  .t-itinerary__day-meta {
    font-size: 12px;
  }

  .t-itinerary__details {
    grid-template-columns: 1fr;
  }

  .t-itinerary__summit-badge {
    padding: 28px 20px;
  }

  .t-itinerary__summit-alt {
    font-size: 32px;
  }

  .t-zones__grid {
    grid-template-columns: 1fr 1fr;
  }

  .t-zones__item {
    min-height: 220px;
  }

  .t-packing__grid {
    grid-template-columns: 1fr;
  }

  .t-gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .t-gallery__item--tall {
    grid-row: span 1;
  }

  .t-faq__toggle span {
    font-size: 16px;
  }

  .t-sticky__route {
    font-size: 13px;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS & SCROLL EFFECTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* Scroll Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.t-zones__grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.t-zones__grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.t-zones__grid [data-reveal]:nth-child(4) { transition-delay: 0.3s; }
.t-zones__grid [data-reveal]:nth-child(5) { transition-delay: 0.4s; }

/* Nav Scroll Effect */
.nav--scrolled {
  background: rgba(10, 10, 10, 0.95) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--obsidian);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(196, 162, 101, 0.4);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
}
