@charset "UTF-8";

/* ==========================================================
   1. GLOBAL VARIABLES & RESET
========================================================== */
:root {
  --ku-crimson: #862633;
  --ku-crimson-dark: #6a1c27;
  --ku-crimson-light: #9e3240;
  --ku-crimson-bg: #fdf2f4;
  --ku-crimson-subtle: rgba(134, 38, 51, 0.08);

  --gray-900: #1a1a1c;
  --gray-800: #2d3139;
  --gray-700: #495057;
  --gray-600: #6c757d;
  --gray-500: #adb5bd;
  --gray-300: #dee2e6;
  --gray-200: #e9ecef;
  --gray-100: #f8f9fa;
  --white: #ffffff;

  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 32px rgba(134, 38, 51, 0.09);
  --shadow-crimson: 0 8px 20px rgba(134, 38, 51, 0.22);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  background-color: #fbfcff;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; width: 100%; }
section { padding: 90px 0; scroll-margin-top: 80px; }

/* ==========================================================
   2. TOP UTILITY BAR & HEADER (스크롤 반응형)
========================================================== */
.top-bar {
  position: fixed; top: 0; left: 0; width: 100%; height: 38px;
  z-index: 1001; background-color: transparent;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.top-bar .container { display: flex; justify-content: flex-end; align-items: center; height: 100%; }
.top-links { display: flex; gap: 16px; align-items: center; }
.top-links a { color: rgba(255, 255, 255, 0.8); font-size: 12.5px; font-weight: 500; }
.top-links a:hover { color: var(--white); }
.top-links span { color: rgba(255, 255, 255, 0.3); font-size: 11px; }
.top-bar.scrolled-hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }

header.site-header {
  position: fixed; top: 38px; left: 0; width: 100%; z-index: 1000;
  transition: top 0.3s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
header.site-header.is-transparent { background-color: transparent; box-shadow: none; }
header.site-header.scrolled {
  top: 0; background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px); box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }

.brand-logo { display: flex; align-items: center; text-decoration: none; line-height: 0; }
.brand-logo-img {
  height: 32px; width: auto; object-fit: contain;
  transition: filter 0.25s ease, transform 0.25s ease;
}
.brand-logo:hover .brand-logo-img { transform: scale(1.02); }

header.site-header.is-transparent .brand-logo-img { filter: brightness(0) invert(1); }
header.site-header.scrolled .brand-logo-img { filter: none; }

header.site-header.is-transparent .nav-link { color: rgba(255, 255, 255, 0.85); }
header.site-header.is-transparent .nav-link:hover,
header.site-header.is-transparent .nav-item.active .nav-link { color: var(--white); }
header.site-header.is-transparent .nav-link::after { background-color: var(--white); }

header.site-header.scrolled .nav-link { color: var(--gray-800); }
header.site-header.scrolled .nav-link:hover,
header.site-header.scrolled .nav-item.active .nav-link { color: var(--ku-crimson); }
header.site-header.scrolled .nav-link::after { background-color: var(--ku-crimson); }

.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-item { position: relative; }
.nav-link { font-size: 15.5px; font-weight: 600; padding: 10px 4px; display: flex; align-items: center; gap: 5px; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2.5px; border-radius: 2px; transition: width 0.25s ease; }
.nav-item:hover .nav-link::after, .nav-item.active .nav-link::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.btn-header-cta {
  background: var(--ku-crimson); color: var(--white); font-size: 14.5px; font-weight: 700;
  padding: 10px 20px; border-radius: var(--radius-full); box-shadow: var(--shadow-crimson);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-header-cta:hover { background: var(--ku-crimson-dark); transform: translateY(-1px); }

.mobile-toggle-btn {
  display: none; flex-direction: column; justify-content: space-between;
  width: 26px; height: 19px; cursor: pointer; z-index: 1002; padding: 0;
}
.mobile-toggle-btn span {
  display: block; height: 2.5px; width: 100%;
  background-color: var(--white); border-radius: 2px; transition: var(--transition);
}
header.site-header.scrolled .mobile-toggle-btn span { background-color: var(--gray-900); }

/* ==========================================================
   3. MOBILE DRAWER
========================================================== */
.mobile-backdrop {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.55); backdrop-filter: blur(4px);
  z-index: 1999; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-backdrop.is-active { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed; top: 0; right: -310px; width: 290px; height: 100vh;
  background: var(--white); z-index: 2000; box-shadow: -6px 0 24px rgba(0, 0, 0, 0.15);
  display: flex; flex-direction: column; transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px 20px;
}
.mobile-drawer.is-active { right: 0; }

.mobile-drawer-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 18px; border-bottom: 1px solid var(--gray-200); margin-bottom: 16px;
}
.mobile-drawer-close { font-size: 32px; color: var(--gray-600); line-height: 1; padding: 0 4px; }

.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; flex-grow: 1; overflow-y: auto; }
.mobile-link {
  display: block; padding: 13px 12px; font-size: 16px; font-weight: 700; color: var(--gray-800);
  border-radius: var(--radius-sm); transition: var(--transition);
}
.mobile-link:active, .mobile-link:hover { background-color: var(--ku-crimson-bg); color: var(--ku-crimson); }

