/*
Theme Name:   Warrington Male Voice Choir
Theme URI:    https://warringtonchoir.org.uk
Description:  Custom standalone theme for Warrington Male Voice Choir. Bach Choir-inspired design with WMVC brand colours. No page builder required.
Author:       Warrington Male Voice Choir
Version:      1.2.0
Text Domain:  wmvc
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

/* ============================================================
   BRAND TOKENS
   ============================================================ */
:root {
  --blue:        #255698;
  --blue-dark:   #084a7e;
  --yellow:      #f5ce28;
  --white:       #ffffff;
  --dark:        #001619;
  --grey:        #f7f8fa;
  --grey-mid:    #e2e8f0;
  --text:        #2d3748;
  --text-light:  #64748b;
  --shadow:      0 4px 24px rgba(0,0,0,0.09);
  --radius:      5px;
  --header-h:    80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-dark); }
ul  { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Open Sans', sans-serif;
  color: var(--blue-dark);
  line-height: 1.18;
  font-weight: 700;
}

p { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

/* ── WordPress block editor content ── */
.wmvc-prose h1,.wmvc-prose h2,.wmvc-prose h3 { color: var(--blue-dark); margin: 1.6rem 0 .6rem; }
.wmvc-prose p  { color: var(--text-light); margin-bottom: 1rem; line-height: 1.75; }
.wmvc-prose ul,.wmvc-prose ol { padding-left: 1.4rem; margin-bottom: 1rem; color: var(--text-light); }
.wmvc-prose li { margin-bottom: .4rem; }
.wmvc-prose a  { color: var(--blue); text-decoration: underline; }
.wmvc-prose strong { color: var(--blue-dark); }
.wmvc-prose blockquote {
  border-left: 3px solid var(--yellow);
  padding: 12px 20px;
  background: var(--grey);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.4rem 0;
  font-style: italic;
  color: var(--text-light);
}

/* Legal pages */
.wmvc-legal-content { max-width: 720px; }
.wmvc-legal-content h2 { font-size: 1.25rem; margin-top: 2.2rem; }
.wmvc-legal-content h3 { font-size: 1.05rem; margin-top: 1.6rem; }

/* ── Screen reader ── */
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute;
  overflow: hidden;
  height: 1px; width: 1px;
}

/* ============================================================
   HEADER
   ============================================================ */
.wmvc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.30);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .4s, box-shadow .4s, border-color .4s;
}

.wmvc-header.scrolled {
  background: rgba(0,0,28,0.90);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  border-bottom-color: rgba(255,255,255,0.14);
}

.wmvc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

/* Logo */
.wmvc-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.wmvc-logo-full {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.wmvc-logo-name {
  display: block;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .4px;
  line-height: 1.25;
  max-width: 160px;
}

/* Header CTA menu — Appearance → Menus → Header CTA Button */
.wmvc-header-cta { list-style: none; margin: 0; padding: 0; display: flex; gap: 8px; }
.wmvc-header-cta li { list-style: none; }
.wmvc-header-cta a,
.wmvc-header-book {
  flex-shrink: 0;
  background: var(--yellow);
  color: var(--dark) !important;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 9px 20px;
  border-radius: var(--radius);
  white-space: nowrap;
  text-decoration: none !important;
  transition: background .2s;
}
.wmvc-header-cta a:hover,
.wmvc-header-book:hover {
  background: #d4b020;
  color: var(--dark) !important;
}

/* Primary nav */
.wmvc-nav { display: flex; align-items: center; gap: 4px; }

.wmvc-nav a {
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .7px;
  padding: 8px 10px;
  border-radius: 3px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.wmvc-nav a:hover,
.wmvc-nav .current-menu-item > a,
.wmvc-nav .current-menu-ancestor > a {
  color: var(--yellow);
  background: rgba(255,255,255,.07);
}

/* Dropdown */
.wmvc-nav li { position: relative; }
.wmvc-nav .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: var(--blue-dark);
  border-top: 2px solid var(--yellow);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  padding: 6px 0;
  z-index: 100;
}
.wmvc-nav li:hover > .sub-menu { display: block; }
.wmvc-nav .sub-menu a {
  display: block;
  padding: 9px 16px;
  font-size: .75rem;
}

/* CTA button */
.wmvc-nav .menu-book-now > a,
.wmvc-nav .menu-cta > a {
  background: var(--yellow);
  color: var(--dark) !important;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-weight: 700;
}
.wmvc-nav .menu-book-now > a:hover,
.wmvc-nav .menu-cta > a:hover {
  background: #d4b020;
  color: var(--dark) !important;
}

/* Mobile toggle */
.wmvc-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.wmvc-nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.wmvc-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wmvc-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.wmvc-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.wmvc-container        { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.wmvc-container-narrow { max-width: 760px;  margin: 0 auto; padding: 0 24px; }

.wmvc-section     { padding: 72px 24px; }
.wmvc-section-sm  { padding: 50px 24px; }
.wmvc-section-white { background: #fff; }
.wmvc-section-grey  { background: var(--grey); }
.wmvc-section-navy  { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); }
.wmvc-section-dark  { background: var(--dark); }

.wmvc-yellow-bar { height: 4px; background: var(--yellow); }

/* Section titles */
.wmvc-section-title     { text-align: center; margin-bottom: 52px; }
.wmvc-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.wmvc-section-title .wmvc-label { color: var(--blue); }
.wmvc-section-navy .wmvc-label,
.wmvc-section-dark .wmvc-label  { color: var(--yellow); }

.wmvc-section-title h2 { font-size: clamp(1.65rem, 3vw, 2.2rem); margin-bottom: 14px; }
.wmvc-section-title p  { font-size: 1.02rem; max-width: 560px; margin: 0 auto; }
.wmvc-divider {
  width: 48px; height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 14px auto;
}
.wmvc-divider-left { margin-left: 0; }

/* ============================================================
   HERO
   ============================================================ */
.wmvc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--blue-dark);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.wmvc-hero-short { min-height: 100vh; }

.wmvc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.52);
  z-index: 1;
}

