:root{
  --sky:#eaf5ff;
  --sky-deep:#cfe7fb;
  --navy:#173f73;
  --blue:#2f6fb4;
  --blue-mid:#5b93cb;
  --blue-soft:#dcecff;
  --panel:#ffffff;
  --ink:#20344e;
  --muted:#637a94;
  --line:#c6daef;
  --shadow:0 14px 36px rgba(30,70,115,.14);
  --max:1120px;
  --radius:22px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  color:var(--ink);
  font:17px/1.65 Georgia,"Times New Roman",serif;
  background:
    radial-gradient(900px 520px at 8% 0%,rgba(255,255,255,.95),transparent 65%),
    radial-gradient(800px 500px at 95% 10%,rgba(114,170,226,.28),transparent 60%),
    linear-gradient(180deg,var(--sky),var(--sky-deep));
}

img{max-width:100%;height:auto}
a{color:var(--blue);text-decoration:none}
a:hover{text-decoration:underline}

.wrap{
  width:min(var(--max),calc(100% - 32px));
  margin:0 auto;
}

header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(23,63,115,.95);
  backdrop-filter:blur(9px);
  border-bottom:1px solid rgba(255,255,255,.16);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:13px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:11px;
  color:white;
  min-width:max-content;
}

.brand img{
  width:46px;
  height:46px;
  object-fit:contain;
  border-radius:13px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.25);
  padding:3px;
}

.brand strong{
  font:800 18px/1.1 system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  letter-spacing:.03em;
}

.menu{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
  flex-wrap:wrap;
  font:700 13px/1 system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

.menu a{color:#eef7ff}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  border:0;
  border-radius:999px;
  padding:12px 19px;
  background:linear-gradient(135deg,var(--blue),#79afe3);
  color:white;
  font:800 14px/1 system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  box-shadow:0 8px 20px rgba(23,63,115,.18);
}

.btn:hover{
  text-decoration:none;
  filter:brightness(1.04);
}

.btn.ghost{
  background:white;
  color:var(--navy);
  border:1px solid var(--line);
  box-shadow:none;
}

.hero{
  padding:58px 0 42px;
}

.hero-inner{
  display:grid;
  grid-template-columns:minmax(260px,390px) 1fr;
  gap:38px;
  align-items:center;
}

.logo-tower{
  min-height:430px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  border-radius:30px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.92),rgba(226,240,255,.86)),
    radial-gradient(420px 240px at 50% 10%,rgba(91,147,203,.22),transparent 70%);
  border:1px solid rgba(47,111,180,.2);
  box-shadow:var(--shadow);
}

.logo-tower img{
  max-height:510px;
  object-fit:contain;
  filter:drop-shadow(0 16px 24px rgba(23,63,115,.16));
}

.kicker{
  color:var(--blue);
  font:800 12px/1 system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  text-transform:uppercase;
  letter-spacing:.22em;
}

h1{
  margin:12px 0 16px;
  color:var(--navy);
  font-size:clamp(40px,6vw,68px);
  line-height:.96;
  letter-spacing:-.045em;
}

.lead{
  max-width:700px;
  margin:0 0 18px;
  color:#3d5a7b;
  font-size:20px;
}

.badges{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

main{
  padding:30px 0 46px;
}

section{
  margin:24px 0;
}

.grid{
  display:grid;
  gap:18px;
}

.cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}

.card{
  background:rgba(255,255,255,.94);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
}

.card.feature{
  background:
    radial-gradient(520px 220px at 100% 0%,rgba(91,147,203,.16),transparent 70%),
    rgba(255,255,255,.96);
}

h2{
  margin:0 0 11px;
  color:var(--navy);
  font-size:28px;
  line-height:1.15;
}

h3{
  margin:0 0 8px;
  color:var(--blue);
  font-size:21px;
  line-height:1.2;
}

p{margin:0 0 13px}
.muted{color:var(--muted)}

.chips{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:16px;
}

.chip{
  display:inline-block;
  padding:7px 11px;
  border-radius:999px;
  background:#edf6ff;
  border:1px solid var(--line);
  color:#3e5f83;
  font:700 12px/1 system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

.people-list .chip{
  font-size:13px;
  color:var(--ink);
  background:white;
}

.list{
  display:grid;
  gap:12px;
  margin:0;
  padding:0;
}

.list li{
  list-style:none;
  padding:15px 16px;
  border-radius:15px;
  background:#f4f9ff;
  border:1px solid var(--line);
}

.linkrow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin:14px 0;
}

.paypal-table{
  border-collapse:collapse;
  margin:0 0 10px;
}

.paypal-table td{padding:6px 0}

select{
  width:100%;
  max-width:340px;
  padding:11px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:white;
  color:var(--ink);
  font:600 15px/1.2 system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

ul{margin:12px 0 0;padding-left:20px}

.schedule-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}

.day{
  background:#f4f9ff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
}

.day h3{
  color:var(--navy);
  margin-bottom:12px;
}