.mobile-drawer-cta { padding-top: 18px; border-top: 1px solid var(--gray-200); }
.btn-mobile-reserve {
  display: block; width: 100%; padding: 14px 0; background-color: var(--ku-crimson);
  color: var(--white); text-align: center; font-weight: 800; font-size: 15px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-crimson);
}

/* ==========================================================
   4. HERO BANNER
========================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #1c1d22 0%, #2f181c 50%, #862633 100%);
  color: var(--white); padding: 170px 0 110px 0; overflow: hidden;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero-title { font-size: 42px; font-weight: 900; line-height: 1.25; margin-bottom: 18px; letter-spacing: -1px; }
.hero-title span { color: #ffccd3; }
.hero-desc { font-size: 16.5px; color: rgba(255, 255, 255, 0.82); line-height: 1.7; margin-bottom: 34px; max-width: 540px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-hero-primary {
  background: var(--white); color: var(--ku-crimson); font-size: 16px; font-weight: 700;
  padding: 14px 30px; border-radius: var(--radius-full); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover { background: #ffeef0; transform: translateY(-2px); }
.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.12); color: var(--white); border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px); font-size: 16px; font-weight: 600; padding: 14px 28px;
  border-radius: var(--radius-full); display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-secondary:hover { background: rgba(255, 255, 255, 0.22); }

.hero-card-box {
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg); padding: 28px; backdrop-filter: blur(14px);
}
.hero-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: rgba(0, 0, 0, 0.22); padding: 16px; border-radius: var(--radius-md); }
.stat-num { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 800; color: #ffb3be; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: rgba(255, 255, 255, 0.75); }

/* ==========================================================
   5. NOTICE ALERT BAR
========================================================== */
.notice-bar-section {
  margin-top: -36px; position: relative; z-index: 10;
  scroll-margin-top: 110px; width: 100%;
}
.notice-bar {
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  padding: 18px 24px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; border-left: 5px solid var(--ku-crimson); min-width: 0; width: 100%;
}
.notice-content {
  display: flex; align-items: center; gap: 16px;
  min-width: 0; flex: 1; max-width: 100%;
}
.notice-tag {
  background: var(--ku-crimson-bg); color: var(--ku-crimson); font-weight: 700;
  font-size: 13px; padding: 4px 10px; border-radius: 6px; flex-shrink: 0;
}
.notice-text { font-size: 14.5px; font-weight: 600; color: var(--gray-800); min-width: 0; flex: 1; max-width: 100%; }
.idx-notice-title {
  color: inherit; font-weight: 700; text-decoration: none; display: block;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}
.notice-preview-line {
  display: block; font-size: 13px; color: var(--gray-600); font-weight: 400;
  margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; max-width: 100%;
}
.notice-links-group { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.notice-more-btn {
  background-color: var(--ku-crimson-bg); color: var(--ku-crimson); font-size: 13px; font-weight: 700;
  padding: 8px 16px; border-radius: var(--radius-full); border: 1px solid rgba(134, 38, 51, 0.2); white-space: nowrap;
}

.section-header { text-align: center; max-width: 680px; margin: 0 auto 48px auto; }
.section-badge {
  display: inline-block; color: var(--ku-crimson); font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px;
}
.section-title { font-size: 32px; font-weight: 800; color: var(--gray-900); margin-bottom: 12px; }
.section-title span { color: var(--ku-crimson); }
.section-desc { font-size: 15.5px; color: var(--gray-600); }

/* Core Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(134, 38, 51, 0.3); }
.service-icon-box {
  width: 58px; height: 58px; border-radius: 14px; background: var(--ku-crimson-bg);
  color: var(--ku-crimson); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px;
}
.service-card h4 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; margin-bottom: 20px; flex-grow: 1; }
.service-card .card-link { font-size: 14px; font-weight: 700; color: var(--ku-crimson); }

/* ==========================================================
   6. RESERVATION GRID
========================================================== */
.reservation-section { background-color: var(--gray-100); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.filter-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 20px; border-radius: var(--radius-full); background: var(--white);
  border: 1px solid var(--gray-300); color: var(--gray-700); font-size: 14.5px; font-weight: 600;
}
.filter-btn.active { background: var(--ku-crimson); color: var(--white); border-color: var(--ku-crimson); box-shadow: var(--shadow-crimson); }

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.eq-card {
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: var(--transition);
}
.eq-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--ku-crimson); }

