/* ====================================
   RedBeryl — Partner Communications
   Mobile-First Premium Design System
   ==================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---------- Juana Alt — self-hosted ---------- */
@font-face {
  font-family: 'JuanaAlt-Medium';
  src: url('./fonts/Fontspring-DEMO-juanaalt-medium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'JuanaAlt-Light';
  src: url('./fonts/Fontspring-DEMO-juanaalt-light.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---------- CSS Custom Properties ---------- */
:root {
  /* ── Brand Palette ── */
  /* Primary Accent */
  --rb-red: #981b23;
  --rb-red-light: #c0272f;
  --rb-red-dark: #6b1219;
  --rb-red-glow: rgba(152, 27, 35, 0.22);
  --rb-red-subtle: rgba(152, 27, 35, 0.07);

  /* Backgrounds */
  --rb-ivory:    #FDF7F4;   /* Ivory Petal  — primary bg   */
  --rb-alabaster: #F0EBE3;  /* Alabaster    — secondary bg  */

  /* Tertiary Accent */
  --rb-stone: #8B7D72;      /* Warm Stone */
  --rb-stone-light: #a89890;
  --rb-stone-subtle: rgba(139, 125, 114, 0.10);

  /* Text */
  --rb-black: #000000;
  --rb-black-soft: #1a1a1a;
  --rb-black-card: #111111;
  --rb-black-surface: #1e1e1e;

  /* Neutral scale (derived from Alabaster/Ivory) */
  --rb-white: #FFFFFF;
  --rb-gray-50:  #FAF6F3;
  --rb-gray-100: #F0EBE3;   /* = Alabaster */
  --rb-gray-200: #DDD5CC;
  --rb-gray-300: #B8ADA5;
  --rb-gray-400: #8B7D72;   /* = Warm Stone */
  --rb-gray-500: #6E6259;
  --rb-gray-600: #4A4441;
  --rb-gray-700: #2A2523;

  /* Semantic */
  --rb-success: #2E7D32;
  --rb-whatsapp: #25D366;
  --rb-whatsapp-dark: #128C7E;

  /* ── Typography ── */
  /* JuanaAlt Medium — RedBeryl wordmark / header logo */
  --font-juana-medium: 'JuanaAlt-Medium', 'Playfair Display', Georgia, serif;
  /* JuanaAlt Light — partner names, section headings, content titles */
  --font-juana-light:  'JuanaAlt-Light',  'Playfair Display', Georgia, serif;
  /* Aliases for clarity in usage */
  --font-heading:       var(--font-juana-light);   /* content headings */
  --font-heading-brand: var(--font-juana-medium);  /* logo / brand wordmark */
  /* Visby — website body (add @font-face when self-hosting) */
  --font-body:    'Visby', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* Playfair Display — subheadings / written creatives */
  --font-display: 'Playfair Display', Georgia, serif;
  /* Poppins — written creative body text */
  --font-poppins: 'Poppins', 'Visby', sans-serif;

  /* Spacing — 4px grid */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 64px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 4px 16px rgba(0,0,0,0.10), 0 8px 32px rgba(0,0,0,0.06);
  --shadow-elevated: 0 8px 24px rgba(0,0,0,0.10), 0 16px 48px rgba(0,0,0,0.08);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 200ms var(--ease-out-expo);
  --transition-med: 350ms var(--ease-out-expo);
  --transition-slow: 500ms var(--ease-out-expo);

  /* Layout */
  --max-width: 540px;
  --header-height: 72px;
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--rb-black-soft);
  background-color: var(--rb-ivory);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* ---------- Selection highlight ---------- */
::selection {
  background: var(--rb-red-glow);
  color: var(--rb-black);
  color: var(--rb-ivory);
}

/* ---------- Page Shell ---------- */
.page-wrapper {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.page-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
  flex: 1;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 247, 244, 0.88); /* Ivory Petal translucent */
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid transparent;
  padding: var(--space-3) var(--space-4);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.site-header.scrolled {
  border-bottom-color: rgba(139, 125, 114, 0.18); /* Warm Stone subtle */
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-back {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--rb-gray-500);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  /* Minimum touch target */
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
}

.header-back:hover {
  color: var(--rb-red);
  background: var(--rb-red-subtle);
}

.header-back:active {
  transform: scale(0.92);
}

.header-back svg {
  width: 18px;
  height: 18px;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.logo-text {
  font-family: var(--font-heading-brand); /* JuanaAlt-Medium — RedBeryl wordmark */
  font-style: normal;
  font-size: 1.25rem;
  font-weight: normal;
  letter-spacing: 0.12em;
  /* Entire "RedBeryl" wordmark is brand red */
  color: var(--rb-red);
}

/* .logo-red span kept in markup for legacy — colour inherited from parent */
.logo-text .logo-red {
  color: inherit;
}

.logo-subtitle {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rb-gray-400);
}

/* ---------- Tier Badge (header) ---------- */
.tier-indicator {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: var(--space-1);
}

.tier-indicator--red {
  background: linear-gradient(135deg, var(--rb-red), var(--rb-red-dark));
  color: white;
}

.tier-indicator--black {
  background: linear-gradient(135deg, #2C2C2C, #1A1A1A);
  color: var(--rb-stone-light);
}

.tier-indicator .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ---------- Hero Section ---------- */
.hero-section {
  text-align: center;
  padding: var(--space-8) var(--space-4) var(--space-6);
}

.hero-month {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--rb-black);
  line-height: 1.2;
  margin-bottom: var(--space-2);
}

.hero-subtitle {
  font-family: var(--font-poppins);
  font-size: 0.9375rem;
  color: var(--rb-stone);
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.5;
}

.hero-divider {
  width: 40px;
  height: 2px;
  background: var(--rb-red);
  margin: var(--space-5) auto 0;
  border-radius: 2px;
}

/* ---------- Partner Count (below hero) ---------- */
.partner-count {
  text-align: center;
  padding: 0 var(--space-4) var(--space-5);
  font-size: 0.8125rem;
  color: var(--rb-gray-400);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.partner-count strong {
  color: var(--rb-gray-600);
  font-weight: 600;
}

/* ---------- Partner Card / Accordion ---------- */
.partners-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-bottom: calc(var(--space-10) + var(--safe-area-bottom));
}

.partner-card {
  background: var(--rb-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-med), transform var(--transition-med);
  will-change: transform;
  position: relative;
  /* Left accent border */
  border-left: 3px solid transparent;
}

.partner-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.partner-card.open {
  box-shadow: var(--shadow-elevated);
  border-left-color: var(--rb-red);
}

/* Accordion Header */
.partner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  /* Touch-friendly minimum height */
  min-height: 68px;
  transition: background var(--transition-fast);
  position: relative;
}

.partner-header:hover {
  background: var(--rb-ivory);
}

.partner-header:active {
  background: rgba(0, 0, 0, 0.03);
}

/* Focus visible for keyboard nav */
.partner-header:focus-visible {
  outline: 2px solid var(--rb-red);
  outline-offset: -2px;
  border-radius: var(--radius-md);
}

.partner-header-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
  min-width: 0;
}

.partner-name {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--rb-black);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.partner-meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge--location {
  background: var(--rb-alabaster);
  color: var(--rb-stone);
}

.badge--location svg {
  width: 12px;
  height: 12px;
}

.badge--offers {
  background: var(--rb-red-subtle);
  color: var(--rb-red);
}

.badge--tier {
  background: linear-gradient(135deg, #2C2C2C, #1A1A1A);
  color: var(--rb-stone-light);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Chevron */
.partner-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-left: var(--space-3);
  border-radius: 50%;
  background: var(--rb-alabaster);
  transition: all var(--transition-med);
}

.partner-chevron svg {
  width: 18px;
  height: 18px;
  color: var(--rb-stone);
  transition: transform var(--transition-med), color var(--transition-fast);
}

.partner-card.open .partner-chevron {
  background: var(--rb-red-subtle);
}

.partner-card.open .partner-chevron svg {
  transform: rotate(180deg);
  color: var(--rb-red);
}

/* Accordion Body */
.partner-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms var(--ease-out-expo);
}

.partner-card.open .partner-body {
  max-height: 2000px;
}

.partner-content {
  padding: 0 var(--space-5) var(--space-5);
}

/* Partner Image */
.partner-image-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-4);
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--rb-gray-200);
}

