
:root {
  --ink: #20322f;
  --muted: #66736f;
  --paper: #fffdf8;
  --surface: #ffffff;
  --line: #e5ded0;
  --accent: #ed8a22;
  --accent-strong: #d45f20;
  --green: #42876e;
  --yellow: #f7ce55;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.8;
}

a {
  color: #a64f13;
  text-underline-offset: 0.18em;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav .nav-pending {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  cursor: default;
  opacity: 0.72;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: #f5ead6;
  color: var(--accent-strong);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(30, 46, 42, 0.76), rgba(30, 46, 42, 0.2)),
    var(--hero-image),
    linear-gradient(135deg, #395f54, #f3bd4f);
  background-position: center;
  background-size: cover;
}

.hero-home {
  min-height: min(720px, 72vh);
}

.hero-slideshow {
  background: #20322f;
}

.hero-slideshow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(30, 46, 42, 0.72), rgba(30, 46, 42, 0.18));
  pointer-events: none;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slides span {
  position: absolute;
  inset: 0;
  background-image: var(--slide-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  animation-name: heroFade;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.hero-slides span:first-child {
  opacity: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 42px;
  color: white;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.26);
}

.eyebrow {
  margin: 0 0 8px;
  color: #ffe3a4;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.12;
}

@keyframes heroFade {
  0% { opacity: 0; }
  6% { opacity: 1; }
  24% { opacity: 1; }
  32% { opacity: 0; }
  100% { opacity: 0; }
}

.page-shell {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 64px;
}

.content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 44px);
  box-shadow: 0 18px 50px rgba(65, 50, 28, 0.08);
}

.content h1,
.content h2 {
  margin-top: 1.5em;
  line-height: 1.35;
}

.content h1:first-child,
.content h2:first-child {
  margin-top: 0;
}

.content h1 {
  padding-bottom: 10px;
  border-bottom: 3px solid #f2c16b;
  font-size: clamp(26px, 4vw, 38px);
}

.content h2 { font-size: clamp(22px, 3vw, 30px); }
.content h3 { font-size: 20px; }
.content p { margin: 1em 0; }

.content hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 28px 0;
}

.content img { border-radius: 6px; }

.content .j-hgrid,
.content .cc-m-hgrid-column,
.content .cc-m-hgrid-separator,
.content .n {
  min-width: 0;
}

.content .j-hgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: start;
}

.content #cc-m-18423007496.j-hgrid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.content #cc-m-18423007496 .cc-m-hgrid-column {
  width: 100% !important;
}

.content #cc-m-18423007496 .cc-m-hgrid-separator {
  display: none;
}

.content #cc-m-18435148596.j-hgrid {
  text-align: left;
}

.content #cc-m-18435148596 .cc-m-hgrid-column {
  display: grid;
  justify-items: start;
}

.content #cc-m-18435148596 .cc-m-hgrid-column:first-child,
.content #cc-m-18435148596 .cc-m-hgrid-separator {
  display: none;
}

.content #cc-m-18435148596 .cc-m-hgrid-column.last {
  width: 100% !important;
}

.content #cc-m-18423108096 .cc-m-image-align-3,
.content #cc-m-18435145596 .cc-m-image-align-3 {
  float: none;
  max-width: none;
  margin: 0;
  text-align: left;
}

.content #cc-m-18423109096 {
  text-align: left;
}

.content .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff8e9;
  color: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.content .social-link:hover {
  transform: translateY(-2px);
  border-color: #f2c16b;
  color: var(--accent-strong);
}

.content .social-link svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.content .social-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.content .map-embed {
  position: relative;
  width: min(100%, 760px);
  margin: 22px auto 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 8px 22px rgba(45, 61, 57, 0.06);
}

.content .map-embed iframe {
  display: block;
  width: 100%;
  height: min(58vw, 450px);
  min-height: 320px;
}

.content .contact-email-card {
  width: min(100%, 720px);
  margin: 28px auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  text-align: center;
  box-shadow: 0 8px 22px rgba(45, 61, 57, 0.06);
}

.content .notice-box {
  width: min(100%, 720px);
  margin: 18px auto 30px;
  padding: 18px 22px;
  border: 1px solid #efbe65;
  border-radius: 8px;
  background: #fff4da;
  text-align: center;
}

.content .notice-box p {
  margin: 0;
  color: var(--accent-strong);
  font-size: 18px;
  font-weight: 800;
}

.content .protected-email {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2em;
  margin: 14px 0 0;
  color: var(--accent-strong);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  user-select: none;
  -webkit-user-select: none;
}

.content .email-separator {
  color: var(--ink-muted);
  font-size: 0.78em;
}

.content .text-label {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 520px);
  margin: 18px auto 20px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff7d9;
  color: #2f6691;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(115, 90, 35, 0.08);
}

