/* ===== BRUCE TOUR RJ — Design tokens ===== */
:root {
  --navy: #262B5E;
  --navy-dark: #1B1F47;
  --yellow: #F3D738;
  --green: #3C764B;
  --green-dark: #2C5738;
  --peach: #F2B878;
  --cream: #F2EDE4;
  --white: #FFFFFF;
  --ink: #1D2140;

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  --radius: 4px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 0.4em;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--yellow);
  color: var(--navy-dark);
  box-shadow: 0 4px 0 #C9AC1E;
}
.btn-primary:hover { box-shadow: 0 6px 0 #C9AC1E; }
.btn-primary:active { transform: translateY(1px); box-shadow: 0 2px 0 #C9AC1E; }
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-icon { width: 18px; height: 18px; flex: none; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(38,43,94,0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.logo-img {
  height: 46px;
  width: auto;
  display: block;
}
.logo .stamp-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--navy);
  flex: none;
}
.nav-panel {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}
.lang-switch {
  display: flex;
  gap: 4px;
  background: var(--white);
  border: 1.5px solid var(--navy);
  padding: 4px;
  border-radius: 999px;
  flex: none;
}
.lang-switch button {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 7px 13px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--navy);
  opacity: 0.7;
}
.lang-switch button.active {
  background: var(--yellow);
  color: var(--navy-dark);
  opacity: 1;
}
.lang-switch button:hover:not(.active) { opacity: 1; background: rgba(38,43,94,0.08); }
.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}
.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: none;
  background: rgba(38,43,94,0.06);
  border-radius: 8px;
  color: var(--navy);
  cursor: pointer;
  flex: none;
  padding: 0;
}
.burger svg { width: 20px; height: 20px; }

/* ===== Hero ===== */
.hero {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 88px 0 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  color: var(--peach);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(1.8rem, 4.4vw, 3.4rem);
  color: var(--white);
  white-space: nowrap;
}
.hero h1 em {
  font-style: italic;
  color: var(--yellow);
}
.hero-sub {
  font-size: 1.12rem;
  color: rgba(242,237,228,0.85);
  max-width: 46ch;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.hero-note { font-size: 0.85rem; color: rgba(242,237,228,0.6); }

.hero-stamp-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 340px;
}
.passport-stamp {
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 3px dashed var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: rotate(-8deg);
}
.passport-stamp::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(242,184,120,0.5);
}
.stamp-text {
  text-align: center;
  font-family: var(--font-display);
}
.stamp-text .big {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--yellow);
  display: block;
}
.stamp-text .small {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-weight: 700;
}
.skyline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 110px;
  z-index: 1;
}

