/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  background-color: #fafafa;
}

/* Header: logo + title, then nav + language in one row */
.site-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.brand-block {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.brand-block .brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.site-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 120px;
  max-height: 48px;
  object-fit: contain;
}

.brand-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #222;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.1em;
}

.brand-title-main {
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.brand-title-sep {
  font-weight: 300;
  color: #999;
  user-select: none;
}

.brand-tagline {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  color: #555;
}

.header-row {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  min-width: 0;
}

.main-nav a {
  color: #444;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.main-nav a:hover {
  color: #000;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.lang-switcher .lang-label {
  color: #666;
}

.lang-switcher select {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #fff;
}

/* Main content */
.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.content-wide {
  max-width: 800px;
}

.section-block {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

h1 {
  margin: 0 0 2.5rem;
  font-size: 1.85rem;
  font-weight: 600;
  color: #222;
  letter-spacing: -0.02em;
}

section section, .intro, .value, .edge, .service, .quality, .cta {
  margin-bottom: 2rem;
}

section p {
  margin: 0;
}

.intro + .value, .value + .edge, .edge + .service, .service + .quality, .quality + .cta {
  margin-top: 1.75rem;
}

.cta-highlight {
  margin-top: 1rem;
  font-weight: 500;
  color: #222;
}

/* Why Choose Me with Banner */
.why-choose-section {
  position: relative;
  overflow: hidden;
}

.banner-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 0;
}

.banner-portrait {
  height: 400px;
}

.banner-track {
  display: flex;
  will-change: transform;
}

.banner-slide {
  flex-shrink: 0;
  width: 400px;
  height: 280px;
  background: #d4d4d4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #ccc;
}

.banner-slide-portrait {
  width: 280px;
  height: 400px;
  min-width: 280px;
  min-height: 400px;
}

.banner-slide span {
  color: #888;
  font-size: 0.9rem;
}

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

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

.why-choose-content {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  margin: 420px auto 0;
  padding: 2rem 1.5rem 3rem;
  border-radius: 8px 8px 0 0;
  text-align: center;
  width: 100%;
  max-width: 720px;
}

.why-choose-content h1 {
  margin-top: 0;
}

.why-choose-content p {
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}

/* Back to Top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background 0.2s;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #555;
}

/* One Day Package */
.one-day-section {
  background: #fff;
}

.individual-section {
  background: #f5f5f5;
}

.itinerary-details {
  margin: 1.5rem 0;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
}

.itinerary-details summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  background: #f8f8f8;
}

.itinerary-details summary:hover {
  background: #f0f0f0;
}

.itinerary-inner {
  padding: 1.25rem;
  border-top: 1px solid #e8e8e8;
}

.itinerary-inner .itinerary-overview {
  margin-bottom: 1.5rem;
}

.itinerary-inner .timeline-item h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.packages-section {
  background: #fff;
}

.payment-method {
  margin: -1rem 0 1.5rem;
  color: #666;
  font-size: 0.95rem;
}

