:root {
  --brand-blue: #184665;
  --text: #393939;
  --muted: #6f6f6f;
  --border: #e7e7e7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: calc(100% - 40px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--brand-blue);
  color: #fff;
}

.header-inner {
  min-height: 73px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  position: relative;
}

.site-logo {
  position: relative;
  flex: 0 0 auto;
  padding-right: 38px;
  margin-right: 30px;
  align-self: stretch;
  display: flex;
  align-items: center;
  z-index: 220;
}

.site-logo::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.28);
}

.site-logo img {
  width: 165px;
  height: auto;
}

.header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.site-nav a,
.connect-link {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-nav a[aria-current="page"] {
  font-weight: 500;
}

.connect-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.header-right .connect-link img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.footer-connect img {
  filter: grayscale(1) brightness(0.5);
  opacity: 1;
}

.section {
  padding: 72px 0 96px;
}

.services-content {
  width: min(calc(100% - 40px), 980px);
}

.page-title {
  margin: 0 0 72px;
  color: var(--brand-blue);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: left;
}

.service-group + .service-group {
  margin-top: 72px;
}

.service-group h2 {
  margin: 0 0 30px;
  padding-bottom: 16px;
  color: var(--text);
  font-size: clamp(1.9rem, 4.2vw, 2.7rem);
  line-height: 1.05;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}

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

.venue-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) minmax(0, 1.65fr);
  gap: 48px;
  align-items: start;
}

.venue-meta {
  min-width: 0;
}

.venue-name {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 700;
}

.venue-address {
  margin: 4px 0 0;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 400;
}

.venue-schedule {
  min-width: 0;
}

.schedule-block + .schedule-block {
  margin-top: 22px;
}

.schedule-day {
  margin: 0 0 2px;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 400;
}

.schedule-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: baseline;
}

.schedule-label,
.schedule-time {
  font-size: 1.05rem;
  line-height: 1.35;
}

.schedule-label {
  font-weight: 400;
}

.schedule-time {
  font-weight: 400;
  text-align: right;
  white-space: nowrap;
}

.site-footer {
  background: #ffffff;
  border-top: 0;
}

.footer-inner {
  min-height: 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  text-decoration: none;
}

.footer-connect {
  color: var(--muted);
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 220;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1080px) {
  .header-inner {
    min-height: 73px;
    padding: 0 10px;
    flex-wrap: nowrap;
  }

  .site-logo {
    padding-right: 38px;
    margin-right: 30px;
    z-index: 220;
  }

  body.nav-open .site-logo::after {
    display: none;
  }

  .site-logo img {
    width: 165px;
  }

  .header-right {
    justify-content: flex-end;
    position: static;
  }

  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    z-index: 220;
  }

  .mobile-actions .connect-link span {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--brand-blue);
    z-index: 210;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 56px;
    padding: 120px 24px 60px;
    flex-wrap: nowrap;
  }

  .site-nav.is-open a {
    font-size: clamp(22px, 4vw, 40px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.1;
    text-align: center;
  }
}

@media (min-width: 1081px) {
  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .nav-toggle {
    display: none;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 52px 0 72px;
  }

  .page-title {
    margin-bottom: 56px;
  }

  .service-group + .service-group {
    margin-top: 56px;
  }

  .service-group h2 {
    margin-bottom: 24px;
    padding-bottom: 14px;
  }

  .venue-list {
    gap: 42px;
  }

  .venue-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .schedule-block + .schedule-block {
    margin-top: 18px;
  }

  .schedule-line {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 24px;
  }

  .header-inner {
    min-height: 73px;
    padding: 0 10px;
  }

  .site-logo {
    padding-right: 38px;
    margin-right: 30px;
  }

  .site-logo img {
    width: 165px;
  }

  .mobile-actions {
    gap: 22px;
  }

  .site-nav.is-open {
    gap: 56px;
    padding: 110px 20px 50px;
  }

  .site-nav.is-open a {
    font-size: clamp(18px, 8vw, 30px);
  }
}
