/**
Theme Name: Virtue Web Solutions
Author: Virtue Web Solutions Ltd.
Author URI: https://virtuewebsolutions.co.uk
Description: Bespoke website theme by Virtue Web Solutions.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: virtue
Template: astra
*/

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ── CSS Variables ── */
:root {
  --al-sky:       #5bc3d6;
  --al-teal:      #1e8a91;
  --al-stone:     #6e919e;
  --al-dark:      #08121a;
  --al-dark2:     #0d1f28;
  --al-dark3:     #0a1820;
  --al-text:      #ddf0f5;
  --al-muted:     rgba(110,145,158,0.75);
  --al-accent:    rgba(91,195,214,0.85);
  --al-border:    rgba(91,195,214,0.1);
  --al-serif:     'Cormorant Garamond', Georgia, serif;
  --al-sans:      'DM Sans', system-ui, sans-serif;
  --al-radius:    3px;
  --al-transition: 0.25s ease;
}

/* ── Reset & Base ── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--al-sans);
  background: var(--al-dark);
  color: var(--al-text);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* Override Astra defaults */
#page { background: var(--al-dark); }

.grecaptcha-badge { 
    visibility: hidden !important;
}

.container {
    max-width: 1240px !important;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--al-serif);
  font-weight: 300;
  color: var(--al-text);
}
p { font-family: var(--al-sans); font-weight: 300; }

.gap-3 {
    gap: 12px;
}

.al-serif        { font-family: var(--al-serif); }
.al-italic       { font-style: italic; }
.al-sky          { color: var(--al-sky); }
.al-stone        { color: var(--al-stone); }
.al-muted        { color: var(--al-muted); }

.al-eyebrow {
  font-family: var(--al-sans);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--al-sky);
  margin-bottom: 10px;
  display: block;
}

.al-section-heading {
  font-family: var(--al-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 8px;
}
.al-section-heading em { font-style: italic; color: var(--al-sky); }

.al-section-sub {
  font-size: 11px;
  color: var(--al-muted);
  letter-spacing: 0.07em;
}

/* ── Buttons ── */
.al-btn-primary {
  display: inline-block;
  background: var(--al-teal);
  color: rgba(220,248,252,0.97) !important;
  font-family: var(--al-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--al-radius);
  border: none;
  text-decoration: none !important;
  transition: background var(--al-transition), color var(--al-transition);
  cursor: pointer;
}
.al-btn-primary:hover {
  background: var(--al-sky);
  color: var(--al-dark) !important;
}

.al-btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--al-accent) !important;
  font-family: var(--al-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--al-radius);
  border: 0.5px solid rgba(91,195,214,0.4);
  text-decoration: none !important;
  transition: all var(--al-transition);
  cursor: pointer;
}
.al-btn-ghost:hover {
  background: rgba(91,195,214,0.08);
  border-color: var(--al-sky);
  color: var(--al-text) !important;
}

.al-text-link {
  color: var(--al-sky);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 0.5px solid rgba(91,195,214,0.35);
  padding-bottom: 2px;
  transition: color var(--al-transition), border-color var(--al-transition);
}
.al-text-link:hover {
  color: var(--al-text);
  border-color: var(--al-text);
}

/* ── Divider ── */
.al-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--al-sky), transparent);
  margin-bottom: 20px;
}

/* ── Section Wrappers ── */
.al-section        { padding: 90px 0; }
.al-section-sm     { padding: 60px 0; }
.al-section-dark   { background: var(--al-dark); }
.al-section-dark2  { background: var(--al-dark2); }
.al-section-dark3  { background: var(--al-dark3); }
.al-section-border { border-top: 0.5px solid var(--al-border); border-bottom: 0.5px solid var(--al-border); }
.al-container      { max-width: 1140px; margin: 0 auto; padding: 0 48px; }

/* ── Page Hero (inner pages) ── */
.al-page-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.al-page-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.al-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,18,26,0.92) 0%, rgba(8,18,26,0.45) 60%, rgba(8,18,26,0.2) 100%);
}
.al-page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 52px;
}
.al-page-hero-content h1 {
  font-family: var(--al-serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 8px;
}
.al-page-hero-content h1 em { font-style: italic; color: var(--al-sky); }
.al-page-hero-content p {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--al-stone);
  margin: 0;
}

/* ── Scroll Reveal ── */
.al-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.al-reveal.is-visible { opacity: 1; transform: none; }
.al-reveal-d1 { transition-delay: 0.1s; }
.al-reveal-d2 { transition-delay: 0.2s; }
.al-reveal-d3 { transition-delay: 0.3s; }
.al-reveal-d4 { transition-delay: 0.4s; }
.al-reveal-d5 { transition-delay: 0.5s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#al-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, padding 0.3s ease, backdrop-filter 0.4s ease;
}
#al-nav.scrolled {
  background: rgba(8,18,26,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 48px;
  border-bottom: 0.5px solid var(--al-border);
}
.al-nav-logo {
  font-family: var(--al-serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--al-text) !important;
  text-decoration: none !important;
  letter-spacing: 0.04em;
}
.al-nav-logo em { font-style: italic; color: var(--al-sky); }
.al-nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0; padding: 0;
}
.al-nav-links a {
  font-family: var(--al-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--al-stone) !important;
  text-decoration: none !important;
  transition: color var(--al-transition);
}
.al-nav-links a:hover,
.al-nav-links a.active { color: var(--al-sky) !important; }