/* Shimmer loading effect for images */
.partner-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.4) 50%,
    transparent 100%
  );
  animation: shimmer 1.8s infinite;
  z-index: 1;
}

.partner-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out-expo), opacity 400ms ease;
  position: relative;
  z-index: 2;
}

/* Hide shimmer once image loads */
.partner-image-wrap img[src] {
  opacity: 1;
}

.partner-card.open .partner-image-wrap img {
  transform: scale(1.03);
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Image overlay gradient */
.partner-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
  pointer-events: none;
  z-index: 3;
}

/* Description */
.partner-description {
  font-family: var(--font-poppins);
  font-size: 0.9375rem;
  color: var(--rb-stone);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

/* Offers */
.offers-heading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rb-red);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.offers-heading::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--rb-red);
  border-radius: 1px;
}

/* Sub-headings for partners with grouped offers (e.g. The Tivoli) */
.offers-subheading {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--rb-gray-600);
  margin-bottom: var(--space-2);
  margin-top: var(--space-4);
  padding-bottom: var(--space-1);
  border-bottom: 1px solid var(--rb-alabaster);
}

.offers-subheading:first-of-type {
  margin-top: 0;
}

/* Offers note */
.offers-note {
  font-family: var(--font-poppins);
  font-size: 0.8125rem;
  color: var(--rb-stone);
  font-style: italic;
  margin-bottom: var(--space-5);
  padding: var(--space-3);
  background: var(--rb-alabaster);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--rb-stone-subtle);
}