.wmvc-hero-content {
  position: relative; z-index: 2;
  padding: calc(var(--header-h) + 60px) 24px 80px;
  max-width: 820px; margin: 0 auto;
}

.wmvc-hero-label {
  display: block;
  color: var(--yellow);
  font-size: .7rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 14px;
}
.wmvc-hero h1 {
  color: #fff !important;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1; margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.wmvc-hero p {
  color: rgba(255,255,255,.88);
  font-size: 1.12rem; line-height: 1.68;
  margin-bottom: 36px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.wmvc-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.wmvc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px;
  font-family: 'Open Sans', sans-serif;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none !important;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.wmvc-btn-primary  { background: var(--yellow);     color: var(--dark) !important;  border-color: var(--yellow); }
.wmvc-btn-primary:hover { background: transparent; color: var(--yellow) !important; border-color: var(--yellow); }
.wmvc-btn-outline  { background: transparent;       color: #fff !important;          border-color: #fff; }
.wmvc-btn-outline:hover { background: #fff;          color: var(--blue-dark) !important; }
.wmvc-btn-blue     { background: var(--blue);        color: #fff !important;          border-color: var(--blue); }
.wmvc-btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff !important; }
.wmvc-btn-sm { padding: 9px 20px; font-size: .7rem; }

/* WordPress submit buttons */
input[type="submit"], button[type="submit"] {
  background: var(--blue) !important;
  color: #fff !important;
  border: none !important;
  padding: 12px 28px !important;
  border-radius: var(--radius) !important;
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: .75rem !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  cursor: pointer !important;
  transition: background .2s !important;
}
input[type="submit"]:hover, button[type="submit"]:hover {
  background: var(--blue-dark) !important;
}

/* ============================================================
   GRIDS & CARDS
   ============================================================ */
.wmvc-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 28px; }
.wmvc-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 28px; }
.wmvc-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 22px; }

.wmvc-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.wmvc-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(0,0,0,.13); }

.wmvc-card-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.15); font-size: 4rem;
}
.wmvc-card-thumb img { width: 100%; height: 100%; object-fit: cover; }

.wmvc-card-body     { padding: 24px; }
.wmvc-card-body h3  { font-size: 1.05rem; margin-bottom: 8px; }
.wmvc-card-body p   { font-size: .9rem; line-height: 1.65; margin-bottom: 16px; }
.wmvc-card-date     { font-size: .73rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 6px; }

/* Icon cards */
.wmvc-icon-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px 26px;
  text-align: center;
  transition: transform .25s;
}
.wmvc-icon-card:hover { transform: translateY(-5px); }
.wmvc-icon { width: 64px; height: 64px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.6rem; }
.wmvc-icon-card h3 { font-size: 1.1rem; margin-bottom: 9px; }
.wmvc-icon-card p  { font-size: .88rem; line-height: 1.65; margin-bottom: 20px; }