/* Mobile nav toggle */
.al-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none; border: none;
}
.al-nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--al-stone);
  transition: all 0.3s ease;
}
.al-nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4.5px); }
.al-nav-toggle.open span:nth-child(2) { opacity: 0; }
.al-nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4.5px); }

/* Mobile nav drawer */
.al-nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,18,26,0.98);
  z-index: 998;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.al-nav-mobile.open { display: flex; }
.al-nav-mobile a {
  font-family: var(--al-serif);
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: var(--al-text) !important;
  text-decoration: none !important;
  letter-spacing: 0.04em;
  transition: color var(--al-transition);
}
.al-nav-mobile a:hover { color: var(--al-sky) !important; }

/* ============================================================
   HERO — HOME
   ============================================================ */
#al-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.al-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  animation: alHeroZoom 9s ease forwards;
}
@keyframes alHeroZoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1.0); }
}
.al-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(8,18,26,0.93) 0%,
    rgba(8,18,26,0.65) 45%,
    rgba(8,18,26,0.15) 100%);
}
.al-hero-overlay-bottom {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,18,26,0.65) 0%, transparent 55%);
}
.al-hero-glow {
  position: absolute;
  left: -80px; top: 25%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,138,145,0.16) 0%, transparent 65%);
  border-radius: 50%;
  animation: alGlowPulse 5s ease-in-out infinite;
  pointer-events: none;
}
.al-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 80px;
  max-width: 640px;
}
.al-hero-pre {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--al-sky);
  margin-bottom: 14px;
  opacity: 0;
  animation: alSlideUp 0.7s ease forwards 0.9s;
}
.al-hero-name {
  font-family: var(--al-serif);
  font-size: clamp(60px, 9vw, 96px);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  opacity: 0;
  animation: alSlideUp 0.9s ease forwards 1.1s;
}
.al-hero-name em { display: block; font-style: italic; color: var(--al-sky); }
.al-hero-descriptor {
  font-family: var(--al-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--al-stone);
  margin-bottom: 20px;
  opacity: 0;
  animation: alSlideUp 0.7s ease forwards 1.35s;
}
.al-hero-divider {
  width: 0; height: 1px;
  background: linear-gradient(to right, var(--al-sky), transparent);
  margin-bottom: 20px;
  animation: alExpandLine 0.9s ease forwards 1.5s;
}
.al-hero-tagline {
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: rgba(200,230,238,0.65);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 420px;
  opacity: 0;
  animation: alSlideUp 0.7s ease forwards 1.65s;
}
.al-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  opacity: 0;
  animation: alSlideUp 0.7s ease forwards 1.85s;
}
.al-hero-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0;
  animation: alSlideUp 0.6s ease forwards 2.05s;
}
.al-soc-pill {
  padding: 5px 14px;
  border-radius: 12px;
  border: 0.5px solid rgba(91,195,214,0.22);
  background: rgba(30,90,110,0.22);
  color: rgba(91,195,214,0.65) !important;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all var(--al-transition);
}
.al-soc-pill:hover {
  border-color: var(--al-sky);
  color: var(--al-sky) !important;
  background: rgba(91,195,214,0.1);
}
.al-hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: alFadeIn 1s ease forwards 2.3s;
}
.al-hero-scroll span {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(91,170,185,0.38);
}
.al-hero-scroll-line {
  width: 1px; height: 30px;
  background: linear-gradient(to bottom, rgba(91,195,214,0.5), transparent);
  animation: alScrollBounce 2s ease-in-out infinite 2.6s;
}
.al-hero-reveil {
  position: absolute; inset: 0;
  background: var(--al-dark);
  z-index: 50;
  animation: alReveil 1s ease forwards 0.2s;
  pointer-events: none;
}

/* ============================================================
   FEATURE SECTION (Home)
   ============================================================ */