.content .text-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--label-accent) 0 28px, var(--label-soft) 28px 56px);
}

.content .text-label::after {
  content: "♪";
  position: absolute;
  right: 12px;
  bottom: 6px;
  color: var(--label-accent);
  font-size: 20px;
  opacity: 0.55;
}

.content .text-label-section {
  width: min(100%, 680px);
  min-height: 118px;
  margin: 44px auto 28px;
  padding: 28px 24px 20px;
  font-size: clamp(30px, 4vw, 46px);
}

.content .text-label-item {
  min-height: 76px;
  padding: 22px 18px 14px;
  font-size: clamp(24px, 3vw, 34px);
}

.content .label-subtitle {
  display: block;
  margin-top: 4px;
  color: #4566a2;
  font-size: 0.54em;
}

.content .text-label-orange {
  --label-accent: #f49b3f;
  --label-soft: #f6cf8f;
}

.content .text-label-green {
  --label-accent: #85c94e;
  --label-soft: #d9efb8;
}

.content .text-label-blue {
  --label-accent: #2da7d6;
  --label-soft: #d3e0e6;
}

.content .text-label-pink {
  --label-accent: #ea78a2;
  --label-soft: #f5b4c8;
}

.content .exhibitor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.content .exhibitor-grid .cc-m-hgrid-column {
  width: 100% !important;
}

.content .exhibitor-grid .cc-m-hgrid-separator {
  display: none;
}

.content .exhibitor-card {
  display: grid;
  grid-template-columns: minmax(220px, 48%) minmax(0, 1fr);
  gap: 18px 26px;
  align-items: start;
  margin-bottom: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefb;
  box-shadow: 0 8px 22px rgba(45, 61, 57, 0.06);
}

.content .exhibitor-card > .text-label-item {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
}

.content .exhibitor-card > .exhibitor-media {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
}

.content .exhibitor-card > .exhibitor-description {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
}

.content .exhibitor-description > :first-child,
.content .exhibitor-description > :first-child p:first-child,
.content .exhibitor-description > :first-child h3:first-child {
  margin-top: 0;
}

.content .exhibitor-media {
  display: grid;
  gap: 12px;
}

.content .exhibitor-media-multiple {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content .exhibitor-media .j-gallery,
.content .exhibitor-media .j-imageSubtitle {
  margin: 0;
}

.content .exhibitor-media .j-gallery {
  grid-column: 1 / -1;
}

.content .exhibitor-media .cc-m-image-align-1,
.content .exhibitor-media .cc-m-image-align-2,
.content .exhibitor-media .cc-m-image-align-3 {
  float: none;
  max-width: none;
  margin: 0;
}

.content .exhibitor-media img {
  display: block;
  width: 100%;
}

.content .exhibitor-media .cc-m-gallery-container ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.content .exhibitor-media-multiple .cc-m-gallery-container ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content .exhibitor-media .cc-m-gallery-container li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content .exhibitor-media .cc-m-gallery-slider-bar,
.content .exhibitor-media .cc-m-gallery-slider-fullscreen {
  display: none;
}

.content .cc-m-hgrid-column {
  width: auto !important;
}

.content .cc-m-image-align-1,
.content .cc-m-image-align-2 {
  margin: 16px 0;
}

.content .cc-m-image-align-1 img,
.content .cc-m-image-align-2 img {
  display: block;
}

.content .cc-m-image-align-1 {
  text-align: left;
}

.content .cc-m-image-align-2 {
  text-align: center;
}

.content .cc-m-image-align-3 {
  float: right;
  max-width: min(42%, 320px);
  margin: 0 0 16px 24px;
}

.content .cc-clear,
.content .clearover {
  clear: both;
}

.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.content th,
.content td {
  border: 1px solid var(--line);
  padding: 10px;
  vertical-align: top;
}

.content th { background: #fbf2de; }

.archive-page h1 {
  margin-top: 0;
}

.archive-year {
  margin-top: 34px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.archive-card {
  display: flex;
  min-height: 86px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  color: var(--ink);
  text-decoration: none;
}

.archive-card:hover {
  border-color: #efbe65;
  background: #fff4da;
}

.archive-card span {
  font-weight: 800;
}

.archive-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 6px;
  background: #f5ead6;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  padding: 28px clamp(16px, 4vw, 48px);
  background: #2d3d39;
  color: #f8f0df;
}

.site-footer p { margin: 4px 0; }
.not-found { text-align: center; }

@media (max-width: 780px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav { justify-content: flex-start; }
  .hero { min-height: 260px; }
  .content { padding: 20px; }

  .content .exhibitor-card {
    grid-template-columns: 1fr;
  }

  .content .exhibitor-card > .exhibitor-description {
    grid-column: 1;
    grid-row: auto;
  }

  .content .exhibitor-card > .exhibitor-media {
    grid-row: auto;
  }
}