/* ── Full-bleed split (image bleeds edge-to-edge) ── */
.wmvc-section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.wmvc-section-split.wmvc-section-white { background: #fff; }
.wmvc-section-split.wmvc-section-grey  { background: var(--grey); }

.wmvc-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(28px, 6vw, 80px);
}
.wmvc-split-text h2 { font-size: clamp(1.5rem,2.5vw,2rem); margin-bottom: 14px; }
.wmvc-split-text p  { font-size: .96rem; line-height: 1.78; }

.wmvc-split-img {
  margin: 36px;
  border-radius: 12px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.14);
  overflow: hidden;
  aspect-ratio: 4/3;
  align-self: center;
}
.wmvc-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Two-col */
.wmvc-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.wmvc-two-col-reverse { direction: rtl; }
.wmvc-two-col-reverse > * { direction: ltr; }
.wmvc-two-col-text { display: flex; flex-direction: column; justify-content: center; }
.wmvc-two-col-text h2 { font-size: clamp(1.5rem,2.5vw,2rem); margin-bottom: 14px; }
.wmvc-two-col-text p  { font-size: .96rem; line-height: 1.78; }
.wmvc-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.12); font-size: 5rem;
}
.wmvc-two-col-img { min-height: 460px; }
.wmvc-two-col-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }

/* Stats */
.wmvc-stats  { background: var(--blue-dark); padding: 52px 24px; }
.wmvc-stats-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(130px,1fr)); gap: 24px; text-align: center; max-width: 860px; margin: 0 auto; }
.wmvc-stat-num   { font-size: 2.6rem; font-weight: 700; color: var(--yellow); display: block; line-height: 1; }
.wmvc-stat-label { color: rgba(255,255,255,.72); font-size: .73rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; display: block; }