.eq-thumb-box {
  height: 180px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.eq-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.eq-card:hover .eq-thumb-box img { transform: scale(1.04); }

.eq-body {
  padding: 22px 20px; display: flex; flex-direction: column;
  align-items: center; text-align: center; flex-grow: 1;
}
.eq-title { font-size: 17.5px; font-weight: 800; color: var(--gray-900); margin-bottom: 18px; line-height: 1.3; }
.eq-btn-reserve {
  width: 100%; padding: 12px 0; background-color: var(--ku-crimson); color: var(--white);
  font-size: 14.5px; font-weight: 700; border-radius: var(--radius-sm); text-align: center;
  text-decoration: none; margin-top: auto; box-shadow: 0 4px 12px rgba(134, 38, 51, 0.15); transition: var(--transition);
}
.eq-btn-reserve:hover { background-color: var(--ku-crimson-dark); box-shadow: var(--shadow-crimson); }

/* ==========================================================
   7. FLUID ACCORDION CARD & DASHBOARD UI
========================================================== */
.reservation-schedule-wrap {
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-300);
  width: 100%;
}

.schedule-accordion-card {
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.schedule-accordion-card:hover, .schedule-accordion-card.is-open {
  border-color: var(--ku-crimson);
  box-shadow: var(--shadow-md);
}

.accordion-trigger-btn {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: var(--white);
  transition: background-color 0.2s ease;
  user-select: none;
  text-align: left;
}
.accordion-trigger-btn:hover {
  background-color: #fafbfd;
}
.schedule-accordion-card.is-open .accordion-trigger-btn {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.trigger-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.trigger-icon {
  font-size: 26px;
  line-height: 1;
}
.trigger-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.trigger-title {
  font-size: 17.5px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.3px;
}
.trigger-sub {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 3px;
}

.season-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: var(--ku-crimson-bg);
  color: var(--ku-crimson);
  border: 1px solid rgba(134, 38, 51, 0.2);
}
.season-badge.closed {
  background: var(--gray-200);
  color: var(--gray-700);
  border-color: var(--gray-300);
}

.trigger-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.trigger-btn-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
}
.trigger-chevron {
  font-size: 12px;
  color: var(--ku-crimson);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}
.schedule-accordion-card.is-open .trigger-chevron {
  transform: rotate(180deg);
}

.accordion-collapsible {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  background: #fdfefe;
}
.schedule-accordion-card.is-open .accordion-collapsible {
  max-height: 1800px;
  opacity: 1;
}

.accordion-content-inner {
  padding: 22px 24px 26px 24px;
}

.dashboard-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--gray-200);
}

