﻿/* ============================================
   Specials Page — Editorial Bento Luxury Design
   ============================================ */

/* ── SPECIALS HERO SLIDESHOW ── */
.specials-hero {
  position: relative; width: 100%; height: 100vh; overflow: hidden;
}
.specials-slides { position: absolute; inset: 0; z-index: 0; }
.specials-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.specials-slide.active { opacity: 1; }
.specials-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(26,26,46,0.55) 0%,
    rgba(26,26,46,0.15) 40%,
    rgba(26,26,46,0.72) 100%
  );
}
.specials-hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.specials-hero-content .hero-tag {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--color-accent);
  margin-bottom: 20px; background: rgba(0,0,0,0.3); padding: 12px 28px;
  border-radius: var(--radius-pill); border: 1px solid rgba(201, 169, 98, 0.3);
  backdrop-filter: blur(8px); display: inline-block;
}
.specials-hero-content .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 400; line-height: 1.05; color: var(--white);
  letter-spacing: -0.02em; margin: 8px 0 0;
}
.specials-hero-content .hero-title em { color: var(--color-accent); font-style: italic; }
.specials-hero-content .hero-sub { color: rgba(255,255,255,0.85); margin-top: 16px; font-size: 1.05rem; letter-spacing: 0.05em; }
.specials-hero-content .hero-divider {
  width: 60px; height: 1px; background: var(--color-accent);
  margin: 28px auto 0; opacity: 0.6;
}

/* Slideshow Controls */
.slide-arrows {
  position: absolute; top: 50%; width: 100%; z-index: 5;
  display: flex; justify-content: space-between; padding: 0 32px;
  transform: translateY(-50%); pointer-events: none;
}
.slide-arrow {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  color: var(--white); font-size: 1.2rem; cursor: pointer;
  transition: all 0.3s; pointer-events: auto;
}
.slide-arrow:hover { background: rgba(201, 169, 98, 0.4); border-color: var(--color-accent); }

.slide-dots {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; gap: 12px;
}
.slide-dot {
  width: 40px; height: 3px; background: rgba(255,255,255,0.3);
  cursor: pointer; transition: all 0.4s; border: none;
}
.slide-dot.active { background: var(--color-accent); width: 64px; }

.slide-progress {
  position: absolute; bottom: 0; left: 0; width: 0%; height: 3px;
  background: var(--color-accent); z-index: 5; transition: width 0.1s linear;
}

/* ── SPECIALS INTRO STRIP ── */
.specials-intro-strip {
  display: grid; grid-template-columns: repeat(8, 1fr);
  height: 56px; overflow: hidden;
}
.specials-intro-strip span {
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; color: var(--white);
}
.strip-gold { background: var(--color-accent); }
.strip-dark { background: var(--color-dark); }

/* ── EDITORIAL BENTO GRID ── */
#specials {
  padding: 80px 64px;
  background: var(--lunar);
}
.specials-section-header {
  text-align: center; margin-bottom: 60px;
}

.specials-bento {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* ── BENTO CARD BASE ── */
.bento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(201, 169, 98, 0.18), 0 8px 24px rgba(0,0,0,0.08);
  border-color: rgba(201, 169, 98, 0.5);
}

/* Card image: always visible, proportional */
.bento-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: var(--lunar);
}
.bento-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.bento-card:hover .bento-card-img img { transform: scale(1.06); }

/* Card badge */
.special-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--color-accent); color: var(--white);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 8px 18px;
  border-radius: var(--radius-pill); z-index: 2;
}

/* Card content — always BELOW the image */
.bento-card-body {
  padding: 28px 32px 32px;
  flex: 1; display: flex; flex-direction: column;
}
.bento-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem; letter-spacing: 0.2em; color: var(--color-accent);
  text-transform: uppercase; font-weight: 500; margin-bottom: 12px;
  display: block;
}
.bento-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--color-dark); margin-bottom: 10px;
  line-height: 1.2;
}
.bento-card-text {
  font-size: 0.875rem; color: var(--color-slate);
  line-height: 1.7; flex: 1; margin-bottom: 20px;
}
.bento-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.bento-price { display: flex; align-items: baseline; gap: 6px; }
.bento-price-label {
  font-size: 0.65rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.bento-price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: var(--color-accent); font-weight: 500; line-height: 1;
}
.bento-price-unit {
  font-size: 0.65rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.bento-cta {
  display: inline-block; padding: 12px 24px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white);
  background: var(--color-dark); border-radius: var(--radius-pill);
  text-decoration: none; transition: all 0.3s; white-space: nowrap;
}
.bento-cta:hover { background: var(--color-accent); transform: translateY(-2px); }

