/*
Theme Name:        VTO — Visions TV Online
Theme URI:         https://visionstvonline.com
Author:            Visions TV Online
Author URI:        https://visionstvonline.com
Description:       The official WordPress theme for Visions TV Online — the UK's #1 Christian & Gospel music platform. Features a bold navy and gold brand identity, blog listing, single posts, events page, categories, custom widgets, and full Gutenberg block support.
Version:           1.0.0
Requires at least: 6.0
Tested up to:      6.5
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:       vto
Tags:              music, gospel, blog, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, full-site-editing
*/

/* ─────────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────────── */
:root {
  --navy:       #0d1b5e;
  --navy-dark:  #080f3a;
  --navy-mid:   #142272;
  --gold:       #F5B800;
  --gold-dark:  #c9940a;
  --gold-light: #FFD44D;
  --white:      #ffffff;
  --off-white:  #f5f3ee;
  --text:       #1a1a2e;
  --muted:      #6b7a99;
  --success:    #22c55e;
  --danger:     #ef4444;
  --border:     rgba(13,27,94,0.1);
  --radius:     10px;
  --shadow:     0 4px 24px rgba(13,27,94,0.1);
  --shadow-lg:  0 14px 40px rgba(13,27,94,0.14);
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
ul { list-style: none; }
button { cursor: pointer; }

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
  color: var(--navy);
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
p { font-family: 'Lora', serif; line-height: 1.8; color: #444; margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }
blockquote {
  border-left: 4px solid var(--gold);
  padding: 1.2rem 1.5rem;
  background: rgba(245,184,0,0.06);
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--navy);
}
blockquote cite { display: block; margin-top: 0.7rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); font-style: normal; }

/* ─────────────────────────────────────────
   LAYOUT CONTAINERS
───────────────────────────────────────── */
.vto-container { max-width: 1200px; margin: 0 auto; padding: 0 6%; }
.vto-container--narrow { max-width: 820px; margin: 0 auto; padding: 0 5%; }
.vto-section { padding: 5rem 6%; }
.vto-section--dark { background: var(--navy-dark); }
.vto-section--navy { background: var(--navy); }
.vto-section--gold { background: var(--gold); }
.vto-section--white { background: var(--white); }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
#vto-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(8,15,58,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--gold);
  height: 66px;
}
.vto-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 2.5rem; gap: 1rem;
}
.vto-nav-logo a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.05em;
  color: var(--gold); text-decoration: none;
}
.vto-nav-logo a span { color: var(--white); }
.vto-nav-menu { display: flex; gap: 1.6rem; align-items: center; }
.vto-nav-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.88rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); text-decoration: none;
  transition: color 0.2s; white-space: nowrap;
}
.vto-nav-menu a:hover,
.vto-nav-menu .current-menu-item > a,
.vto-nav-menu .current-page-ancestor > a { color: var(--gold); }
.vto-nav-menu .vto-nav-cta a {
  background: var(--gold); color: var(--navy-dark) !important;
  padding: 0.4rem 1rem; border-radius: 4px; font-weight: 800 !important;
  transition: background 0.2s;
}
.vto-nav-menu .vto-nav-cta a:hover { background: var(--gold-light); }