.al-feature-img-wrap { position: relative; }
.al-feature-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--al-radius);
  display: block;
}
.al-feature-img-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--al-teal), var(--al-sky), transparent);
  border-radius: 0 0 var(--al-radius) var(--al-radius);
}
.al-feature-img-corner {
  position: absolute;
  top: -10px; right: -10px;
  width: 50px; height: 50px;
  border-top: 0.5px solid rgba(91,195,214,0.3);
  border-right: 0.5px solid rgba(91,195,214,0.3);
}
.al-feature-tag {
  display: inline-block;
  background: rgba(30,138,145,0.2);
  border: 0.5px solid rgba(91,195,214,0.35);
  border-radius: var(--al-radius);
  color: var(--al-sky);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.al-feature-title {
  font-family: var(--al-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--al-text);
}
.al-feature-body {
  font-size: 14px;
  font-weight: 300;
  color: rgba(170,210,220,0.72);
  line-height: 1.85;
  margin-bottom: 26px;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.al-events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}
.al-event-list { display: flex; flex-direction: column; }
.al-event-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 0.5px solid rgba(91,195,214,0.1);
  transition: background var(--al-transition), padding-left 0.3s ease;
}
.al-event-row:first-child { border-top: 0.5px solid rgba(91,195,214,0.1); }
.al-event-row:hover { background: rgba(91,195,214,0.025); padding-left: 8px; }
.al-event-date {
  text-align: center;
  background: rgba(30,138,145,0.14);
  border: 0.5px solid rgba(91,195,214,0.2);
  border-radius: 4px;
  padding: 8px 6px;
}
.al-event-month {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--al-sky);
  display: block;
}
.al-event-day {
  font-family: var(--al-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--al-text);
  line-height: 1;
  display: block;
}
.al-event-venue {
  font-size: 13px;
  font-weight: 400;
  color: rgba(220,240,248,0.88);
  margin-bottom: 4px;
}
.al-event-location {
  font-size: 10px;
  color: var(--al-muted);
  letter-spacing: 0.06em;
}
.al-event-badge {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 8px;
  margin-left: 8px;
  vertical-align: middle;
}
.al-badge-new {
  background: rgba(30,138,145,0.22);
  border: 0.5px solid rgba(91,195,214,0.4);
  color: var(--al-sky);
}
.al-badge-sold {
  background: rgba(110,145,158,0.1);
  border: 0.5px solid rgba(110,145,158,0.2);
  color: rgba(110,145,158,0.5);
}
.al-event-ticket {
  display: inline-block;
  font-family: var(--al-sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--al-radius);
  border: 0.5px solid rgba(91,195,214,0.35);
  color: rgba(91,195,214,0.8) !important;
  background: transparent;
  text-decoration: none !important;
  transition: all var(--al-transition);
  white-space: nowrap;
}
.al-event-ticket:hover {
  background: rgba(91,195,214,0.08);
  border-color: var(--al-sky);
}
.al-event-ticket.sold {
  border-color: rgba(110,145,158,0.2);
  color: rgba(110,145,158,0.4) !important;
  pointer-events: none;
}

/* ============================================================
   SINGLES / MUSIC GRID
   ============================================================ */
.al-singles-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.al-single-card { cursor: pointer; }
.al-single-art {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--al-radius);
  overflow: hidden;
  border: 0.5px solid rgba(91,195,214,0.1);
}
.al-single-art-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--al-dark2), #1a4555);
  display: flex;
  align-items: center;
  justify-content: center;
}
.al-single-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.al-single-card:hover .al-single-art img { transform: scale(1.05); }
.al-single-play {
  position: absolute;
  bottom: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(30,138,160,0.85);
  border: 0.5px solid rgba(91,210,225,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.al-single-card:hover .al-single-play { transform: scale(1.12); background: var(--al-sky); }
.al-play-tri {
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid rgba(220,248,252,0.95);
  margin-left: 3px;
}
.al-single-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--al-teal), var(--al-sky));
}
.al-single-name {
  font-family: var(--al-serif);
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  color: rgba(210,238,246,0.9);
  margin-top: 10px;
  margin-bottom: 3px;
}
.al-single-meta {
  font-size: 9px;
  color: var(--al-muted);
  letter-spacing: 0.1em;
}
.al-singles-footer { margin-top: 36px; text-align: center; }

/* ============================================================
   FULL IMAGE SECTION
   ============================================================ */

.full-image-section {
    height: 100vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

/* ============================================================
   ABOUT SECTION (Home)
   ============================================================ */
.al-about-img-wrap { position: relative; }
.al-about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--al-radius);
  display: block;
}
.al-about-accent {
  position: absolute;
  bottom: -12px; right: -12px;
  width: 55%; height: 55%;
  border-bottom: 0.5px solid rgba(30,138,145,0.4);
  border-right: 0.5px solid rgba(30,138,145,0.4);
  border-radius: 0 0 var(--al-radius) 0;
  pointer-events: none;
}
.al-about-accent2 {
  position: absolute;
  top: -12px; left: -12px;
  width: 40%; height: 40%;
  border-top: 0.5px solid rgba(91,195,214,0.2);
  border-left: 0.5px solid rgba(91,195,214,0.2);
  pointer-events: none;
}
.al-about-body,
.al-about-body p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(170,210,220,0.72);
  line-height: 1.88;
  margin-bottom: 24px;
}
.al-about-body strong { color: rgba(220,240,248,0.9); font-weight: 400; }
.al-stats-row {
  display: flex;
  gap: 36px;
  padding: 22px 0;
  border-top: 0.5px solid rgba(91,195,214,0.1);
  border-bottom: 0.5px solid rgba(91,195,214,0.1);
  margin-bottom: 28px;
}
.al-stat-num {
  font-family: var(--al-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--al-sky);
  line-height: 1;
  display: block;
}
.al-stat-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--al-muted);
  margin-top: 5px;
  display: block;
}

/* ============================================================
   INSTAGRAM GRID
   ============================================================ */
