:root {
  --sp-coral: #e07b54;
  --sp-coral-dark: #c96a47;
  --sp-amber: #d4a574;
  --sp-gold: #c9a227;
  --sp-navy: #1a2332;
  --sp-charcoal: #2d3748;
  --sp-slate: #4a5568;
  --sp-cream: #faf8f5;
  --sp-warm-white: #fffcf7;
  --sp-teal: #17a2b8;
  --sp-success: #28a745;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

.specials-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  max-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--sp-navy);
}

.specials-hero .hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.specials-hero .hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.specials-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(45, 28, 20, 0.2) 0%, rgba(45, 28, 20, 0.35) 60%, rgba(26, 35, 50, 0.5) 100%), linear-gradient(180deg, rgba(26, 35, 50, 0.25) 0%, rgba(45, 28, 20, 0.35) 50%, rgba(26, 35, 50, 0.5) 100%);
  z-index: 2;
}

.specials-hero .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 700px;
  margin-top: 40px;
  -webkit-animation: fadeInUp 0.8s var(--transition-smooth) forwards;
          animation: fadeInUp 0.8s var(--transition-smooth) forwards;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.specials-hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sp-coral);
  margin-bottom: 16px;
  padding: 8px 20px;
  background: rgba(224, 123, 84, 0.15);
  border: 1px solid rgba(224, 123, 84, 0.3);
  border-radius: 30px;
}
.specials-hero .hero-eyebrow i {
  font-size: 0.9rem;
}

.specials-hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px;
}
.specials-hero .hero-title em {
  font-style: italic;
  color: var(--sp-amber);
}

.specials-hero .hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.value-banner {
  background: var(--sp-navy);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 48px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.value-item i {
  color: var(--sp-coral);
  font-size: 1.1rem;
}

.specials-content {
  background: var(--sp-cream);
  padding: 60px 0;
  min-height: 400px;
}

.specials-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}
.specials-intro p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--sp-slate);
  line-height: 1.7;
  margin: 0;
}
.specials-intro p a {
  color: var(--sp-teal);
  font-weight: 600;
  text-decoration: none;
}
.specials-intro p a:hover {
  text-decoration: underline;
}

.specials-filters {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.filter-list li a {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sp-charcoal);
  padding: 8px 20px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
}
.filter-list li a:hover, .filter-list li a.active {
  background: var(--sp-teal);
  border-color: var(--sp-teal);
  color: #fff;
}

.specials-grid .row {
  margin-bottom: 0;
}
.specials-grid .box_grid {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
}
.specials-grid .box_grid:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.no-specials {
  text-align: center;
  padding: 60px 20px 80px;
  max-width: 600px;
  margin: 0 auto;
}

.no-specials-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: rgba(224, 123, 84, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-specials-icon i {
  font-size: 2.5rem;
  color: var(--sp-coral);
}

.no-specials h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--sp-navy);
  margin: 0 0 12px;
}

.no-specials > p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--sp-slate);
  margin: 0 0 32px;
  line-height: 1.6;
}

.no-specials-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.btn-special {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
}
.btn-special--primary {
  background: var(--sp-coral);
  color: #fff;
}
.btn-special--primary:hover {
  background: var(--sp-coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224, 123, 84, 0.3);
}
.btn-special--secondary {
  background: var(--sp-navy);
  color: #fff;
}
.btn-special--secondary:hover {
  background: var(--sp-charcoal);
  transform: translateY(-2px);
}

.no-specials-tip {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--sp-slate);
  background: rgba(23, 162, 184, 0.1);
  padding: 12px 20px;
  border-radius: 8px;
  display: inline-block;
}
.no-specials-tip i {
  color: var(--sp-gold);
  margin-right: 6px;
}

.specials-cta {
  background: linear-gradient(135deg, var(--sp-coral) 0%, var(--sp-coral-dark) 100%);
  padding: 60px 0;
}

.cta-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-text {
  flex: 1;
  min-width: 280px;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  color: #fff;
  margin: 0 0 8px;
}
.cta-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
}
.btn-cta--light {
  background: #fff;
  color: var(--sp-coral-dark);
}
.btn-cta--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.btn-cta--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}
.btn-cta--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.explore-resorts {
  background: var(--sp-warm-white);
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--sp-navy);
  text-align: center;
  margin: 0 0 8px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--sp-slate);
  text-align: center;
  margin: 0 0 40px;
}

@media (max-width: 767px) {
  .specials-hero {
    height: 45vh;
    min-height: 350px;
  }
  .value-items {
    gap: 16px 32px;
  }
  .value-item {
    font-size: 0.8rem;
  }
  .specials-content {
    padding: 40px 0;
  }
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
    width: 100%;
  }
  .btn-cta {
    width: 100%;
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .specials-hero .hero-content {
    -webkit-animation: none;
            animation: none;
  }
  .box_grid,
.btn-special,
.btn-cta {
    transition: none;
  }
}
.btn-special:focus-visible,
.btn-cta:focus-visible {
  outline: 3px solid var(--sp-gold);
  outline-offset: 2px;
}