:root {
  --bg: #f8f3ea;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: #ffffff;
  --text: #1f2a3d;
  --muted: #667085;
  --accent: #eb7f2d;
  --accent-dark: #8d4117;
  --teal: #78d9cb;
  --teal-dark: #1f6c67;
  --open: #1fa85b;
  --closed: #98a2b3;
  --unknown: #f2b84b;
  --border: rgba(235, 127, 45, 0.28);
  --shadow: 0 20px 50px rgba(31, 42, 61, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(120, 217, 203, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(235, 127, 45, 0.12), transparent 24%),
    linear-gradient(180deg, #f7fbf9 0%, #f8f3ea 38%, #f7f1e7 100%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

.page-shell {
  width: 100%;
}

.hero {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 34px 22px 18px;
}

.hero-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.brand-logo {
  width: 148px;
  height: 148px;
  object-fit: cover;
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow);
  flex: 0 0 auto;
}

.brand-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.subtitle {
  margin: 16px 0 0;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 780px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(141, 65, 23, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(31, 42, 61, 0.05);
  backdrop-filter: blur(10px);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition:
    transform 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}

.icon-link:hover {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(141, 65, 23, 0.36);
  box-shadow: 0 14px 30px rgba(31, 42, 61, 0.08);
}

.icon-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.status-card {
  min-width: 250px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--unknown);
  box-shadow: 0 0 0 6px rgba(242, 184, 75, 0.16);
  flex: 0 0 auto;
}

.status-card.open .status-dot {
  background: var(--open);
  box-shadow: 0 0 0 6px rgba(31, 168, 91, 0.16);
}

.status-card.closed .status-dot {
  background: var(--closed);
  box-shadow: 0 0 0 6px rgba(152, 162, 179, 0.16);
}

.status-card.unknown .status-dot,
.status-card.loading .status-dot {
  background: var(--unknown);
}

.status-label {
  font-size: 1.05rem;
  font-weight: 800;
}

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

.hero-image-wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 4px 22px 12px;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(120, 217, 203, 0.28);
  box-shadow: var(--shadow);
  background: #dff5ef;
}

.hero-image {
  width: 100%;
  height: clamp(280px, 42vw, 510px);
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(1.03) contrast(1.02);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(19, 33, 48, 0.28) 100%);
  pointer-events: none;
}

.hero-image-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 20px rgba(31, 42, 61, 0.08);
}

.layout {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 20px 22px 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  align-self: start;
}

.panel.full {
  grid-column: 1 / -1;
}

.about-panel {
  background:
    linear-gradient(135deg, rgba(120, 217, 203, 0.10), rgba(255, 255, 255, 0.96) 55%),
    rgba(255, 255, 255, 0.86);
}

.closure-panel {
  background:
    linear-gradient(135deg, rgba(235, 127, 45, 0.16), rgba(255, 255, 255, 0.96) 55%),
    #ffffff;
  border-color: rgba(235, 127, 45, 0.42);
}

.closure-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(235, 127, 45, 0.14);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.closure-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.closure-panel p {
  margin: 0;
  max-width: 860px;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.55;
}

.panel-header {
  margin-bottom: 16px;
}

.panel-header h2,
.connect-inner h2 {
  margin: 0 0 6px;
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.panel-header p,
.connect-inner p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.schedule-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.calendar-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(31, 108, 103, 0.22);
  border-radius: 999px;
  background: rgba(120, 217, 203, 0.13);
  color: var(--teal-dark);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.calendar-link:hover {
  background: rgba(120, 217, 203, 0.22);
}

.calendar-link::after {
  content: "↗";
  margin-left: 6px;
  font-size: 0.85em;
}

#map {
  position: relative;
  z-index: 0;
  height: 460px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(120, 217, 203, 0.24);
  background: #edf7f4;
}