.al-instagram { padding: 90px 0; }
.al-ig-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}
.al-ig-handle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(91,195,214,0.65) !important;
  text-decoration: none !important;
  transition: color var(--al-transition);
}
.al-ig-handle:hover { color: var(--al-sky) !important; }
.al-ig-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--al-sky);
  animation: alGlowPulse 2s ease-in-out infinite;
}
.al-ig-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 3px;
}
.al-ig-cell {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.al-ig-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.al-ig-cell:hover img { transform: scale(1.06); }
.al-ig-overlay {
  position: absolute; inset: 0;
  background: rgba(8,18,26,0);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.al-ig-cell:hover .al-ig-overlay { background: rgba(8,18,26,0.42); }
.al-ig-icon {
  color: rgba(255,255,255,0.9);
  font-size: 22px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.al-ig-cell:hover .al-ig-icon { opacity: 1; }

/* ============================================================
   MUSIC PAGE
   ============================================================ */
.al-music-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.al-filter-btn {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 12px;
  border: 0.5px solid rgba(91,195,214,0.25);
  color: var(--al-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--al-transition);
  font-family: var(--al-sans);
}
.al-filter-btn:hover,
.al-filter-btn.active {
  border-color: var(--al-sky);
  color: var(--al-sky);
  background: rgba(91,195,214,0.08);
}
.al-music-full-grid { grid-template-columns: repeat(3,1fr); }

.al-streaming-block {
  background: rgba(30,138,145,0.08);
  border: 0.5px solid rgba(91,195,214,0.15);
  border-radius: 4px;
  padding: 40px;
  text-align: center;
}
.al-streaming-block h3 {
  font-family: var(--al-serif);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 12px;
}
.al-streaming-block p {
  font-size: 12px;
  color: var(--al-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}
.al-platform-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.al-platform-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 2px;
  border: 0.5px solid rgba(91,195,214,0.3);
  color: var(--al-accent) !important;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all var(--al-transition);
}
.al-platform-pill:hover {
  background: rgba(91,195,214,0.1);
  border-color: var(--al-sky);
}

/* ============================================================
   TOUR PAGE
   ============================================================ */
.al-tour-intro {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: rgba(200,230,238,0.65);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 48px;
}
.al-booking-block {
  background: var(--al-dark2);
  border: 0.5px solid var(--al-border);
  border-radius: 4px;
  padding: 48px;
  margin-top: 64px;
  text-align: center;
}
.al-booking-block h3 {
  font-family: var(--al-serif);
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 12px;
}
.al-booking-block p {
  font-size: 13px;
  color: var(--al-muted);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-body p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(170,210,220,0.72);
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-body p strong { color: rgba(220,240,248,0.9); font-weight: 400; }
.al-about-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.al-about-gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--al-radius);
  display: block;
}
.al-about-gallery img:first-child { aspect-ratio: 4/3; }
.al-about-gallery img:last-child { aspect-ratio: 3/4; }
.al-quote-block {
  border-left: 2px solid var(--al-sky);
  padding: 6px 0 6px 28px;
  margin: 40px 0;
}
.al-quote-block blockquote {
  font-family: var(--al-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  font-weight: 300;
  color: rgba(200,235,245,0.8);
  line-height: 1.5;
  margin: 0 0 10px;
}
.al-quote-block cite {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--al-stone);
}
.al-press-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.al-press-card {
  background: var(--al-dark2);
  border: 0.5px solid var(--al-border);
  border-radius: var(--al-radius);
  padding: 24px;
}
.al-press-quote {
  font-family: var(--al-serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: rgba(210,238,246,0.85);
  line-height: 1.6;
  margin-bottom: 14px;
}
.al-press-source {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--al-sky);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.al-contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
.al-contact-info-block { margin-bottom: 36px; }
.al-contact-info-block h4 {
  font-family: var(--al-serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--al-sky);
  margin-bottom: 6px;
}
.al-contact-info-block p {
  font-size: 13px;
  color: var(--al-muted);
  line-height: 1.7;
}
.al-contact-info-block a {
  color: rgba(91,195,214,0.7) !important;
  text-decoration: none !important;
  transition: color var(--al-transition);
}
.al-contact-info-block a:hover { color: var(--al-sky) !important; }

/* Form */

/* ── 1. FORM CONTAINER ─────────────────────────────────────── */

.wpforms-container {
  margin: 0;
  padding: 0;
}

.wpforms-form {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  color: #ddf0f5;
}


/* ── 2. FIELD WRAPPER (spacing between fields) ─────────────── */

.wpforms-form .wpforms-field {
  padding: 0;
  margin-bottom: 20px;
}

/* Remove default WPForms top margin on first field */
.wpforms-form .wpforms-field:first-child {
  margin-top: 0;
}


/* ── 3. LABELS ─────────────────────────────────────────────── */

.wpforms-form .wpforms-field-label,
.wpforms-form .wpforms-field-label-inline {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #6e919e;              /* --al-stone */
  margin-bottom: 8px;
  display: block;
  line-height: 1;
}

/* Sub-labels (e.g. Name field first/last) */
.wpforms-form .wpforms-field-sublabel {
  font-size: 9px;
  color: rgba(110,145,158,0.55);
  letter-spacing: 0.08em;
  margin-top: 5px;
}

/* Required asterisk */
.wpforms-form .wpforms-required-label {
  color: #5bc3d6;
  margin-left: 2px;
}


/* ── 4. TEXT INPUTS, EMAIL, URL, NUMBER, PHONE ─────────────── */

.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="url"],
.wpforms-form input[type="tel"],
.wpforms-form input[type="number"],
.wpforms-form input[type="password"],
.wpforms-form input[type="search"],
.wpforms-form input[type="date"] {
  width: 100%;
  background: rgba(30, 60, 80, 0.35);
  border: 0.5px solid rgba(91, 195, 214, 0.2);
  border-radius: 3px;
  color: #ddf0f5;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 12px 16px;
  height: auto;
  line-height: 1.5;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.wpforms-form input[type="text"]:focus,
.wpforms-form input[type="email"]:focus,
.wpforms-form input[type="url"]:focus,
.wpforms-form input[type="tel"]:focus,
.wpforms-form input[type="number"]:focus,
.wpforms-form input[type="password"]:focus,
.wpforms-form input[type="search"]:focus,
.wpforms-form input[type="date"]:focus {
  border-color: rgba(91, 195, 214, 0.5);
  background: rgba(30, 70, 90, 0.4);
  box-shadow: none;
  outline: none;
}

/* Placeholder text */
.wpforms-form input::placeholder {
  color: rgba(110, 145, 158, 0.5);
  font-weight: 300;
}


/* ── 5. TEXTAREA ────────────────────────────────────────────── */

.wpforms-form textarea {
  width: 100%;
  background: rgba(30, 60, 80, 0.35);
  border: 0.5px solid rgba(91, 195, 214, 0.2);
  border-radius: 3px;
  color: #ddf0f5;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 12px 16px;
  min-height: 140px;
  resize: vertical;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  line-height: 1.65;
}

.wpforms-form textarea:focus {
  border-color: rgba(91, 195, 214, 0.5);
  background: rgba(30, 70, 90, 0.4);
  box-shadow: none;
  outline: none;
}

.wpforms-form textarea::placeholder {
  color: rgba(110, 145, 158, 0.5);
  font-weight: 300;
}


/* ── 6. SELECT DROPDOWN ─────────────────────────────────────── */

.wpforms-form select {
  width: 100%;
  background: rgba(30, 60, 80, 0.35);
  border: 0.5px solid rgba(91, 195, 214, 0.2);
  border-radius: 3px;
  color: #ddf0f5;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 12px 40px 12px 16px;
  height: auto;
  cursor: pointer;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  /* Custom chevron arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236e919e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.wpforms-form select:focus {
  border-color: rgba(91, 195, 214, 0.5);
  background-color: rgba(30, 70, 90, 0.4);
  box-shadow: none;
  outline: none;
}

/* Select option elements (limited browser support, but worth having) */
.wpforms-form select option {
  background: #0d1f28;
  color: #ddf0f5;
}


/* ── 7. RADIO BUTTONS & CHECKBOXES ──────────────────────────── */

.wpforms-form .wpforms-field-radio ul li,
.wpforms-form .wpforms-field-checkbox ul li {
  margin-bottom: 10px;
}

.wpforms-form .wpforms-field-radio input[type="radio"],
.wpforms-form .wpforms-field-checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 0.5px solid rgba(91, 195, 214, 0.35);
  border-radius: 50%;          /* circle for radio */
  background: rgba(30, 60, 80, 0.35);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-right: 10px;
  top: 2px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.wpforms-form .wpforms-field-checkbox input[type="checkbox"] {
  border-radius: 2px;           /* square for checkbox */
}

.wpforms-form .wpforms-field-radio input[type="radio"]:checked,
.wpforms-form .wpforms-field-checkbox input[type="checkbox"]:checked {
  background: #1e8a91;
  border-color: #5bc3d6;
}

/* The inner dot/tick — done with box-shadow so no pseudo elements needed */
.wpforms-form .wpforms-field-radio input[type="radio"]:checked {
  box-shadow: inset 0 0 0 4px rgba(8, 18, 26, 0.8);
}

.wpforms-form .wpforms-field-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: 1.5px solid rgba(220, 248, 252, 0.9);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* Label text next to radio/checkbox */
.wpforms-form .wpforms-field-radio ul li label,
.wpforms-form .wpforms-field-checkbox ul li label {
  font-size: 13px;
  font-weight: 300;
  color: rgba(170, 210, 220, 0.75);
  letter-spacing: 0.02em;
  cursor: pointer;
  text-transform: none;
  display: inline-flex;
  align-items: flex-start;
}


/* ── 8. FILE UPLOAD ─────────────────────────────────────────── */

.wpforms-form input[type="file"] {
  background: rgba(30, 60, 80, 0.2);
  border: 0.5px dashed rgba(91, 195, 214, 0.3);
  border-radius: 3px;
  color: rgba(110, 145, 158, 0.7);
  font-size: 12px;
  font-family: 'DM Sans', system-ui, sans-serif;
  padding: 14px 16px;
  width: 100%;
  cursor: pointer;
}

.wpforms-form input[type="file"]::file-selector-button {
  background: rgba(30, 138, 145, 0.25);
  border: 0.5px solid rgba(91, 195, 214, 0.35);
  border-radius: 2px;
  color: #5bc3d6;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  cursor: pointer;
  margin-right: 14px;
  transition: all 0.2s ease;
}

.wpforms-form input[type="file"]::file-selector-button:hover {
  background: rgba(91, 195, 214, 0.15);
}


/* ── 9. SUBMIT BUTTON ───────────────────────────────────────── */

.wpforms-form .wpforms-submit-container {
  padding: 0;
  margin-top: 4px;
}

.wpforms-form .wpforms-submit,
.wpforms-form button[type="submit"] {
  /* Match .al-btn-primary exactly */
  display: block;
  width: 100%;
  background: #1e8a91 !important;
  color: rgba(220, 248, 252, 0.97) !important;
  font-family: 'DM Sans', system-ui, sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.20em !important;
  text-transform: uppercase !important;
  padding: 15px 30px !important;
  border-radius: 3px !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: none !important;
  text-shadow: none !important;
  -webkit-appearance: none;
  transition: background 0.25s ease, color 0.25s ease !important;
  height: auto !important;
  line-height: 1.4 !important;
}

.wpforms-form .wpforms-submit:hover,
.wpforms-form button[type="submit"]:hover {
  background: #5bc3d6 !important;
  color: #08121a !important;
}

.wpforms-form .wpforms-submit:disabled,
.wpforms-form button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
}


/* ── 10. VALIDATION ERRORS ──────────────────────────────────── */

/* Error state on fields */
.wpforms-form .wpforms-field input.wpforms-error,
.wpforms-form .wpforms-field textarea.wpforms-error,
.wpforms-form .wpforms-field select.wpforms-error {
  border-color: rgba(214, 91, 91, 0.6) !important;
  background: rgba(80, 30, 30, 0.3) !important;
}

/* Inline error message */
.wpforms-form label.wpforms-error {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(214, 130, 130, 0.85);
  text-transform: none;
  margin-top: 6px;
  display: block;
}


/* ── 11. SUCCESS / CONFIRMATION MESSAGE ─────────────────────── */

.wpforms-confirmation-container,
.wpforms-confirmation-container-full {
  background: rgba(30, 138, 145, 0.14);
  border: 0.5px solid rgba(91, 195, 214, 0.3);
  border-radius: 3px;
  padding: 20px 24px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #5bc3d6;
  line-height: 1.7;
}

.wpforms-confirmation-container p,
.wpforms-confirmation-container-full p {
  color: #5bc3d6;
  margin: 0;
}


/* ── 12. DESCRIPTION / HINT TEXT ────────────────────────────── */

.wpforms-form .wpforms-field-description,
.wpforms-form .wpforms-field .wpforms-field-description {
  font-size: 10px;
  color: rgba(110, 145, 158, 0.6);
  margin-top: 6px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}


/* ── 13. RECAPTCHA / HCAPTCHA ───────────────────────────────── */

.wpforms-form .wpforms-recaptcha-container {
  margin-top: 4px;
  margin-bottom: 4px;
}

/* Push the reCAPTCHA widget to sit cleanly */
.wpforms-form .g-recaptcha {
  transform-origin: left top;
}


/* ── 14. MULTI-COLUMN LAYOUT (WPForms Layout Field) ─────────── */

/* If you use WPForms Layout Field for Name (first + last),
   this ensures the inner sub-fields stay styled consistently */
.wpforms-form .wpforms-field-layout .wpforms-layout-column input[type="text"] {
  width: 100%;
}


/* ── 15. PAGEBREAK (multi-step forms) ───────────────────────── */

.wpforms-page-indicator {
  margin-bottom: 32px;
}

.wpforms-page-indicator-page {
  background: rgba(30, 60, 80, 0.4);
  border: 0.5px solid rgba(91, 195, 214, 0.15);
  color: rgba(110, 145, 158, 0.6);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 6px 14px;
}

.wpforms-page-indicator-page.active {
  background: rgba(30, 138, 145, 0.25);
  border-color: rgba(91, 195, 214, 0.4);
  color: #5bc3d6;
}

.wpforms-form .wpforms-page-button {
  /* Same style as primary button */
  background: #1e8a91 !important;
  color: rgba(220, 248, 252, 0.97) !important;
  font-family: 'DM Sans', system-ui, sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.20em !important;
  text-transform: uppercase !important;
  padding: 13px 28px !important;
  border-radius: 3px !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.25s ease !important;
}

.wpforms-form .wpforms-page-button:hover {
  background: #5bc3d6 !important;
  color: #08121a !important;
}

/* Prev button — ghost style */
.wpforms-form .wpforms-page-button.wpforms-page-prev {
  background: transparent !important;
  border: 0.5px solid rgba(91, 195, 214, 0.35) !important;
  color: rgba(91, 195, 214, 0.8) !important;
  margin-right: 10px;
}

.wpforms-form .wpforms-page-button.wpforms-page-prev:hover {
  background: rgba(91, 195, 214, 0.08) !important;
  color: #ddf0f5 !important;
}


/* ── 16. RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 576px) {
  .wpforms-form input[type="text"],
  .wpforms-form input[type="email"],
  .wpforms-form input[type="url"],
  .wpforms-form input[type="tel"],
  .wpforms-form input[type="number"],
  .wpforms-form textarea,
  .wpforms-form select {
    font-size: 16px; /* prevents iOS auto-zoom on focus */
  }
}

.al-form-note {
  font-size: 10px;
    color: var(--al-muted);
    margin-top: 10px;
    line-height: 1.6;
}

/* ── FIX 1 & 5 ─────────────────────────────────────────────────
   Inputs / textarea / select — add !important to background,
   color and border so Astra + WPForms base styles can't win.
   ──────────────────────────────────────────────────────────── */

.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="url"],
.wpforms-form input[type="tel"],
.wpforms-form input[type="number"],
.wpforms-form input[type="password"],
.wpforms-form input[type="search"],
.wpforms-form input[type="date"] {
  background: rgba(30, 60, 80, 0.35) !important;
  border: 0.5px solid rgba(91, 195, 214, 0.2) !important;
  border-radius: 3px !important;
  color: #ddf0f5 !important;
  font-family: 'DM Sans', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  padding: 12px 16px !important;
  height: auto !important;
  line-height: 1.5 !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
  width: 100% !important;
}

