/*
Theme Name: Forever in Ibiza
Theme URI: https://foreverinibiza.com
Author: Forever in Ibiza
Author URI: https://foreverinibiza.com
Description: A vibrant, maximalist Ibiza travel & lifestyle theme with liquid glass effects, animated gradient heroes, and a full silo colour system.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: forever-in-ibiza
Tags: travel, nightlife, lifestyle, vibrant, dark
*/

/* =============================================
   DESIGN TOKENS
============================================= */
:root {
  /* Base */
  --night: #07071A;
  --night-2: #0F0F2E;
  --night-3: #16163D;
  --white: #FFFFFF;
  --off-white: #F0EEF8;
  --text-muted: rgba(255,255,255,0.55);

  /* Silo: Nightlife — Purple */
  --silo-nightlife: #9B30FF;
  --silo-nightlife-light: #C77DFF;
  --silo-nightlife-glow: rgba(155,48,255,0.35);

  /* Silo: Food & Drink — Coral */
  --silo-food: #FF4E6A;
  --silo-food-light: #FF8FA3;
  --silo-food-glow: rgba(255,78,106,0.35);

  /* Silo: Experiences — Teal */
  --silo-experiences: #00D9B8;
  --silo-experiences-light: #6EFDE3;
  --silo-experiences-glow: rgba(0,217,184,0.35);

  /* Silo: Stay — Amber */
  --silo-stay: #FFB800;
  --silo-stay-light: #FFD760;
  --silo-stay-glow: rgba(255,184,0,0.35);

  /* Silo: Move to Ibiza — Blue */
  --silo-move: #2196F3;
  --silo-move-light: #64B5F6;
  --silo-move-glow: rgba(33,150,243,0.35);

  /* Silo: Plan Your Trip — Green */
  --silo-plan: #00E676;
  --silo-plan-light: #69F0AE;
  --silo-plan-glow: rgba(0,230,118,0.35);

  /* Accent */
  --ibiza-blue: #00C6FF;
  --ibiza-gold: #FFD700;
  --ibiza-sunset: #FF6B35;

  /* Glass */
  --glass-bg: rgba(255,255,255,0.06);
  --glass-bg-hover: rgba(255,255,255,0.11);
  --glass-border: rgba(255,255,255,0.12);
  --glass-border-hover: rgba(255,255,255,0.25);
  --glass-blur: blur(20px) saturate(180%);
  --glass-blur-heavy: blur(40px) saturate(200%);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #07071A 0%, #1A063D 35%, #0D1A4A 65%, #07071A 100%);
  --gradient-sunset: linear-gradient(135deg, #FF6B35 0%, #FF4E6A 35%, #9B30FF 75%, #07071A 100%);
  --gradient-ocean: linear-gradient(135deg, #00C6FF 0%, #00D9B8 50%, #9B30FF 100%);

  /* Typography scale */
  --font-display: 'Syne', 'Space Grotesk', sans-serif;
  --font-heading: 'Familjen Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Syne Mono', monospace;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --container-max: 1320px;
  --container-wide: 1560px;
  --gutter: clamp(16px, 3vw, 40px);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-glow-purple: 0 0 60px rgba(155,48,255,0.3);
  --shadow-glow-coral: 0 0 60px rgba(255,78,106,0.3);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-deep: 0 40px 100px rgba(0,0,0,0.7);

  /* Transitions */
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.4s var(--ease);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--night);
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--ibiza-blue); }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

ul, ol { list-style: none; }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(24px, 3vw, 40px); }
h4 { font-size: clamp(20px, 2.5vw, 30px); }
h5 { font-size: clamp(16px, 2vw, 22px); }