/* ===== Split hero (Home) — text + real photo side by side ===== */
.hero-split { padding: 72px 0; }
.hero-inner-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-text-block { text-align: center; }
.hero-inner-split h1 {
  font-size: clamp(1.6rem, 2.7vw, 2.5rem);
  white-space: nowrap;
  margin-bottom: 26px;
}
.hero-inner-split .hero-sub {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.hero-inner-split .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}
.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 0 #2C5738;
}
.btn-green:hover { box-shadow: 0 6px 0 #2C5738; }
.btn-green:active { transform: translateY(1px); box-shadow: 0 2px 0 #2C5738; }
.hero-photo-side {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 5/5.2;
  border: 3px solid rgba(242,184,120,0.5);
}
.hero-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.btn-peach {
  background: var(--peach);
  color: var(--navy-dark);
  box-shadow: 0 4px 0 #C97A2B;
}
.btn-peach:hover { box-shadow: 0 6px 0 #C97A2B; }
.btn-peach:active { transform: translateY(1px); box-shadow: 0 2px 0 #C97A2B; }

/* ===== Sections ===== */
section { padding: 84px 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); color: var(--cream); }
.section-green { background: var(--green); color: var(--cream); }

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head .eyebrow { color: var(--green); display: block; margin-bottom: 10px; }
.section-navy .section-head .eyebrow,
.section-green .section-head .eyebrow { color: var(--yellow); }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

/* Preview grid on home */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.preview-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  border: 1px solid rgba(38,43,94,0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.preview-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(38,43,94,0.12); }
.preview-icon {
  width: 44px; height: 44px;
  margin-bottom: 14px;
  color: var(--navy);
}
.preview-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.preview-card p { font-size: 0.9rem; color: #555; margin-bottom: 0; }

/* Quote strip */
.quote-strip { text-align: center; padding: 36px 0; }
.quote-strip blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-style: italic;
  max-width: 780px;
  margin: 0 auto 18px;
  line-height: 1.4;
}
.quote-strip cite { font-style: normal; font-weight: 700; font-size: 0.85rem; opacity: 0.8; }

/* Ticket divider (perforation) */
.ticket-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 40px;
}
.ticket-divider::before, .ticket-divider::after {
  content: "";
  flex: 1;
  border-top: 2px dashed rgba(38,43,94,0.25);
}

/* ===== Tour cards (visa-stamp style) ===== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.tour-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  border: 2px solid var(--c-accent, var(--navy));
  overflow: hidden;
}
.tour-card::before {
  content: "";
  position: absolute;
  top: 18px; right: 18px;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2px dashed var(--c-accent, var(--navy));
  opacity: 0.5;
}
.tour-card .tour-icon {
  width: 40px; height: 40px;
  color: var(--c-accent, var(--navy));
  margin-bottom: 16px;
}
.tour-card h3 {
  font-size: 1.28rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.tour-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--c-accent, var(--green));
  margin-bottom: 14px;
}
.tour-meta span { display: flex; align-items: center; gap: 6px; }
.tour-card p.desc { color: #4a4a4a; font-size: 0.96rem; margin-bottom: 20px; }
.tour-card .btn { font-size: 0.86rem; padding: 12px 20px; }

.tour-card.c-navy { --c-accent: var(--navy); }
.tour-card.c-green { --c-accent: var(--green); }
.tour-card.c-peach { --c-accent: #C97A2B; }
.tour-card.c-yellow { --c-accent: #A98814; }

/* ===== About page ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.about-portrait {
  aspect-ratio: 4/5;
  background: var(--navy);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.about-portrait svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-portrait .cap {
  position: relative; z-index: 2;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.credential-chip {
  background: var(--cream);
  border: 1px solid rgba(38,43,94,0.15);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
}
.about-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--navy);
  border-left: 3px solid var(--yellow);
  padding-left: 20px;
  margin: 28px 0;
}

/* ===== Contact page ===== */
.contact-hero {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 80px 0 70px;
}
.contact-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); }
.contact-hero p { max-width: 52ch; margin: 0 auto 28px; color: rgba(242,237,228,0.85); }
.whatsapp-btn {
  background: #25D366;
  color: var(--white);
  font-size: 1.05rem;
  padding: 18px 34px;
  box-shadow: 0 4px 0 #1AA94E;
}
.whatsapp-btn:hover { box-shadow: 0 6px 0 #1AA94E; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-stub {
  background: var(--white);
  border: 2px dashed rgba(38,43,94,0.25);
  border-radius: 10px;
  padding: 26px 20px;
  text-align: center;
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--yellow);
  -webkit-text-stroke: 1.5px var(--navy);
  margin-bottom: 10px;
}
.step-stub h4 { font-size: 0.98rem; color: var(--navy); margin-bottom: 6px; }
.step-stub p { font-size: 0.84rem; color: #555; margin: 0; }

.faq-item {
  border-bottom: 1px solid rgba(38,43,94,0.15);
  padding: 18px 0;
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--green);
  font-family: var(--font-body);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a {
  margin-top: 10px;
  font-size: 0.94rem;
  color: #4a4a4a;
}

/* ===== Avis / Reviews page ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.gallery-grid .tall { grid-row: span 2; }
@media (max-width: 860px) {
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    grid-auto-rows: unset;
    gap: 10px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-grid img {
    flex: 0 0 auto;
    width: 62vw;
    height: 220px;
    scroll-snap-align: start;
  }
  .gallery-grid .tall { grid-row: unset; }
}
@media (max-width: 520px) {
  .gallery-grid img { width: 72vw; height: 190px; }
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(38,43,94,0.12);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  margin-top: 6px;
}
.rating-badge .stars { color: var(--yellow); letter-spacing: 1px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid rgba(38,43,94,0.1);
  border-radius: 10px;
  padding: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.review-photo {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.review-card .stars,
.review-card p,
.review-card .reviewer { margin-left: 26px; margin-right: 26px; }
.review-card .stars { color: var(--yellow); font-size: 0.95rem; letter-spacing: 2px; margin-top: 16px; }
.review-card p {
  font-size: 0.96rem;
  color: #3a3a3a;
  margin: 0;
  flex: 1;
  line-height: 1.55;
}
.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}
.reviewer-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  flex: none;
}
.reviewer-source {
  font-weight: 500;
  color: #888;
  font-size: 0.8rem;
}

.reviews-carousel-wrap { position: relative; }
.reviews-scroll-hint {
  display: none;
  position: absolute;
  right: 4px;
  top: 45%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(38,43,94,0.25);
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.reviews-scroll-hint svg { width: 20px; height: 20px; }
@media (max-width: 860px) {
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .review-card {
    flex: 0 0 auto;
    width: 78vw;
    scroll-snap-align: start;
  }
  .reviews-scroll-hint { display: flex; }
}
@media (max-width: 520px) {
  .review-card { width: 84vw; padding: 22px 20px; }
}
.footer-social {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(242,237,228,0.15);
}
.footer-social-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 14px;
}
.footer-social-icons { display: flex; gap: 12px; }
.footer-social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(242,237,228,0.1);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.footer-social-icons a:hover { background: var(--peach); color: var(--navy-dark); }
.footer-social-icons svg { width: 20px; height: 20px; }
.site-footer {
  background: var(--navy);
  color: rgba(242,237,228,0.75);
  padding: 48px 0 28px;
  font-size: 0.88rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-brand {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.1rem;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(242,237,228,0.12);
  padding-top: 18px;
  font-size: 0.78rem;
  opacity: 0.7;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stamp-wrap { height: 220px; order: -1; }
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }

  .logo { font-size: 0.98rem; }
  .logo-img { height: 34px; }
  .header-inner { gap: 6px; }
  .burger { display: flex; width: 34px; height: 34px; }
  .lang-switch-header { padding: 3px; gap: 2px; }
  .lang-switch-header button { padding: 5px 7px; font-size: 0.62rem; }
  .nav-panel {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px 20px 22px;
    border-bottom: 1px solid rgba(38,43,94,0.12);
    box-shadow: 0 12px 24px rgba(38,43,94,0.12);
  }
  body.menu-open .nav-panel { display: flex; }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .nav-links a {
    width: 100%;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(38,43,94,0.08);
  }
  .nav-links a.active::after, .nav-links a:hover::after { display: none; }
  .nav-links a.active { color: var(--green); }
  .nav-cta-label { display: none; }
  .nav-cta { padding: 10px; border-radius: 50%; }

  .hero-split { padding: 40px 0; }
  .hero-inner-split { grid-template-columns: 1fr; gap: 32px; }
  .hero-photo-side { aspect-ratio: 5/4.2; order: -1; }
  .hero-photo-side img { object-position: center 20%; }
  .hero-inner-split h1 { font-size: 1.25rem; margin-bottom: 18px; white-space: nowrap; }
  .hero-inner-split .hero-sub { margin-bottom: 28px; }
  .hero-sub { font-size: 0.9rem; max-width: none; line-height: 1.5; }
}
@media (max-width: 520px) {
  .preview-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 12px 14px; }
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .logo { font-size: 0.86rem; gap: 6px; }
  .logo-img { height: 26px; }
  .lang-switch-header button { padding: 5px 6px; font-size: 0.58rem; }
  .burger { width: 32px; height: 32px; }
  .nav-cta { padding: 8px; }
}

/* ===== Category pages (Choisis ton Rio) ===== */
.category-hero {
  text-align: center;
  padding: 40px 0 8px;
}
.category-hero .eyebrow-cat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.category-hero p {
  color: var(--ink);
  opacity: 0.85;
  font-size: 0.98rem;
}
.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 20px;
}
.tile-card {
  position: relative;
  display: block;
  aspect-ratio: 640/880;
  border-radius: 10px;
  overflow: hidden;
  background: var(--peach);
}
.tile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tile-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 14px 12px;
  background: linear-gradient(to top, rgba(10,10,15,0.78) 0%, rgba(10,10,15,0.35) 55%, rgba(10,10,15,0) 100%);
}
.tile-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.2;
  margin-bottom: 4px;
}
.tile-card.small-title .tile-name { font-size: 0.84rem; }
.tile-cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--cream);
  opacity: 0.9;
}
@media (min-width: 640px) {
  .tile-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .category-hero .eyebrow-cat { font-size: 2.2rem; }
}

/* ===== Homepage: Choisis ton Rio (photo cards with text overlay) ===== */
.choisis-rio-section { padding-top: 28px; padding-bottom: 40px; }
.ebook-cta-band { padding-top: 40px; }
.cat-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cat-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
}
.cat-card-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3.6;
}
.cat-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-card-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 18px 16px;
  background: linear-gradient(to top, rgba(10,10,15,0.82) 0%, rgba(10,10,15,0.4) 55%, rgba(10,10,15,0) 100%);
}
.cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.cat-card-overlay p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0 0 8px;
  color: var(--cream);
}
.cat-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--peach);
}
.cat-card-cta svg { width: 15px; height: 15px; }
@media (min-width: 640px) {
  .cat-list { max-width: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
