/* ═══════════════════════════════════════════
   GROUP TOURS V2

   Design grid: max-width 1100px, padding 0 48px (desktop), 0 24px (mobile)
   Bg flow: white → lime → white (beige cards)
   ═══════════════════════════════════════════ */

/* ─── 1. Split Hero — WHITE bg, 100vh, cards 300x300 ─── */

.gt2-hero {
  background: var(--color-white);
  height: 100vh;
  height: 100svh;
  max-height: 960px;
  box-sizing: border-box;
  padding: 80px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gt2-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  width: 100%;
}

.gt2-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gt2-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.gt2-hero__tag-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-lime);
  border-radius: 2px;
}

.gt2-hero__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  color: var(--color-dark);
  line-height: 0.95;
  margin: 0 0 16px;
}

.gt2-hero__sub {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 360px;
}

.gt2-hero__actions {
  display: flex;
  gap: 14px;
}

/* Hero Cards — fixed 300x300 */

.gt2-hero__right {
  display: flex;
  align-items: center;
}

.gt2-hero__cards {
  display: grid;
  grid-template-columns: 250px 250px;
  grid-template-rows: 250px 250px;
  gap: 12px;
}

.gt2-hero__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 250px;
  height: 250px;
  display: block;
  text-decoration: none;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.gt2-hero__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.gt2-hero__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.gt2-hero__card:hover .gt2-hero__card-img {
  transform: scale(1.06);
}

.gt2-hero__card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 14px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, transparent 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gt2-hero__card-tag {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 3px;
  width: fit-content;
  margin-bottom: 2px;
}

.gt2-hero__card-tag[data-color="purple"] { background: var(--color-purple); }
.gt2-hero__card-tag[data-color="lime"] { background: var(--color-lime); color: var(--color-dark); }
.gt2-hero__card-tag[data-color="green"] { background: #2d8a52; }
.gt2-hero__card-tag[data-color="blue"] { background: #3d7ec7; }

.gt2-hero__card-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  line-height: 1.2;
}

.gt2-hero__card-price {
  font-size: 0.72rem;
  opacity: 0.75;
  font-weight: 500;
}

/* ─── 2. Calendar — LIME bg, content 1100px ─── */

.gt2-cal {
  padding: 64px 48px;
  background: var(--color-lime);
}

.gt2-cal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.gt2-cal__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  margin: 0;
  color: var(--color-dark);
}

.gt2-cal__tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.7);
  padding: 4px;
  border-radius: 60px;
  backdrop-filter: blur(4px);
}

.gt2-cal__tab {
  padding: 10px 28px;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 60px;
  color: var(--color-text-muted);
  transition: all 0.3s var(--ease-out);
}

.gt2-cal__tab:hover { color: var(--color-dark); }