.display-text {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 160px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.eyebrow {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lead {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* =============================================
   LAYOUT
============================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--full { width: 100%; padding: 0; }

.section { padding: var(--section-pad) 0; }

/* =============================================
   GLASS MORPHISM UTILITIES
============================================= */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.glass:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}

.glass--heavy {
  background: rgba(7,7,26,0.7);
  backdrop-filter: var(--glass-blur-heavy);
  -webkit-backdrop-filter: var(--glass-blur-heavy);
  border: 1px solid var(--glass-border);
}

.glass-banner {
  position: relative;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.glass-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(155,48,255,0.08) 0%, transparent 50%, rgba(0,198,255,0.06) 100%);
  pointer-events: none;
}
.glass-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--silo-nightlife), var(--ibiza-blue));
  color: white;
  box-shadow: 0 8px 30px rgba(155,48,255,0.4);
}
.btn--primary::before { background: linear-gradient(135deg, #B44FFF, #33CFFF); }
.btn--primary:hover { box-shadow: 0 12px 40px rgba(155,48,255,0.6); color: white; }

.btn--glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border-hover);
  color: white;
}
.btn--glass:hover { background: var(--glass-bg-hover); border-color: rgba(255,255,255,0.4); color: white; }

.btn--silo {
  background: var(--silo-color, var(--silo-nightlife));
  color: white;
  box-shadow: 0 8px 25px var(--silo-glow, var(--silo-nightlife-glow));
}
.btn--silo:hover {
  box-shadow: 0 12px 40px var(--silo-glow, var(--silo-nightlife-glow));
  transform: translateY(-3px);
  color: white;
}

.btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
}
.btn--outline:hover { border-color: white; color: white; background: rgba(255,255,255,0.08); }

.btn--lg { padding: 18px 48px; font-size: 17px; }
.btn--sm { padding: 10px 22px; font-size: 13px; }

/* =============================================
   BADGES & TAGS
============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge--silo {
  background: rgba(var(--silo-rgb), 0.15);
  color: var(--silo-color);
  border: 1px solid rgba(var(--silo-rgb), 0.3);
}
.badge--new { background: var(--silo-nightlife); color: white; }
.badge--hot { background: var(--silo-food); color: white; }
.badge--live {
  background: rgba(0,230,118,0.15);
  color: var(--silo-plan);
  border: 1px solid rgba(0,230,118,0.3);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,230,118,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(0,230,118,0); }
}

/* =============================================
   SITE HEADER
============================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px var(--gutter);
  transition: all 0.5s var(--ease);
}
#site-header .header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Scrolled state */
#site-header.scrolled {
  padding: 12px var(--gutter);
  background: rgba(7,7,26,0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo img { height: 40px; width: auto; }
.site-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--silo-nightlife-light) 60%, var(--ibiza-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.site-logo-text span {
  display: block;
  font-size: 9px;
  font-family: var(--font-accent);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  -webkit-text-fill-color: rgba(255,255,255,0.4);
}

/* Primary Nav */
#primary-navigation { display: flex; align-items: center; gap: 4px; }

.nav-link {
  position: relative;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--silo-color, var(--silo-nightlife));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.06); }
.nav-link:hover::after, .nav-link.current-menu-item::after { transform: scaleX(1); }
.nav-link.current-menu-item { color: white; }

.nav-link[data-silo="nightlife"] { --silo-color: var(--silo-nightlife); }
.nav-link[data-silo="food"]      { --silo-color: var(--silo-food); }
.nav-link[data-silo="experiences"] { --silo-color: var(--silo-experiences); }
.nav-link[data-silo="stay"]      { --silo-color: var(--silo-stay); }
.nav-link[data-silo="plan"]      { --silo-color: var(--silo-plan); }
.nav-link[data-silo="move"]      { --silo-color: var(--silo-move); }

.header-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  #primary-navigation {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: rgba(7,7,26,0.97);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 999;
  }
  #primary-navigation.open { transform: translateX(0); }
  .nav-link { font-size: 24px; padding: 12px 24px; }
  .header-cta { display: none; }
}