.wpforms-form input[type="text"]:focus,
.wpforms-form input[type="email"]:focus,
.wpforms-form input[type="url"]:focus,
.wpforms-form input[type="tel"]:focus,
.wpforms-form input[type="number"]:focus,
.wpforms-form input[type="password"]:focus,
.wpforms-form input[type="search"]:focus,
.wpforms-form input[type="date"]:focus {
  border-color: rgba(91, 195, 214, 0.55) !important;
  background: rgba(30, 70, 90, 0.45) !important;
  box-shadow: none !important;
  outline: none !important;
}

.wpforms-form input::placeholder {
  color: rgba(110, 145, 158, 0.5) !important;
  font-weight: 300 !important;
  opacity: 1 !important; /* Firefox needs this */
}

.wpforms-form textarea {
  background: rgba(30, 60, 80, 0.35) !important;
  border: 0.5px solid rgba(91, 195, 214, 0.2) !important;
  border-radius: 3px !important;
  color: #ddf0f5 !important;
  font-family: 'DM Sans', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  padding: 12px 16px !important;
  min-height: 140px !important;
  resize: vertical !important;
  box-shadow: none !important;
  outline: none !important;
  line-height: 1.65 !important;
  width: 100% !important;
}

.wpforms-form textarea:focus {
  border-color: rgba(91, 195, 214, 0.55) !important;
  background: rgba(30, 70, 90, 0.45) !important;
  box-shadow: none !important;
  outline: none !important;
}