.map-fallback {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.schedule-image-placeholder {
  margin-bottom: 16px;
  min-height: 155px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 20px;
  border: 2px dashed rgba(235, 127, 45, 0.35);
  background: rgba(255, 250, 245, 0.7);
  color: var(--muted);
  text-align: center;
  overflow: hidden;
}

.schedule-image-placeholder[hidden] {
  display: none;
}

.schedule-image-placeholder img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.schedule-list {
  display: grid;
  gap: 14px;
  max-height: min(680px, 68vh);
  overflow-y: auto;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 4px;
}

.schedule-item {
  position: relative;
  border: 1px solid rgba(235, 127, 45, 0.30);
  border-radius: 20px;
  padding: 16px 16px 14px;
  background: rgba(255, 249, 243, 0.82);
}

.schedule-item .day {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 4px;
}

.schedule-item .title {
  font-size: 1.04rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.schedule-item .time {
  font-weight: 800;
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.schedule-item .where {
  color: var(--muted);
  line-height: 1.45;
}

.schedule-item .notes {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.map-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 4px;
  padding: 4px 0;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
  line-height: 1.45;
  overflow-wrap: anywhere;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(31, 108, 103, 0.18);
}

.map-link:hover {
  text-decoration: underline;
}

.map-link::after {
  content: "↗";
  margin-left: 6px;
  font-size: 0.85em;
}

.connect-panel {
  background:
    linear-gradient(135deg, rgba(120, 217, 203, 0.16), rgba(255, 255, 255, 1) 58%),
    #ffffff;
}

.connect-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.social-icons-large {
  margin-top: 0;
}

.social-icons-large .icon-link {
  min-height: 46px;
  padding: 11px 16px;
}

.site-footer {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 8px 22px 34px;
  text-align: center;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.footer-links a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .hero-main {
    flex-direction: column;
    align-items: stretch;
  }

  .status-card {
    min-width: 0;
    width: 100%;
    max-width: 360px;
  }

  .layout {
    grid-template-columns: 1fr;
  }

  .connect-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(120, 217, 203, 0.18), transparent 38%),
      linear-gradient(180deg, #f7fbf9 0%, #f8f3ea 48%, #f7f1e7 100%);
  }

  .hero {
    padding: 14px 14px 10px;
  }

  .hero-main {
    display: block;
  }

  .brand-lockup {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
  }

  .brand-logo {
    width: 72px;
    height: 72px;
    border-radius: 17px;
  }

  .brand-copy {
    min-width: 0;
  }

  .eyebrow {
    margin: 1px 0 5px;
    font-size: 0.64rem;
    line-height: 1.2;
    letter-spacing: 0.06em;
  }

  h1 {
    font-size: clamp(1.95rem, 8.7vw, 2.55rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
  }

  .subtitle {
    margin-top: 8px;
    font-size: 0.94rem;
    line-height: 1.38;
    max-width: none;
  }

  .social-icons {
    margin-top: 11px;
    gap: 7px;
  }

  .icon-link {
    min-height: 36px;
    padding: 8px 11px;
    font-size: 0.9rem;
  }

  .icon-link svg {
    width: 16px;
    height: 16px;
  }

  .status-card {
    margin-top: 14px;
    width: 100%;
    max-width: none;
    min-width: 0;
    border-radius: 20px;
    padding: 13px 14px;
    gap: 12px;
  }

  .status-dot {
    width: 15px;
    height: 15px;
    box-shadow: 0 0 0 5px rgba(242, 184, 75, 0.16);
  }

  .status-card.open .status-dot {
    box-shadow: 0 0 0 5px rgba(31, 168, 91, 0.16);
  }

  .status-card.closed .status-dot {
    box-shadow: 0 0 0 5px rgba(152, 162, 179, 0.16);
  }

  .status-label {
    font-size: 0.98rem;
  }

  .muted {
    font-size: 0.92rem;
  }

  .hero-image-wrap {
    padding: 4px 14px 10px;
  }

  .hero-image-card {
    border-radius: 22px;
  }

  .hero-image {
    height: 210px;
    object-fit: cover;
    object-position: center center;
  }

  .hero-image-overlay {
    display: none;
  }

  .layout {
    display: grid;
    grid-template-columns: 1fr;
    padding: 10px 14px 24px;
    gap: 14px;
  }

  .schedule-panel {
    order: 2;
  }

  .location-panel {
    order: 1;
  }

  .connect-panel {
    order: 3;
  }

  .panel {
    border-radius: 21px;
    padding: 15px;
  }

  .closure-panel h2 {
    font-size: 1.5rem;
  }

  .closure-panel p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .panel-header {
    margin-bottom: 11px;
  }

  .panel-header h2,
  .connect-inner h2 {
    font-size: 1.3rem;
  }

  .panel-header p,
  .connect-inner p {
    font-size: 0.94rem;
  }

  #map {
    height: 260px;
    border-radius: 17px;
  }

  .schedule-image-placeholder {
    min-height: 0;
    padding: 10px;
    border-radius: 17px;
  }

  .schedule-image-placeholder img {
    border-radius: 14px;
  }

  .schedule-list {
    gap: 12px;
    max-height: 58vh;
    padding-right: 2px;
  }

  .schedule-item {
    border-radius: 17px;
    padding: 13px;
  }

  .schedule-item .day {
    font-size: 0.9rem;
  }

  .schedule-item .title {
    font-size: 0.98rem;
  }

  .schedule-item .time {
    font-size: 0.96rem;
    margin-bottom: 7px;
  }

  .schedule-item .where,
  .schedule-item .notes {
    font-size: 0.92rem;
    line-height: 1.38;
  }

  .map-link {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    margin-top: 7px;
    padding: 8px 10px;
    border: 1px solid rgba(31, 108, 103, 0.22);
    border-radius: 13px;
    background: rgba(120, 217, 203, 0.13);
    line-height: 1.25;
  }

  .schedule-heading {
    display: grid;
    gap: 10px;
  }

  .calendar-link {
    width: 100%;
    min-height: 40px;
  }

  .connect-inner {
    display: block;
  }

  .social-icons-large {
    margin-top: 13px;
  }

  .site-footer {
    padding: 8px 14px 26px;
  }
}

@media (max-width: 430px) {
  .brand-lockup {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 11px;
  }

  .brand-logo {
    width: 66px;
    height: 66px;
  }

  h1 {
    font-size: clamp(1.78rem, 8.9vw, 2.25rem);
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .icon-link {
    font-size: 0.86rem;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-image {
    height: 195px;
  }

  #map {
    height: 240px;
  }
}

@media (max-width: 360px) {
  .brand-lockup {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .brand-logo {
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }

  h1 {
    font-size: 1.72rem;
  }

  .social-icons {
    gap: 6px;
  }

  .icon-link {
    min-height: 34px;
    padding: 7px 9px;
    font-size: 0.82rem;
  }
}
