: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;
}

body {
  margin: 0;
  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 {
  max-width: 100%;
}

.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;
  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);
  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 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 {
  display: block;
  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);
}

.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;
}

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

.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;
}

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

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

.schedule-list {
  display: grid;
  gap: 14px;
}

.schedule-item {
  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;
}

.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) {
  .hero {
    padding-top: 24px;
  }

  .brand-lockup {
    flex-direction: column;
    align-items: flex-start;
  }

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

  h1 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  .hero-image {
    height: 280px;
    object-position: center 38%;
  }

  #map {
    height: 340px;
  }

  .panel {
    padding: 18px;
  }

  .panel-header h2,
  .connect-inner h2 {
    font-size: 1.45rem;
  }
  .map-link {
    display: inline-flex;
    width: fit-content;
    margin-top: 2px;
    color: var(--teal-dark);
    font-weight: 800;
    text-decoration: none;
    line-height: 1.45;
  }

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

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

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