/* Dropdown */
.vto-nav-menu .menu-item-has-children { position: relative; }
.vto-nav-menu .menu-item-has-children > .sub-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--navy-dark); border: 1px solid rgba(245,184,0,0.2);
  border-radius: 8px; min-width: 200px; padding: 0.6rem 0;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s; z-index: 100;
}
.vto-nav-menu .menu-item-has-children:hover > .sub-menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.vto-nav-menu .sub-menu a {
  display: block; padding: 0.6rem 1.1rem; font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.vto-nav-menu .sub-menu a:hover { color: var(--gold); background: rgba(245,184,0,0.06); }

/* Mobile hamburger */
.vto-nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.vto-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ─────────────────────────────────────────
   SITE HEADER (page top padding)
───────────────────────────────────────── */
body { padding-top: 66px; }
.admin-bar body { padding-top: calc(66px + 32px); }
.admin-bar #vto-nav { top: 32px; }

/* ─────────────────────────────────────────
   TICKER BANNER
───────────────────────────────────────── */
.vto-ticker {
  background: var(--gold); color: var(--navy-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.55rem 0; overflow: hidden; white-space: nowrap;
}
.vto-ticker-inner { display: inline-block; animation: vtoTicker 32s linear infinite; }
@keyframes vtoTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.vto-ticker-inner span { margin: 0 2.5rem; }

/* ─────────────────────────────────────────
   HERO (front page)
───────────────────────────────────────── */
.vto-hero {
  min-height: 92vh;
  background: var(--navy-dark);
  position: relative;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 5rem 6% 6rem;
  overflow: hidden;
}
.vto-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 72% 50%, rgba(245,184,0,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.vto-hero-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(140px, 26vw, 380px);
  color: rgba(245,184,0,0.035);
  white-space: nowrap; pointer-events: none; user-select: none;
}
.vto-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.vto-hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); display: inline-block; }
.vto-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.9; color: var(--white);
  max-width: 820px; margin-bottom: 1.5rem;
}
.vto-hero h1 em { font-style: normal; color: var(--gold); }
.vto-hero-sub {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.62);
  max-width: 500px; line-height: 1.75;
  margin-bottom: 2.5rem;
}
.vto-hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.vto-hero-stats {
  position: absolute; bottom: 2.5rem; right: 6%;
  display: flex; gap: 2.5rem;
}
.vto-hero-stats .stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem;
  color: var(--gold); line-height: 1; text-align: right;
}
.vto-hero-stats .stat-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); text-align: right;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.vto-btn, .wp-block-button__link, button[type="submit"] {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 0.95rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: 4px;
  display: inline-block; transition: all 0.2s;
  text-decoration: none; border: none; cursor: pointer;
}
.vto-btn-primary, .wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background: var(--gold) !important; color: var(--navy-dark) !important;
}
.vto-btn-primary:hover { background: var(--gold-light) !important; transform: translateY(-2px); color: var(--navy-dark) !important; }
.vto-btn-navy { background: var(--navy-dark); color: var(--gold); }
.vto-btn-navy:hover { background: #050c2e; color: var(--gold); }
.vto-btn-outline {
  background: none; border: 2px solid rgba(255,255,255,0.28); color: var(--white);
}
.vto-btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─────────────────────────────────────────
   SECTION LABELS
───────────────────────────────────────── */
.vto-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 0.7rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.vto-label::before { content: ''; width: 22px; height: 2px; background: var(--gold-dark); display: inline-block; }
.vto-label--light { color: var(--gold); }
.vto-label--light::before { background: var(--gold); }
.vto-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--navy); line-height: 1; margin-bottom: 0.4rem;
}
.vto-section-title em { font-style: normal; color: var(--gold-dark); }
.vto-section-title--light { color: var(--white); }
.vto-section-title--light em { color: var(--gold-light); }

/* ─────────────────────────────────────────
   POST / BLOG CARDS
───────────────────────────────────────── */
.vto-posts-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 2.8rem;
  flex-wrap: wrap; gap: 1rem;
}
.vto-view-all {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  border-bottom: 2px solid var(--gold); padding-bottom: 2px;
  transition: color 0.2s;
}
.vto-view-all:hover { color: var(--gold-dark); }

/* Featured grid layout */
.vto-posts-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.4rem;
}
.vto-posts-grid .post-card:first-child { grid-row: 1 / 3; }

/* Standard grid */
.vto-posts-grid--standard {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
}

/* Card */
.vto-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none; color: inherit;
}
.vto-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); color: inherit; }

.vto-card-img {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden; flex-shrink: 0; background: var(--navy-mid);
}
.vto-card:first-child .vto-card-img { aspect-ratio: unset; height: 320px; }
.vto-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.vto-card:hover .vto-card-img img { transform: scale(1.04); }
.vto-card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}

.vto-card-cat {
  position: absolute; top: 0.8rem; left: 0.8rem;
  background: var(--gold); color: var(--navy-dark);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; border-radius: 3px; z-index: 2;
}
.vto-card-body {
  padding: 1.2rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column;
}
.vto-card-meta {
  font-size: 0.72rem; color: var(--muted); font-weight: 500;
  margin-bottom: 0.55rem; text-transform: uppercase; letter-spacing: 0.08em;
}
.vto-card-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 1.08rem; line-height: 1.22; color: var(--navy); margin-bottom: 0.65rem;
}
.vto-card:first-child .vto-card-title { font-size: 1.5rem; }
.vto-card-excerpt {
  font-family: 'Lora', serif; font-size: 0.86rem;
  color: #555; line-height: 1.68; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.vto-card-read-more {
  margin-top: 1rem; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-dark);
}
.vto-card-read-more::after { content: ' →'; }

