:root {
  --footer-bg: #1a4a6b;
  --social-icon-bg: #ffcc00;
  --text-color: #ffffff;
  --link-color: #ffffff;
  --link-hover: #ffcc00;
  --fb-red: #c41e3a;
  --fb-blue: #003b7a;
  --fb-yellow: #f7c500;
  --fb-dark: #1a1a1a;
  --fb-grey: #555;
  --fb-light-grey: #f5f5f5;
  --navbar-opacity: 1;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cabin", sans-serif;
  background: #fff;
  overflow-x: hidden;
}

/* ── NAV ── */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, var(--navbar-opacity, 1));
  overflow: visible;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.nav-logo {
  padding: 15px 0;
}

.nav-logo img {
  height: 70px;
  width: auto;
}

.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  overflow: visible;
}

.top-links {
  display: flex;
  gap: 25px;
  padding-top: 10px;
}

.top-links a {
  color: var(--fb-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.top-links a:hover {
  color: var(--fb-blue);
}

.main-dropdowns {
  display: flex;
  overflow: visible;
}

.dropdown {
  position: relative;
  overflow: visible;
}

.dropdown-toggle {
  background: none;
  border: none;
  padding: 20px 25px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Cabin", sans-serif;
  color: var(--fb-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s;
}

.dropdown-toggle[data-color="red"]:hover {
  color: var(--fb-red);
}

.dropdown-toggle[data-color="blue"]:hover {
  color: var(--fb-blue);
}

.dropdown-toggle[data-color="yellow"]:hover {
  color: var(--fb-yellow);
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: fixed;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  max-height: calc(100vh - 130px);
  max-width: 95vw;
  min-width: 900px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  z-index: 1001;
  overflow-y: auto;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-content {
  padding: 40px;
}

.dropdown-intro {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e5e5;
}

.dropdown-intro h2 {
  font-size: 26px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dropdown-intro p {
  color: var(--fb-grey);
  font-size: 15px;
  line-height: 1.6;
}

.dropdown-intro i {
  font-size: 22px;
}

.dropdown-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.dropdown-column h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--fb-dark);
}

.dropdown-column ul {
  list-style: none;
}

.dropdown-column ul li {
  margin-bottom: 10px;
}

.dropdown-column ul li a {
  color: var(--fb-blue);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.3s;
}

.dropdown-column ul li a:hover {
  color: var(--fb-red);
  text-decoration: underline;
}

/* ── PAGE HEADER ── */
.page-header {
  margin-top: 110px;
  background: linear-gradient(135deg, var(--fb-blue) 0%, #002a5c 100%);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fb-yellow);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.page-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--fb-yellow);
}

.breadcrumb i {
  font-size: 10px;
}

.breadcrumb span {
  color: var(--fb-yellow);
}

/* ── RETREAT SECTION ── */
.retreat-section {
  padding: 80px 0 100px;
  background: #eef1f5;
}

/* Outer row: arrow | card | arrow */
.retreat-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.stage-arrow {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  background: #2d2d2d;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
  z-index: 2;
}

.stage-arrow:hover {
  background: var(--fb-blue);
}

.stage-arrow:disabled {
  background: #aaa;
  cursor: not-allowed;
}

.stage-arrow.left {
  margin-right: 20px;
}

.stage-arrow.right {
  margin-left: 20px;
}

.retreat-card-wrap {
  flex: 1;
  min-width: 0;
}

.retreat-card {
  display: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 36px rgba(0, 0, 0, 0.18);
  animation: fadeUp 0.3s ease;
}

.retreat-card.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Title bar */
.card-title-bar {
  background: #2d2d2d;
  padding: 18px 30px;
  border-radius: 10px 10px 0 0;
}

.card-title-bar h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Photo grid: large left | 2×2 right */
.card-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 4px;
  background: #111;
}

.photo-main {
  grid-column: 1;
  grid-row: 1 / 3;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.photo-right {
  grid-column: 2;
  grid-row: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.photo-thumb {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.photo-main img,
.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.photo-main:hover img,
.photo-thumb:hover img {
  transform: scale(1.05);
}

/* Dark overlay tile (4th thumb) */
.photo-overlay-tile {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #111;
}

.photo-overlay-tile .ot-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.3);
  transition: filter 0.3s;
}

.photo-overlay-tile:hover .ot-bg {
  filter: brightness(0.2);
}

.overlay-plus {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
}

.overlay-plus i {
  font-size: 2.4rem;
  color: #fff;
}

.overlay-plus span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

/* Placeholder for missing images */
.img-ph {
  width: 100%;
  height: 100%;
  background: #1e2d3d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.18);
}

.img-ph i {
  font-size: 2rem;
}

.img-ph span {
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Info row */
.card-info-row {
  display: grid;
  grid-template-columns: 1fr auto;
  background: #2d2d2d;
  border-radius: 0 0 10px 10px;
}

.card-desc {
  padding: 26px 32px;
  display: flex;
  align-items: center;
}

.card-desc p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.card-details {
  background: #222;
  padding: 26px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  min-width: 270px;
  border-radius: 0 0 10px 0;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.82);
}

.detail-row i {
  color: var(--fb-yellow);
  font-size: 1rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Dots */
.retreat-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.retreat-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #b0bec5;
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}

.retreat-dot.active {
  background: var(--fb-blue);
  transform: scale(1.3);
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 3000;
  flex-direction: column;
}

.lightbox.open {
  display: flex;
}

.lb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  flex-shrink: 0;
}

.lb-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.lb-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}

.lb-close:hover {
  color: var(--fb-yellow);
}

.lb-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 70px;
}

.lb-stage img {
  max-width: 100%;
  max-height: calc(100vh - 230px);
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.lb-no-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.lb-no-img i {
  font-size: 4rem;
}

.lb-no-img span {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.3rem;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lb-nav:hover {
  background: var(--fb-blue);
}

.lb-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.lb-nav.prev {
  left: 10px;
}

.lb-nav.next {
  right: 10px;
}

.lb-counter {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  padding: 6px 0;
  flex-shrink: 0;
}

.lb-thumbs {
  display: flex;
  gap: 7px;
  padding: 10px 22px 18px;
  overflow-x: auto;
  flex-shrink: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.lb-thumbs::-webkit-scrollbar {
  height: 4px;
}

.lb-thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.lb-thumb {
  width: 70px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.lb-thumb.active {
  border-color: var(--fb-yellow);
}

.lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lb-thumb-ph {
  width: 100%;
  height: 100%;
  background: #1e2d3d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  font-size: 1.1rem;
}

/* ── SCROLL TOP ── */
.scroll-top {
  position: fixed;
  bottom: -10px;
  right: 25px;
  background: #fff;
  border: 3px solid var(--fb-blue);
  color: var(--fb-blue);
  border-radius: 10px 10px 0 0;
  width: 45px;
  height: 70px;
  font-size: 1.5rem;
  cursor: pointer;
  text-align: center;
  line-height: 70px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  z-index: 999;
  display: none;
  text-decoration: none;
}

.scroll-top:hover {
  background: var(--fb-blue);
  color: #fff;
}

/* ── FOOTER ── */
.footer {
  background-color: var(--footer-bg);
  color: var(--text-color);
  padding: 60px 40px 30px;
  position: relative;
  overflow: hidden;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.footer-section h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-section p {
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--social-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  color: var(--footer-bg);
  font-size: 18px;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contact-info {
  line-height: 1.8;
  font-size: 15px;
}

.contact-info p {
  margin-bottom: 10px;
}

.phone-number {
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  display: block;
}

.quick-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.quick-links a {
  color: var(--link-color);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.quick-links a:hover {
  color: var(--link-hover);
}

.church-logo-section {
  max-width: 1400px;
  margin: 50px auto 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.diocese-logos-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.acsa-logo-wrap a img {
  max-width: 280px;
  height: auto;
  display: block;
}

.partner-dioceses-row {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.partner-diocese-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition:
    transform 0.25s,
    opacity 0.25s;
}

.partner-diocese-link:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

.partner-diocese-link img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.partner-diocese-link .pd-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  max-width: 90px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  position: relative;
  z-index: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 24px;
  }

  .nav-logo img {
    height: 60px;
  }

  .card-photo-grid {
    grid-template-rows: 180px 180px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .diocese-logos-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .retreat-stage {
    padding: 0 10px;
  }

  .stage-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .stage-arrow.left {
    margin-right: 10px;
  }

  .stage-arrow.right {
    margin-left: 10px;
  }

  .card-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 130px;
  }

  .photo-main {
    grid-row: 1;
  }

  .photo-right {
    grid-row: 2;
    grid-template-rows: unset;
    grid-template-columns: repeat(4, 1fr);
  }

  .card-info-row {
    grid-template-columns: 1fr;
  }

  .card-details {
    min-width: unset;
    border-radius: 0 0 10px 10px;
  }
}

@media (max-width: 640px) {
  .nav-container {
    flex-direction: column;
    padding: 12px 16px;
    gap: 12px;
  }

  .nav-logo {
    padding: 8px 0;
    text-align: center;
    width: 100%;
  }

  .nav-logo img {
    height: 50px;
  }

  .nav-right {
    align-items: center;
    width: 100%;
    gap: 12px;
  }

  .top-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    padding-top: 0;
    width: 100%;
  }

  .top-links a {
    font-size: 13px;
  }

  .main-dropdowns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    padding: 12px 8px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
    white-space: nowrap;
  }

  .dropdown-toggle i {
    font-size: 10px;
  }

  .dropdown-menu {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    transform: none;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    max-height: 70vh;
  }

  .dropdown-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-header {
    margin-top: 200px;
    padding: 40px 20px;
  }

  .page-header h2 {
    font-size: 2rem;
  }

  .retreat-section {
    padding: 50px 0 70px;
  }

  .card-title-bar h2 {
    font-size: 1.2rem;
  }

  .card-desc,
  .card-details {
    padding: 20px 18px;
  }

  .footer {
    padding: 40px 16px 20px;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE FIXES FOR RETREAT HOUSES PAGE
   ───────────────────────────────────────────────────────────────
   Add these styles to the retreat-houses.html <style> block,
   replacing the existing mobile responsive section
═══════════════════════════════════════════════════════════════ */

/* ── RESPONSIVE - SMALL TABLET ── */
@media (max-width: 900px) {
  .retreat-stage {
    padding: 0 8px;
  }

  .stage-arrow {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

  .card-title-bar {
    padding: 16px 24px;
  }

  .card-title-bar h2 {
    font-size: 1.4rem;
  }

  .card-desc p {
    font-size: 0.96rem;
  }
}

/* ── RESPONSIVE - TABLET ── */
@media (max-width: 768px) {
  .retreat-section {
    padding: 60px 0 80px;
  }

  .retreat-stage {
    padding: 0 8px;
  }

  .stage-arrow {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }

  .stage-arrow.left {
    margin-right: 8px;
  }

  .stage-arrow.right {
    margin-left: 8px;
  }

  /* Rearrange photo grid: main photo on top, 4 thumbnails below */
  .card-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 120px;
    gap: 4px;
  }

  .photo-main {
    grid-row: 1;
    grid-column: 1;
  }

  .photo-right {
    grid-row: 2;
    grid-column: 1;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }

  /* Stack info row vertically */
  .card-info-row {
    grid-template-columns: 1fr;
  }

  .card-desc {
    padding: 22px 24px;
  }

  .card-desc p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .card-details {
    min-width: unset;
    padding: 22px 24px;
    border-radius: 0 0 10px 10px;
    gap: 12px;
  }

  .detail-row {
    font-size: 0.88rem;
  }

  .card-title-bar {
    padding: 15px 20px;
  }

  .card-title-bar h2 {
    font-size: 1.3rem;
  }

  /* Lightbox adjustments */
  .lb-stage {
    padding: 0 55px;
  }

  .lb-nav {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .lb-stage img {
    max-height: calc(100vh - 250px);
  }
}

/* ── RESPONSIVE - MOBILE ── */
@media (max-width: 640px) {
  .page-header {
    margin-top: 200px;
    padding: 40px 20px;
  }

  .page-header h2 {
    font-size: 2rem;
  }

  .retreat-section {
    padding: 40px 0 60px;
  }

  /* Smaller stage arrows on mobile */
  .retreat-stage {
    padding: 0 4px;
  }

  .stage-arrow {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    border-radius: 5px;
  }

  .stage-arrow.left {
    margin-right: 6px;
  }

  .stage-arrow.right {
    margin-left: 6px;
  }

  /* Adjust card */
  .retreat-card {
    border-radius: 8px;
  }

  .card-title-bar {
    padding: 14px 18px;
    border-radius: 8px 8px 0 0;
  }

  .card-title-bar h2 {
    font-size: 1.15rem;
    letter-spacing: 0.3px;
  }

  /* Photo grid - maintain main + 4 thumbs layout */
  .card-photo-grid {
    grid-template-rows: 200px 100px;
    gap: 3px;
  }

  .photo-right {
    gap: 3px;
  }

  /* Overlay text smaller */
  .overlay-plus i {
    font-size: 2rem;
  }

  .overlay-plus span {
    font-size: 0.7rem;
    letter-spacing: 1.2px;
  }

  /* Info section */
  .card-desc {
    padding: 18px 16px;
  }

  .card-desc p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .card-details {
    padding: 18px 16px;
    gap: 11px;
    border-radius: 0 0 8px 8px;
  }

  .detail-row {
    font-size: 0.85rem;
  }

  .detail-row i {
    font-size: 0.9rem;
    width: 16px;
  }

  /* Dots */
  .retreat-dots {
    margin-top: 22px;
    gap: 8px;
  }

  .retreat-dot {
    width: 10px;
    height: 10px;
  }

  .retreat-dot.active {
    transform: scale(1.25);
  }

  /* Lightbox mobile */
  .lb-header {
    padding: 12px 16px;
  }

  .lb-title {
    font-size: 0.85rem;
  }

  .lb-close {
    font-size: 1.6rem;
  }

  .lb-stage {
    padding: 0 45px;
  }

  .lb-stage img {
    max-height: calc(100vh - 240px);
  }

  .lb-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .lb-nav.prev {
    left: 4px;
  }

  .lb-nav.next {
    right: 4px;
  }

  .lb-counter {
    font-size: 0.78rem;
    padding: 5px 0;
  }

  .lb-thumbs {
    padding: 8px 16px 14px;
    gap: 6px;
  }

  .lb-thumb {
    width: 60px;
    height: 45px;
  }

  /* Footer */
  .footer {
    padding: 40px 16px 20px;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }
}

/* ── RESPONSIVE - EXTRA SMALL (iPhone SE, etc.) ── */
@media (max-width: 400px) {
  .stage-arrow {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .card-title-bar h2 {
    font-size: 1.05rem;
  }

  .card-photo-grid {
    grid-template-rows: 180px 90px;
  }

  .card-desc p {
    font-size: 0.88rem;
  }

  .detail-row {
    font-size: 0.82rem;
  }

  .retreat-dots {
    gap: 7px;
  }

  .retreat-dot {
    width: 9px;
    height: 9px;
  }
}

/* ── LANDSCAPE MODE ON MOBILE ── */
@media (max-width: 896px) and (orientation: landscape) {
  .page-header {
    margin-top: 140px;
    padding: 30px 20px;
  }

  .page-header h2 {
    font-size: 2rem;
  }

  .retreat-section {
    padding: 30px 0 50px;
  }

  .card-photo-grid {
    grid-template-rows: 160px 90px;
  }

  .card-desc,
  .card-details {
    padding: 16px 18px;
  }

  .lb-stage img {
    max-height: calc(100vh - 200px);
  }
}