/* CTA */
.wmvc-cta { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); padding: 72px 24px; text-align: center; }
.wmvc-cta h2 { color: #fff !important; font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 14px; }
.wmvc-cta p  { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============================================================
   OUR CHOIR PAGE
   ============================================================ */
.wmvc-leaders { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 26px; margin-bottom: 60px; }

.wmvc-leader {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  text-align: center; overflow: hidden; transition: transform .25s;
}
.wmvc-leader:hover { transform: translateY(-4px); }
.wmvc-leader-photo {
  height: 220px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem; color: rgba(255,255,255,.15); overflow: hidden;
}
.wmvc-leader-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.wmvc-leader-info    { padding: 20px; }
.wmvc-leader-info h3 { font-size: 1.02rem; margin-bottom: 4px; }
.wmvc-leader-info p  { font-size: .83rem; line-height: 1.6; color: var(--text-light); margin-top: 8px; }
.wmvc-leader-role {
  display: block; margin-top: 10px; padding-top: 10px;
  border-top: 2px solid var(--yellow);
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: var(--blue);
}

/* Voice sections */
.wmvc-voices { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 20px; }
.wmvc-voice  { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }

.wmvc-voice-head { padding: 16px 20px; display: flex; align-items: center; gap: 10px; }
.wmvc-voice.v-t1 .wmvc-voice-head { background: #0a3d6b; }
.wmvc-voice.v-t2 .wmvc-voice-head { background: var(--blue); }
.wmvc-voice.v-br .wmvc-voice-head { background: #1a5276; }
.wmvc-voice.v-bs .wmvc-voice-head { background: var(--dark); }

.wmvc-voice-head h3 { color: #fff !important; font-size: .88rem; text-transform: uppercase; letter-spacing: 1px; margin: 0; }
.wmvc-voice-badge   { margin-left: auto; background: rgba(255,255,255,.18); color: var(--yellow); font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }

.wmvc-voice-list li {
  padding: 9px 20px; font-size: .86rem; color: var(--text);
  border-bottom: 1px solid var(--grey-mid); transition: background .15s;
}
.wmvc-voice-list li:last-child { border-bottom: none; }
.wmvc-voice-list li:hover { background: var(--grey); }
.wmvc-voice-list li.rehearsal-only { color: #94a3b8; font-style: italic; }
.wmvc-voice-list li.rehearsal-only::after { content: ' *'; font-size: .74rem; }
.wmvc-choir-note { text-align: center; font-size: .78rem; color: #94a3b8; font-style: italic; margin-top: 16px; }

/* ============================================================
   HIRE US
   ============================================================ */
.wmvc-occasions { display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr)); gap: 20px; }
.wmvc-occasion {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 32px 20px; text-align: center;
  border-top: 3px solid var(--blue);
  transition: border-color .25s, transform .25s;
}
.wmvc-occasion:hover { border-top-color: var(--yellow); transform: translateY(-3px); }
.wmvc-occ-icon { font-size: 2.3rem; display: block; margin-bottom: 12px; }
.wmvc-occasion h3 { font-size: .98rem; margin-bottom: 7px; }
.wmvc-occasion p  { font-size: .83rem; color: var(--text-light); line-height: 1.6; }

.wmvc-process { list-style: none; counter-reset: proc; }
.wmvc-process li {
  counter-increment: proc;
  padding: 16px 16px 16px 64px;
  position: relative;
  border-bottom: 1px solid var(--grey-mid);
  color: var(--text-light); font-size: .94rem; line-height: 1.65;
}
.wmvc-process li::before {
  content: counter(proc);
  position: absolute; left: 14px; top: 15px;
  width: 32px; height: 32px;
  background: var(--blue); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem;
}
.wmvc-process li:last-child { border-bottom: none; }
.wmvc-process li strong { color: var(--blue-dark); }

/* ============================================================
   JOIN US — BENEFITS + REHEARSAL
   ============================================================ */
.wmvc-benefits li {
  padding: 13px 13px 13px 48px; position: relative;
  border-bottom: 1px solid var(--grey-mid);
  color: var(--text-light); font-size: .94rem; line-height: 1.65;
}
.wmvc-benefits li:last-child { border-bottom: none; }
.wmvc-benefits li::before {
  content: '✓'; position: absolute; left: 8px; top: 13px;
  width: 26px; height: 26px;
  background: var(--blue); color: var(--yellow);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .72rem;
}

.wmvc-rehearsal-box {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius); padding: 36px; color: #fff;
}
.wmvc-rehearsal-box h3 { color: var(--yellow) !important; font-size: 1.2rem; margin-bottom: 20px; }
.wmvc-detail-row { display: flex; gap: 14px; margin-bottom: 14px; align-items: flex-start; }
.wmvc-detail-label { color: rgba(255,255,255,.55); font-size: .73rem; text-transform: uppercase; letter-spacing: .5px; min-width: 90px; padding-top: 2px; font-weight: 600; }
.wmvc-detail-value { color: rgba(255,255,255,.9); font-size: .9rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.wmvc-contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 44px; align-items: start; }
.wmvc-contact-info  { background: var(--blue-dark); border-radius: var(--radius); padding: 36px; color: #fff; }
.wmvc-contact-info h3 { color: var(--yellow) !important; margin-bottom: 22px; font-size: 1.15rem; }
.wmvc-contact-row  { display: flex; gap: 13px; margin-bottom: 16px; align-items: flex-start; }
.wmvc-contact-icon { color: var(--yellow); font-size: 1.05rem; min-width: 20px; margin-top: 2px; }
.wmvc-contact-text { color: rgba(255,255,255,.82); font-size: .86rem; line-height: 1.6; }
.wmvc-contact-text a { color: var(--yellow) !important; }
.wmvc-social-row { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.wmvc-social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff !important; text-decoration: none !important;
  transition: background .2s;
}
.wmvc-social-btn:hover { background: var(--yellow); color: var(--dark) !important; }

.wmvc-form-box { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 38px; }
.wmvc-form-box h3 { font-size: 1.35rem; margin-bottom: 8px; }
.wmvc-form-box > p { color: var(--text-light); margin-bottom: 24px; font-size: .9rem; }

/* WPForms / CF7 inside form box */
.wmvc-form-box .wpcf7-form label,
.wmvc-form-box .wpforms-field-label { font-size: .85rem; font-weight: 600; color: var(--blue-dark); }
.wmvc-form-box .wpcf7-form input[type="text"],
.wmvc-form-box .wpcf7-form input[type="email"],
.wmvc-form-box .wpcf7-form input[type="tel"],
.wmvc-form-box .wpcf7-form textarea,
.wmvc-form-box .wpforms-field input,
.wmvc-form-box .wpforms-field textarea,
.wmvc-form-box .wpforms-field select {
  border: 1.5px solid var(--grey-mid) !important;
  border-radius: var(--radius) !important;
  padding: 10px 14px !important;
  font-family: 'Open Sans', sans-serif !important;
  font-size: .9rem !important;
  width: 100% !important;
  transition: border-color .2s !important;
}
.wmvc-form-box .wpcf7-form input:focus,
.wmvc-form-box .wpcf7-form textarea:focus,
.wmvc-form-box .wpforms-field input:focus,
.wmvc-form-box .wpforms-field textarea:focus {
  outline: none !important;
  border-color: var(--blue) !important;
}

/* ============================================================
   ABOUT — TIMELINE
   ============================================================ */
.wmvc-timeline { position: relative; padding-left: 32px; }
.wmvc-timeline::before { content: ''; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: var(--grey-mid); }
.wmvc-tl-item  { position: relative; margin-bottom: 32px; }
.wmvc-tl-item::before { content: ''; position: absolute; left: -28px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--yellow); border: 2px solid var(--blue); }
.wmvc-tl-year  { font-size: .72rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .5px; }
.wmvc-tl-item h4 { font-size: .98rem; margin: 4px 0; }
.wmvc-tl-item p  { font-size: .86rem; line-height: 1.65; }

/* ============================================================
   BLOG / ARCHIVE / SINGLE POST
   ============================================================ */
.wmvc-posts-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 28px; }

.wmvc-post-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; transition: transform .25s;
}
.wmvc-post-card:hover { transform: translateY(-4px); }
.wmvc-post-thumb { height: 200px; overflow: hidden; background: var(--blue); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.15); font-size: 3rem; }
.wmvc-post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.wmvc-post-card:hover .wmvc-post-thumb img { transform: scale(1.04); }
.wmvc-post-body  { padding: 22px; }
.wmvc-post-meta  { font-size: .73rem; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 7px; }
.wmvc-post-body h2 { font-size: 1.08rem; margin-bottom: 9px; line-height: 1.3; }
.wmvc-post-body h2 a { color: var(--blue-dark); }
.wmvc-post-body h2 a:hover { color: var(--blue); }
.wmvc-post-body p { font-size: .88rem; line-height: 1.65; margin-bottom: 14px; }

/* Single post */
.wmvc-single-header { background: var(--blue-dark); padding: 60px 24px; text-align: center; }
.wmvc-single-header h1 { color: #fff !important; font-size: clamp(1.6rem,3vw,2.4rem); max-width: 760px; margin: 0 auto 14px; }
.wmvc-single-meta { color: rgba(255,255,255,.65); font-size: .78rem; text-transform: uppercase; letter-spacing: .5px; }
.wmvc-single-meta a { color: var(--yellow) !important; }

.wmvc-single-content { max-width: 760px; margin: 0 auto; padding: 60px 24px; }

/* Pagination */
.wmvc-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.wmvc-pagination a,
.wmvc-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius); font-size: .85rem; font-weight: 600;
  color: var(--blue); border: 1.5px solid var(--grey-mid);
  text-decoration: none; transition: background .2s, color .2s;
}
.wmvc-pagination a:hover,
.wmvc-pagination .current { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ============================================================
   THE EVENTS CALENDAR
   ============================================================ */
#tribe-events, .tribe-events-pg-template { font-family: 'Open Sans', sans-serif !important; }

.tribe-events-calendar td div[id*="tribe-events-daynum-"],
.tribe-events-calendar .tribe-events-calendar-month__header-cell,
.tribe-button-primary, .tribe-events-c-nav__next, .tribe-events-c-nav__prev { background-color: var(--blue) !important; }
.tribe-events-calendar td div[id*="tribe-events-daynum-"] a { color: #fff !important; }
#tribe-events .tribe-events-button, .tribe-events-button { background: var(--blue) !important; border-color: var(--blue) !important; }
.tribe-event-url, a.tribe-event-url { color: var(--blue) !important; }

/* Previous / Next Events navigation — force readable white text */
.tribe-events-nav-pagination a,
.tribe-events-nav-pagination a:visited,
.tribe-events-past a, .tribe-events-past a:visited,
.tribe-events-nav-previous a, .tribe-events-nav-previous a:visited,
.tribe-events-nav-next a, .tribe-events-nav-next a:visited,
.tribe-events-c-nav__prev-link, .tribe-events-c-nav__next-link,
.tribe-events-c-nav__prev, .tribe-events-c-nav__next {
  color: #fff !important;
  background-color: var(--blue-dark) !important;
  border-color: var(--blue-dark) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}
.tribe-events-nav-pagination a:hover,
.tribe-events-nav-previous a:hover,
.tribe-events-nav-next a:hover,
.tribe-events-c-nav__prev-link:hover,
.tribe-events-c-nav__next-link:hover {
  background-color: var(--blue) !important;
  border-color: var(--blue) !important;
  color: #fff !important;
}

/* Subscribe to calendar button */
.tribe-events-widget-events-list__subscribe-action a,
.tribe-events-ical a,
#tribe-events .tribe-events-ical,
.tribe-events-c-subscribe-dropdown__button,
.tribe-events-c-subscribe-dropdown__button-text {
  background: transparent !important;
  border: 2px solid var(--blue) !important;
  color: var(--blue) !important;
  font-weight: 600 !important;
  border-radius: var(--radius) !important;
  padding: 8px 18px !important;
}
.tribe-events-c-subscribe-dropdown__button:hover {
  background: var(--blue) !important;
  color: #fff !important;
}

/* ============================================================
   FOOTER — Bach Choir inspired 3-col layout
   ============================================================ */
.wmvc-footer { background: var(--dark); color: rgba(255,255,255,.72); }

.wmvc-footer-main { padding: 64px 0 52px; }

.wmvc-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 52px;
  align-items: start;
}

/* All footer columns */
.wmvc-footer-col h4 {
  color: var(--yellow);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.wmvc-footer-col p { font-size: .84rem; line-height: 1.72; color: rgba(255,255,255,.55); }
.wmvc-footer-col a { color: rgba(255,255,255,.6); transition: color .2s; text-decoration: none; }
.wmvc-footer-col a:hover { color: var(--yellow); }

/* Col 1 — Logo + info */
.wmvc-footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.wmvc-footer-logo img {
  height: 58px;
  width: 58px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,.4));
}
.wmvc-footer-logo span {
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.35;
}
.wmvc-footer-contact-details { margin: 12px 0; }
.wmvc-footer-contact-details p { margin-bottom: 4px; }
.wmvc-footer-rehearsal { margin-top: 12px; font-size: .8rem; color: rgba(255,255,255,.45); }
.wmvc-footer-rehearsal strong { color: rgba(255,255,255,.65); font-weight: 600; }
.wmvc-footer-hire-link {
  color: var(--yellow) !important;
  font-size: .82rem;
  font-weight: 600;
}