/* ─────────────────────────────────────────
   SINGLE POST
───────────────────────────────────────── */
.vto-single-hero {
  min-height: 60vh; position: relative;
  display: flex; align-items: flex-end;
  padding: 3rem 6%; overflow: hidden;
}
.vto-single-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.vto-single-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,15,58,0.97) 0%, rgba(8,15,58,0.55) 55%, rgba(8,15,58,0.15) 100%);
}
.vto-single-hero-content { position: relative; z-index: 2; max-width: 820px; }
.vto-single-cat {
  display: inline-block; background: var(--gold); color: var(--navy-dark);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.28rem 0.7rem; border-radius: 3px; margin-bottom: 1rem;
}
.vto-single-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 0.95; color: var(--white); margin-bottom: 1rem;
}
.vto-single-meta {
  display: flex; align-items: center; gap: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); flex-wrap: wrap;
}
.vto-single-meta a { color: rgba(255,255,255,0.55); }
.vto-single-meta a:hover { color: var(--gold); }

/* Single post layout */
.vto-single-layout {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 4rem; max-width: 1200px; margin: 0 auto;
  padding: 4rem 6%;
}
.vto-single-content {}
.vto-single-content .lead {
  font-family: 'Lora', serif; font-size: 1.15rem;
  line-height: 1.82; color: #333; margin-bottom: 2rem;
  padding-bottom: 2rem; border-bottom: 2px solid var(--gold);
  font-style: italic;
}
.vto-single-content h2 { font-size: 2rem; color: var(--navy); margin: 2.5rem 0 1rem; }
.vto-single-content h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 1.3rem; color: var(--navy); margin: 2rem 0 0.8rem;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.vto-single-content p { font-family: 'Lora', serif; font-size: 1rem; line-height: 1.85; color: #444; margin-bottom: 1.4rem; }
.vto-single-content img { border-radius: 8px; margin: 1.5rem 0; }
.vto-single-content .wp-block-pullquote,
.vto-pull-quote {
  background: var(--navy-dark); color: var(--white);
  padding: 2rem 2.5rem; margin: 2.5rem 0; border-radius: 8px;
  border: none; position: relative; overflow: hidden;
}
.vto-single-content .wp-block-pullquote p,
.vto-pull-quote p {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1.35rem; line-height: 1.3; color: var(--gold-light);
  margin: 0; letter-spacing: 0.02em; font-style: normal;
}
.vto-post-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 2rem; }
.vto-post-tag {
  background: var(--off-white); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 20px; border: 1px solid var(--border);
  text-decoration: none; transition: all 0.2s;
}
.vto-post-tag:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* ─────────────────────────────────────────
   SIDEBAR
───────────────────────────────────────── */
.vto-sidebar {}
.vto-widget {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; margin-bottom: 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
}
.vto-widget-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 1.2rem;
  padding-bottom: 0.7rem; border-bottom: 2px solid var(--gold);
}
/* Recent posts widget */
.vto-widget .post-item {
  display: flex; gap: 0.9rem; margin-bottom: 1rem;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.vto-widget .post-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.vto-widget .post-item img {
  width: 68px; height: 50px; border-radius: 5px;
  object-fit: cover; flex-shrink: 0;
}
.vto-widget .post-item-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.88rem; line-height: 1.25; color: var(--navy);
  text-decoration: none; display: block;
}
.vto-widget .post-item-title:hover { color: var(--gold-dark); }
.vto-widget .post-item-date { font-size: 0.7rem; color: var(--muted); margin-top: 0.25rem; }

/* CTA widget */
.vto-widget-cta {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-radius: var(--radius); padding: 1.8rem 1.5rem; text-align: center;
  margin-bottom: 1.5rem; border: none;
}
.vto-widget-cta h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--gold); margin-bottom: 0.6rem; }
.vto-widget-cta p { font-family: 'Lora', serif; font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 1.2rem; }

/* Category widget */
.vto-widget .cat-list li { margin-bottom: 0.5rem; }
.vto-widget .cat-list a {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 0.88rem; letter-spacing: 0.05em;
  color: var(--navy); text-decoration: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.35rem 0; border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: color 0.2s;
}
.vto-widget .cat-list a:hover { color: var(--gold-dark); }
.vto-widget .cat-list .count {
  background: var(--off-white); border-radius: 10px;
  padding: 0.1rem 0.5rem; font-size: 0.7rem; color: var(--muted);
}

