/* ============================================================
   Havana 24/7 — Main Stylesheet v3
   Design: City of Light & Ocean — Havana Blues, Warm Whites, Gold
   Typography: Playfair Display + Inter + Bebas Neue
   Palette: Ocean blue / Warm white / Havana gold / Coral sunset
============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Core palette — Havana: ocean, sky, sun, plaster, coral */
  --ocean:       #1a3a5c;   /* deep harbour blue */
  --ocean-mid:   #2563a8;   /* vivid Havana blue */
  --sky:         #4a90d9;   /* afternoon sky */
  --sky-light:   #a8d4f5;   /* pale sky */
  --foam:        #e8f4fd;   /* ocean foam / light bg */
  --sand:        #fdf6ec;   /* warm white sand */
  --white:       #ffffff;
  --plaster:     #f0ebe3;   /* old Havana plaster walls */
  --gold:        #c9943a;   /* Cuban gold */
  --gold-light:  #e8b854;
  --coral:       #e8604a;   /* sunset coral */
  --coral-light: #f2907e;
  --text-dark:   #1a2a3a;   /* near-black with blue tint */
  --text-mid:    #3d5166;   /* medium blue-grey */
  --text-soft:   #6b8299;   /* soft blue-grey */
  --border:      #d0e4f0;   /* light blue border */
  --border-soft: #e8f0f7;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-bebas:   'Bebas Neue', sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Layout */
  --container: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Animation */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26,58,92,.08);
  --shadow-md: 0 6px 24px rgba(26,58,92,.12);
  --shadow-lg: 0 16px 48px rgba(26,58,92,.16);
  --shadow-xl: 0 32px 80px rgba(26,58,92,.20);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ──────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ── Reveal animation ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 2rem; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.04em; cursor: pointer; border: none;
  transition: all 0.25s var(--ease); white-space: nowrap;
}
.btn--primary { background: var(--gold); color: #fff; box-shadow: 0 4px 16px rgba(201,148,58,.35); }
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,148,58,.4); }
.btn--ocean { background: var(--ocean-mid); color: #fff; box-shadow: 0 4px 16px rgba(37,99,168,.3); }
.btn--ocean:hover { background: var(--ocean); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,.25); border-color: #fff; }
.btn--white { background: var(--white); color: var(--ocean); }
.btn--white:hover { background: var(--foam); }
.btn--nav { background: var(--coral); color: #fff; padding: 0.5rem 1.25rem; font-size: 0.8rem; border-radius: 50px; }
.btn--nav:hover { background: var(--coral-light); }
.btn--sm { padding: 0.4rem 1rem; font-size: 0.78rem; }
.btn--danger { background: #e74c3c; color: #fff; border-radius: 8px; }

/* ── Section titles ─────────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-title em { color: var(--ocean-mid); font-style: italic; }
.section-sub {
  text-align: center;
  color: var(--text-soft);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}
.section-header { margin-bottom: 2.5rem; }
.section-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 0.5rem;
}
.see-all {
  font-size: .82rem; font-weight: 600; color: var(--ocean-mid);
  border-bottom: 1.5px solid currentColor; padding-bottom: 1px;
  white-space: nowrap;
}
.see-all:hover { color: var(--coral); }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  padding: 0.7rem 0;
}
.site-header.scrolled .nav__logo { color: var(--ocean); }
.site-header.scrolled .nav__link { color: var(--text-mid); }
.site-header.scrolled .nav__link:hover { color: var(--ocean-mid); }
.site-header.scrolled .nav__link--active { color: var(--ocean-mid); }
.nav { display: flex; align-items: center; justify-content: space-between; }
.nav__logo {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 700;
  color: var(--white); letter-spacing: -0.01em; transition: color 0.3s;
}
.nav__logo-accent { color: var(--gold); }
.nav__links { display: flex; align-items: center; gap: 0.1rem; }
.nav__link {
  color: rgba(255,255,255,.85); font-size: 0.84rem; font-weight: 500;
  padding: 0.45rem 0.8rem; border-radius: 50px;
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.12); }
.nav__link--active { color: var(--white); }
.nav__link--active::after {
  content: ''; display: block; height: 2px;
  background: var(--gold); border-radius: 2px; margin-top: 2px;
}
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.2s; }
.site-header.scrolled .nav__burger span { background: var(--ocean); }
@media (max-width: 900px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed; top: 0; right: -100%; bottom: 0; width: 280px;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--white); padding: 5rem 2rem 2rem;
    transition: right 0.3s var(--ease);
    box-shadow: -4px 0 32px rgba(26,58,92,.2);
  }
  .nav__links.open { right: 0; }
  .nav__link { color: var(--text-dark); padding: 0.8rem 0; font-size: 1rem; width: 100%; border-radius: 0; border-bottom: 1px solid var(--border-soft); }
  .nav__link:hover { background: none; color: var(--ocean-mid); }
}

/* ═══════════════════════════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero-slider {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,24,40,.85) 0%,
    rgba(10,24,40,.5) 45%,
    rgba(10,24,40,.15) 100%
  );
}
/* Real Havana images via Unsplash */
.hero-slide:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=85'); }
.hero-slide:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1549814855-9eb4c6b7e82b?w=1920&q=85'); }
.hero-slide:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?w=1920&q=85'); }
.hero-slide:nth-child(4) { background-image: url('https://images.unsplash.com/photo-1570168007204-dfb528c6958f?w=1920&q=85'); }
.hero-slide:nth-child(5) { background-image: url('https://images.unsplash.com/photo-1523731407965-2430cd12f5e4?w=1920&q=85'); }

.hero__content {
  position: relative; z-index: 2;
  width: 100%; padding: 0 1.5rem 6rem;
  max-width: calc(var(--container) + 3rem); margin: 0 auto;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  color: var(--white); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero__badge::before { content: '●'; color: var(--gold); font-size: 0.5rem; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.05;
  color: var(--white); margin-bottom: 1.25rem;
  max-width: 760px;
}
.hero__title em { color: var(--gold); font-style: italic; }
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.8); max-width: 520px;
  margin-bottom: 2.25rem; line-height: 1.65;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Slider dots */
.hero-dots {
  position: absolute; bottom: 2rem; right: 2rem; z-index: 3;
  display: flex; gap: 0.5rem; align-items: center;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: all 0.3s; border: none;
}
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* Slide counter */
.hero-counter {
  position: absolute; top: 50%; right: 2rem; transform: translateY(-50%);
  z-index: 3; display: flex; flex-direction: column; gap: 0.5rem; align-items: center;
}
.hero-counter__current {
  font-family: var(--font-bebas); font-size: 2rem; color: var(--white); line-height: 1;
}
.hero-counter__line { width: 1px; height: 40px; background: rgba(255,255,255,.3); }
.hero-counter__total { font-size: 0.75rem; color: rgba(255,255,255,.5); }

@media (max-width: 768px) {
  .hero__content { padding-bottom: 5rem; }
  .hero-counter { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   QUICK SEARCH BAR
═══════════════════════════════════════════════════════════════ */
.quicksearch {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-xl);
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
  max-width: 680px; margin: -2rem auto 0; position: relative; z-index: 10;
}
.quicksearch input {
  flex: 1; border: none; outline: none;
  font-size: 0.95rem; color: var(--text-dark);
  background: transparent; font-family: var(--font-body);
}
.quicksearch input::placeholder { color: var(--text-soft); }
.quicksearch button {
  background: var(--ocean-mid); color: #fff;
  border: none; border-radius: 50px;
  padding: 0.7rem 1.5rem; font-weight: 600; font-size: 0.85rem;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.quicksearch button:hover { background: var(--ocean); }

/* ═══════════════════════════════════════════════════════════════
   CATEGORY NAV — Home explorer grid
═══════════════════════════════════════════════════════════════ */
.cat-nav-section {
  padding: 4rem 0 3rem;
  background: var(--white);
}
.cat-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.cat-nav-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem;
  background: var(--foam);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1rem;
  text-align: center;
  transition: all 0.25s var(--ease);
  cursor: pointer; text-decoration: none;
}
.cat-nav-card:hover {
  background: var(--ocean-mid);
  border-color: var(--ocean-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cat-nav-card:hover .cat-nav-icon { background: rgba(255,255,255,.2); color: #fff; }
.cat-nav-card:hover .cat-nav-label { color: #fff; }
.cat-nav-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(37,99,168,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  transition: all 0.25s;
}
.cat-nav-label {
  font-size: 0.82rem; font-weight: 700;
  color: var(--text-dark); letter-spacing: 0.03em;
  text-transform: uppercase; line-height: 1.3;
  transition: color 0.25s;
}

/* ═══════════════════════════════════════════════════════════════
   EVENTS SECTION
═══════════════════════════════════════════════════════════════ */
.events-section {
  padding: 4rem 0;
  background: var(--sand);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; gap: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.event-card__date-col {
  width: 70px; flex-shrink: 0;
  background: var(--ocean-mid);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1rem 0.5rem; gap: 0.1rem;
}
.event-card__day {
  font-family: var(--font-bebas); font-size: 2rem; color: #fff; line-height: 1;
}
.event-card__month {
  font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,.7);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.event-card__body { padding: 1rem 1.1rem; flex: 1; }
.event-card__cat {
  font-size: 0.68rem; font-weight: 700; color: var(--coral);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.35rem;
}
.event-card__title {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
  color: var(--text-dark); line-height: 1.3; margin-bottom: 0.4rem;
}
.event-card__meta { font-size: 0.75rem; color: var(--text-soft); }
.event-card__free {
  display: inline-block; background: rgba(46,160,96,.1); color: #1a7a40;
  font-size: 0.65rem; font-weight: 700; padding: 0.15rem 0.5rem;
  border-radius: 20px; margin-top: 0.35rem; letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════
   PLACES / CARDS GRID — universal
═══════════════════════════════════════════════════════════════ */
.places-section { padding: 4rem 0; background: var(--white); }
.rests-section   { padding: 4rem 0; background: var(--foam); }
.lodging-section { padding: 4rem 0; background: var(--white); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.place-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column;
}
.place-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-light);
}
.card-thumb {
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--foam); position: relative;
}
.card-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.place-card:hover .card-thumb img { transform: scale(1.07); }
.card-thumb-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; font-size: 3rem;
  background: linear-gradient(135deg, var(--foam), var(--sky-light));
}
.card-badge {
  position: absolute; top: 0.6rem; left: 0.6rem;
  background: var(--ocean-mid); color: #fff;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem; border-radius: 20px; text-transform: uppercase;
}
.card-badge-free {
  position: absolute; top: 0.6rem; right: 0.6rem;
  background: rgba(46,160,96,.9); color: #fff;
  font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.55rem; border-radius: 20px;
}
.card-price {
  position: absolute; top: 0.6rem; right: 0.6rem;
  background: rgba(10,24,40,.7); color: var(--gold);
  font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: 20px;
}
.card-body { padding: 1.1rem 1.2rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 0.3rem; line-height: 1.3;
}
.card-location { font-size: 0.78rem; color: var(--text-soft); margin-bottom: 0.4rem; }
.card-excerpt {
  font-size: 0.82rem; color: var(--text-mid); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  flex: 1;
}

/* ═══════════════════════════════════════════════════════════════
   ARTICLES SECTION
═══════════════════════════════════════════════════════════════ */
.articles-section { padding: 4rem 0; background: var(--sand); }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.article-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.article-card-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--foam); }
.article-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.article-card:hover .article-card-thumb img { transform: scale(1.05); }
.article-card-body { padding: 1.25rem 1.4rem 1.6rem; flex: 1; }
.article-card-body time {
  font-size: 0.72rem; color: var(--sky); letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 0.5rem;
}
.article-card-body h3 {
  font-family: var(--font-display); font-size: 1.1rem; color: var(--text-dark);
  margin-bottom: 0.5rem; line-height: 1.35;
}
.article-card-body p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.55; }
.read-more { font-size: 0.8rem; color: var(--ocean-mid); font-weight: 600; margin-top: 0.75rem; display: block; }

/* ═══════════════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-mid) 100%);
  padding: 4rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::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%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band__content { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff; margin-bottom: 0.75rem;
}
.cta-band p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--ocean);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { grid-column: 1; }
.footer-logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: #fff; margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.88rem; line-height: 1.6; }
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 0.85rem; text-decoration: none;
  transition: all 0.2s;
}
.footer-social:hover { background: var(--gold); color: var(--ocean); border-color: var(--gold); }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 0.88rem; color: rgba(255,255,255,.65);
  margin-bottom: 0.5rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   DETAIL PAGES
═══════════════════════════════════════════════════════════════ */
.detail-hero {
  position: relative; min-height: 65vh;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
}
.detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,24,40,.9) 0%, rgba(10,24,40,.4) 55%, rgba(10,24,40,.1) 100%);
}
.detail-hero-content { position: relative; z-index: 2; padding: 3rem 1.5rem 3.5rem; }
.detail-breadcrumb { font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.detail-breadcrumb a { color: rgba(255,255,255,.65); }
.detail-breadcrumb a:hover { color: var(--gold); }
.detail-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff; margin: .5rem 0 0; line-height: 1.1; max-width: 800px;
}
.detail-lead { font-size: 1.1rem; color: rgba(255,255,255,.75); margin-top: .75rem; max-width: 680px; line-height: 1.6; }
.detail-hero-plain { padding: 8rem 1.5rem 3rem; background: var(--foam); }
.detail-title-plain {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text-dark); margin: .5rem 0 0;
}
.event-meta-strip { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: .75rem; }
.badge-category {
  background: rgba(37,99,168,.12); color: var(--ocean-mid);
  border: 1px solid rgba(37,99,168,.25); border-radius: 20px;
  padding: .25rem .75rem; font-size: .72rem; letter-spacing: .06em;
  text-transform: uppercase; font-weight: 600;
}
.badge-free {
  background: rgba(46,160,96,.12); color: #1a7a40;
  border: 1px solid rgba(46,160,96,.25); border-radius: 20px;
  padding: .25rem .75rem; font-size: .72rem; font-weight: 600;
}
.badge-price {
  background: rgba(201,148,58,.12); color: var(--gold);
  border: 1px solid rgba(201,148,58,.25); border-radius: 20px;
  padding: .25rem .6rem; font-size: .72rem; font-weight: 700;
}
.detail-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 3rem;
  padding: 3rem 1.5rem 5rem; align-items: start;
}
@media (max-width: 900px) {
  .detail-layout { grid-template-columns: 1fr; }
  .detail-aside { order: -1; }
}
.detail-content.prose { color: var(--text-mid); line-height: 1.85; font-size: 1.05rem; }
.detail-content.prose h2 { font-family: var(--font-display); font-size: 1.6rem; color: var(--text-dark); margin: 2rem 0 .75rem; }
.detail-content.prose h3 { font-size: 1.2rem; color: var(--ocean-mid); margin: 1.5rem 0 .5rem; }
.detail-content.prose p { margin-bottom: 1.1rem; }
.detail-content.prose ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.detail-content.prose a { color: var(--ocean-mid); text-decoration: underline; }
.detail-section { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border-soft); }
.detail-section h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--text-dark); margin-bottom: 1rem; }
.aside-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  position: sticky; top: 90px; box-shadow: var(--shadow-sm);
}
.aside-card h3 {
  font-family: var(--font-display); font-size: 1.05rem; color: var(--text-dark);
  margin: 0 0 1.25rem; padding-bottom: .75rem; border-bottom: 2px solid var(--ocean-mid);
}
.aside-row { display: flex; gap: .75rem; margin-bottom: 1rem; align-items: flex-start; }
.aside-icon { font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }
.aside-label { font-size: .72rem; color: var(--text-soft); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .2rem; }
.aside-value { font-size: .9rem; color: var(--text-dark); line-height: 1.45; }
.btn-aside-cta {
  display: block; background: var(--ocean-mid); color: #fff; font-weight: 700;
  text-align: center; padding: .8rem; border-radius: 50px; text-decoration: none;
  margin-top: 1.25rem; font-size: .9rem; transition: all .2s;
  box-shadow: 0 4px 12px rgba(37,99,168,.3);
}
.btn-aside-cta:hover { background: var(--ocean); transform: translateY(-1px); }
.btn-aside-map {
  display: block; background: var(--foam); color: var(--text-mid);
  border: 1px solid var(--border); font-weight: 600; text-align: center;
  padding: .7rem; border-radius: 50px; text-decoration: none; margin-top: .5rem; font-size: .88rem;
  transition: all .2s;
}
.btn-aside-map:hover { border-color: var(--ocean-mid); color: var(--ocean-mid); }
.tags-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag-pill {
  background: var(--foam); color: var(--ocean-mid);
  border: 1px solid var(--border); border-radius: 20px;
  padding: .3rem .75rem; font-size: .8rem;
}
.article-single { max-width: 780px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.article-lead { font-size: 1.2rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border-soft); font-style: italic; }
.article-prose { font-size: 1.05rem; line-height: 1.85; color: var(--text-mid); }
.article-meta-strip { margin-top: .75rem; font-size: .82rem; color: rgba(255,255,255,.55); }
.article-meta-plain { font-size: .82rem; color: var(--text-soft); display: block; margin-top: .5rem; }
.related-section { background: var(--foam); padding: 4rem 0; margin-top: 4rem; }