/* =============================================
   HERO — HOMEPAGE
============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Animated gradient bg */
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 15% 50%, rgba(155,48,255,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 85% 30%, rgba(0,198,255,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 50% 90%, rgba(255,78,106,0.18) 0%, transparent 55%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0%   { opacity: 0.7; transform: scale(1); }
  50%  { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.8; transform: scale(0.98); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Hero image overlay */
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7,7,26,0.3) 0%,
    rgba(7,7,26,0.1) 30%,
    rgba(7,7,26,0.5) 70%,
    rgba(7,7,26,0.95) 100%
  );
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 160px var(--gutter) 100px;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow { margin-bottom: 20px; }
.hero-title {
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-bottom: 28px;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--silo-nightlife-light) 40%, var(--ibiza-blue) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .outline-text {
  -webkit-text-stroke: 2px rgba(255,255,255,0.35);
  -webkit-text-fill-color: transparent;
}
.hero-subtitle { max-width: 560px; margin-bottom: 40px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

/* Hero email capture */
.hero-email-form {
  max-width: 480px;
}
.hero-email-form .form-label {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
}
.hero-email-form .form-row {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 20px;
}
.hero-email-form input[type="email"] {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: white;
  font-family: var(--font-body);
  font-size: 15px;
  min-width: 0;
}
.hero-email-form input::placeholder { color: rgba(255,255,255,0.35); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* =============================================
   SEASON COUNTDOWN TICKER
============================================= */
.season-ticker {
  background: var(--silo-nightlife);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.season-ticker .ticker-inner {
  display: flex;
  align-items: center;
  padding: 12px 0;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}
.season-ticker .ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.season-ticker .ticker-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   COUNTDOWN TIMER
============================================= */
.countdown-section {
  padding: 60px var(--gutter);
}
.countdown-wrapper {
  background: linear-gradient(135deg, rgba(155,48,255,0.12) 0%, rgba(0,198,255,0.08) 100%);
  border: 1px solid rgba(155,48,255,0.25);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.countdown-wrapper::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(155,48,255,0.1) 0%, transparent 60%);
  animation: rotateBg 20s linear infinite;
}
@keyframes rotateBg {
  to { transform: rotate(360deg); }
}
.countdown-grid {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 80px;
}
.countdown-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, white, var(--silo-nightlife-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}
.countdown-label {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.countdown-sep {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 300;
  color: rgba(155,48,255,0.4);
  align-self: flex-start;
  margin-top: 8px;
  line-height: 1;
}

/* =============================================
   SECTION HEADINGS
============================================= */
.section-header { margin-bottom: clamp(40px, 5vw, 64px); }
.section-header--center { text-align: center; }

.section-eyebrow {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silo-color, var(--silo-nightlife));
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}
.section-header--left .section-eyebrow { justify-content: flex-start; }
.section-header--left .section-eyebrow::before { display: none; }

.section-title {
  margin-bottom: 16px;
}
.section-title .accent {
  background: linear-gradient(135deg, var(--silo-color, var(--silo-nightlife)), var(--ibiza-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
}
.section-header--center .section-desc { margin: 0 auto; }

/* =============================================
   SILO CARDS
============================================= */
.silo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.silo-grid--hero {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
}
.silo-grid--hero .silo-card:first-child { grid-column: span 2; }

.silo-card {
  --silo-color: var(--silo-nightlife);
  --silo-glow: var(--silo-nightlife-glow);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.silo-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px var(--glass-border-hover), 0 0 60px var(--silo-glow);
}
.silo-card--tall { aspect-ratio: 3/4; }
.silo-card--wide { aspect-ratio: 16/7; }

.silo-card__image {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}
.silo-card:hover .silo-card__image { transform: scale(1.06); }
.silo-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.silo-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(7,7,26,0.6) 65%,
    rgba(7,7,26,0.92) 100%
  );
}

/* No-image fallback gradient */
.silo-card__image--gradient {
  background: var(--silo-gradient, linear-gradient(135deg, #1A063D, #07071A));
}
.silo-card[data-silo="nightlife"] .silo-card__image--gradient {
  background: linear-gradient(135deg, #2D0060 0%, #0A0A1A 100%);
}
.silo-card[data-silo="food"] .silo-card__image--gradient {
  background: linear-gradient(135deg, #5C001A 0%, #1A0A0A 100%);
}
.silo-card[data-silo="experiences"] .silo-card__image--gradient {
  background: linear-gradient(135deg, #003D36 0%, #0A1A18 100%);
}
.silo-card[data-silo="stay"] .silo-card__image--gradient {
  background: linear-gradient(135deg, #3D2E00 0%, #1A150A 100%);
}
.silo-card[data-silo="plan"] .silo-card__image--gradient {
  background: linear-gradient(135deg, #003D1A 0%, #0A1A10 100%);
}
.silo-card[data-silo="move"] .silo-card__image--gradient {
  background: linear-gradient(135deg, #00204A 0%, #0A1020 100%);
}

.silo-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 24px;
  z-index: 2;
}
.silo-card__silo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--silo-color);
  color: white;
  margin-bottom: 10px;
}
.silo-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: white;
  margin-bottom: 8px;
  transition: var(--transition);
}
.silo-card:hover .silo-card__title { color: var(--silo-color); }
.silo-card__meta {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.silo-card__arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  z-index: 2;
}
.silo-card:hover .silo-card__arrow {
  background: var(--silo-color);
  border-color: var(--silo-color);
  transform: rotate(45deg);
}

/* Silo color assignments */
.silo-card[data-silo="nightlife"] { --silo-color: var(--silo-nightlife); --silo-glow: var(--silo-nightlife-glow); }
.silo-card[data-silo="food"]      { --silo-color: var(--silo-food); --silo-glow: var(--silo-food-glow); }
.silo-card[data-silo="experiences"] { --silo-color: var(--silo-experiences); --silo-glow: var(--silo-experiences-glow); }
.silo-card[data-silo="stay"]      { --silo-color: var(--silo-stay); --silo-glow: var(--silo-stay-glow); }
.silo-card[data-silo="plan"]      { --silo-color: var(--silo-plan); --silo-glow: var(--silo-plan-glow); }
.silo-card[data-silo="move"]      { --silo-color: var(--silo-move); --silo-glow: var(--silo-move-glow); }

/* =============================================
   POST / ARTICLE CARDS
============================================= */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.post-grid--3 { grid-template-columns: repeat(3, 1fr); }
.post-grid--4 { grid-template-columns: repeat(4, 1fr); }

.post-card {
  --silo-color: var(--silo-nightlife);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--night-2);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.12);
}
.post-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--night-3);
}
.post-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.post-card:hover .post-card__thumb img { transform: scale(1.07); }
.post-card__thumb-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 1;
}
.post-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card__silo-tag {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silo-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-card__silo-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--silo-color);
}
.post-card__title {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: white;
  margin-bottom: 10px;
  flex: 1;
  transition: color 0.3s ease;
}
.post-card:hover .post-card__title { color: var(--silo-color); }
.post-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: auto;
}
.post-card__date {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
}
.post-card__read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--silo-color);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
}
.post-card:hover .post-card__read-more { gap: 8px; }

