:root {
  --bg: #fffaf2;
  --surface: #ffffff;
  --surface-soft: #fff3df;
  --text: #263341;
  --muted: #5f6f7d;
  --primary: #e5672f;
  --primary-dark: #c84d1c;
  --accent: #6ab9c5;
  --line: #f2dcc7;
  --shadow: 0 16px 40px rgba(34, 51, 68, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--text);
  background: linear-gradient(155deg, #fffef9 0%, #fff7e8 40%, #f3fbff 100%);
  line-height: 1.8;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.45;
  z-index: -1;
}

.orb-a {
  width: 420px;
  height: 420px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, #ffd795 0%, rgba(255, 215, 149, 0) 68%);
}

.orb-b {
  width: 360px;
  height: 360px;
  left: -100px;
  bottom: 8%;
  background: radial-gradient(circle, #a8e5f0 0%, rgba(168, 229, 240, 0) 72%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 242, 0.84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 58px;
  height: 50px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 22px;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--surface-soft);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
}

.section {
  padding: 84px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 241, 219, 0.38) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.section-head {
  margin-bottom: 30px;
}

.eyebrow {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.12em;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.3;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.75rem, 3.3vw, 2.8rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  color: var(--muted);
  margin-bottom: 28px;
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.hero-image {
  margin: 0;
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 2px solid rgba(229, 103, 47, 0.25);
  border-radius: 38px;
  transform: rotate(-2deg);
}

.hero-image img {
  border-radius: 30px;
  box-shadow: var(--shadow);
  min-height: 360px;
  object-fit: cover;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 11px 20px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(229, 103, 47, 0.24);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-ghost {
  border: 1px solid var(--primary);
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.82);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

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

.card-soft {
  background: var(--surface-soft);
}

.timeline {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.timeline li {
  padding: 7px 0;
  border-bottom: 1px dashed #dfc7ad;
  color: var(--muted);
}

.timeline span {
  display: inline-block;
  min-width: 98px;
  font-weight: 700;
  color: var(--text);
}

.news-list {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.news-list article {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #f2e5d6;
}

.news-list article:last-child {
  border-bottom: 0;
}

.news-list time {
  font-weight: 700;
  color: var(--primary-dark);
}

.news-list p {
  margin: 0;
  color: var(--muted);
}

.more-link {
  margin-top: 16px;
}

.text-link {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16em;
}

.action-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.action-btn {
  text-align: center;
  text-decoration: none;
  border-radius: 16px;
  padding: 16px 14px;
  background: linear-gradient(135deg, #ffd795 0%, #ffc26d 100%);
  font-weight: 700;
  color: #503517;
  box-shadow: 0 10px 24px rgba(255, 183, 93, 0.28);
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
}

.contact-cta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  padding: 28px 0 44px;
}

.site-footer p,
.site-footer small {
  margin: 0;
  color: var(--muted);
}

.site-footer small {
  display: block;
  margin-top: 6px;
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .hero-image img {
    min-height: 260px;
  }

  .action-row {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 4%;
    width: min(280px, 92vw);
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 68px 0;
  }

  .news-list article {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.conference-hero {
  padding-bottom: 48px;
}

.conference-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: 0.9fr 1.1fr;
}

.conference-meta {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.conference-meta li {
  margin-bottom: 8px;
}

.schedule-table-wrap {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

.schedule-table th,
.schedule-table td {
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  padding: 14px 12px;
}

.schedule-table th {
  width: 132px;
  color: var(--primary-dark);
  font-weight: 700;
  text-align: left;
  background: rgba(255, 243, 223, 0.55);
}

.schedule-table td {
  color: var(--muted);
}

.conference-links {
  align-items: stretch;
}

@media (max-width: 980px) {
  .conference-layout {
    grid-template-columns: 1fr;
  }
}

.sub-hero {
  padding-top: 72px;
  padding-bottom: 30px;
}

.page-layout {
  display: grid;
  gap: 20px;
}

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

.prose p,
.prose li {
  margin-top: 0;
}

.simple-table-wrap {
  overflow-x: auto;
}

.simple-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}

.simple-table th,
.simple-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
}

.simple-table th {
  color: var(--primary-dark);
  background: rgba(255, 243, 223, 0.6);
  width: 28%;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.staff-group {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
}

.staff-group h3 {
  margin-bottom: 8px;
}

.staff-group ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.news-board {
  display: grid;
  gap: 10px;
}

.news-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

.news-item time {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-dark);
}

@media (max-width: 980px) {
  .staff-grid {
    grid-template-columns: 1fr;
  }
}