/* ── BENTO SIZING ── */
/* Auto-fit cards - fill space efficiently */
.bento-1, .bento-2, .bento-3, .bento-4, .bento-5, .bento-6 {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  min-height: auto;
  height: 100%;
}
/* Make all cards stretch to fill available space */
.bento-1 .bento-card,
.bento-2 .bento-card,
.bento-3 .bento-card,
.bento-4 .bento-card,
.bento-5 .bento-card,
.bento-6 .bento-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bento-1 .bento-card-img,
.bento-2 .bento-card-img,
.bento-3 .bento-card-img,
.bento-4 .bento-card-img,
.bento-5 .bento-card-img,
.bento-6 .bento-card-img {
  aspect-ratio: 16 / 9;
  width: 100%;
  flex-shrink: 0;
}
.bento-1 .bento-card-body,
.bento-2 .bento-card-body,
.bento-3 .bento-card-body,
.bento-4 .bento-card-body,
.bento-5 .bento-card-body,
.bento-6 .bento-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-1 .bento-card-title,
.bento-2 .bento-card-title,
.bento-3 .bento-card-title,
.bento-4 .bento-card-title,
.bento-5 .bento-card-title,
.bento-6 .bento-card-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.bento-1 .bento-card-text,
.bento-2 .bento-card-text,
.bento-3 .bento-card-text,
.bento-4 .bento-card-text,
.bento-5 .bento-card-text,
.bento-6 .bento-card-text {
  font-size: 0.85rem;
  margin-bottom: 16px;
  line-height: 1.6;
  flex: 1;
}
.bento-1 .bento-price-amount,
.bento-2 .bento-price-amount,
.bento-3 .bento-price-amount,
.bento-4 .bento-price-amount,
.bento-5 .bento-price-amount,
.bento-6 .bento-price-amount {
  font-size: 1.5rem;
}
/* Footer stays at bottom */
.bento-card-footer {
  margin-top: auto;
  padding-top: 12px;
}

/* ── PACKAGES SECTION ── */
.packages { background: var(--color-dark); padding: 100px 64px; }
.packages .section-title { color: var(--white); }
.packages .section-body { color: rgba(255,255,255,0.7); }
.packages .section-tag { color: var(--color-accent); }
.packages .divider { background: var(--color-accent); }

.package-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px; margin-top: 56px;
}
.package-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: var(--radius-lg); padding: 48px;
  transition: all 0.4s var(--transition);
  position: relative; overflow: hidden;
}
.package-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold-light), var(--color-accent));
}
.package-card::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(201,169,98,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.package-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201, 169, 98, 0.45);
  transform: translateY(-4px);
}
.package-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(201,169,98,0.2) 0%, rgba(201,169,98,0.08) 100%);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--color-accent); margin-bottom: 28px;
}
.package-title {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  color: var(--white); margin-bottom: 16px;
}
.package-desc {
  font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.7;
  margin-bottom: 28px;
}
.package-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 12px; margin-bottom: 36px; padding: 0;
}
.package-features li {
  font-size: 0.88rem; color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 12px;
}
.package-features li::before {
  content: ''; width: 20px; height: 20px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23c9a962' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.package-price {
  font-family: 'Cormorant Garamond', serif; font-size: 2.6rem;
  color: var(--color-accent); margin-bottom: 28px; display: block; line-height: 1;
}
.package-price span {
  font-size: 1rem; color: rgba(255,255,255,0.5);
  vertical-align: middle; font-family: 'Jost', sans-serif;
}
.package-card .btn-primary {
  background: var(--color-accent); color: var(--white);
  padding: 14px 36px;
}
.package-card .btn-primary:hover { background: var(--white); color: var(--color-dark); }

/* ── SPECIALS CTA STRIP ── */
.specials-cta-strip {
  background: var(--color-accent);
  padding: 80px 64px; text-align: center;
}
.specials-cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-dark); margin-bottom: 16px; font-weight: 400;
}
.specials-cta-strip p {
  color: rgba(26,26,46,0.75); margin-bottom: 36px;
  font-size: 1rem;
}
.specials-cta-strip .btn-primary {
  background: var(--color-dark); color: var(--white);
}
.specials-cta-strip .btn-primary:hover { background: var(--white); color: var(--color-dark); }

/* ── REDUCE MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .bento-card, .bento-card-img img { transition: none !important; transform: none !important; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #specials { padding: 64px 32px; }
  .specials-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .specials-bento { 
    gap: 16px; 
    grid-template-columns: 1fr;
  }
  .bento-card-body { padding: 20px 24px 24px; }
  .bento-card-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .specials-cta-strip { padding: 64px 24px; }
  .slide-dots { bottom: 100px; }
  .packages { padding: 72px 24px; }
  .package-grid { grid-template-columns: 1fr; }
}