/* Col 2 — Social icons (large grid) */
.wmvc-footer-col-social { text-align: left; }
.wmvc-footer-col-social h4 { text-align: left; }

.wmvc-footer-socials {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.wmvc-footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  color: rgba(255,255,255,.85) !important;
  text-decoration: none !important;
  transition: background .2s, color .2s, transform .2s;
}
.wmvc-footer-social-btn:hover {
  background: var(--yellow);
  color: var(--dark) !important;
  transform: translateY(-3px);
}
.wmvc-footer-social-btn svg { flex-shrink: 0; }
.wmvc-footer-social-btn span { display: none; } /* icons only — text in aria-label */

/* Col 3 — Newsletter */
.wmvc-newsletter-form { margin-top: 16px; }
.wmvc-newsletter-row {
  display: flex;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.wmvc-newsletter-row input[type="email"] {
  flex: 1;
  padding: 12px 14px;
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-size: .85rem;
  outline: none;
  background: rgba(255,255,255,.10);
  color: #fff;
  min-width: 0;
}
.wmvc-newsletter-row input[type="email"]::placeholder { color: rgba(255,255,255,.4); }
.wmvc-newsletter-row input[type="email"]:focus { background: rgba(255,255,255,.15); }
.wmvc-newsletter-row button {
  padding: 12px 18px;
  background: var(--yellow);
  border: none;
  color: var(--dark);
  font-family: 'Open Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.wmvc-newsletter-row button:hover { background: #d4b020; }
.wmvc-newsletter-note {
  font-size: .74rem !important;
  color: rgba(255,255,255,.35) !important;
  margin-top: 10px !important;
}

/* Bottom bar */
.wmvc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
}
.wmvc-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.wmvc-footer-bottom-left span,
.wmvc-footer-bottom-left a {
  font-size: .74rem;
  color: rgba(255,255,255,.32);
}
.wmvc-footer-bottom-right {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.wmvc-footer-bottom-right a {
  font-size: .74rem;
  color: rgba(255,255,255,.32);
  transition: color .2s;
}
.wmvc-footer-bottom-right a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   FEATURE CARDS (homepage — 2-col Bach Choir style)
   Card 1 (Concerts) = right column, full height
   Cards 2+3 (Hire, Join) = left column, stacked
   ============================================================ */
.wmvc-feature-cards {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
  padding: 60px 5%;
  background: #f0f0ee;
}
.wmvc-feature-card:nth-child(1) { grid-column: 2; grid-row: 1 / span 2; }
.wmvc-feature-card:nth-child(2) { grid-column: 1; grid-row: 1; }
.wmvc-feature-card:nth-child(3) { grid-column: 1; grid-row: 2; }
.wmvc-feature-card {
  position: relative;
  overflow: hidden;
  background: var(--blue-dark);
  border-radius: 6px;
}
.wmvc-feature-card-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.wmvc-feature-card:hover .wmvc-feature-card-bg { transform: scale(1.05); }
.wmvc-feature-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,22,25,.85) 0%, rgba(0,22,25,.4) 55%, transparent 100%);
  display: flex; align-items: flex-end;
  transition: background .35s;
}
.wmvc-feature-card:hover .wmvc-feature-card-overlay {
  background: linear-gradient(to top, rgba(8,74,126,.92) 0%, rgba(8,74,126,.55) 60%, rgba(8,74,126,.2) 100%);
}
.wmvc-feature-card-content { padding: 36px 32px; }
.wmvc-feature-card-content .wmvc-label { color: var(--yellow); margin-bottom: 8px; }
.wmvc-feature-card-content h3 { color: #fff !important; font-size: 1.45rem; margin-bottom: 10px; line-height: 1.2; }
.wmvc-feature-card-content p { color: rgba(255,255,255,.8); font-size: .88rem; margin-bottom: 22px; }

/* ============================================================
   EVENTS LIST (homepage — compact horizontal rows)
   ============================================================ */
.wmvc-events-list { display: flex; flex-direction: column; gap: 0; }

.wmvc-event-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--grey-mid);
  text-decoration: none !important;
  transition: background .2s;
}
.wmvc-event-row:first-child { border-top: 1px solid var(--grey-mid); }
.wmvc-event-row:hover { background: var(--grey); margin: 0 -20px; padding-left: 20px; padding-right: 20px; }