.wpforms-form textarea::placeholder {
  color: rgba(110, 145, 158, 0.5) !important;
  opacity: 1 !important;
}

.wpforms-form select {
  background-color: rgba(30, 60, 80, 0.35) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236e919e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  border: 0.5px solid rgba(91, 195, 214, 0.2) !important;
  border-radius: 3px !important;
  color: #ddf0f5 !important;
  font-family: 'DM Sans', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  padding: 12px 40px 12px 16px !important;
  height: auto !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 100% !important;
}

.wpforms-form select:focus {
  border-color: rgba(91, 195, 214, 0.55) !important;
  background-color: rgba(30, 70, 90, 0.45) !important;
  box-shadow: none !important;
  outline: none !important;
}

.wpforms-form select option {
  background: #0d1f28 !important;
  color: #ddf0f5 !important;
}


/* ── FIX 2 ──────────────────────────────────────────────────────
   Submit button — !important on everything so WPForms'
   "Base Styling" can't override it.
   ──────────────────────────────────────────────────────────── */

.wpforms-form .wpforms-submit-container {
  padding: 0 !important;
  margin-top: 4px !important;
  background: none !important;
}

.wpforms-form .wpforms-submit,
.wpforms-form button[type="submit"] {
  display: block !important;
  width: 100% !important;
  background: #1e8a91 !important;
  background-color: #1e8a91 !important;
  color: rgba(220, 248, 252, 0.97) !important;
  font-family: 'DM Sans', system-ui, sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.20em !important;
  text-transform: uppercase !important;
  padding: 15px 30px !important;
  border-radius: 3px !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: none !important;
  text-shadow: none !important;
  height: auto !important;
  line-height: 1.4 !important;
  -webkit-appearance: none !important;
  transition: background 0.25s ease, color 0.25s ease !important;
}

