@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;500;600&display=swap");

:root {
  --ds-color-brand: #cc785c;
  --ds-color-brand-hover: #a9583e;
  --ds-color-accent: #e8a55a;
  --ds-color-success: #5db872;
  --ds-color-warning: #d4a017;
  --ds-color-danger: #c64545;

  --ds-color-bg: #faf9f5;
  --ds-surface-muted: #f5f0e8;
  --ds-surface-card: #efe9de;
  --ds-surface-raised: #e8e0d2;
  --ds-surface-inverse: #181715;
  --ds-surface-inverse-raised: #252320;
  --ds-surface-inverse-muted: #1f1e1b;

  --ds-text-primary: #141413;
  --ds-text-secondary: #3d3d3a;
  --ds-text-muted: #6c6a64;
  --ds-text-muted-strong: #8e8b82;
  --ds-text-on-inverse: #faf9f5;
  --ds-text-on-inverse-muted: #a09d96;
  --ds-text-on-brand: #ffffff;

  --ds-border-subtle: #e6dfd8;
  --ds-shadow-subtle: 0 1px 3px rgba(20, 20, 19, 0.08);
  --ds-shadow-elevated: 0 18px 50px rgba(0, 0, 0, 0.28);
  --ds-motion-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --ds-layout-nav-height: 76px;
  --ds-font-family-body: "Inter", "Noto Sans TC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ds-font-family-display: "Cormorant Garamond", "Noto Serif TC", "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.site-page,
.dashboard-page {
  margin: 0;
  color: var(--ds-text-secondary);
  font-family: var(--ds-font-family-body);
  line-height: 1.55;
}

.site-page *,
.dashboard-page * {
  letter-spacing: 0 !important;
}

.single-screen-page .brand-stage h1,
.single-screen-page .site-modal h2,
.single-screen-page .notice-card h3,
.single-screen-page .modal-feature h3,
.single-screen-page .notice-visual,
.dashboard-page h1,
.dashboard-page .value,
.dashboard-page .donut-label,
.dashboard-page .metric-box strong {
  font-family: var(--ds-font-family-display);
}

/* Public Site */
html:has(.single-screen-page) {
  overflow: hidden;
}

.single-screen-page {
  --ds-layout-nav-height: 76px;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--ds-surface-inverse);
  color: var(--ds-text-on-inverse);
}

.single-screen-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(232, 165, 90, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(24, 23, 21, 0.26), rgba(24, 23, 21, 0.72));
}

.single-screen-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.68'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.single-screen-page.modal-open {
  overflow: hidden;
}

.single-screen-page .screen-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--ds-surface-inverse);
}

.single-screen-page .screen-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.76) contrast(1.08) brightness(0.82);
  transform: scale(1.035);
}

.single-screen-page .site-nav,
.single-screen-page .site-nav.is-scrolled {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--ds-layout-nav-height);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.single-screen-page .nav-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: none;
  justify-content: center;
  padding: 0 24px;
}

.single-screen-page .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 52px);
  margin: 0;
  padding: 0;
}

.single-screen-page .nav-links li {
  display: block;
}

.single-screen-page .nav-links button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(250, 249, 245, 0.9);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.56);
  transition: color 0.2s;
}

.single-screen-page .nav-links button:hover,
.single-screen-page .nav-links button:focus-visible {
  color: var(--ds-color-accent);
  outline: 0;
}

.single-screen-page .theme-toggle {
  position: absolute;
  top: 50%;
  right: clamp(18px, 4vw, 42px);
  display: inline-grid;
  place-items: center;
  width: 42px;
  min-height: 42px;
  padding: 0;
  border: 1px solid rgba(250, 249, 245, 0.28);
  border-radius: 9999px;
  background: rgba(24, 23, 21, 0.28);
  color: rgba(250, 249, 245, 0.9);
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}

.single-screen-page .theme-toggle:hover,
.single-screen-page .theme-toggle:focus-visible {
  border-color: rgba(232, 165, 90, 0.7);
  background: rgba(24, 23, 21, 0.48);
  color: var(--ds-color-accent);
  outline: 0;
  transform: translateY(-50%) scale(1.04);
}

.single-screen-page .theme-toggle-icon {
  grid-area: 1 / 1;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.2s, transform 0.2s;
}

.single-screen-page .theme-toggle-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.single-screen-page .theme-toggle-sun {
  opacity: 0;
  transform: rotate(-45deg) scale(0.72);
}

[data-theme="dark"] .single-screen-page .theme-toggle-moon {
  opacity: 0;
  transform: rotate(45deg) scale(0.72);
}