/* ─────────────────────────────────────────
   CATEGORIES GRID
───────────────────────────────────────── */
.vto-cat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 1rem; margin-top: 2.5rem;
}
.vto-cat-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(245,184,0,0.14);
  border-radius: 8px; padding: 1.4rem 1.1rem; text-align: center;
  text-decoration: none; transition: all 0.2s; display: block;
}
.vto-cat-card:hover {
  background: rgba(245,184,0,0.1); border-color: var(--gold);
  transform: translateY(-3px); color: inherit;
}
.vto-cat-card-icon { font-size: 1.7rem; margin-bottom: 0.65rem; }
.vto-cat-card-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white);
}
.vto-cat-card-count { font-size: 0.72rem; color: rgba(245,184,0,0.55); margin-top: 0.25rem; }

/* ─────────────────────────────────────────
   ABOUT STRIP
───────────────────────────────────────── */
.vto-about-strip {
  background: var(--gold); padding: 5rem 6%;
  display: flex; gap: 4rem; align-items: center; flex-wrap: wrap;
}
.vto-about-strip-text { flex: 1; min-width: 280px; }
.vto-about-strip-text .vto-label::before { background: var(--navy-dark); }
.vto-about-strip-text .vto-label { color: var(--navy-dark); }
.vto-about-strip-text .vto-section-title { color: var(--navy-dark); }
.vto-about-strip-text p { color: var(--navy); line-height: 1.78; margin-top: 1rem; }
.vto-about-actions { display: flex; gap: 1rem; margin-top: 1.8rem; flex-wrap: wrap; }
.vto-about-awards { flex: 0; min-width: 220px; }
.vto-award-item {
  border-left: 3px solid var(--navy-dark);
  padding: 0.6rem 1rem; margin-bottom: 1rem;
}
.vto-award-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--navy-dark); }
.vto-award-sub { font-size: 0.78rem; color: var(--navy); opacity: 0.72; font-weight: 500; }

/* ─────────────────────────────────────────
   SERVICES SECTION
───────────────────────────────────────── */
.vto-services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem; margin-top: 2.5rem;
}
.vto-service-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(245,184,0,0.14);
  border-radius: var(--radius); padding: 1.6rem 1.4rem;
}
.vto-service-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.vto-service-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 1rem; color: var(--gold); margin-bottom: 0.5rem;
}
.vto-service-desc { font-size: 0.84rem; color: rgba(255,255,255,0.6); line-height: 1.6; font-family: 'Barlow', sans-serif; }