.wmvc-er-date {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  background: var(--blue-dark);
  border-radius: var(--radius);
  padding: 10px 6px;
}
.wmvc-er-day  { display: block; font-size: 1.6rem; font-weight: 700; line-height: 1; color: var(--yellow); }
.wmvc-er-mon  { display: block; font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: rgba(255,255,255,.65); margin-top: 4px; }

.wmvc-er-info { flex: 1; min-width: 0; }
.wmvc-er-info h3 { font-size: 1.02rem; font-weight: 700; color: var(--blue-dark); margin: 0 0 5px; line-height: 1.3; }
.wmvc-er-meta { font-size: .82rem; color: var(--text-light); margin: 0; }

.wmvc-er-arrow { flex-shrink: 0; font-size: 1.1rem; color: var(--blue); font-weight: 700; transition: transform .2s; }
.wmvc-event-row:hover .wmvc-er-arrow { transform: translateX(4px); }

/* ============================================================
   MEMBER GRID (Our Choir)
   ============================================================ */
.wmvc-member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 16px;
  padding: 20px;
}
.wmvc-member-card { text-align: center; }
.wmvc-member-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 10px;
  overflow: hidden;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255,255,255,.12);
  transition: border-color .2s;
}
.wmvc-member-card:hover .wmvc-member-avatar { border-color: var(--yellow); }
.wmvc-member-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.wmvc-member-initials { color: #fff; font-weight: 700; font-size: 1.15rem; letter-spacing: .5px; line-height: 1; }
.wmvc-member-name { font-size: .75rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.wmvc-member-card.wmvc-member-rehearsal .wmvc-member-avatar { background: #7a8fa8; }
.wmvc-member-card.wmvc-member-rehearsal .wmvc-member-name { color: var(--text-light); font-style: italic; }

/* Voice section colour accents for member grids */
.wmvc-voice.v-t1 .wmvc-member-avatar { background: #0a3d6b; }
.wmvc-voice.v-t2 .wmvc-member-avatar { background: var(--blue); }
.wmvc-voice.v-br .wmvc-member-avatar { background: #1a5276; }
.wmvc-voice.v-bs .wmvc-member-avatar { background: var(--dark); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.wmvc-gallery-content .wp-block-gallery,
.wmvc-gallery-content figure.wp-block-image { margin-bottom: 28px; }

.wmvc-gallery-content .wp-block-gallery img {
  border-radius: var(--radius);
  transition: transform .3s, box-shadow .3s;
}
.wmvc-gallery-content .wp-block-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}

.wmvc-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 12px;
}
.wmvc-video-item h4 { font-size: .95rem; margin-top: 10px; color: var(--blue-dark); }

.wmvc-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-dark);
}
.wmvc-video-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.wmvc-video-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 24px;
  color: rgba(255,255,255,.5);
  font-size: .82rem;
  line-height: 1.6;
}

/* ============================================================
   FAQ (Join Us page — open Q&A format)
   ============================================================ */
.wmvc-faq { max-width: 760px; margin: 0 auto; }
.wmvc-faq-item { border-top: 1px solid var(--grey-mid); padding: 28px 0; }
.wmvc-faq-item:last-child { border-bottom: 1px solid var(--grey-mid); }
.wmvc-faq-q {
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin: 0 0 12px;
  line-height: 1.4;
}
.wmvc-faq-q::before { content: 'Q: '; color: var(--yellow-dark, #b8940e); }
.wmvc-faq-a {
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
  font-size: .95rem;
}

/* ============================================================
   LEGAL PAGES (Terms, Cookie Policy, Privacy Policy)
   ============================================================ */
.wmvc-legal-content h2 { font-size: 1.25rem; color: var(--blue-dark); margin: 32px 0 12px; }
.wmvc-legal-content h3 { font-size: 1rem; color: var(--blue-dark); margin: 24px 0 8px; }
.wmvc-legal-content p, .wmvc-legal-content li { font-size: .95rem; line-height: 1.8; color: var(--text-light); }
.wmvc-legal-content ul, .wmvc-legal-content ol { padding-left: 24px; margin-bottom: 16px; }
.wmvc-legal-content a { color: var(--blue); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  /* feature cards stay 2-col at 1100px — already the target layout */
  .wmvc-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .wmvc-footer-col-newsletter { grid-column: span 2; }
}

@media (max-width: 860px) {
  .wmvc-section-split { grid-template-columns: 1fr; }
  .wmvc-split-text { padding: 52px 24px; order: 2; }
  .wmvc-split-img  { margin: 20px 20px 0; order: 1; }
  .wmvc-two-col,
  .wmvc-contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .wmvc-two-col-reverse { direction: ltr; }
  .wmvc-hero { min-height: 400px; }
  .wmvc-nav {
    display: none; flex-direction: column; align-items: stretch;
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--blue-dark); padding: 12px 0 20px;
    border-bottom: 3px solid var(--yellow);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .wmvc-nav.open { display: flex; }
  .wmvc-nav li   { width: 100%; }
  .wmvc-nav a    { display: block; padding: 12px 24px; border-radius: 0; }
  .wmvc-nav .sub-menu { position: static; border-top: none; box-shadow: none; padding-left: 16px; display: block; }
  .wmvc-nav-toggle { display: flex; }
  .wmvc-header-book,
  .wmvc-header-cta { display: none; }

  /* Always solid header on mobile so it sits cleanly above content */
  .wmvc-header { background: rgba(0,0,28,0.95); }

  /* Push all page content below the fixed header */
  #main-content { padding-top: var(--header-h); }

  /* Hero sections: remove the header-height top padding from content
     (main already handles the offset) and shrink the logo */
  .wmvc-hero-content { padding-top: 48px; }
  .wmvc-logo-full { height: 36px; }

  /* Slightly smaller name text on mobile */
  .wmvc-logo-name { font-size: .68rem; max-width: 120px; }
}

@media (max-width: 640px) {
  .wmvc-section    { padding: 52px 16px; }
  .wmvc-section-sm { padding: 36px 16px; }
  .wmvc-hero       { min-height: 320px; }
  .wmvc-hero-btns  { flex-direction: column; align-items: center; }
  .wmvc-grid-3, .wmvc-grid-2, .wmvc-voices { grid-template-columns: 1fr; }
  .wmvc-feature-cards { grid-template-columns: 1fr; grid-template-rows: repeat(3, 300px); padding: 40px 16px; gap: 12px; }
  .wmvc-feature-card:nth-child(1) { grid-column: 1; grid-row: 1; }
  .wmvc-feature-card:nth-child(2) { grid-column: 1; grid-row: 2; }
  .wmvc-feature-card:nth-child(3) { grid-column: 1; grid-row: 3; }
  .wmvc-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .wmvc-footer-col-newsletter { grid-column: span 1; }
  .wmvc-footer-col-social { text-align: left; }
  .wmvc-footer-col-social h4 { text-align: left; }
  .wmvc-footer-socials { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; }
  .wmvc-footer-social-btn { width: 52px; height: 52px; flex: none; }
  .wmvc-form-box, .wmvc-rehearsal-box { padding: 24px 16px; }
  .wmvc-footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .wmvc-footer-bottom-right { gap: 12px; }
  .wmvc-newsletter-row { flex-direction: column; border-radius: var(--radius); }
  .wmvc-newsletter-row input[type="email"] { border-radius: var(--radius) var(--radius) 0 0; }
  .wmvc-newsletter-row button { border-radius: 0 0 var(--radius) var(--radius); }
  .wmvc-member-grid { grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 12px; }
}