.wpforms-form .wpforms-submit:hover,
.wpforms-form button[type="submit"]:hover {
  background: #5bc3d6 !important;
  background-color: #5bc3d6 !important;
  color: #08121a !important;
}


/* ── FIX 3 ──────────────────────────────────────────────────────
   "Drop Amber a line" h3 — the template outputs this with no
   class. Target it directly inside the form column, or add the
   class al-form-heading in template_contact.php (preferred).
   ──────────────────────────────────────────────────────────── */

/* Option A — CSS-only fix (no PHP edit needed): */
#al-contact-form h3,
.al-reveal .al-form-heading {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 30px !important;
  font-weight: 300 !important;
  font-style: italic !important;
  color: #ddf0f5 !important;
  margin-bottom: 32px !important;
  line-height: 1.1 !important;
}

/* Option B — add class="al-form-heading" to the <h3> in
   template_contact.php and this rule handles it cleanly:
.al-form-heading {
  font-family: var(--al-serif);
  font-size: 30px;
  font-weight: 300;
  font-style: italic;
  color: var(--al-text);
  margin-bottom: 32px;
  line-height: 1.1;
} */


/* ── FIX 4 ──────────────────────────────────────────────────────
   .al-contact-info wrapper — the ACF left_text field outputs
   raw HTML (h4s, paragraphs, links) inside this div but there
   was no CSS for it. This gives those elements the right styles.
   ──────────────────────────────────────────────────────────── */

.al-contact-info {
  margin-top: 8px;
}

