/* ============================================================
   PLAN HOLIDAY — sections/plan-holiday.css
   ============================================================ */

.plan-holiday {
  background: var(--clr-cream);
  padding-block: var(--section-py);
  overflow: hidden;
}

/* ---- Top Row ---- */
.plan-holiday__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
}

.plan-holiday__heading .section-title {
  font-family: 'Nomiyola', 'Normiyola', 'Normiyola VIP', var(--ff-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
}

/* ---- Arch Cards Row ---- */
.arch-cards {
  --arch-cards-bevel: 22px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  clip-path: polygon(
    var(--arch-cards-bevel) 0,
    calc(100% - var(--arch-cards-bevel)) 0,
    100% var(--arch-cards-bevel),
    100% calc(100% - var(--arch-cards-bevel)),
    calc(100% - var(--arch-cards-bevel)) 100%,
    var(--arch-cards-bevel) 100%,
    0 calc(100% - var(--arch-cards-bevel)),
    0 var(--arch-cards-bevel)
  );
  border: 1px solid rgba(255, 255, 255, 0.82);
}

/* ---- Single Arch Card ---- */
.arch-card {
  width: 162px;
  flex: 0 0 162px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  border-radius: 0 !important;
  border: 0 !important;
  clip-path: polygon(
    16px 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% calc(100% - 16px),
    calc(100% - 16px) 100%,
    16px 100%,
    0 calc(100% - 16px),
    0 16px
  );
  background: transparent;
  transition: var(--t-base);
  box-shadow: none !important;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.28));
}
.arch-card > * {
  position: relative;
  z-index: 2;
}
.arch-card::before,
.arch-card::after {
  content: '';
  position: absolute;
  pointer-events: none;
  clip-path: polygon(
    16px 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% calc(100% - 16px),
    calc(100% - 16px) 100%,
    16px 100%,
    0 calc(100% - 16px),
    0 16px
  );
}
.arch-card::before {
  display: none;
}
.arch-card::after {
  inset: 0;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.arch-card:hover {
  transform: translateY(-10px);
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.36));
}

/* Inner image frame with matching beveled corners */
.arch-card__frame {
  width: 134px;
  height: 188px;
  border-radius: 0 !important;
  clip-path: polygon(
    14px 0,
    calc(100% - 14px) 0,
    100% 14px,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    14px 100%,
    0 calc(100% - 14px),
    0 14px
  );
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
  margin-bottom: 14px;
  position: relative;
  border: 0 !important;
  background: transparent;
  transition: var(--t-base);
}
.arch-card__frame::before {
  display: none;
}
.arch-card:hover .arch-card__frame {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.arch-card__frame img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  clip-path: polygon(
    12px 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% calc(100% - 12px),
    calc(100% - 12px) 100%,
    12px 100%,
    0 calc(100% - 12px),
    0 12px
  );
  object-fit: cover;
  transition: transform 0.5s ease;
}
.arch-card:hover .arch-card__frame img {
  transform: scale(1.07);
}

/* Subtle gradient overlay at bottom */
.arch-card__frame::after {
  content: '';
  position: absolute;
  inset: 2px;
  z-index: 2;
  clip-path: polygon(
    12px 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% calc(100% - 12px),
    calc(100% - 12px) 100%,
    12px 100%,
    0 calc(100% - 12px),
    0 12px
  );
  background: linear-gradient(to top, rgba(0,0,0,.25) 0%, transparent 50%);
  pointer-events: none;
}

/* ---- Text ---- */
.arch-card__name {
  min-height: 2.5em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: var(--fs-13);
  font-weight: var(--fw-semibold);
  color: var(--clr-dark);
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.arch-card__from {
  font-size: var(--fs-12);
  color: var(--clr-primary);
  font-weight: var(--fw-regular);
}