.dash-date-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.btn-dash-nav {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.btn-dash-nav:hover {
  background: var(--ku-crimson-bg);
  border-color: var(--ku-crimson);
  color: var(--ku-crimson);
}
.dash-date-display {
  font-family: 'Outfit', 'Noto Sans KR', sans-serif;
  font-size: 16.5px;
  font-weight: 800;
  color: var(--gray-900);
  min-width: 140px;
  text-align: center;
}
.dash-date-picker {
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 12.5px;
  outline: none;
  background: var(--white);
}
.btn-dash-today {
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  cursor: pointer;
}

.dash-slot-group {
  display: flex;
  background: var(--gray-100);
  padding: 4px;
  border-radius: var(--radius-sm);
  gap: 4px;
  transition: var(--transition);
}
.btn-dash-slot {
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 6px;
  color: var(--gray-700);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}
.btn-dash-slot.active {
  background: var(--ku-crimson);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(134, 38, 51, 0.25);
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
}

.compact-eq-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition);
}
.compact-eq-card:hover {
  border-color: var(--ku-crimson);
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.compact-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.compact-eq-name {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.status-badge-sm {
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}
.status-badge-sm.available { background: #e6f4ea; color: #137333; }
.status-badge-sm.warning { background: #fef7e0; color: #b06000; }
.status-badge-sm.full { background: #fce8e6; color: #c5221f; }

.compact-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--gray-200);
  padding-top: 6px;
}
.compact-count-line {
  font-size: 13px;
  color: var(--gray-600);
}
.compact-avail-num strong {
  font-size: 16px;
  color: var(--ku-crimson);
  font-weight: 800;
}
.compact-total-num {
  font-size: 12px;
  color: var(--gray-500);
}

.compact-btn-link {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ku-crimson);
  background: var(--ku-crimson-bg);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(134, 38, 51, 0.15);
}

.weekend-compact-box {
  grid-column: 1 / -1;
  background: #f8f9fa;
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ==========================================================
   8. FOOTER & RESPONSIVE MEDIA QUERIES
========================================================== */
footer.site-footer { background-color: #151619; color: #9aa0a6; font-size: 13.5px; border-top: 4px solid var(--ku-crimson); }
.footer-top { padding: 48px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.footer-brand { flex: 1; max-width: 500px; }

.footer-logo-img {
  height: 28px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); margin-bottom: 16px; display: block;
}
.footer-brand p { font-size: 13px; line-height: 1.65; color: #8b9299; }
.footer-right-group { display: flex; gap: 60px; margin-left: auto; }
.footer-col h5 { color: var(--white); font-size: 14.5px; font-weight: 700; margin-bottom: 16px; position: relative; padding-bottom: 8px; }
.footer-col h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 24px; height: 2px; background: var(--ku-crimson); }

.footer-menu { display: flex; flex-direction: column; gap: 10px; }
.footer-menu a { display: inline-block; transition: transform 0.2s ease, color 0.2s ease; }
.footer-menu a:hover { color: var(--white); transform: translateX(4px); }

.footer-bottom { padding: 24px 0; font-size: 12.5px; color: #6b7280; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.legal-links { display: flex; gap: 16px; align-items: center; }
.legal-links a:hover { color: var(--white); text-decoration: underline; }

.admin-discreet-btn {
  color: #3e4249; text-decoration: none; font-size: 11px; margin-left: 6px;
  opacity: 0.3; transition: opacity 0.2s ease, color 0.2s ease; cursor: pointer;
}
.admin-discreet-btn:hover { opacity: 0.9; color: #ffffff; }

@media (max-width: 992px) {
  .nav-menu { display: none; }
  .mobile-toggle-btn { display: flex; }
  .btn-header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { flex-direction: column; gap: 36px; }
  .footer-right-group { margin-left: 0; width: 100%; justify-content: flex-start; gap: 48px; }
}

@media (max-width: 768px) {
  .top-bar { display: none !important; }
  header.site-header { top: 0 !important; }
  .header-inner { height: 64px; }
  .brand-logo-img { height: 26px; }
  .footer-logo-img { height: 24px; }
  .hero-section { padding: 115px 0 65px 0; }
  .hero-title { font-size: 28px; line-height: 1.35; margin-bottom: 14px; }
  .hero-desc { font-size: 14.5px; line-height: 1.65; margin-bottom: 24px; }
  .hero-buttons { flex-direction: column; width: 100%; gap: 10px; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; padding: 13px 0; }

  .notice-bar-section { margin-top: -24px; }
  .notice-bar { flex-direction: column; align-items: stretch; gap: 12px; padding: 16px; width: 100%; }
  .notice-content { flex-direction: column; align-items: flex-start; gap: 8px; width: 100%; min-width: 0; }
  .notice-text { width: 100%; min-width: 0; }
  .idx-notice-title { white-space: normal; word-break: keep-all; overflow-wrap: break-word; line-height: 1.4; margin-bottom: 4px; }
  .notice-preview-line { width: 100%; min-width: 0; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .notice-links-group { width: 100%; justify-content: flex-end; }
  .notice-more-btn { width: 100%; text-align: center; }

  .filter-tabs { gap: 8px; }
  .filter-btn { padding: 8px 14px; font-size: 13px; }

  .equipment-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .eq-thumb-box { height: 130px; padding: 10px; }
  .eq-body { padding: 12px 10px; }
  .eq-title { font-size: 14.5px; margin-bottom: 10px; }
  .eq-btn-reserve { padding: 8px 0; font-size: 12.5px; }

  .accordion-trigger-btn { padding: 14px 16px; }
  .trigger-title { font-size: 15px; }
  .trigger-sub { font-size: 12px; }
  .accordion-content-inner { padding: 16px 12px; }

  .dashboard-controls-bar { flex-direction: column; align-items: stretch; gap: 12px; }
  .dash-date-nav { justify-content: space-between; width: 100%; }
  .dash-date-display { font-size: 15px; min-width: auto; }
  .dash-slot-group { width: 100%; }
  .btn-dash-slot { flex: 1; text-align: center; padding: 7px 6px; font-size: 12px; }

  .compact-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .compact-eq-card { padding: 10px 10px; }
  .compact-eq-name { font-size: 12.5px; }
  .compact-avail-num strong { font-size: 14.5px; }

  .footer-right-group { flex-direction: column; gap: 24px; }
  .legal-links { flex-wrap: wrap; gap: 10px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 24px; }
  .brand-logo-img { height: 22px; }
  .section-title { font-size: 24px; }
  .hero-stat-grid { grid-template-columns: 1fr; }
  .compact-grid { grid-template-columns: 1fr; }
}