.slot{
  padding:10px 0;
  border-top:1px solid #d8e7f5;
}

.slot:first-of-type{
  border-top:0;
  padding-top:0;
}

.slot time{
  display:block;
  color:var(--blue);
  font:800 12px/1.2 system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:4px;
}

.freeform{
  margin-top:20px;
  padding:24px;
  border-radius:20px;
  color:white;
  background:
    radial-gradient(500px 240px at 100% 0%,rgba(255,255,255,.18),transparent 65%),
    linear-gradient(135deg,#173f73,#3d7fbe);
  box-shadow:0 16px 34px rgba(23,63,115,.22);
}

.freeform h3{
  color:white;
  font-size:27px;
}

.freeform p{
  color:#edf6ff;
}

.freeform .chip{
  color:white;
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.25);
}

footer{
  color:#d9ebfb;
  padding:30px 0 38px;
  background:var(--navy);
  border-top:1px solid rgba(255,255,255,.12);
}

@media (max-width:980px){
  .hero-inner{grid-template-columns:1fr}
  .logo-tower{min-height:320px}
  .logo-tower img{max-height:390px}
  .cols-2,.cols-3,.schedule-grid{grid-template-columns:1fr}
}

@media (max-width:760px){
  body{font-size:18px}
  .nav{display:block}
  .brand{margin-bottom:13px}
  .menu{
    justify-content:flex-start;
    gap:11px 14px;
  }
  .hero{padding:34px 0 26px}
  .logo-tower{
    min-height:250px;
    padding:16px;
  }
  .logo-tower img{max-height:300px}
  .lead{font-size:19px}
  .btn{
    width:100%;
  }
  .menu .btn{
    width:auto;
  }
  .badges,.linkrow{
    display:grid;
    grid-template-columns:1fr;
  }
  .card,.freeform{
    padding:20px;
  }
}

@media (max-width:520px){
  .wrap{
    width:min(var(--max),calc(100% - 20px));
  }
  .menu{
    font-size:12px;
  }
  h1{
    font-size:43px;
  }
  h2{
    font-size:25px;
  }
}


/* Warm illustrated redesign */
:root{
  --sky:#d8efff;
  --sky-deep:#edf8ff;
  --navy:#183a66;
  --blue:#2f6fb4;
  --blue-mid:#74b4e2;
  --blue-soft:#dff2ff;
  --panel:#fffdf8;
  --ink:#26384b;
  --muted:#586d82;
  --line:#d8cba9;
  --gold:#d9a53b;
  --cream:#fff8ea;
  --parchment:#f2e5c6;
  --green-soft:#e9f3dc;
  --shadow:0 16px 38px rgba(24,58,102,.15);
}

body{
  background:
    radial-gradient(900px 500px at 10% 0%,rgba(255,255,255,.92),transparent 65%),
    linear-gradient(180deg,var(--sky),var(--sky-deep) 34%,var(--cream) 72%,#f7eed9);
}

header{background:rgba(16,42,77,.96)}

.btn{
  background:linear-gradient(135deg,var(--gold),#efc965);
  color:#102a4d;
}

.logo-tower{
  background:
    linear-gradient(180deg,rgba(255,255,255,.95),rgba(242,229,198,.88)),
    radial-gradient(420px 220px at 50% 10%,rgba(217,165,59,.18),transparent 70%);
  border-color:rgba(24,58,102,.15);
}

.card{background:rgba(255,253,248,.96)}
.card.feature{
  background:
    radial-gradient(520px 220px at 100% 0%,rgba(217,165,59,.15),transparent 72%),
    var(--cream);
  border-color:var(--line);
}

#about .card:first-child,
#archives .card:first-child,
#programme-link{
  background:
    radial-gradient(480px 220px at 100% 0%,rgba(217,165,59,.14),transparent 72%),
    var(--cream);
}

#about .card:last-child,
#archives .card:last-child,
#when .card:nth-child(2){
  background:#dff2ff;
}

#people,#news{
  background:
    radial-gradient(520px 220px at 100% 0%,rgba(255,255,255,.3),transparent 72%),
    var(--green-soft);
}

#tickets .card:first-child,#contact{
  background:
    radial-gradient(520px 220px at 100% 0%,rgba(255,255,255,.32),transparent 72%),
    #f8e7b7;
}

.art-feature{
  display:grid;
  grid-template-columns:minmax(250px,430px) 1fr;
  gap:26px;
  align-items:center;
}

.art-frame{
  overflow:hidden;
  border-radius:22px;
  border:4px solid rgba(255,255,255,.88);
  outline:1px solid rgba(24,58,102,.14);
  box-shadow:0 14px 28px rgba(24,58,102,.15);
  background:white;
}

.art-frame img{
  width:100%;
  display:block;
  aspect-ratio:1/1;
  object-fit:cover;
}

@media (max-width:980px){
  .art-feature{grid-template-columns:1fr}
}
