:root {
  --navy: #07182d;
  --navy-2: #102f57;
  --blue: #20a9e0;
  --blue-dark: #0b79b7;
  --ice: #eef8fd;
  --white: #ffffff;
  --text: #122033;
  --muted: #64748b;
  --line: #d9e5ee;
  --gold: #f4b43f;
  --shadow: 0 18px 45px rgba(7, 24, 45, .14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f4f8fb;
  line-height: 1.55;
}

a { color: inherit; }

.site-header {
  background:
    radial-gradient(circle at 85% 10%, rgba(32,169,224,.35), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(244,180,63,.22), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  padding: 28px 22px 64px;
}

.nav {
  max-width: 1160px;
  margin: 0 auto 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), white);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.nav-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
}

.hero-eyebrow {
  margin: 0 0 14px;
  color: #99e2ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(40px, 7vw, 72px);
  line-height: .94;
  letter-spacing: -.055em;
  font-weight: 900;
}

.hero-copy {
  max-width: 820px;
  margin: 24px 0 0;
  color: #e6f2fb;
  font-size: 18px;
}

.policy {
  margin-top: 34px;
  max-width: 960px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
}

.policy h2 {
  margin: 0 0 8px;
  font-size: 21px;
}

.policy p { margin: 0; color: #e6f2fb; }

.main {
  padding: 44px 22px 76px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -.04em;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.search {
  width: min(100%, 340px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 16px;
  outline: none;
  background: white;
}

.search:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(32,169,224,.15);
}

.venue-list {
  display: grid;
  gap: 30px;
}

.venue-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 12px 28px rgba(7,24,45,.07);
}

.venue-stripe {
  height: 8px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--navy));
}

.venue-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 0;
}

.venue-content {
  padding: 30px;
}

.venue-label {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.venue-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.03;
  letter-spacing: -.045em;
  font-weight: 900;
}

.address {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--navy);
  color: white;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

.btn.secondary {
  background: var(--ice);
  color: var(--navy);
  border: 1px solid var(--line);
}

.btn:hover { filter: brightness(.95); }

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.quick-item {
  border-radius: 18px;
  background: var(--ice);
  padding: 16px;
}

.quick-item span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quick-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.slider {
  position: relative;
  min-height: 100%;
  background: #081827;
}

.slider-track {
  height: 100%;
  min-height: 420px;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
}

.slide.active { opacity: 1; }

.slide img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.slider::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(0,0,0,.48));
  pointer-events: none;
}

.slider-caption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: white;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

.slider-controls {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
}

.slider-controls button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}

.slider-dots {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  left: 18px;
  display: flex;
  gap: 7px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  cursor: pointer;
}

.slider-dots button.active {
  width: 24px;
  background: white;
}

.toggle {
  width: 100%;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  color: var(--text);
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 900;
}

.toggle:hover { background: #f8fafc; }

.details {
  display: none;
  margin-top: 26px;
}

.venue-card.open .details { display: block; }

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.detail-section {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.detail-section.full { grid-column: 1 / -1; }

.detail-section h3 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: -.02em;
}

.detail-section p { margin: 0 0 12px; color: #334155; }

.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.clean-list li {
  border-radius: 14px;
  background: #f8fafc;
  padding: 12px 14px;
  color: #334155;
}

.role-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.role-pill {
  display: inline-block;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 900;
}

.no-results {
  display: none;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 24px;
  background: white;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.footer {
  padding: 34px 22px;
  background: var(--navy);
  color: #d8e9f5;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 980px) {
  .venue-grid { grid-template-columns: 1fr; }
  .slider-track, .slide img { min-height: 330px; }
}

@media (max-width: 760px) {
  .nav, .section-head { display: block; }
  .nav-links { margin-top: 16px; }
  .search { margin-top: 18px; }
  .quick-grid, .detail-grid { grid-template-columns: 1fr; }
  .venue-content { padding: 22px; }
  .site-header { padding-bottom: 48px; }
}
.logo {
  height: 42px;
  width: auto;
  display: block;
}