[data-theme="dark"] .single-screen-page .theme-toggle-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.single-screen-page .single-screen {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--ds-layout-nav-height) + 18px) 24px 82px;
}

.single-screen-page .brand-stage {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(92vw, 1180px);
  text-align: center;
}

.single-screen-page .center-logo {
  display: block;
  width: min(26vw, 180px);
  height: auto;
  overflow: visible;
  filter:
    drop-shadow(0 10px 28px rgba(0, 0, 0, 0.54))
    drop-shadow(0 0 22px rgba(204, 120, 92, 0.22));
}

.single-screen-page .logo-hand-primary,
.single-screen-page .logo-hand-secondary {
  transform-box: fill-box;
  transform-origin: center;
}

.single-screen-page .brand-stage [data-animate] {
  will-change: opacity, transform;
}

.single-screen-page .screen-bg img,
.single-screen-page .center-logo {
  will-change: transform;
}

.single-screen-page .brand-stage h1 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: none;
  margin: 0;
  color: var(--ds-text-on-inverse);
  font-size: clamp(54px, 10.2vw, 132px);
  font-weight: 500;
  line-height: 0.92;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.58);
  white-space: nowrap;
}

.single-screen-page .title-letter {
  display: inline-block;
  transform-origin: 50% 62%;
  will-change: opacity, transform, filter;
}

.single-screen-page .brand-stage p {
  margin: 0;
  color: rgba(250, 249, 245, 0.82);
  font-size: clamp(14px, 1.7vw, 18px);
  line-height: 1.7;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.52);
}

.single-screen-page .single-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 0 24px 24px;
  color: rgba(250, 249, 245, 0.62);
  font-size: 13px;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.64);
}

.single-screen-page .single-footer p {
  margin: 0;
}

.single-screen-page .site-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background:
    linear-gradient(180deg, rgba(250, 249, 245, 0.96), rgba(245, 240, 232, 0.98));
  color: var(--ds-text-primary);
  overflow: auto;
  opacity: 0;
  transition:
    opacity 0.34s var(--ds-motion-standard),
    display 0.34s allow-discrete,
    overlay 0.34s allow-discrete;
}

.single-screen-page .site-modal::backdrop {
  background: rgba(24, 23, 21, 0.54);
  opacity: 0;
  transition:
    opacity 0.34s var(--ds-motion-standard),
    display 0.34s allow-discrete,
    overlay 0.34s allow-discrete;
}

.single-screen-page .site-modal[open] {
  opacity: 1;
}

.single-screen-page .site-modal[open]::backdrop {
  opacity: 1;
}

@starting-style {
  .single-screen-page .site-modal[open] {
    opacity: 0;
  }

  .single-screen-page .site-modal[open]::backdrop {
    opacity: 0;
  }
}

.single-screen-page .modal-shell {
  min-height: 100svh;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(80px, 10vh, 128px) 0 clamp(56px, 9vh, 104px);
}

.single-screen-page .modal-close {
  position: fixed;
  top: 28px;
  right: 32px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 44px;
  min-height: 42px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 9999px;
  background: transparent;
  color: var(--ds-color-brand-hover);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}

.single-screen-page .modal-close-icon {
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  object-fit: contain;
  transition: filter 0.2s;
}

.single-screen-page .modal-close:hover,
.single-screen-page .modal-close:focus-visible {
  background: var(--ds-color-brand);
  border-color: var(--ds-color-brand);
  color: var(--ds-text-primary);
  transform: rotate(90deg);
  outline: 0;
}

.single-screen-page .modal-kicker {
  margin-bottom: 18px;
  color: var(--ds-color-brand);
  font-size: 12px;
  font-weight: 500;
}

.single-screen-page .modal-hero {
  display: grid;
  justify-items: center;
  margin: 0 auto clamp(48px, 8vw, 84px);
  text-align: center;
}

.single-screen-page .site-modal h2 {
  max-width: min(11ch, 100%);
  margin: 0 0 24px;
  color: var(--ds-text-primary);
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 500;
  line-height: 0.98;
  text-align: center;
}

.single-screen-page .modal-lead {
  max-width: 650px;
  margin: 0;
  color: var(--ds-text-secondary);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.7;
  text-align: center;
}

.single-screen-page .modal-feature-list {
  display: grid;
  gap: clamp(46px, 7vw, 82px);
}

.single-screen-page .modal-about-layout {
  display: grid;
  gap: 16px;
}