.one-day-section h3,
.individual-section h3 {
  margin: 2rem 0 1rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.one-day-section h3:first-of-type,
.individual-section h3:first-of-type {
  margin-top: 0;
}

.packages-section h3 {
  margin: 2rem 0 1rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.packages-section h3:first-of-type {
  margin-top: 0;
}

.table-scroll {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.package-types-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.package-types-table th,
.package-types-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border: 1px solid #e8e8e8;
  font-size: 0.9rem;
  vertical-align: top;
}

.package-types-table th {
  font-weight: 600;
  background: #f8f8f8;
}

.package-types-table td:last-child {
  font-weight: 500;
}

.hourly-rates-table {
  max-width: 100%;
  min-width: 280px;
}

.price-table {
  width: 100%;
  max-width: 320px;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.package-details {
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.package-details ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.package-details .warning {
  color: #c00;
  margin-top: 1rem;
}

/* Carousel with arrows (no scrollbar); touch-action so swipe works on mobile */
.carousel-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
  touch-action: pan-y;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.carousel-arrow:hover {
  background: #f5f5f5;
  border-color: #999;
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
  touch-action: pan-y; /* allow vertical scroll, keep horizontal for swipe */
}

.carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.3s ease;
}

/* Mini carousels (used inside locations + itinerary: one photo per click) */
.mini-carousel {
  margin: 0;
  position: relative;
}

.mini-carousel .carousel-arrow {
  width: 32px;
  height: 32px;
  font-size: 1.25rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border-color: transparent;
}

.mini-carousel .carousel-prev {
  left: 6px;
}

.mini-carousel .carousel-next {
  right: 6px;
}

.mini-carousel .carousel-track {
  gap: 0;
}

.mini-carousel .carousel-viewport {
  width: 100%;
}

.mini-carousel .carousel-track {
  width: 100%;
}

.mini-carousel .carousel-photo {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  aspect-ratio: 3/4;
  max-width: 320px;
  margin: 0 auto;
  background: #e0e0e0;
}

.mini-carousel .carousel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.timeline-content .mini-carousel {
  margin-top: 0.75rem;
}

/* Make mini-carousel fit inside cards nicely */
.location-with-images .location-card .mini-carousel {
  margin: 0;
}

.location-with-images .location-card .carousel-viewport {
  border-radius: 0 0 8px 8px;
}

@media (min-width: 700px) {
  .location-with-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.carousel-wrap .location-card {
  flex-shrink: 0;
  width: 180px;
  margin: 0;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
}

.carousel-wrap .location-img.portrait {
  width: 180px;
  height: 260px;
  min-height: 260px;
}

.carousel-wrap .location-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.special-slide {
  flex-shrink: 0;
  width: 180px;
  border-radius: 8px;
  overflow: hidden;
}

.special-slide .location-img.portrait {
  width: 180px;
  height: 260px;
}

/* Special Scenes carousel: same layout as other carousels; hint is outside this div so viewport always has space */
#special-carousel {
  flex-wrap: nowrap;
}

#special-carousel .carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Viewport takes all space between arrows; ensure minimum height so images are large */
#special-carousel .carousel-viewport {
  flex: 1;
  min-width: 0;
  min-height: 360px;
  overflow: hidden;
}

#special-carousel .carousel-track {
  width: 100%;
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
}

/* Large slide: up to 520px wide on desktop so Special stands out */
#special-carousel .special-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  aspect-ratio: 3/4;
  max-width: 520px;
  min-height: 280px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background: #e0e0e0;
}

#special-carousel .special-slide .location-img.portrait {
  width: 100%;
  height: 100%;
  min-height: 0;
}

#special-carousel .special-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scroll-hint, .video-hint {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: #888;
}

.info-block.special-scenes > .scroll-hint {
  text-align: center;
  margin-top: 0.35rem;
}

/* Hint directly below carousel image, centered */
.carousel-wrap .scroll-hint {
  width: 100%;
  flex-basis: 100%;
  text-align: center;
  margin: 0.35rem 0 0;
  order: 10;
}

/* Aerial video player */
.video-player-wrap {
  margin-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}

.aerial-video {
  display: block;
  width: 100%;
  max-height: 50vh;
}

.video-fallback-msg {
  margin: 1rem 0 0.5rem;
  padding: 0.75rem;
  background: #fff3cd;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #856404;
}

.video-download-link {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
}

.video-download-link:hover {
  background: #555;
}

.location-with-images {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1rem 0 1.5rem;
}

.location-with-images .image-placeholder {
  min-height: 220px;
}

.location-with-images .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-card {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.location-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #f8f8f8;
}