.al-contact-info h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: #5bc3d6; /* --al-sky */
  margin-bottom: 6px;
  margin-top: 28px;
}

.al-contact-info h4:first-child {
  margin-top: 0;
}

.al-contact-info p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(110, 145, 158, 0.75); /* --al-muted */
  line-height: 1.7;
  margin-bottom: 4px;
}

.al-contact-info a {
  color: rgba(91, 195, 214, 0.7) !important;
  text-decoration: none !important;
  transition: color 0.25s ease;
}

.al-contact-info a:hover {
  color: #5bc3d6 !important;
}


/* ── ALSO RECOMMENDED ───────────────────────────────────────────
   WPForms label — Astra's global label styles can override ours.
   ──────────────────────────────────────────────────────────── */

.wpforms-form .wpforms-field-label {
  font-family: 'DM Sans', system-ui, sans-serif !important;
  font-size: 9px !important;
  font-weight: 400 !important;
  letter-spacing: 0.20em !important;
  text-transform: uppercase !important;
  color: #6e919e !important;
  margin-bottom: 8px !important;
  display: block !important;
  line-height: 1 !important;
}

.wpforms-form .wpforms-field-sublabel {
  font-size: 9px !important;
  color: rgba(110, 145, 158, 0.55) !important;
  letter-spacing: 0.08em !important;
  margin-top: 5px !important;
}

.wpforms-form .wpforms-required-label {
  color: #5bc3d6 !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
#al-footer {
  background: #050d13;
  padding: 64px 0 0;
  border-top: 0.5px solid var(--al-border);
}
.al-footer-logo {
  font-family: var(--al-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--al-text);
  margin-bottom: 10px;
}
.al-footer-logo em { font-style: italic; color: var(--al-sky); }
.al-footer-tagline {
  font-size: 12px;
  color: var(--al-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.al-footer-nav-title {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--al-stone);
  margin-bottom: 16px;
  display: block;
}
.al-footer-nav-list { list-style: none; padding: 0; margin: 0; }
.al-footer-nav-list li { margin-bottom: 10px; }
.al-footer-nav-list a {
  font-size: 12px;
  color: var(--al-muted) !important;
  text-decoration: none !important;
  transition: color var(--al-transition);
}
.al-footer-nav-list a:hover { color: var(--al-sky) !important; }
.al-footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.al-footer-soc {
  padding: 5px 14px;
  border-radius: 10px;
  border: 0.5px solid rgba(91,195,214,0.2);
  background: rgba(30,90,110,0.2);
  color: rgba(91,195,214,0.6) !important;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all var(--al-transition);
}
.al-footer-soc:hover {
  border-color: var(--al-sky);
  color: var(--al-sky) !important;
}
.al-footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 0.5px solid rgba(91,195,214,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.al-footer-copy {
  font-size: 10px;
  color: rgba(110,145,158,0.35);
  margin: 0;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes alGlowPulse {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.08); }
}
@keyframes alSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes alExpandLine {
  from { width: 0; opacity: 0; }
  to   { width: 48px; opacity: 1; }
}
@keyframes alFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes alScrollBounce {
  0%,100% { transform: scaleY(1);   opacity: 0.45; }
  50%     { transform: scaleY(1.3); opacity: 0.9; }
}
@keyframes alReveil {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .al-container { padding: 0 32px; }
  #al-nav { padding: 16px 32px; }
  #al-nav.scrolled { padding: 12px 32px; }
  .al-nav-links { display: none; }
  .al-nav-toggle { display: flex; }
  .al-hero-content { padding: 0 32px 72px; }
  .al-page-hero-content { padding: 0 32px 40px; }
  .al-singles-grid { grid-template-columns: repeat(2,1fr); }
  .al-music-full-grid { grid-template-columns: repeat(2,1fr); }
  .al-contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .al-press-grid { grid-template-columns: 1fr 1fr; }
  .al-ig-grid { grid-template-columns: repeat(4,1fr); }
}

@media (max-width: 767px) {
  .al-container { padding: 0 20px; }
  .al-section { padding: 60px 0; }
  .al-section-sm { padding: 40px 0; }
  #al-nav { padding: 14px 20px; }
  #al-nav.scrolled { padding: 10px 20px; }
  .al-hero-content { padding: 0 20px 60px; max-width: 100%; }
  .al-page-hero-content { padding: 0 20px 32px; }
  .al-hero-name { font-size: clamp(48px, 13vw, 72px); }
  .al-hero-ctas { flex-direction: column; }
  .al-hero-ctas .al-btn-primary,
  .al-hero-ctas .al-btn-ghost { text-align: center; }
  .al-singles-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .al-music-full-grid { grid-template-columns: 1fr 1fr; }
  .al-ig-grid { grid-template-columns: repeat(2,1fr); }
  .al-events-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .al-event-row { grid-template-columns: 52px 1fr; gap: 14px; }
  .al-event-ticket { display: none; }
  .al-about-gallery { grid-template-columns: 1fr; }
  .al-press-grid { grid-template-columns: 1fr; }
  .al-stats-row { gap: 20px; }
  .al-footer-bottom { flex-direction: column; text-align: center; }
  .al-booking-block { padding: 28px 20px; }
  .al-streaming-block { padding: 28px 20px; }
}