/* =============================================
   FEATURED / HERO CARD
============================================= */
.featured-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
}
.featured-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.featured-card__image img { width: 100%; height: 100%; object-fit: cover; }
.featured-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7,7,26,0.95) 100%);
}
.featured-card__body {
  position: relative;
  z-index: 1;
  padding: 48px;
  max-width: 700px;
}

/* =============================================
   CAROUSEL
============================================= */
.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}
.carousel-track .post-card,
.carousel-track .silo-card { flex-shrink: 0; width: calc((100% - 40px) / 3); }

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}
.carousel-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border-hover);
  color: white;
  font-size: 20px;
  transition: var(--transition);
}
.carousel-btn:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(255,255,255,0.35);
  transform: scale(1.08);
}
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}
.carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--silo-color, white);
}

/* =============================================
   GLASS BANNER (FULL WIDTH)
============================================= */
.glass-banner-section {
  position: relative;
  padding: 80px var(--gutter);
  overflow: hidden;
}
.glass-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 20% 50%, rgba(155,48,255,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 100% at 80% 50%, rgba(0,198,255,0.12) 0%, transparent 60%);
}

.glass-banner-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  padding: clamp(40px, 5vw, 80px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 40px 80px rgba(0,0,0,0.5);
}
.glass-banner-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 30%, rgba(155,48,255,0.6) 60%, transparent 100%);
}
.glass-banner-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,198,255,0.3), transparent);
}