.offers-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.offers-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-family: var(--font-poppins);
  font-size: 0.875rem;
  color: var(--rb-gray-600);
  line-height: 1.55;
  padding: var(--space-2) 0;
}

.offers-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--rb-red-subtle);
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23981b23'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- CTA Button (WhatsApp) ---------- */
.book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  padding: var(--space-4) var(--space-6);
  background: linear-gradient(135deg, var(--rb-whatsapp), var(--rb-whatsapp-dark));
  color: white;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  /* Touch-friendly */
  min-height: 52px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  position: relative;
  overflow: hidden;
}

.book-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.book-btn:hover::before,
.book-btn:active::before {
  opacity: 1;
}

.book-btn:active {
  transform: scale(0.97);
}

.book-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- Month Index Page ---------- */
.month-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-bottom: calc(var(--space-10) + var(--safe-area-bottom));
}

.month-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--rb-white);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  min-height: 72px;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.month-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--rb-red);
  transform: scaleY(0);
  transition: transform var(--transition-med);
}

.month-card:hover::before,
.month-card:active::before {
  transform: scaleY(1);
}

.month-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateX(4px);
}

.month-card:active {
  transform: scale(0.98);
}

.month-card-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.month-card-name {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--rb-black);
}

.month-card-count {
  font-family: var(--font-poppins);
  font-size: 0.8125rem;
  color: var(--rb-stone);
}

.month-card-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--rb-alabaster);
  color: var(--rb-stone);
  transition: all var(--transition-fast);
}

.month-card:hover .month-card-arrow {
  background: var(--rb-red-subtle);
  color: var(--rb-red);
  transform: translateX(4px);
}

.month-card-arrow svg {
  width: 16px;
  height: 16px;
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: var(--space-7) var(--space-4) calc(var(--space-7) + var(--safe-area-bottom));
  border-top: 1px solid rgba(139, 125, 114, 0.18); /* Warm Stone subtle */
  background: var(--rb-alabaster);
}

.footer-logo {
  font-family: var(--font-heading-brand); /* JuanaAlt-Medium — RedBeryl wordmark */
  font-style: normal;
  font-size: 0.875rem;
  font-weight: normal;
  letter-spacing: 0.14em;
  color: var(--rb-stone);
  margin-bottom: var(--space-1);
}

.footer-text {
  font-family: var(--font-poppins);
  font-size: 0.75rem;
  color: var(--rb-stone-light);
}

/* ---------- Empty State ---------- */
.empty-state {
  text-align: center;
  padding: var(--space-10) var(--space-6);
}

.empty-state-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
}

.empty-state-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--rb-gray-600);
  margin-bottom: var(--space-2);
}

.empty-state-text {
  font-family: var(--font-poppins);
  font-size: 0.875rem;
  color: var(--rb-stone);
}

/* ---------- Animations ---------- */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fade-up 600ms var(--ease-out-expo) both;
}

.animate-in:nth-child(1) { animation-delay: 60ms; }
.animate-in:nth-child(2) { animation-delay: 140ms; }
.animate-in:nth-child(3) { animation-delay: 220ms; }
.animate-in:nth-child(4) { animation-delay: 300ms; }
.animate-in:nth-child(5) { animation-delay: 380ms; }
.animate-in:nth-child(6) { animation-delay: 460ms; }
.animate-in:nth-child(7) { animation-delay: 540ms; }
.animate-in:nth-child(8) { animation-delay: 620ms; }
.animate-in:nth-child(9) { animation-delay: 700ms; }
.animate-in:nth-child(10) { animation-delay: 780ms; }

/* ---------- Scroll-triggered reveal (JS-driven) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms var(--ease-out-expo), transform 500ms var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive: Larger phones / Small tablets ---------- */
@media (min-width: 390px) {
  .partner-name {
    font-size: 1.1875rem;
  }

  .hero-month {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  :root {
    --max-width: 600px;
  }

  .hero-month {
    font-size: 2.25rem;
  }

  .partner-header {
    padding: var(--space-5) var(--space-6);
  }

  .partner-content {
    padding: 0 var(--space-6) var(--space-6);
  }
}

/* ---------- Prefers reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .partner-image-wrap::before {
    animation: none;
  }
}



/* ---------- iOS safe areas ---------- */
@supports (padding: max(0px)) {
  .page-wrapper {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
}

/* ---------- Touch devices: remove hover effects ---------- */
@media (hover: none) and (pointer: coarse) {
  .partner-card:hover {
    box-shadow: var(--shadow-card);
  }

  .month-card:hover {
    box-shadow: var(--shadow-card);
    transform: none;
  }

  .month-card:hover::before {
    transform: scaleY(0);
  }

  .month-card:hover .month-card-arrow {
    background: var(--rb-alabaster);
    color: var(--rb-stone);
    transform: none;
  }

  .month-card:active {
    transform: scale(0.97);
  }

  .month-card:active::before {
    transform: scaleY(1);
  }
}