/* ═══════════════════════════════════════════════════════════════
   LISTING PAGES
═══════════════════════════════════════════════════════════════ */
.listing-hero {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-mid) 100%);
  padding: 7rem 1.5rem 4rem; position: relative; overflow: hidden;
}
.listing-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(74,144,217,.2) 0%, transparent 70%);
}
.listing-hero--food    { background: linear-gradient(135deg, #2a1a0e 0%, #8b4513 100%); }
.listing-hero--articles{ background: linear-gradient(135deg, var(--ocean) 0%, #1a5a8c 100%); }
.listing-hero--contact { background: linear-gradient(135deg, var(--text-dark) 0%, var(--ocean) 100%); }
.listing-hero--events  { background: linear-gradient(135deg, #1a0a2e 0%, #6b2fa0 100%); }
.listing-hero-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4rem);
  color: #fff; margin: 0 0 .5rem; position: relative;
}
.listing-hero-title em { color: var(--gold); font-style: italic; }
.listing-hero-sub { color: rgba(255,255,255,.65); font-size: 1.05rem; margin: 0 0 1.75rem; position: relative; }
.listing-search-form { display: flex; gap: .5rem; max-width: 520px; position: relative; }
.listing-search-form input {
  flex: 1; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px; padding: .75rem 1.25rem; color: #fff; font-size: .95rem;
  backdrop-filter: blur(8px);
}
.listing-search-form input::placeholder { color: rgba(255,255,255,.55); }
.listing-search-form button {
  background: var(--gold); color: #fff; border: none; border-radius: 50px;
  padding: .75rem 1.5rem; font-weight: 700; cursor: pointer;
}
.listing-layout { display: grid; grid-template-columns: 220px 1fr; gap: 2.5rem; padding: 3rem 1.5rem 5rem; align-items: start; }
@media (max-width: 800px) { .listing-layout { grid-template-columns: 1fr; } }
.listing-filters h4 { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); margin: 0 0 .5rem; }
.filter-link {
  display: block; padding: .35rem .7rem; color: var(--text-mid); text-decoration: none;
  border-radius: 50px; font-size: .88rem; transition: all .15s;
}
.filter-link:hover { background: var(--foam); color: var(--ocean-mid); }
.filter-link.active { background: var(--ocean-mid); color: #fff; font-weight: 600; }
.listing-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.listing-count { font-size: .88rem; color: var(--text-soft); margin: 0; }
.clear-filters {
  font-size: .82rem; color: var(--text-soft); text-decoration: none;
  border: 1px solid var(--border); border-radius: 20px; padding: .25rem .7rem;
}
.clear-filters:hover { color: var(--coral); border-color: var(--coral); }
.listing-empty { text-align: center; padding: 5rem 2rem; color: var(--text-soft); }
.listing-empty p { margin-bottom: 1rem; }

/* ═══════════════════════════════════════════════════════════════
   EXPLORA PAGE — Category hero cards
═══════════════════════════════════════════════════════════════ */
.explora-hero {
  background: linear-gradient(160deg, var(--ocean) 0%, var(--ocean-mid) 60%, var(--sky) 100%);
  padding: 8rem 1.5rem 5rem; text-align: center; position: relative; overflow: hidden;
}
.explora-hero::before {
  content: ''; position: absolute; bottom: -40px; left: 0; right: 0; height: 80px;
  background: var(--white); border-radius: 50% 50% 0 0 / 40px 40px 0 0;
}
.explora-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem,6vw,4.5rem); color: #fff; margin-bottom: .75rem; }
.explora-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2rem; }

.explora-cats-section { padding: 3rem 0 5rem; background: var(--white); }
.explora-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .explora-cats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .explora-cats-grid { grid-template-columns: 1fr; } }
.explora-cat-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; display: flex; align-items: flex-end;
  text-decoration: none; cursor: pointer;
  box-shadow: var(--shadow-md); transition: transform .3s, box-shadow .3s;
}
.explora-cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.explora-cat-card__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .6s var(--ease);
}
.explora-cat-card:hover .explora-cat-card__bg { transform: scale(1.07); }
.explora-cat-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,24,40,.85) 0%, rgba(10,24,40,.2) 60%, transparent 100%);
}
.explora-cat-card__body {
  position: relative; z-index: 2; padding: 1.5rem; width: 100%;
}
.explora-cat-card__icon {
  font-size: 2rem; margin-bottom: .5rem; display: block;
}
.explora-cat-card__title {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: .25rem;
}
.explora-cat-card__count {
  font-size: .78rem; color: rgba(255,255,255,.65); font-weight: 500;
}
.explora-cat-card__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: var(--gold); border-radius: 50%;
  position: absolute; top: 1.25rem; right: 1.25rem; z-index: 2;
  font-size: 1rem; color: #fff; opacity: 0;
  transition: opacity .25s, transform .25s;
}
.explora-cat-card:hover .explora-cat-card__arrow { opacity: 1; transform: translate(2px,-2px); }

