/* =========================================================
   Tiers Section Widget — Frontend Styles
   ========================================================= */

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

.tw-section {
  background-color: #fcfaee;
  position: relative;
  padding: 100px 0 80px;
  font-family: Inter, system-ui, sans-serif;
}

/* ── Header ── */
.tw-header {
  text-align: center;
  padding: 0 24px 80px;
}

.tw-section-label {
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #938977;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 20px;
  padding: 0;
}

.tw-main-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  color: #180c04;
  margin: 0;
  padding: 0;
}

/* ── Inner wrapper ── */
.tw-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Row ── */
.tw-row {
  display: flex;
  flex-direction: row;
  gap: 60px;
  margin-bottom: 100px;
  align-items: center;
  flex-wrap: wrap;
}

.tw-row:last-child {
  margin-bottom: 0;
}

.tw-row--reverse {
  flex-direction: row-reverse;
}

/* ── Image ── */
.tw-img-wrap {
  width: 100%;
  max-width: 460px;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  box-shadow: 0px 8px 10px 0px rgba(168, 142, 113, 0.2);
  cursor: pointer;
  will-change: transform;
}

.tw-img-inner {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  display: block;
  object-fit: cover;
  will-change: transform;
}

/* ── Text Content ── */
.tw-text {
  flex: 1 1 400px;
  min-width: 300px;
}

.tw-journey-label {
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #938977;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 16px;
  padding: 0;
}

.tw-tier-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: #180c04;
  margin: 0 0 8px;
  padding: 0;
}

.tw-price-row {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #938977;
  margin: 0 0 24px;
  padding: 0;
  line-height: 1.3;
}

.tw-price-amount {
  font-style: italic;
}

.tw-freq {
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #696969;
  margin-left: 8px;
  letter-spacing: 0.5px;
}

.tw-description {
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #696969;
  margin: 0 0 28px;
  padding: 0;
  max-width: 440px;
}

/* ── Amenities ── */
.tw-amenities {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.tw-amenity {
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #696969;
  padding: 8px 0;
  border-bottom: 1px solid rgba(24, 12, 4, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.tw-amenity-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #938977;
  flex-shrink: 0;
}

/* ── CTA Button ── */
.tw-cta {
  display: inline-block;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #180c04;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  border: 1px solid rgba(24, 12, 4, 0.25);
  border-radius: 2px;
  transition: background-color 0.6s ease, color 0.6s ease, border-color 0.6s ease;
  cursor: pointer;
}

.tw-cta:hover {
  background-color: #180c04;
  color: #fcfaee;
  border-color: #180c04;
  text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .tw-row,
  .tw-row--reverse {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
  }

  .tw-img-wrap {
    max-width: 100%;
  }

  .tw-main-title {
    font-size: 30px;
  }

  .tw-tier-name {
    font-size: 26px;
  }

  .tw-header {
    padding-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .tw-section {
    padding: 60px 0 48px;
  }

  .tw-main-title {
    font-size: 26px;
  }
}