.location-name {
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

.location-rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.rating-label {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

.location-rating {
  display: inline-flex;
  gap: 2px;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.location-rating .star {
  color: #d4a84b;
}

.location-rating .star-empty {
  color: #bbb;
}

.location-rating-hint {
  font-size: 0.8rem;
  color: #888;
  margin: -0.5rem 0 0.75rem;
}

.location-card .image-placeholder {
  min-height: 140px;
}

.price-table th,
.price-table td {
  padding: 0.6rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
}

.price-table th {
  font-weight: 600;
}

.vehicle-list {
  margin: 0 0 2rem;
  padding-left: 1.25rem;
}

.vehicle-list li {
  margin-bottom: 0.25rem;
}

.section-divider {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid #e8e8e8;
}

.package-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 1rem 0 1.5rem;
}

.package-note {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.package-note.warning {
  color: #c00;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.location-tags span {
  padding: 0.35rem 0.75rem;
  background: #f0f0f0;
  border-radius: 4px;
  font-size: 0.9rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.package-card {
  padding: 1.5rem;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
}

.package-card.featured {
  border-color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.package-card h3,
.package-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.package-card .price {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
}

.package-card .desc {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #222;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 4px;
}

.btn:hover {
  background: #444;
}

/* Itineraries */
.itineraries-section {
  background: #f5f5f5;
}

.itinerary-overview {
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid #333;
}

.itinerary-overview p {
  margin: 0 0 0.5rem;
}

.itinerary-overview p:last-child {
  margin-bottom: 0;
}

.timeline {
  margin-bottom: 2rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.timeline-item .time {
  font-weight: 600;
  color: #444;
  font-size: 0.95rem;
}

.timeline-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.timeline-content p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.timeline-content .highlight {
  font-weight: 600;
  margin-top: 0.5rem;
}

.info-block {
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}

.info-block h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.info-block ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.info-block p {
  margin: 0 0 0.5rem;
}

.gallery-title {
  margin: 2rem 0 1rem;
  font-size: 1.1rem;
}

.gallery-placeholders {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.image-placeholder {
  min-height: 200px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.image-placeholder span {
  color: #888;
  font-size: 0.9rem;
}

/* Replace with real image: use <img src="path/to/image.jpg" alt="描述"> inside .image-placeholder instead of span */

/* Contact */
.contact-section {
  background: #fff;
}

.contact-block {
  margin-bottom: 2rem;
}

.contact-block h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
}

.contact-btn.whatsapp {
  background: #25D366;
}

.contact-btn.whatsapp:hover {
  background: #20bd5a;
}

.contact-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.contact-btn.instagram:hover {
  opacity: 0.9;
}

.contact-btn.xiaohongshu {
  background: #fe2c55;
}

.contact-btn.xiaohongshu:hover {
  background: #e6254a;
}

.contact-note, .address-note, .payment-note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: #888;
}

.address {
  margin: 0;
  font-size: 1rem;
}

.payment-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.payment-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #333;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 6px;
}

.payment-btn.alipay { background: #1677ff; border: none; cursor: pointer; }
.payment-btn.alipay:hover { background: #4096ff; }
.payment-btn.wechat { background: #07c160; border: none; cursor: pointer; }
.payment-btn.wechat:hover { background: #06ad56; }

/* Booking form modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  line-height: 1;
}

.modal-close:hover {
  color: #000;
}

.modal-content h3 {
  margin: 0 0 1.5rem;
}

.booking-form label {
  display: block;
  margin-bottom: 1rem;
}

.booking-form label span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.booking-form button[type="submit"] {
  margin-top: 1rem;
}

/* Footer */
.site-footer {
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  background-color: #f0f0f0;
  border-top: 1px solid #e8e8e8;
}

.site-footer p {
  margin: 0;
}

/* Responsive: 768px to cover all phones and small tablets */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .content {
    padding: 2rem 1.25rem 3rem;
  }

  .site-header {
    padding: 0.75rem 1rem;
  }

  .brand-block .brand-row {
    gap: 0.5rem;
  }

  .site-logo {
    height: 28px;
    max-width: 72px;
  }

  .brand-title {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .brand-tagline {
    font-size: 0.75rem;
  }

  .header-row {
    gap: 0.5rem;
  }

  .main-nav {
    gap: 0.75rem;
  }

  .main-nav a {
    font-size: 0.85rem;
  }

  h1 {
    font-size: 1.55rem;
    margin-bottom: 2rem;
  }

  section + section {
    margin-top: 1.5rem;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .timeline-item .time {
    font-size: 0.9rem;
  }

  .gallery-placeholders {
    grid-template-columns: 1fr;
  }

  .location-with-images {
    display: flex;
    flex-direction: column;
  }

  .package-types-table {
    min-width: 400px;
    font-size: 0.85rem;
  }

  .image-placeholder {
    min-height: 160px;
  }

  .banner-portrait {
    height: 320px;
  }

  .banner-slide-portrait {
    width: 220px;
    height: 320px;
    min-width: 220px;
    min-height: 320px;
  }

  .why-choose-content {
    margin-top: 340px;
  }

  .carousel-wrap .location-card,
  .location-with-images .special-slide {
    width: 140px;
  }

  .carousel-wrap .location-img.portrait,
  .special-slide .location-img.portrait {
    width: 140px;
    height: 200px;
    min-height: 200px;
  }

  /* Special carousel on mobile: full-width like mini-carousel, arrows overlay so image is large */
  #special-carousel {
    position: relative;
    width: 100%;
    display: block;
  }

  #special-carousel .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    z-index: 2;
  }

  #special-carousel .carousel-prev {
    left: 6px;
  }

  #special-carousel .carousel-next {
    right: 6px;
  }

  #special-carousel .carousel-viewport {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 320px !important;
    flex: none !important;
    display: block;
  }

  #special-carousel .carousel-track {
    width: 100%;
    display: flex;
  }

  #special-carousel .special-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    min-height: 320px !important;
    height: auto !important;
    aspect-ratio: 3/4;
    margin: 0;
  }

  #special-carousel .special-slide .location-img.portrait {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-width: none !important;
  }

  #special-carousel .special-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }

  /* Keep carousel images portrait on mobile: use aspect-ratio, do not force short height */
  .mini-carousel .carousel-photo {
    height: auto;
    aspect-ratio: 3/4;
    max-height: 420px;
  }
}