/* ─────────────────────────────────────────
   NEWSLETTER SECTION
───────────────────────────────────────── */
.vto-newsletter {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a3080 100%);
  text-align: center; padding: 5rem 6%;
  position: relative; overflow: hidden;
}
.vto-newsletter::before {
  content: 'VTO'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Bebas Neue', sans-serif; font-size: 30vw;
  color: rgba(245,184,0,0.03); pointer-events: none; line-height: 1;
}
.vto-newsletter-inner { position: relative; z-index: 1; }
.vto-newsletter p { color: rgba(255,255,255,0.62); max-width: 470px; margin: 0 auto 2rem; }
.vto-newsletter-form {
  display: flex; max-width: 450px; margin: 0 auto;
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.vto-newsletter-form input[type="email"] {
  flex: 1; padding: 1rem 1.2rem; border: none;
  font-family: 'Barlow', sans-serif; font-size: 0.93rem;
  background: var(--white); color: var(--text); outline: none;
}
.vto-newsletter-form button[type="submit"] {
  background: var(--gold); color: var(--navy-dark);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 0.88rem; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; padding: 1rem 1.4rem; cursor: pointer;
  transition: background 0.2s; white-space: nowrap; border-radius: 0;
}
.vto-newsletter-form button[type="submit"]:hover { background: var(--gold-light); }

/* ─────────────────────────────────────────
   EVENTS PAGE
───────────────────────────────────────── */
.vto-events-hero {
  background: var(--navy-dark); padding: 5rem 6% 4rem;
  position: relative; overflow: hidden;
}
.vto-events-hero::after {
  content: 'EVENTS'; position: absolute; top: 50%; right: -2%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(80px, 18vw, 200px);
  color: rgba(245,184,0,0.04); pointer-events: none; line-height: 1;
}
.vto-events-filter {
  background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 0.9rem 6%; display: flex; align-items: center;
  gap: 0.7rem; flex-wrap: wrap; position: sticky; top: 66px; z-index: 90;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.vto-filter-btn {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.45rem 1rem; border-radius: 20px;
  border: 2px solid rgba(13,27,94,0.15); background: none; color: var(--navy);
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
  text-decoration: none; display: inline-block;
}
.vto-filter-btn:hover,
.vto-filter-btn.active,
.current-cat .vto-filter-btn { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* Event cards */
.vto-events-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
}
.vto-event-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none; color: inherit;
}
.vto-event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); color: inherit; }
.vto-event-img { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--navy-mid); }
.vto-event-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.vto-event-card:hover .vto-event-img img { transform: scale(1.04); }
.vto-event-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: var(--gold); color: var(--navy-dark); font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.22rem 0.6rem; border-radius: 3px; z-index: 2; }
.vto-event-date-chip { position: absolute; top: 0.75rem; right: 0.75rem; background: rgba(8,15,58,0.9); backdrop-filter: blur(6px); border: 1px solid rgba(245,184,0,0.3); border-radius: 8px; padding: 0.4rem 0.65rem; text-align: center; }
.vto-event-date-chip .day { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--gold); line-height: 1; }
.vto-event-date-chip .month { font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.vto-event-body { padding: 1.1rem 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.vto-event-cat { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.4rem; }
.vto-event-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.15rem; line-height: 1.2; color: var(--navy); margin-bottom: 0.55rem; }
.vto-event-meta { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.7rem; }
.vto-event-meta-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.8rem; color: var(--muted); }
.vto-event-desc { font-family: 'Lora', serif; font-size: 0.83rem; color: #555; line-height: 1.65; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.vto-event-footer { margin-top: 0.9rem; display: flex; align-items: center; justify-content: space-between; }
.vto-event-organiser { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 600; color: var(--muted); }
.vto-event-link { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); }
.vto-event-link::after { content: ' →'; }

/* ─────────────────────────────────────────
   COMMENTS
───────────────────────────────────────── */
.vto-comments { padding: 3rem 0; border-top: 2px solid var(--gold); margin-top: 2rem; }
.vto-comments .comment-list { list-style: none; }
.vto-comments .comment { margin-bottom: 2rem; padding: 1.5rem; background: var(--off-white); border-radius: 8px; border-left: 3px solid var(--gold); }
.vto-comments .comment-author { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.3rem; }
.vto-comments .comment-meta { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.8rem; }
.vto-comments .comment-content p { font-size: 0.9rem; }
.comment-respond { margin-top: 3rem; }
.comment-respond h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--navy); margin-bottom: 1.5rem; }
.comment-form input, .comment-form textarea {
  width: 100%; font-family: 'Barlow', sans-serif; font-size: 0.93rem;
  padding: 0.8rem 1rem; border: 2px solid rgba(13,27,94,0.12);
  border-radius: 8px; background: var(--off-white); color: var(--text);
  outline: none; transition: border-color 0.2s; margin-bottom: 1rem;
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--gold); background: var(--white); }
.comment-form textarea { min-height: 130px; font-family: 'Lora', serif; resize: vertical; }

/* ─────────────────────────────────────────
   PAGINATION
───────────────────────────────────────── */
.vto-pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 0.5rem; padding: 3rem 0;
}
.vto-pagination a, .vto-pagination span {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.1em;
  padding: 0.55rem 1rem; border-radius: 6px;
  border: 2px solid rgba(13,27,94,0.15);
  color: var(--navy); text-decoration: none; transition: all 0.2s;
}
.vto-pagination a:hover, .vto-pagination .current {
  background: var(--navy); color: var(--gold); border-color: var(--navy);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
#vto-footer {
  background: #04071a; color: rgba(255,255,255,0.45);
  padding: 3.5rem 6% 2rem;
}
.vto-footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.vto-footer-brand .logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem;
  letter-spacing: 0.05em; color: var(--gold); text-decoration: none;
  display: inline-block; margin-bottom: 1rem;
}
.vto-footer-brand .logo span { color: var(--white); }
.vto-footer-brand p { font-family: 'Lora', serif; font-size: 0.88rem; line-height: 1.72; color: rgba(255,255,255,0.42); max-width: 240px; }
.vto-footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.vto-footer-col ul { list-style: none; }
.vto-footer-col ul li { margin-bottom: 0.65rem; }
.vto-footer-col ul a { color: rgba(255,255,255,0.42); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; font-family: 'Barlow', sans-serif; }
.vto-footer-col ul a:hover { color: var(--gold); }
.vto-footer-socials { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.vto-footer-socials a {
  width: 36px; height: 36px; border: 1px solid rgba(245,184,0,0.22);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: all 0.2s;
}
.vto-footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.vto-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.4rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: 0.78rem;
}
.vto-footer-bottom a { color: var(--gold); text-decoration: none; }