.single-screen-page .modal-about-photo {
  display: block;
  width: 100%;
  height: clamp(220px, 22vw, 300px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 16px;
  background: var(--ds-surface-card);
}

.single-screen-page .about-point-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.single-screen-page .about-point,
.single-screen-page .modal-card,
.single-screen-page .notice-card {
  border-radius: 12px;
  background: var(--ds-surface-card);
  box-shadow: none;
  transition: transform 0.24s var(--ds-motion-standard), background-color 0.24s var(--ds-motion-standard), box-shadow 0.24s var(--ds-motion-standard);
}

.single-screen-page .about-point:hover,
.single-screen-page .modal-card:hover,
.single-screen-page .notice-card:hover,
.single-screen-page .about-point:focus-within,
.single-screen-page .modal-card:focus-within,
.single-screen-page .notice-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(20, 20, 19, 0.08);
}

.single-screen-page .about-point {
  display: grid;
  align-content: start;
  min-height: 220px;
  gap: 14px;
  padding: 32px;
}

.single-screen-page .about-point h3,
.single-screen-page .notice-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--ds-text-primary);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.08;
}

.single-screen-page .about-point h3 {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.single-screen-page .about-icon {
  display: block;
  width: 104px;
  height: 104px;
  color: var(--ds-text-primary);
}

.single-screen-page .about-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.single-screen-page .about-point p,
.single-screen-page .notice-card p {
  margin: 0;
  color: var(--ds-text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.single-screen-page .notice-card .notice-meta {
  margin: 0 0 8px;
  color: var(--ds-color-brand-hover);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.single-screen-page .notice-card .notice-meta + h3 {
  margin-bottom: 12px;
}

.single-screen-page .modal-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.single-screen-page .transport-card {
  grid-column: 1 / -1;
}

.single-screen-page .modal-card {
  padding: 32px;
}

.single-screen-page .modal-feature {
  display: grid;
  gap: 18px;
}

.single-screen-page .modal-feature h3 {
  margin: 0;
  color: var(--ds-text-primary);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.05;
}

.single-screen-page .modal-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  background: var(--ds-surface-card);
  box-shadow: 0 24px 60px rgba(20, 20, 19, 0.12);
}

.single-screen-page .modal-card img {
  border-radius: 12px;
  box-shadow: none;
}

.single-screen-page .modal-feature p {
  max-width: 760px;
  margin: 0;
  color: var(--ds-text-muted);
  font-size: 17px;
  line-height: 1.72;
}

.single-screen-page .modal-detail-list {
  display: grid;
  max-width: 760px;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--ds-text-muted);
  font-size: 17px;
  line-height: 1.72;
  list-style: none;
}

.single-screen-page .modal-detail-list li {
  position: relative;
  padding-left: 22px;
}

.single-screen-page .modal-detail-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: var(--ds-color-brand);
  content: "";
}

.single-screen-page .modal-detail-list strong {
  display: inline-block;
  min-width: 4.5em;
  margin-right: 12px;
  color: var(--ds-text-primary);
  font-weight: 500;
}

.single-screen-page .modal-schedule {
  width: min(760px, 100%);
  border-collapse: collapse;
  color: var(--ds-text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.single-screen-page .modal-schedule th,
.single-screen-page .modal-schedule td {
  padding: 14px 0;
  border-bottom: 1px solid var(--ds-border-subtle);
  text-align: left;
  vertical-align: top;
}

.single-screen-page .modal-schedule thead th {
  color: var(--ds-color-brand);
  font-size: 13px;
  font-weight: 500;
}

.single-screen-page .modal-schedule tbody th {
  width: 7em;
  color: var(--ds-text-primary);
  font-weight: 500;
}

.single-screen-page .notice-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.single-screen-page .notice-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
}

.single-screen-page .notice-card img {
  display: block;
  width: 100%;
  height: clamp(170px, 18vw, 230px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  background: var(--ds-surface-raised);
}

.single-screen-page .notice-faq-card {
  grid-column: 1 / -1;
  grid-template-columns: 1fr;
}

.single-screen-page .notice-feature-card {
  grid-column: 1 / -1;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.single-screen-page .notice-feature-card > img {
  height: 100%;
  min-height: 360px;
}

.single-screen-page .booth-name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.single-screen-page .booth-name-list li {
  padding: 8px 12px;
  border: 1px solid rgba(204, 120, 92, 0.24);
  border-radius: 999px;
  background: rgba(204, 120, 92, 0.08);
  color: var(--ds-text-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.single-screen-page .notice-checkin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.single-screen-page .notice-checkin-grid section {
  padding-top: 14px;
  border-top: 1px solid var(--ds-border-subtle);
}

.single-screen-page .notice-checkin-grid h4 {
  margin: 0 0 10px;
  color: var(--ds-text-primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.single-screen-page .notice-checkin-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--ds-text-muted);
  font-size: 14px;
  line-height: 1.65;
  list-style: none;
}

.single-screen-page .notice-checkin-grid li {
  position: relative;
  padding-left: 16px;
}

.single-screen-page .notice-checkin-grid li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--ds-color-brand);
  content: "";
}

.single-screen-page .notice-visual {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 28%, rgba(204, 120, 92, 0.22), transparent 42%),
    var(--ds-surface-raised);
  color: var(--ds-color-brand-hover);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
}

.single-screen-page .faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 0;
}

.single-screen-page .faq-list div {
  padding-top: 14px;
  border-top: 1px solid var(--ds-border-subtle);
}

.single-screen-page .faq-list dt {
  margin: 0 0 6px;
  color: var(--ds-text-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.single-screen-page .faq-list dd {
  margin: 0;
  color: var(--ds-text-muted);
  font-size: 15px;
  line-height: 1.68;
}

.single-screen-page .transport-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.single-screen-page .transport-card .modal-detail-list {
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.single-screen-page .transport-card .modal-detail-list li {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--ds-border-subtle);
  border-radius: 12px;
  background: rgba(250, 249, 245, 0.52);
}

.single-screen-page .transport-card .modal-detail-list li::before {
  display: none;
}

.single-screen-page .transport-card .modal-detail-list strong {
  display: block;
  min-width: 0;
  margin: 0 0 8px;
}

.single-screen-page .site-map-mini {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ds-border-subtle);
  border-radius: 12px;
  background: rgba(250, 249, 245, 0.7);
}

.single-screen-page .site-map-mini picture,
.single-screen-page .site-map-mini img {
  display: block;
}

.single-screen-page .site-map-mini img {
  width: 100%;
  height: auto;
  aspect-ratio: 1504 / 1003;
  object-fit: cover;
}

.single-screen-page .site-map-mini figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--ds-border-subtle);
  color: var(--ds-text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.single-screen-page .contact-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(40px, 7vw, 72px);
}

.single-screen-page .modal-contact-shell {
  width: min(1120px, calc(100% - 48px));
}

.single-screen-page .contact-feature-list .modal-feature h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.single-screen-page .contact-feature-list .modal-feature img {
  height: clamp(190px, 20vw, 250px);
  aspect-ratio: auto;
  object-position: center center;
}

.single-screen-page .contact-form {
  display: grid;
  gap: 18px;
  width: 100%;
  margin: 0;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--ds-border-subtle);
  border-radius: 16px;
  background: rgba(250, 249, 245, 0.72);
  box-shadow: none;
}

.single-screen-page .form-group {
  display: grid;
  gap: 8px;
}

.single-screen-page .form-group label {
  color: var(--ds-text-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.single-screen-page .form-group label span {
  color: var(--ds-color-brand);
}

.single-screen-page .form-group input,
.single-screen-page .form-group textarea {
  width: 100%;
  border: 1px solid var(--ds-border-subtle);
  border-radius: 10px;
  background: rgba(250, 249, 245, 0.78);
  color: var(--ds-text-primary);
  font: inherit;
  font-size: 16px;
  line-height: 1.55;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.single-screen-page .form-group input {
  min-height: 48px;
  padding: 0 14px;
}

.single-screen-page .form-group textarea {
  min-height: 160px;
  padding: 13px 14px;
  resize: vertical;
}

.single-screen-page .form-group input::placeholder,
.single-screen-page .form-group textarea::placeholder {
  color: rgba(108, 106, 100, 0.72);
}

.single-screen-page .form-group input:focus,
.single-screen-page .form-group textarea:focus {
  border-color: var(--ds-color-brand);
  background: var(--ds-color-bg);
  box-shadow: 0 0 0 3px rgba(204, 120, 92, 0.16);
  outline: 0;
}

.single-screen-page .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.single-screen-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 10px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.single-screen-page .btn-primary {
  background: var(--ds-color-brand);
  border-color: var(--ds-color-brand);
  color: var(--ds-text-on-brand);
}

.single-screen-page .btn-primary:hover,
.single-screen-page .btn-primary:focus-visible {
  background: var(--ds-color-brand-hover);
  border-color: var(--ds-color-brand-hover);
  outline: 0;
  transform: translateY(-1px);
}

.single-screen-page .btn-submit {
  width: 100%;
}

.single-screen-page .btn:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
}

.single-screen-page .form-status {
  display: none;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.55;
}

.single-screen-page .form-status.visible {
  display: block;
}

.single-screen-page .form-status.success {
  border-color: rgba(93, 184, 114, 0.28);
  background: rgba(93, 184, 114, 0.12);
  color: #2f7242;
}

.single-screen-page .form-status.error {
  border-color: rgba(198, 69, 69, 0.22);
  background: rgba(198, 69, 69, 0.1);
  color: #9f3434;
}

.single-screen-page .form-status.loading {
  border-color: rgba(232, 165, 90, 0.32);
  background: rgba(232, 165, 90, 0.16);
  color: #8b5d1e;
}

[data-theme="dark"] .single-screen-page {
  --ds-text-primary: #faf9f5;
  --ds-text-secondary: #ddd8cf;
  --ds-text-muted: #b9b2a7;
  --ds-border-subtle: rgba(250, 249, 245, 0.14);
  --ds-shadow-subtle: 0 18px 50px rgba(0, 0, 0, 0.28);
  background: var(--ds-surface-inverse);
  color: var(--ds-text-secondary);
}

[data-theme="dark"] .single-screen-page .screen-bg img {
  filter: saturate(0.68) contrast(1.12) brightness(0.56);
}

[data-theme="dark"] .single-screen-page::before {
  background:
    radial-gradient(ellipse at center, rgba(24, 23, 21, 0.08) 0%, rgba(24, 23, 21, 0.54) 54%, rgba(24, 23, 21, 0.9) 100%),
    linear-gradient(180deg, rgba(24, 23, 21, 0.16) 0%, rgba(24, 23, 21, 0.82) 100%);
}

[data-theme="dark"] .single-screen-page .site-modal {
  background:
    radial-gradient(ellipse at top left, rgba(204, 120, 92, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(31, 30, 27, 0.98), rgba(24, 23, 21, 0.99));
  color: var(--ds-text-primary);
}

[data-theme="dark"] .single-screen-page .site-modal::backdrop {
  background: rgba(8, 8, 7, 0.72);
}

[data-theme="dark"] .single-screen-page .modal-feature img {
  background: var(--ds-surface-inverse-raised);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

[data-theme="dark"] .single-screen-page .about-point,
[data-theme="dark"] .single-screen-page .modal-card,
[data-theme="dark"] .single-screen-page .notice-card {
  background: var(--ds-surface-inverse-raised);
}

[data-theme="dark"] .single-screen-page .about-point:hover,
[data-theme="dark"] .single-screen-page .modal-card:hover,
[data-theme="dark"] .single-screen-page .notice-card:hover,
[data-theme="dark"] .single-screen-page .about-point:focus-within,
[data-theme="dark"] .single-screen-page .modal-card:focus-within,
[data-theme="dark"] .single-screen-page .notice-card:focus-within {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .single-screen-page .modal-card img,
[data-theme="dark"] .single-screen-page .notice-card img {
  box-shadow: none;
}

[data-theme="dark"] .single-screen-page .booth-name-list li {
  border-color: rgba(204, 120, 92, 0.36);
  background: rgba(204, 120, 92, 0.14);
  color: var(--ds-text-primary);
}

[data-theme="dark"] .single-screen-page .notice-visual {
  background:
    linear-gradient(90deg, rgba(250, 249, 245, 0.08) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(180deg, rgba(250, 249, 245, 0.08) 1px, transparent 1px) 0 0 / 34px 34px,
    rgba(24, 23, 21, 0.7);
}

[data-theme="dark"] .single-screen-page .site-map-mini {
  background: rgba(24, 23, 21, 0.7);
}

[data-theme="dark"] .single-screen-page .transport-card .modal-detail-list li {
  background: rgba(24, 23, 21, 0.42);
}

[data-theme="dark"] .single-screen-page .notice-visual {
  color: var(--ds-color-brand);
}

[data-theme="dark"] .single-screen-page .about-icon img {
  filter: invert(0.9);
}

[data-theme="dark"] .single-screen-page .site-map-mini figcaption {
  color: var(--ds-text-muted-strong);
}

[data-theme="dark"] .single-screen-page .form-group input,
[data-theme="dark"] .single-screen-page .form-group textarea {
  background: rgba(37, 35, 32, 0.86);
  color: var(--ds-text-primary);
}

[data-theme="dark"] .single-screen-page .contact-form {
  border-color: rgba(250, 249, 245, 0.16);
  background: rgba(37, 35, 32, 0.72);
}

[data-theme="dark"] .single-screen-page .form-group label {
  color: var(--ds-text-primary);
}

[data-theme="dark"] .single-screen-page .form-group input::placeholder,
[data-theme="dark"] .single-screen-page .form-group textarea::placeholder {
  color: rgba(221, 216, 207, 0.52);
}

[data-theme="dark"] .single-screen-page .modal-close {
  background: transparent;
  color: var(--ds-color-brand);
}

[data-theme="dark"] .single-screen-page .modal-close-icon {
  filter: invert(0.9);
}

@media (max-width: 980px) {
  .single-screen-page .modal-card-grid,
  .single-screen-page .notice-card-grid,
  .single-screen-page .contact-feature-list {
    grid-template-columns: 1fr;
  }

  .single-screen-page .transport-card .modal-detail-list {
    grid-template-columns: 1fr;
  }

  .single-screen-page .about-point-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-screen-page .modal-about-photo {
    height: 220px;
    aspect-ratio: auto;
  }
}

@media (max-width: 760px) {
  .single-screen-page {
    --ds-layout-nav-height: 72px;
  }

  .single-screen-page .site-nav,
  .single-screen-page .site-nav.is-scrolled {
    inset: auto 0 52px;
    height: auto;
  }

  .single-screen-page .nav-inner {
    align-items: center;
    padding: 0 18px;
  }

  .single-screen-page .nav-links {
    position: static;
    inset: auto;
    display: flex;
    flex-direction: row;
    max-width: 320px;
    width: min(100%, 320px);
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 22px;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .single-screen-page .nav-links button {
    min-height: 32px;
    font-size: 14px;
  }

  .single-screen-page .theme-toggle {
    top: auto;
    right: 16px;
    bottom: 8px;
    width: 38px;
    min-height: 38px;
    transform: none;
  }

  .single-screen-page .theme-toggle:hover,
  .single-screen-page .theme-toggle:focus-visible {
    transform: scale(1.04);
  }

  .single-screen-page .single-screen {
    padding: 52px 18px 150px;
  }

  .single-screen-page .brand-stage {
    width: min(calc(100vw - 36px), 420px);
    gap: 12px;
  }

  .single-screen-page .center-logo {
    width: min(30vw, 112px);
  }

  .single-screen-page .brand-stage h1 {
    font-size: clamp(36px, 11.4vw, 52px);
  }

  .single-screen-page .brand-stage p {
    max-width: 18em;
  }

  .single-screen-page .single-footer {
    padding-bottom: 16px;
    font-size: 12px;
  }

  .single-screen-page .modal-shell,
  .single-screen-page .modal-contact-shell {
    width: min(100% - 32px, 640px);
    padding-top: 76px;
  }

  .single-screen-page .modal-close {
    top: 18px;
    right: 18px;
  }

  .single-screen-page .site-modal h2 {
    max-width: 10ch;
    font-size: clamp(36px, 12vw, 54px);
  }

  .single-screen-page .modal-about-photo {
    height: 180px;
    aspect-ratio: auto;
    border-radius: 12px;
  }

  .single-screen-page .about-point-grid {
    grid-template-columns: 1fr;
  }

  .single-screen-page .about-point,
  .single-screen-page .modal-card,
  .single-screen-page .notice-card {
    padding: 24px;
  }

  .single-screen-page .about-point {
    min-height: 0;
  }

  .single-screen-page .about-icon {
    width: 100px;
    height: 100px;
  }

  .single-screen-page .notice-faq-card {
    grid-template-columns: 1fr;
  }

  .single-screen-page .notice-feature-card {
    grid-template-columns: 1fr;
  }

  .single-screen-page .notice-feature-card > img {
    min-height: 0;
    height: 180px;
  }

  .single-screen-page .notice-checkin-grid {
    grid-template-columns: 1fr;
  }

  .single-screen-page .faq-list {
    grid-template-columns: 1fr;
  }

  .single-screen-page .notice-card img {
    height: 180px;
    aspect-ratio: auto;
  }

  .single-screen-page .notice-visual {
    aspect-ratio: 16 / 9;
  }

  .single-screen-page .site-map-mini {
    max-width: 100%;
  }

  .single-screen-page .modal-feature img {
    height: 180px;
    aspect-ratio: auto;
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .single-screen-page .screen-bg img,
  .single-screen-page .center-logo,
  .single-screen-page .title-letter,
  .single-screen-page .brand-stage [data-animate],
  .single-screen-page .site-modal,
  .single-screen-page .site-modal::backdrop,
  .single-screen-page .modal-shell,
  .single-screen-page .about-point,
  .single-screen-page .modal-card,
  .single-screen-page .notice-card,
  .single-screen-page .theme-toggle,
  .single-screen-page .theme-toggle-icon {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .single-screen-page .about-point:hover,
  .single-screen-page .modal-card:hover,
  .single-screen-page .notice-card:hover,
  .single-screen-page .about-point:focus-within,
  .single-screen-page .modal-card:focus-within,
  .single-screen-page .notice-card:focus-within {
    transform: none;
  }
}

/* Dashboard */
.dashboard-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(204, 120, 92, 0.11), transparent 32%),
    linear-gradient(180deg, var(--ds-surface-muted) 0%, var(--ds-color-bg) 320px);
  margin: 0;
}

.dashboard-page main {
  width: min(1400px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 40px 0;
}

.dashboard-page header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding: 28px 32px;
  border: 1px solid rgba(204, 120, 92, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(250, 249, 245, 0.94), rgba(245, 240, 232, 0.9)),
    var(--ds-surface-card);
  color: var(--ds-text-primary);
  box-shadow: none;
}

.dashboard-page .dashboard-title {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.dashboard-page .dashboard-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(204, 120, 92, 0.18);
}

.dashboard-page h1 {
  margin: 0;
  color: var(--ds-text-primary);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.dashboard-page .subtitle,
.dashboard-page .meta {
  color: var(--ds-text-muted);
}

.dashboard-page .subtitle {
  margin-top: 6px;
}

.dashboard-page .meta {
  text-align: right;
  white-space: nowrap;
  font-size: 13px;
}

.dashboard-page .grid {
  display: grid;
  gap: 16px;
}

.dashboard-page .kpis {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 16px;
}

.dashboard-page .two-col {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  margin-bottom: 16px;
}

.dashboard-page .three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 16px;
}

.dashboard-page section,
.dashboard-page .card {
  border: 1px solid var(--ds-border-subtle);
  border-color: var(--ds-border-subtle);
  border-radius: 12px;
  background: var(--ds-color-bg);
  box-shadow: none;
}

.dashboard-page .card {
  min-height: 132px;
  padding: 20px;
  background: var(--ds-surface-card);
}

.dashboard-page .label,
.dashboard-page .small,
.dashboard-page .note,
.dashboard-page .source {
  color: var(--ds-text-muted);
}

.dashboard-page .label {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
}

.dashboard-page .value {
  color: var(--ds-text-primary);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.dashboard-page .card-alert {
  position: relative;
  border-color: rgba(204, 120, 92, 0.46);
  background:
    linear-gradient(90deg, rgba(204, 120, 92, 0.12), transparent 58%),
    var(--ds-surface-card);
  box-shadow: inset 4px 0 0 var(--ds-color-brand);
}

.dashboard-page .card-alert .label {
  color: var(--ds-color-brand-hover);
}

.dashboard-page .value.negative {
  color: var(--ds-color-brand);
}

.dashboard-page .note {
  margin-top: 8px;
  font-size: 13px;
}

.dashboard-page .progress-line,
.dashboard-page .bar {
  overflow: hidden;
  border-radius: 9999px;
  background: var(--ds-surface-raised);
}

.dashboard-page .progress-line {
  height: 8px;
  margin: 14px 0 8px;
}

.dashboard-page .progress-line i,
.dashboard-page .bar i,
.dashboard-page .donut .fill {
  background: var(--ds-color-brand);
  stroke: var(--ds-color-brand);
}

.dashboard-page .progress-line i,
.dashboard-page .bar i {
  display: block;
  height: 100%;
}

.dashboard-page .panel {
  padding: 24px;
  overflow-x: auto;
}

.dashboard-page .action-panel {
  margin-bottom: 16px;
  background:
    linear-gradient(135deg, rgba(232, 165, 90, 0.14), rgba(250, 249, 245, 0.74)),
    var(--ds-color-bg);
}

.dashboard-page .panel-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ds-border-subtle);
}

.dashboard-page h2 {
  margin: 0;
  color: var(--ds-text-primary);
  font-size: 18px;
  font-weight: 500;
}

.dashboard-page .donut-card,
.dashboard-page .metric-box {
  border-color: var(--ds-border-subtle);
  border-radius: 12px;
  background: var(--ds-surface-muted);
}

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

.dashboard-page .donut-card {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--ds-border-subtle);
}

.dashboard-page .donut {
  width: 110px;
  height: 110px;
  transform: rotate(-90deg);
}

.dashboard-page .donut circle {
  fill: none;
  stroke-width: 3.5;
}

.dashboard-page .donut .track {
  stroke: var(--ds-surface-raised);
}

.dashboard-page .donut .fill {
  stroke-linecap: round;
  stroke-dasharray: var(--ds-dashboard-donut-progress) 100;
}

.dashboard-page .donut-label,
.dashboard-page .metric-box strong {
  color: var(--ds-text-primary);
  font-weight: 500;
  letter-spacing: 0;
}

.dashboard-page .metric-box strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
  line-height: 1.15;
}

.dashboard-page .bar-row {
  display: grid;
  grid-template-columns: 72px 1fr 56px;
  gap: 12px;
  align-items: center;
  margin: 13px 0;
  font-size: 13px;
}

.dashboard-page .bar {
  height: 12px;
}

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

.dashboard-page .metric-box {
  padding: 14px;
  border: 1px solid var(--ds-border-subtle);
}

.dashboard-page .metric-box-wide {
  margin-bottom: 14px;
}

.dashboard-page ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-page .action-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-page li {
  padding: 13px 0;
  border-top: 1px solid var(--ds-border-subtle);
  border-top-color: var(--ds-border-subtle);
}

.dashboard-page li:first-child {
  padding-top: 0;
  border-top: 0;
}

.dashboard-page .action-list li,
.dashboard-page .action-list li:first-child {
  min-height: 100%;
  padding: 14px;
  border: 1px solid rgba(204, 120, 92, 0.18);
  border-radius: 10px;
  background: rgba(250, 249, 245, 0.72);
}

.dashboard-page li b {
  display: block;
  margin-bottom: 3px;
  color: var(--ds-text-primary);
  font-weight: 500;
}

.dashboard-page li span {
  color: var(--ds-text-muted);
  font-size: 13px;
}

.dashboard-page table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--ds-text-secondary);
  font-size: 13px;
}

.dashboard-page .data-table .col-name { width: 22%; }
.dashboard-page .data-table .col-items { width: 42%; }
.dashboard-page .data-table .col-identity { width: 40%; }
.dashboard-page .data-table .col-status { width: 22%; }
.dashboard-page .data-table .col-count { width: 12%; }
.dashboard-page .data-table .col-flag { width: 12%; }

.dashboard-page th,
.dashboard-page td {
  padding: 11px 10px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--ds-border-subtle);
  border-bottom-color: var(--ds-border-subtle);
}

.dashboard-page th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--ds-surface-muted);
  color: var(--ds-text-muted);
  font-weight: 500;
}