/* ═══════════════════════════════════════════════════════════════
   CATEGORY PAGE (places/restaurants/lodging listing)
═══════════════════════════════════════════════════════════════ */
.cat-page-hero {
  position: relative; padding: 7rem 1.5rem 4rem;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.cat-page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,24,40,.6) 0%, rgba(10,24,40,.75) 100%);
}
.cat-page-hero__content { position: relative; z-index: 1; }
.cat-page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.2rem,5vw,3.5rem);
  color: #fff; margin-bottom: .5rem;
}
.cat-page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 560px; }

/* ═══════════════════════════════════════════════════════════════
   PUBLIC FORMS & ALERTS
═══════════════════════════════════════════════════════════════ */
.public-form .form-group { margin-bottom: 1.25rem; }
.public-form label { display: block; font-size: .8rem; color: var(--text-soft); margin-bottom: .4rem; letter-spacing: .05em; text-transform: uppercase; }
.public-form input,
.public-form select,
.public-form textarea {
  width: 100%; background: var(--foam); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: .8rem 1rem; color: var(--text-dark);
  font-size: .95rem; font-family: inherit; transition: border-color .2s;
}
.public-form input:focus,
.public-form select:focus,
.public-form textarea:focus { outline: none; border-color: var(--ocean-mid); background: var(--white); }
.public-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .public-form .form-row { grid-template-columns: 1fr; } }
.checkbox-item { display: flex; align-items: center; gap: .5rem; cursor: pointer; font-size: .9rem; color: var(--text-mid); }
.checkbox-item input[type="checkbox"] { width: auto; accent-color: var(--ocean-mid); }
.field-error { font-size: .78rem; color: var(--coral); display: block; margin-top: .25rem; }
.has-error input, .has-error textarea, .has-error select { border-color: var(--coral); }
.btn-primary {
  display: inline-block; background: var(--ocean-mid); color: #fff; font-weight: 700;
  padding: .85rem 2rem; border: none; border-radius: 50px; font-size: .95rem;
  cursor: pointer; text-decoration: none; transition: all .2s;
  box-shadow: 0 4px 16px rgba(37,99,168,.3);
}
.btn-primary:hover { background: var(--ocean); transform: translateY(-2px); }
.alert-success {
  background: rgba(46,160,96,.08); border: 1px solid rgba(46,160,96,.25);
  color: #1a7a40; border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════════════════════ */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: .4rem; margin-top: 2.5rem; flex-wrap: wrap;
}
.page-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 .6rem;
  border-radius: 50px; font-size: .88rem; font-weight: 500;
  color: var(--text-mid); text-decoration: none;
  background: var(--foam); border: 1px solid var(--border);
  transition: all .2s;
}
.page-link:hover { background: var(--ocean-mid); color: #fff; border-color: var(--ocean-mid); }
.page-current { background: var(--ocean-mid); color: #fff; border-color: var(--ocean-mid); font-weight: 700; }
.page-ellipsis { color: var(--text-soft); padding: 0 .3rem; }

/* ═══════════════════════════════════════════════════════════════
   ADMIN — all admin styles kept here
═══════════════════════════════════════════════════════════════ */
.admin-body { background: #f0f4f8; }
.admin-sidebar {
  position: fixed; left: 0; top: 0; bottom: 0; width: 240px;
  background: var(--ocean); color: rgba(255,255,255,.8);
  display: flex; flex-direction: column; z-index: 200;
  transition: transform .3s;
}
.admin-sidebar__logo {
  padding: 1.5rem 1.25rem 1.25rem;
  font-family: var(--font-display); font-size: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.admin-sidebar__logo a { color: #fff; text-decoration: none; }
.admin-sidebar__logo span { color: var(--gold); }
.admin-nav { flex: 1; overflow-y: auto; padding: .75rem 0; }
.admin-nav__section {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  padding: 1rem 1.25rem .35rem;
}
.admin-nav__link {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem 1.25rem; color: rgba(255,255,255,.7);
  font-size: .85rem; text-decoration: none; transition: all .15s;
  border-left: 2px solid transparent;
}
.admin-nav__link svg { width: 16px; height: 16px; flex-shrink: 0; }
.admin-nav__link:hover { background: rgba(255,255,255,.08); color: #fff; }
.admin-nav__link.active { background: rgba(255,255,255,.12); color: #fff; border-left-color: var(--gold); }
.admin-sidebar__user {
  padding: 1rem 1.25rem; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem; color: rgba(255,255,255,.5);
}
.admin-sidebar__user strong { display: block; color: rgba(255,255,255,.85); margin-bottom: .15rem; }
.admin-main { margin-left: 240px; min-height: 100vh; }
.admin-topbar {
  background: #fff; border-bottom: 1px solid #e2e8f0;
  padding: .85rem 1.5rem; display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; z-index: 100;
}
.admin-topbar__title { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin: 0; }
.admin-topbar__actions { display: flex; gap: .5rem; align-items: center; }
.admin-content { padding: 1.75rem 1.5rem; }

.alert { padding: .9rem 1.25rem; border-radius: var(--radius-md); margin-bottom: 1.25rem; font-size: .9rem; }
.alert--success { background: rgba(46,160,96,.08); color: #1a7a40; border: 1px solid rgba(46,160,96,.2); }
.alert--error   { background: rgba(231,76,60,.08); color: #c0392b; border: 1px solid rgba(231,76,60,.2); }

.admin-page-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 1.75rem; gap: 1rem; flex-wrap: wrap;
}
.admin-page-header h1 { margin: 0; font-family: var(--font-display); font-size: 1.6rem; color: var(--text-dark); }
.admin-page-sub { font-size: .85rem; color: var(--text-soft); margin: .25rem 0 0; }
.admin-page-sub a { color: var(--ocean-mid); text-decoration: none; }

.admin-filters { margin-bottom: 1.25rem; }
.filter-row { display: flex; gap: .75rem; flex-wrap: wrap; }
.filter-input {
  background: #fff; border: 1px solid #e2e8f0; border-radius: var(--radius-md);
  padding: .55rem .9rem; color: var(--text-dark); font-size: .88rem; min-width: 240px;
}
.filter-input:focus { outline: none; border-color: var(--ocean-mid); }
.filter-select {
  background: #fff; border: 1px solid #e2e8f0; border-radius: var(--radius-md);
  padding: .55rem .9rem; color: var(--text-dark); font-size: .88rem;
}
.admin-card { background: #fff; border: 1px solid #e2e8f0; border-radius: var(--radius-md); overflow: hidden; }
.admin-empty { padding: 3.5rem; text-align: center; color: var(--text-soft); }
.admin-empty p { margin-bottom: 1rem; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  text-align: left; font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-soft);
  padding: .75rem 1rem; background: #f8fafc; border-bottom: 1px solid #e2e8f0;
}
.admin-table td { padding: .85rem 1rem; border-bottom: 1px solid #f0f4f8; font-size: .88rem; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #fafcff; }
.actions-cell { display: flex; gap: .4rem; }
.btn-action {
  display: inline-block; padding: .3rem .7rem; border-radius: 6px;
  font-size: .75rem; font-weight: 600; text-decoration: none; cursor: pointer;
  background: var(--foam); color: var(--ocean-mid); border: 1px solid var(--border);
  transition: all .15s;
}
.btn-action:hover { background: var(--ocean-mid); color: #fff; border-color: var(--ocean-mid); }
.btn-action-danger { background: rgba(231,76,60,.08); color: #c0392b; border-color: rgba(231,76,60,.2); }
.btn-action-danger:hover { background: #e74c3c; color: #fff; border-color: #e74c3c; }
.btn-action-muted { opacity: .45; }
.status-badge {
  display: inline-block; font-size: .68rem; font-weight: 700; padding: .2rem .6rem;
  border-radius: 20px; text-transform: uppercase; letter-spacing: .04em;
}
.status-published { background: rgba(46,160,96,.1); color: #1a7a40; }
.status-draft { background: rgba(107,130,153,.1); color: var(--text-soft); }

.admin-stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 1rem; margin-bottom: 1.75rem; }
.stat-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}
.stat-card__label { font-size: .75rem; font-weight: 600; color: var(--text-soft); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .35rem; }
.stat-card__value { font-size: 2rem; font-weight: 700; color: var(--text-dark); font-family: var(--font-display); }
.stat-card__sub { font-size: .75rem; color: var(--text-soft); margin-top: .25rem; }

.admin-form-grid { display: grid; grid-template-columns: 1fr 300px; gap: 1.75rem; align-items: start; }
@media (max-width: 900px) { .admin-form-grid { grid-template-columns: 1fr; } }
.admin-form-main { display: flex; flex-direction: column; gap: 1.25rem; }
.admin-form-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 80px; }
.form-card { background: #fff; border: 1px solid #e2e8f0; border-radius: var(--radius-md); padding: 1.5rem; }
.form-card h3 { font-size: .95rem; font-weight: 700; color: var(--text-dark); margin: 0 0 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid #f0f4f8; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .75rem; color: var(--text-soft); margin-bottom: .4rem; letter-spacing: .06em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: #f8fafc; border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm); padding: .65rem .9rem;
  color: var(--text-dark); font-size: .9rem; font-family: inherit; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--ocean-mid); background: #fff; }
.form-group.has-error input, .form-group.has-error textarea, .form-group.has-error select { border-color: var(--coral); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: .5rem; }
.upload-zone {
  border: 2px dashed #e2e8f0; border-radius: var(--radius-md);
  padding: 1.5rem; text-align: center; cursor: pointer; position: relative; transition: border-color .2s;
}
.upload-zone:hover { border-color: var(--ocean-mid); }
.upload-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-hint { color: var(--text-soft); font-size: .85rem; line-height: 1.6; pointer-events: none; }
.btn-full { width: 100%; }
.btn-admin-primary {
  display: inline-block; background: var(--ocean-mid); color: #fff; font-weight: 700;
  padding: .65rem 1.25rem; border-radius: var(--radius-md); font-size: .85rem;
  text-decoration: none; border: none; cursor: pointer; transition: background .2s;
}
.btn-admin-primary:hover { background: var(--ocean); }
.btn-admin-secondary {
  display: inline-block; background: #f0f4f8; color: var(--text-mid); font-weight: 600;
  padding: .55rem 1.1rem; border-radius: var(--radius-md); font-size: .85rem;
  text-decoration: none; border: 1px solid #e2e8f0; cursor: pointer;
}
.btn-admin-ghost {
  display: inline-block; background: transparent; color: var(--text-mid); font-weight: 500;
  padding: .55rem 1rem; border-radius: var(--radius-md); font-size: .85rem;
  text-decoration: none; border: 1px solid #e2e8f0; cursor: pointer; text-align: center;
}
.btn-admin-ghost:hover { background: var(--foam); }
.btn-admin-danger {
  display: inline-block; background: rgba(231,76,60,.08); color: #c0392b;
  border: 1px solid rgba(231,76,60,.25); border-radius: var(--radius-md);
  padding: .6rem 1.1rem; font-size: .85rem; font-weight: 600;
  text-decoration: none; cursor: pointer; transition: background .2s;
}
.btn-admin-danger:hover { background: rgba(231,76,60,.15); }
.badge { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .05em; padding: .2rem .55rem; border-radius: 20px; text-transform: uppercase; margin-left: .35rem; }
.badge-gold { background: rgba(201,148,58,.12); color: var(--gold); border: 1px solid rgba(201,148,58,.25); }
.badge-gray { background: var(--foam); color: var(--text-soft); border: 1px solid var(--border); }
.media-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(160px,1fr)); gap: 1rem; padding: 1rem 0 }
.media-item { background: #fff; border: 1px solid #e2e8f0; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; position: relative; transition: border-color .2s }
.media-item:hover { border-color: var(--ocean-mid); }
.media-thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--foam); }
.media-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.media-item:hover .media-thumb img { transform: scale(1.05); }
.media-info { padding: .5rem .6rem; }
.media-name { display: block; font-size: .72rem; color: var(--text-mid); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.media-meta { display: block; font-size: .68rem; color: var(--text-soft); margin-top: .15rem; }
.media-delete { position: absolute; top: .4rem; right: .4rem; background: rgba(231,76,60,.85); color: #fff; border: none; border-radius: 50%; width: 22px; height: 22px; font-size: .9rem; line-height: 22px; text-align: center; text-decoration: none; opacity: 0; transition: opacity .2s; display: flex; align-items: center; justify-content: center; }
.media-item:hover .media-delete { opacity: 1; }
.media-copied { position: absolute; inset: 0; background: rgba(37,99,168,.9); color: #fff; font-weight: 700; font-size: .85rem; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s; pointer-events: none; }
.media-item.copied .media-copied { opacity: 1; }