/* ─────────────────────────────────────────
   SEARCH FORM
───────────────────────────────────────── */
.search-form { display: flex; gap: 0; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); }
.search-form input[type="search"] {
  flex: 1; padding: 0.75rem 1rem; border: 2px solid rgba(13,27,94,0.12);
  border-right: none; border-radius: 6px 0 0 6px;
  font-family: 'Barlow', sans-serif; font-size: 0.9rem;
  background: var(--white); color: var(--text); outline: none;
}
.search-form button { background: var(--gold); color: var(--navy-dark); border: none; padding: 0.75rem 1.2rem; cursor: pointer; font-weight: 800; border-radius: 0 6px 6px 0; transition: background 0.2s; }
.search-form button:hover { background: var(--gold-light); }

/* ─────────────────────────────────────────
   BREADCRUMBS
───────────────────────────────────────── */
.vto-breadcrumb {
  background: var(--navy-dark); padding: 0.9rem 6%;
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.vto-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.vto-breadcrumb a:hover { color: var(--gold); }
.vto-breadcrumb .sep { color: rgba(255,255,255,0.2); }
.vto-breadcrumb .current { color: var(--gold); }

/* ─────────────────────────────────────────
   GUTENBERG BLOCK OVERRIDES
───────────────────────────────────────── */
.wp-block-image img { border-radius: 8px; }
.wp-block-quote { border-left: 4px solid var(--gold); background: rgba(245,184,0,0.06); padding: 1.2rem 1.5rem; border-radius: 0 8px 8px 0; }
.wp-block-separator { border-color: var(--gold); opacity: 0.4; }
.wp-block-code { background: var(--navy-dark); color: #e2e8f0; border-radius: 8px; padding: 1.5rem; }
.has-vto-navy-color { color: var(--navy) !important; }
.has-vto-gold-color { color: var(--gold) !important; }
.has-vto-navy-background-color { background-color: var(--navy-dark) !important; }
.has-vto-gold-background-color { background-color: var(--gold) !important; }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes vtoFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.vto-fade-up { animation: vtoFadeUp 0.6s ease both; }
.vto-fade-up-1 { animation-delay: 0.1s; }
.vto-fade-up-2 { animation-delay: 0.2s; }
.vto-fade-up-3 { animation-delay: 0.3s; }
.vto-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.5s ease, transform 0.5s ease; }
.vto-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .vto-posts-grid { grid-template-columns: 1fr 1fr; }
  .vto-posts-grid .post-card:first-child { grid-column: 1 / -1; }
  .vto-single-layout { grid-template-columns: 1fr; }
  .vto-sidebar { display: none; }
  .vto-footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .vto-nav-menu { display: none; }
  .vto-nav-menu.is-open { display: flex; flex-direction: column; position: fixed; top: 66px; left: 0; right: 0; background: var(--navy-dark); padding: 1.5rem 2.5rem; gap: 1rem; border-bottom: 2px solid var(--gold); z-index: 199; }
  .vto-nav-toggle { display: flex; }
  .vto-about-strip { flex-direction: column; }
  .vto-about-awards { min-width: 100%; }
  .vto-events-filter { top: 66px; }
}
@media (max-width: 600px) {
  .vto-posts-grid, .vto-posts-grid--standard, .vto-events-grid { grid-template-columns: 1fr; }
  .vto-hero h1 { font-size: 3rem; }
  .vto-hero-stats { position: static; margin-top: 2rem; gap: 1.5rem; }
  .vto-footer-top { grid-template-columns: 1fr; }
  .vto-services-grid { grid-template-columns: 1fr; }
  .vto-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─────────────────────────────────────────
   ACCESSIBILITY
───────────────────────────────────────── */
.skip-link { position: absolute; top: -100px; left: 1rem; background: var(--gold); color: var(--navy-dark); padding: 0.5rem 1rem; border-radius: 0 0 4px 4px; font-weight: 700; z-index: 9999; transition: top 0.2s; }
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