.dashboard-page td.num,
.dashboard-page th.num {
  text-align: right;
}

.dashboard-page tbody tr:hover td {
  background: rgba(239, 233, 222, 0.45);
}

.dashboard-page .chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 9px;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 12px;
}

.dashboard-page .chip.ok {
  color: #367447;
  background: rgba(93, 184, 114, 0.14);
}

.dashboard-page .chip.warn {
  color: #8a650c;
  background: rgba(232, 165, 90, 0.18);
}

.dashboard-page .chip.muted {
  color: var(--ds-text-muted);
  background: var(--ds-surface-muted);
}

.dashboard-page .source {
  margin-top: 14px;
  font-size: 12px;
}

.dashboard-page .dashboard-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(204, 120, 92, 0.2);
  border-radius: 12px;
  background: var(--ds-surface-muted);
}

.dashboard-page .dashboard-footer h2 {
  margin-bottom: 8px;
  font-size: 14px;
}

.dashboard-page .dashboard-footer p {
  margin: 4px 0;
  color: var(--ds-text-muted);
  font-size: 12px;
}

.dashboard-page .dashboard-footer code {
  color: var(--ds-text-secondary);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 11px;
}

.dashboard-page .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard-page .footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid rgba(204, 120, 92, 0.28);
  border-radius: 9999px;
  color: var(--ds-color-brand-hover);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.dashboard-page .footer-links a:hover,
.dashboard-page .footer-links a:focus-visible {
  border-color: rgba(204, 120, 92, 0.58);
  background: rgba(204, 120, 92, 0.1);
  color: var(--ds-text-primary);
  outline: 0;
}

@media (max-width: 980px) {
  .dashboard-page main {
    width: min(100% - 24px, 760px);
    padding: 24px 0;
  }

  .dashboard-page header {
    align-items: start;
    display: grid;
    padding: 24px;
  }

  .dashboard-page .dashboard-title {
    align-items: flex-start;
  }

  .dashboard-page .kpis,
  .dashboard-page .two-col,
  .dashboard-page .three-col,
  .dashboard-page .donuts,
  .dashboard-page .action-list {
    grid-template-columns: 1fr;
  }

  .dashboard-page .meta {
    text-align: left;
    white-space: normal;
  }

  .dashboard-page h1 {
    font-size: 32px;
  }

  .dashboard-page .dashboard-logo {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .dashboard-page .panel,
  .dashboard-page .card {
    padding: 18px;
  }

  .dashboard-page .donut-card {
    grid-template-columns: 96px 1fr;
  }

  .dashboard-page .donut {
    width: 90px;
    height: 90px;
  }

  .dashboard-page .dashboard-footer {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}