/* Floating orbs decoration */
.glass-banner-card .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.3;
}
.glass-banner-card .orb--purple {
  width: 300px; height: 300px;
  background: var(--silo-nightlife);
  top: -100px; right: -50px;
}
.glass-banner-card .orb--blue {
  width: 200px; height: 200px;
  background: var(--ibiza-blue);
  bottom: -80px; left: -30px;
}

/* =============================================
   VENUE / FEATURE CARDS
============================================= */
.venue-card {
  --silo-color: var(--silo-nightlife);
  background: var(--night-2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  gap: 0;
}
.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
}
.venue-card--horizontal { flex-direction: row; }
.venue-card--horizontal .venue-card__thumb { width: 200px; flex-shrink: 0; }
.venue-card__thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--night-3); }
.venue-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.venue-card:hover .venue-card__thumb img { transform: scale(1.08); }
.venue-card__body { padding: 24px; }
.venue-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: white;
  transition: color 0.3s ease;
}
.venue-card:hover .venue-card__name { color: var(--silo-color); }
.venue-card__type {
  font-size: 12px;
  color: var(--silo-color);
  font-family: var(--font-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.venue-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 16px;
}
.venue-card__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.venue-card__tag {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1);
}

/* =============================================
   SINGLE POST / ARTICLE
============================================= */
.single-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.single-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.single-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.single-hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7,7,26,0.2) 0%,
    rgba(7,7,26,0.4) 50%,
    rgba(7,7,26,1) 95%
  );
}
.single-hero__content {
  position: relative;
  z-index: 1;
  padding: 120px var(--gutter) 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.article-layout {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.article-layout--nosidebar { grid-template-columns: 1fr; max-width: 860px; }

/* Article content styles */
.entry-content {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}
.entry-content h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 2.5em 0 0.8em;
  color: white;
}
.entry-content h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  margin: 2em 0 0.7em;
  color: white;
}
.entry-content p { margin-bottom: 1.6em; }
.entry-content a { color: var(--silo-color, var(--silo-nightlife)); border-bottom: 1px solid rgba(155,48,255,0.3); }
.entry-content a:hover { border-bottom-color: var(--silo-color, var(--silo-nightlife)); }
.entry-content ul, .entry-content ol { margin: 1em 0 1.6em 1.5em; }
.entry-content li { margin-bottom: 0.5em; list-style: disc; }
.entry-content blockquote {
  margin: 2em 0;
  padding: 24px 32px;
  border-left: 4px solid var(--silo-color, var(--silo-nightlife));
  background: rgba(255,255,255,0.04);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-heading);
  font-size: 1.1em;
  font-style: italic;
  color: rgba(255,255,255,0.8);
}
.entry-content img, .entry-content figure {
  border-radius: var(--radius-md);
  margin: 2em 0;
  overflow: hidden;
}

/* Affiliate CTA box */
.affiliate-cta {
  background: linear-gradient(135deg, rgba(155,48,255,0.1), rgba(0,198,255,0.08));
  border: 1px solid rgba(155,48,255,0.25);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 2.5em 0;
  display: flex;
  gap: 16px;
  align-items: center;
}
.affiliate-cta__icon { font-size: 32px; flex-shrink: 0; }
.affiliate-cta__text { flex: 1; }
.affiliate-cta__title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.affiliate-cta__desc { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0 0 14px; }

/* Internal link box */
.internal-link-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--silo-color, var(--silo-nightlife));
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  margin: 2em 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.internal-link-box strong { color: var(--silo-color, var(--silo-nightlife)); }

/* Table of contents */
.toc {
  background: var(--night-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid var(--silo-color, var(--silo-nightlife));
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px;
  margin: 0 0 2.5em;
}
.toc__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--silo-color, var(--silo-nightlife));
  margin-bottom: 16px;
}
.toc__list { counter-reset: toc; }
.toc__list li {
  counter-increment: toc;
  margin-bottom: 8px;
  font-size: 14px;
  list-style: none;
  padding-left: 24px;
  position: relative;
  color: rgba(255,255,255,0.65);
}
.toc__list li::before {
  content: counter(toc) '.';
  position: absolute;
  left: 0;
  color: var(--silo-color, var(--silo-nightlife));
  font-weight: 700;
  font-size: 12px;
}
.toc__list a { color: inherit; }
.toc__list a:hover { color: white; }

