/* ====== TAROT CARD PAGE ====== */

/* --- Hero --- */
.tc-hero {
  background: #fdf6f0;
  padding: 130px 24px 50px;
  text-align: center;
}

.tc-hero-label {
  display: inline-block;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #b46746;
  margin-bottom: 12px;
}

.tc-hero h1 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  color: #8b4f4f;
  margin: 0 0 8px;
}

.tc-hero-number {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: #b46746;
  opacity: 0.7;
}

/* --- Card + Intro --- */
.tc-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 24px;
}

.tc-card-intro {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 60px;
}

.tc-card-image {
  position: sticky;
  top: 100px;
}

.tc-card-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(90, 74, 64, 0.2);
  display: block;
}

.tc-intro h2 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: #8b4f4f;
  margin: 0 0 16px;
}

.tc-intro p {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #5a4a40;
  line-height: 1.8;
  margin: 0 0 16px;
}

.tc-mantra {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  color: #8b4f4f;
  line-height: 1.6;
  padding: 20px 24px;
  border-left: 3px solid #b46746;
  background: #fdf6f0;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
}

/* --- Inline Keywords (inside intro, next to card image) --- */
.tc-inline-keywords {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tc-inline-kw-group h4 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: #8b4f4f;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tc-inline-meaning {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #5a4a40;
  line-height: 1.7;
  margin: 10px 0 0;
}

/* --- Story / Narrative --- */
.tc-story {
  margin-bottom: 50px;
}

.tc-story h2 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: #8b4f4f;
  margin: 0 0 20px;
  text-align: center;
}

.tc-story-body {
  background: linear-gradient(to left, #FEF4EF 0%, #FFFAF8 100%);
  border: 1px solid #f0ddd0;
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.tc-story-body p {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  color: #5a4a40;
  line-height: 1.85;
  margin: 0 0 18px;
  text-align: center;
}

.tc-story-body p:last-child {
  margin-bottom: 0;
}

.tc-story-body p:first-child::first-letter {
  font-size: 48px;
  float: left;
  line-height: 1;
  margin-right: 8px;
  margin-top: 4px;
  color: #b46746;
  font-weight: 600;
}

/* --- Shadow Section (below story) --- */
.tc-shadow-section {
  text-align: center;
  margin-bottom: 50px;
  padding: 30px;
  border: 1px solid #f0ddd0;
  border-radius: 16px;
  background: #fff;
}

.tc-shadow-section h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #8b4f4f;
  margin: 0 0 12px;
}

.tc-shadow-section p {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #5a4a40;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tc-shadow-section .tc-keyword-list {
  justify-content: center;
}

/* --- Keywords --- */
.tc-keywords {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}

.tc-keywords-col {
  background: linear-gradient(to left, #FEF4EF 0%, #FFFAF8 100%);
  border: 1px solid #f0ddd0;
  border-radius: 16px;
  padding: 28px;
}

.tc-keywords-col h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #8b4f4f;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tc-keywords-col h3 .tc-arrow {
  font-size: 18px;
}

.tc-keywords-col h3 .tc-arrow--up { color: #b46746; }
.tc-keywords-col h3 .tc-arrow--down { color: #8b4f4f; opacity: 0.6; }

.tc-keyword-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tc-keyword-list li {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #5a4a40;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #f0ddd0;
  padding: 6px 14px;
  border-radius: 50px;
}

/* --- Upright / Reversed --- */
.tc-meanings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}

.tc-meaning-card {
  background: #fff;
  border: 1px solid #f0ddd0;
  border-radius: 16px;
  padding: 28px;
}

.tc-meaning-card h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #8b4f4f;
  margin: 0 0 14px;
}

.tc-meaning-card p {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #5a4a40;
  line-height: 1.75;
  margin: 0;
}

/* --- CTA --- */
.tc-cta {
  background: linear-gradient(to left, #FEF4EF 0%, #FFFAF8 100%);
  border: 1px solid #f0ddd0;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-bottom: 50px;
}

.tc-cta h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: #8b4f4f;
  margin: 0 0 12px;
}

.tc-cta p {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #5a4a40;
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.tc-cta-btn {
  display: inline-block;
  padding: 13px 28px;
  background: linear-gradient(135deg, #b46746, #8b4f4f);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.tc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(180, 103, 70, 0.3);
  color: white;
}

/* --- Browse Cards Grid --- */
.tc-browse {
  margin-bottom: 50px;
}

.tc-browse h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: #8b4f4f;
  text-align: center;
  margin: 0 0 30px;
}

.tc-browse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
}

.tc-browse-card {
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease;
}

.tc-browse-card:hover {
  transform: translateY(-4px);
}

.tc-browse-card img {
  width: 106%;
  margin-left: -3%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(90, 74, 64, 0.12);
  margin-bottom: 8px;
}

.tc-browse-card {
  overflow: hidden;
  border-radius: 10px;
}

.tc-browse-card span {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #5a4a40;
}

/* --- Deck Promo --- */
.tc-deck-promo {
  margin-bottom: 50px;
  background: linear-gradient(135deg, #2a1a14, #3d2518);
  border-radius: 20px;
  overflow: hidden;
  padding: 40px;
}

.tc-deck-promo-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: center;
}

.tc-deck-promo-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.tc-deck-promo-text h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #e6d5cb;
  margin: 0 0 16px;
}

.tc-deck-promo-text p {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(230, 213, 203, 0.85);
  line-height: 1.8;
  margin: 0 0 14px;
}

.tc-deck-promo-link {
  display: inline-block;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #b46746;
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.25s ease;
}

.tc-deck-promo-link:hover {
  color: #e6d5cb;
}

@media (max-width: 768px) {
  .tc-deck-promo-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tc-deck-promo-img {
    max-width: 120px;
    margin: 0 auto;
  }
}

/* --- Back link --- */
.tc-back {
  text-align: center;
  padding: 0 0 40px;
}

.tc-back a {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #b46746;
  text-decoration: none;
  transition: color 0.25s ease;
}

.tc-back a:hover {
  color: #8b4f4f;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .tc-card-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tc-card-image {
    position: static;
    max-width: 260px;
    margin: 0 auto;
  }

  .tc-keywords {
    grid-template-columns: 1fr;
  }

  .tc-meanings {
    grid-template-columns: 1fr;
  }

  .tc-browse-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 12px;
  }
}