.gt2-cal__tab--active {
  background: var(--color-white);
  color: var(--color-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.gt2-grid {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.gt2-grid__dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.gt2-grid__week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  min-height: 96px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.gt2-grid__week:last-child { border-bottom: none; }

.gt2-cell {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid rgba(0, 0, 0, 0.03);
}

.gt2-cell:last-child { border-right: none; }
.gt2-cell--empty { background: rgba(0, 0, 0, 0.012); }

.gt2-cell__day {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.gt2-cell--has .gt2-cell__day {
  font-weight: 700;
  color: var(--color-dark);
}

.gt2-pill {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.gt2-pill:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gt2-pill[data-color="purple"] { background: rgba(125, 104, 245, 0.12); color: #5a48c0; }
.gt2-pill[data-color="lime"] { background: rgba(203, 216, 0, 0.18); color: #4a5200; }
.gt2-pill[data-color="green"] { background: rgba(45, 138, 82, 0.12); color: #1e6b3a; }
.gt2-pill[data-color="blue"] { background: rgba(61, 126, 199, 0.12); color: #2c5f99; }

.gt2-pill__name { line-height: 1.3; }
.gt2-pill__price { font-weight: 500; opacity: 0.65; font-size: 0.6rem; }

/* ─── 3. Tour Sections — WHITE bg, BEIGE cards, 1100px ─── */

.gt2-tours {
  padding: 64px 48px 24px;
  background: var(--color-white);
}

.gt2-tours__heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  text-align: left;
  margin: 0 auto 40px;
  max-width: 1100px;
  color: var(--color-dark);
}

.gt2-tour {
  scroll-margin-top: 80px;
  max-width: 1100px;
  margin: 0 auto 20px;
}

.gt2-tour__inner {
  border-radius: var(--radius-lg);
  padding: 56px;
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.gt2-tour__head { margin-bottom: 32px; }

.gt2-tour__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.gt2-tour__tag[data-color="purple"] { background: rgba(125, 104, 245, 0.1); color: var(--color-purple); }
.gt2-tour__tag[data-color="lime"] { background: rgba(203, 216, 0, 0.12); color: #5a6200; }
.gt2-tour__tag[data-color="green"] { background: rgba(45, 138, 82, 0.1); color: #1e6b3a; }
.gt2-tour__tag[data-color="blue"] { background: rgba(61, 126, 199, 0.1); color: #2c5f99; }

.gt2-tour__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--color-dark);
}

.gt2-tour__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 24px;
}

.gt2-tour__text-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gt2-tour__block {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.gt2-tour__block:first-child { padding-top: 0; }
.gt2-tour__block:last-child { border-bottom: none; padding-bottom: 0; }

.gt2-tour__subtitle {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}

.gt2-tour__block--conditions { padding: 0; border-bottom: none; }

.gt2-tour__meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gt2-tour__meta-item {
  background: var(--color-white);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gt2-tour__meta-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gt2-tour__meta-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-dark);
}

.gt2-tour__sh {
  font-family: var(--font-display);
  font-size: 0.8rem;
  margin: 0 0 6px;
  color: var(--color-dark);
}

.gt2-tour__p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}

.gt2-tour__list { padding: 0; margin: 0; }

.gt2-tour__list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: 3px;
}

.gt2-tour__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--color-lime);
  border-radius: 50%;
}

.gt2-tour__dates {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.gt2-tour__date-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: var(--color-white);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-dark);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.gt2-tour__date-note {
  font-size: 0.68rem;
  padding: 1px 6px;
  background: rgba(203, 216, 0, 0.15);
  color: #5a6200;
  border-radius: 4px;
  font-weight: 600;
}

.gt2-tour__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.gt2-tour__more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.gt2-tour__more:hover { color: var(--color-dark); }

.gt2-tour__photo-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gt2-tour__photo--main {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.gt2-tour__photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gt2-tour__photo-row .gt2-tour__photo {
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Hero card arrows (mobile only) */
.gt2-hero__nav {
  display: none;
}

.gt2-hero__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  color: var(--color-dark);
  font-size: 16px;
  line-height: 1;
}

.gt2-hero__arrow:hover {
  background: #fff;
  transform: scale(1.1);
}

.gt2-hero__dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gt2-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.2s, transform 0.2s;
}

.gt2-hero__dot--active {
  background: var(--color-dark);
  transform: scale(1.3);
}

/* Price cell spacer for alignment */
.gt2-price-cell__spacer {
  font-size: 14px;
  color: transparent;
  user-select: none;
  line-height: 1;
}

#tour-street-art .gt2-tour__photo--main,
#tour-street-art .gt2-tour__photo {
  object-position: center 25%;
}

/* ─── 4. CTA ─── */

.gt2-cta {
  padding: 24px 48px 88px;
  background: var(--color-white);
}

.gt2-cta__inner {
  background: linear-gradient(145deg, #cbd800 0%, #d6e200 50%, #c5d000 100%);
  border-radius: 24px;
  padding: 52px 48px 56px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 8px 32px rgba(203, 216, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.gt2-cta__title { font-size: 28px; font-weight: 800; color: #000; margin: 0 0 12px; letter-spacing: -0.02em; line-height: 1.3; }
.gt2-cta__text { font-size: 16px; font-weight: 500; color: rgba(0, 0, 0, 0.7); margin: 0 auto 32px; max-width: 600px; line-height: 1.5; }
.gt2-cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.gt2-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #fff;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.gt2-cta__btn:hover {
  background: var(--color-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ═══ Responsive ═══ */

@media (max-width: 1024px) {
  .gt2-hero { padding: 80px 32px; }
  .gt2-hero__cards {
    grid-template-columns: 240px 240px;
    grid-template-rows: 240px 240px;
  }
  .gt2-hero__card { width: 240px; height: 240px; }
  .gt2-tour__inner { padding: 32px; }
  .gt2-tour__grid { gap: 24px; }
}

@media (max-width: 768px) {
  .gt2-hero {
    height: auto;
    max-height: none;
    padding: 88px 24px 40px;
  }

  .gt2-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gt2-hero__right {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  /* Mobile: horizontal card slider */
  .gt2-hero__cards {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    grid-template-columns: unset;
    grid-template-rows: unset;
  }

  .gt2-hero__cards::-webkit-scrollbar { height: 3px; }
  .gt2-hero__cards::-webkit-scrollbar-track { background: transparent; }
  .gt2-hero__cards::-webkit-scrollbar-thumb { background: var(--color-lime); border-radius: 3px; }

  .gt2-hero__card {
    flex: 0 0 72%;
    width: auto;
    height: auto;
    aspect-ratio: 3 / 4;
    scroll-snap-align: center;
  }

  .gt2-hero__title { font-size: clamp(28px, 8vw, 40px); }
  .gt2-hero__sub { font-size: 14px; }
  .gt2-hero__actions .h-btn { width: 100%; justify-content: center; }

  .gt2-hero__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
  }

  .gt2-cal { padding: 40px 24px; }
  .gt2-cal__header { flex-direction: column; align-items: flex-start; }

  /* Mobile calendar: only Thu-Fri-Sat-Sun */
  .gt2-grid__dow { grid-template-columns: repeat(4, 1fr); }
  .gt2-grid__dow span:nth-child(-n+3) { display: none; }
  .gt2-grid__week { grid-template-columns: repeat(4, 1fr); min-height: 56px; }
  .gt2-grid__week .gt2-cell:nth-child(-n+3) { display: none; }

  .gt2-cell { min-height: 80px; padding: 6px 5px; }
  .gt2-cell__day { font-size: 0.8rem; }
  .gt2-pill { padding: 4px 5px; font-size: 0.62rem; }
  .gt2-pill__name { line-height: 1.3; white-space: normal; overflow: visible; display: block; }
  .gt2-pill__price { display: none; }

  .gt2-tours { padding: 40px 24px 16px; }
  .gt2-tour__inner { padding: 24px 20px; }
  .gt2-tour__grid { grid-template-columns: 1fr; }
  .gt2-tour__meta-row { grid-template-columns: 1fr 1fr; }
  .gt2-tour__photo--main { aspect-ratio: 16 / 9; }
  .gt2-tour__photo-row .gt2-tour__photo { aspect-ratio: 16 / 9; }
  .gt2-tour__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gt2-tour__actions .h-btn { width: 100%; justify-content: center; }

  .gt2-cta { padding: 24px 24px 64px; }
  .gt2-cta__inner { padding: 36px 24px 40px; }
  .gt2-cta__title { font-size: 22px; }
  .gt2-cta__buttons { flex-direction: column; align-items: center; }
  .gt2-cta__btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .gt2-hero__card { flex: 0 0 80%; }
  .gt2-hero__card-name { font-size: 0.7rem; }
  .gt2-tour__meta-row { grid-template-columns: 1fr; }
  .gt2-pill__name { font-size: 0.6rem; line-height: 1.3; }
}