/* =============================================
   SIDEBAR
============================================= */
.sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--night-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-widget__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: white;
}
.sidebar-widget--email {
  background: linear-gradient(135deg, rgba(155,48,255,0.15), rgba(0,198,255,0.08));
  border-color: rgba(155,48,255,0.25);
}

/* =============================================
   EMAIL CAPTURE
============================================= */
.email-section {
  background: linear-gradient(135deg, rgba(155,48,255,0.12) 0%, rgba(0,198,255,0.06) 100%);
  border-top: 1px solid rgba(155,48,255,0.2);
  border-bottom: 1px solid rgba(155,48,255,0.2);
}

.email-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.email-form input[type="email"],
.email-form input[type="text"] {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  color: white;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
}
.email-form input:focus { border-color: rgba(155,48,255,0.5); }
.email-form input::placeholder { color: rgba(255,255,255,0.35); }

/* =============================================
   FOOTER
============================================= */
#site-footer {
  background: var(--night);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px var(--gutter) 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .site-logo-text { font-size: 24px; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 300px; }
.footer-col__heading {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-col ul a:hover { color: white; transform: translateX(4px); }
.footer-col ul a .silo-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* =============================================
   BREADCRUMBS
============================================= */
.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.breadcrumbs a { color: rgba(255,255,255,0.55); }
.breadcrumbs a:hover { color: var(--silo-color, white); }
.breadcrumbs .sep { color: rgba(255,255,255,0.2); }
.breadcrumbs .current { color: rgba(255,255,255,0.7); }

/* =============================================
   PAGINATION
============================================= */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 48px 0;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.pagination a:hover { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.2); }
.pagination .current { background: var(--silo-nightlife); border-color: var(--silo-nightlife); color: white; }

/* =============================================
   SEARCH
============================================= */
.search-form {
  display: flex;
  gap: 0;
  max-width: 580px;
}
.search-form input[type="search"] {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  color: white;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
.search-form button {
  padding: 14px 24px;
  background: var(--silo-nightlife);
  border: none;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.search-form button:hover { background: var(--silo-nightlife-light); }

/* =============================================
   ANIMATIONS & REVEAL
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   UTILITIES
============================================= */
.gradient-text {
  background: linear-gradient(135deg, var(--silo-nightlife-light), var(--ibiza-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text--sunset {
  background: linear-gradient(135deg, #FF6B35, var(--silo-food), var(--silo-nightlife));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text--silo {
  background: linear-gradient(135deg, var(--silo-color, var(--silo-nightlife)), var(--ibiza-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  width: 60px; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--silo-color, var(--silo-nightlife)), transparent);
  margin: 20px 0;
}

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-right { text-align: right; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .post-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .silo-grid--hero { grid-template-columns: 1fr 1fr; }
  .silo-grid--hero .silo-card:first-child { grid-column: span 2; }
  .post-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .carousel-track .post-card { width: calc(50% - 10px); }
  .venue-card--horizontal { flex-direction: column; }
  .venue-card--horizontal .venue-card__thumb { width: 100%; }
}
@media (max-width: 640px) {
  .silo-grid, .silo-grid--hero { grid-template-columns: 1fr; }
  .silo-grid--hero .silo-card:first-child { grid-column: span 1; }
  .post-grid, .post-grid--3, .post-grid--4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .carousel-track .post-card { width: calc(100% - 32px); }
  .affiliate-cta { flex-direction: column; text-align: center; }
  .hero-email-form .form-row { flex-direction: column; border-radius: var(--radius-lg); }
  .hero-email-form .form-row input { padding: 12px 0; }
  .hero-email-form .form-row .btn { border-radius: var(--radius-lg); }
  .countdown-sep { display: none; }
}
