/* ============================================================
   Event Booking - Common
============================================================ */
:root {
  --c-primary:       #e8721e;
  --c-primary-dark:  #b05518;
  --c-primary-light: #fce8d4;
  --c-accent:        #e63946;
  --c-accent-dark:   #b51d2a;
  --c-text:          #2d2418;
  --c-text-sub:      #6b6356;
  --c-bg:            #fdf6e8;
  --c-bg-warm:       #fff9ec;
  --c-card:          #ffffff;
  --c-border:        #efe6d2;
  --shadow-sm: 0 1px 2px rgba(45, 36, 24, 0.05);
  --shadow-md: 0 4px 14px rgba(45, 36, 24, 0.08);
  --shadow-lg: 0 10px 30px rgba(45, 36, 24, 0.12);
}

* { box-sizing: border-box; }

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI", "Meiryo", "Noto Sans JP", sans-serif;
  color: var(--c-text);
  line-height: 1.65;
  background:
    radial-gradient(ellipse at top, #fff4d0 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, #ffe0c2 0%, transparent 55%),
    var(--c-bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px 40px;
  background: transparent;
}

.admin-container { max-width: 1040px; }

h1 {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 0.4em;
  color: var(--c-text);
}

h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 1.6em 0 0.7em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
  color: #fff;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 8px rgba(230, 113, 30, 0.35);
}

.note { color: var(--c-text-sub); font-size: 0.88em; margin: 8px 0 0; }

.error {
  background: #fdecea;
  border: 1px solid #f5c2bf;
  color: #a02020;
  padding: 12px 16px;
  border-radius: 10px;
  margin: 16px 0;
  font-weight: 600;
}

.notice {
  background: #eaf6e8;
  border: 1px solid #b2dcae;
  color: #2a6f23;
  padding: 12px 16px;
  border-radius: 10px;
  margin: 16px 0;
}

/* ============================================================
   Event Banner (Hero)
============================================================ */
.event-banner {
  margin: 0 -16px 24px;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(45, 36, 24, 0.18);
  background: #fff5d6;
  position: relative;
}
.event-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 75%, rgba(253, 246, 232, 0.4) 100%);
}
.event-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   Event Header
============================================================ */
.event-header {
  background: var(--c-card);
  border-radius: 18px;
  padding: 22px 22px 18px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--c-primary);
}

.event-chips {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.event-chips li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--c-primary-light);
  border: 1px solid #f6dab4;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9em;
}
.chip-icon { font-size: 1.05em; }
.chip-label {
  color: var(--c-text-sub);
  font-size: 0.85em;
  font-weight: 600;
}
.chip-value {
  font-weight: 700;
  color: var(--c-text);
  font-variant-numeric: tabular-nums;
}

.event-description {
  margin: 16px 0 0;
  padding: 12px 14px;
  background: var(--c-bg-warm);
  border-left: 4px solid var(--c-primary);
  border-radius: 6px;
  color: var(--c-text);
  font-size: 0.95em;
}

/* ============================================================
   Reservation Form
============================================================ */
.reserve-form {
  background: var(--c-card);
  border-radius: 18px;
  padding: 8px 22px 26px;
  box-shadow: var(--shadow-md);
}

.form-row { margin: 14px 0; }

input[type=text], input[type=email], input[type=number], input[type=password],
input[type=date], input[type=time], textarea, select {
  padding: 11px 14px;
  font-size: 1em;
  border: 1.5px solid #e1d8c4;
  border-radius: 10px;
  background: #fff;
  color: var(--c-text);
  transition: border-color .15s ease, box-shadow .15s ease;
  font-family: inherit;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(232, 114, 30, 0.15);
}

/* 来場人数 */
.party-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.party-input {
  width: 110px;
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  padding: 12px 14px;
}
.party-suffix {
  font-size: 1.15em;
  font-weight: 700;
  color: var(--c-text);
}

/* メールアドレス */
.email-input {
  width: 100%;
  max-width: 420px;
}

/* ============================================================
   Slot Grid
============================================================ */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 10px;
  margin: 12px 0 8px;
}
.slot {
  position: relative;
  border: 1.5px solid #e6dcc6;
  border-radius: 14px;
  background: #fff;
  padding: 14px 8px 11px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  overflow: hidden;
}
.slot input { position: absolute; opacity: 0; pointer-events: none; }
.slot:hover:not(.is-full) {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(232, 114, 30, 0.18);
  border-color: var(--c-primary);
}
.slot-time {
  font-weight: 800;
  font-size: 1.3em;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: var(--c-text);
}
.slot-status {
  font-size: 0.78em;
  color: var(--c-text-sub);
}
.slot-status strong {
  font-weight: 800;
  color: var(--c-text);
}
.slot-check {
  position: absolute;
  top: 7px;
  right: 9px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85em;
  font-weight: 800;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--c-accent-dark);
  opacity: 0;
  transition: opacity .15s ease, transform .15s ease;
  transform: scale(0.6);
}
.slot.is-few {
  border-color: #f0b97a;
  background: linear-gradient(180deg, #fff 0%, #fff0d6 100%);
}
.slot.is-few .slot-status {
  color: var(--c-primary-dark);
  font-weight: 700;
}
.slot.is-few .slot-status strong { color: var(--c-primary-dark); }

.slot:has(input:checked) {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
  border-color: var(--c-accent-dark);
  color: #fff;
  box-shadow: 0 12px 24px rgba(230, 113, 30, 0.35);
  transform: translateY(-3px);
}
.slot:has(input:checked) .slot-time,
.slot:has(input:checked) .slot-status,
.slot:has(input:checked) .slot-status strong { color: #fff; }
.slot:has(input:checked) .slot-check {
  opacity: 1;
  transform: scale(1);
}

.slot.is-full {
  background: #f0ede5;
  border-color: #d8d3c5;
  color: #b3aea0;
  cursor: not-allowed;
  box-shadow: none;
}
.slot.is-full .slot-time {
  color: #b3aea0;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.slot.is-full .slot-status {
  color: #a39d8f;
  font-weight: 700;
}
.slot:focus-within {
  outline: 3px solid rgba(232, 114, 30, 0.35);
  outline-offset: 2px;
}

/* ============================================================
   Submit Button
============================================================ */
.submit-row {
  margin-top: 28px;
  text-align: center;
}
.btn-submit {
  display: inline-block;
  width: 100%;
  max-width: 420px;
  padding: 16px 24px;
  font-size: 1.1em;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(230, 113, 30, 0.40);
  letter-spacing: 0.04em;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(230, 113, 30, 0.50);
  filter: brightness(1.04);
}
.btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(230, 113, 30, 0.35);
}

/* 共通ボタン（管理画面用） */
.btn-primary, .btn-secondary, .btn-danger {
  display: inline-block;
  padding: 10px 18px;
  font-size: 0.95em;
  font-weight: 700;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary { background: var(--c-primary); color: #fff; }
.btn-primary:hover { background: var(--c-primary-dark); }
.btn-secondary { background: #555; color: #fff; }
.btn-danger { background: #b03030; color: #fff; }

/* ============================================================
   Footer
============================================================ */
.page-footer {
  margin: 30px 0 0;
  text-align: center;
  color: var(--c-text-sub);
  font-size: 0.82em;
}

/* ============================================================
   Event List (index)
============================================================ */
.event-list { list-style: none; padding: 0; margin-top: 16px; }
.event-list li { margin: 10px 0; }
.event-list a {
  display: block;
  padding: 14px 18px;
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-left: 4px solid var(--c-primary);
  border-radius: 12px;
  text-decoration: none;
  color: var(--c-text);
  box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .15s ease;
}
.event-list a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   Ticket
============================================================ */
.ticket .ticket-card {
  background: var(--c-card);
  border-radius: 18px;
  padding: 22px;
  margin: 14px 0;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--c-primary);
}
.ticket-banner {
  margin: 0 -16px 14px;
  max-height: 200px;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ticket-banner img { max-height: 200px; display: block; width: 100%; object-fit: cover; }
.ticket-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--c-border);
}
.ticket-row:last-of-type { border-bottom: 0; }
.ticket-row span:first-child { color: var(--c-text-sub); font-size: 0.9em; }
.qrcode-box {
  display: flex;
  justify-content: center;
  margin: 22px 0 12px;
  padding: 18px;
  background: #fff;
  border-radius: 14px;
  border: 1.5px dashed var(--c-primary);
}

.badge {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.82em;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.badge.ok { background: #2a6f23; color: #fff; }
.badge.ng { background: #777; color: #fff; }
.badge.pending { background: var(--c-primary); color: #fff; }

/* ============================================================
   Admin
============================================================ */
body.admin {
  background: #f0f2f5;
}
.admin-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #2d2d2d;
  padding: 10px 18px;
  flex-wrap: wrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.admin-nav a {
  color: #ddd;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 6px;
  font-weight: 600;
}
.admin-nav a:hover { background: #444; }
.admin-nav a.active { background: var(--c-primary); color: #fff; }
.admin-nav .spacer { flex: 1; }
.admin-nav .user { color: #aaa; font-size: 0.9em; margin-right: 8px; }
.admin-nav .logout { color: #fff; }

.login-box { max-width: 380px; margin-top: 60px; background: #fff; padding: 24px; border-radius: 14px; box-shadow: var(--shadow-md); }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin: 14px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.admin-table th, .admin-table td {
  border-bottom: 1px solid #e8e3d6;
  padding: 10px 12px;
  font-size: 0.95em;
  text-align: left;
}
.admin-table th { background: #f3eee5; font-weight: 700; }
.admin-table a { color: var(--c-primary-dark); margin-right: 8px; font-weight: 600; }

/* スキャナ */
.scan-result {
  margin: 14px 0;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid var(--c-border);
  min-height: 60px;
}
.scan-result.ok { background: #eaf6e8; border-color: #b2dcae; }
.scan-result.ng { background: #fdecea; border-color: #f5c2bf; }
.scan-result.pending { background: #fffaee; border-color: #f0d9a0; }
.big-ok { color: #2a6f23; font-size: 1.7em; font-weight: 800; }
.big-ng { color: #a02020; font-size: 1.45em; font-weight: 800; }

/* ============================================================
   Public notice
============================================================ */
.event-notice {
  margin: 14px 0 0;
  padding: 12px 14px;
  background: linear-gradient(135deg, #fff5d6 0%, #ffe0c2 100%);
  border-left: 4px solid var(--c-accent);
  border-radius: 8px;
  font-size: 0.92em;
  color: var(--c-text);
}
.event-notice strong { color: var(--c-accent-dark); }
.save-tip {
  background: #fffaee;
  border: 1px dashed var(--c-primary);
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--c-text);
}
.save-tip strong { color: var(--c-accent-dark); }

/* ============================================================
   Dashboard
============================================================ */
.dashboard {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  margin: 14px 0 24px;
}
.dash-event-title {
  font-size: 1.2em;
  font-weight: 800;
  margin-bottom: 8px;
}
.dash-event-date {
  font-weight: 600;
  color: var(--c-text-sub);
  font-size: 0.9em;
}
.dash-progress {
  position: relative;
  width: 100%;
  height: 28px;
  background: #f0ede5;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
}
.dash-progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-accent) 100%);
  transition: width .4s ease;
}
.dash-progress-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 700;
  font-size: 0.92em;
  color: #2d2418;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 8px;
}
.dash-card {
  background: var(--c-bg-warm);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 12px 14px;
  text-align: center;
}
.dash-card-label {
  font-size: 0.8em;
  color: var(--c-text-sub);
  font-weight: 600;
  margin-bottom: 4px;
}
.dash-card-value {
  font-size: 1.6em;
  font-weight: 800;
  color: var(--c-text);
  font-variant-numeric: tabular-nums;
}
.dash-card-value small {
  font-size: 0.55em;
  color: var(--c-text-sub);
  font-weight: 600;
}
.dash-warn { color: var(--c-accent-dark); }

.dash-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
}
.dash-slot {
  background: #fff;
  border: 1.5px solid #e6dcc6;
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
}
.dash-slot-time {
  font-weight: 800;
  font-size: 1.1em;
  color: var(--c-text);
  font-variant-numeric: tabular-nums;
}
.dash-slot-num {
  font-size: 0.95em;
  font-weight: 700;
  color: var(--c-text);
  font-variant-numeric: tabular-nums;
}
.dash-slot-rest {
  font-size: 0.8em;
  color: var(--c-text-sub);
}
.dash-slot.is-busy {
  background: linear-gradient(180deg, #fff 0%, #fff0d6 100%);
  border-color: #f0b97a;
}
.dash-slot.is-busy .dash-slot-rest { color: var(--c-primary-dark); font-weight: 700; }
.dash-slot.is-full {
  background: #f0ede5;
  border-color: #d8d3c5;
  color: #b3aea0;
}
.dash-slot.is-full .dash-slot-time { text-decoration: line-through; }
.dash-slot.is-full .dash-slot-rest::before { content: "満席"; }
.dash-slot.is-full .dash-slot-rest { font-weight: 700; }

/* ============================================================
   Walkin
============================================================ */
.walkin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0;
}
.walkin-stat {
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.walkin-stat-label {
  font-size: 0.85em;
  color: var(--c-text-sub);
  font-weight: 600;
  margin-bottom: 4px;
}
.walkin-stat-value {
  font-size: 1.7em;
  font-weight: 800;
  color: var(--c-text);
  font-variant-numeric: tabular-nums;
}
.walkin-stat-value small {
  font-size: 0.55em;
  color: var(--c-text-sub);
  font-weight: 600;
}
.walkin-remaining { color: var(--c-primary-dark); }

.walkin-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
  margin: 12px 0 20px;
}
.walkin-btn {
  padding: 22px 12px;
  font-size: 1.4em;
  font-weight: 800;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(230, 113, 30, 0.30);
  transition: transform .12s ease, box-shadow .15s ease;
}
.walkin-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(230, 113, 30, 0.40); }
.walkin-btn:active { transform: translateY(0); }
.walkin-btn-custom {
  background: #555;
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}
.walkin-btn-custom:hover { box-shadow: 0 10px 22px rgba(0,0,0,0.25); }

/* ============================================================
   Mail delivery warning
============================================================ */
.mail-warn {
  margin: 18px 0;
  padding: 14px 16px;
  background: #fff4d6;
  border: 1.5px solid #f0b97a;
  border-left: 5px solid #d18324;
  border-radius: 10px;
  color: #5b3a12;
  font-size: 0.92em;
  line-height: 1.7;
}
.mail-warn strong {
  display: block;
  font-size: 1em;
  color: #9d4d10;
  margin-bottom: 4px;
}
.mail-warn p {
  margin: 6px 0 0;
}
.ticket-warn {
  margin-top: 18px;
}

/* ============================================================
   Agree checkbox
============================================================ */
.agree-row { margin-top: 18px; }
.agree-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92em;
  color: var(--c-text);
  cursor: pointer;
  padding: 10px 12px;
  background: var(--c-bg-warm);
  border-radius: 8px;
  border: 1px solid var(--c-border);
}
.agree-label input { margin-top: 4px; }
.agree-label a { color: var(--c-primary-dark); text-decoration: underline; font-weight: 600; }

/* ============================================================
   Legal pages
============================================================ */
.container.legal { padding-top: 30px; max-width: 720px; }
.container.legal h1 { font-size: 1.5em; margin-bottom: 6px; }
.container.legal h2 {
  font-size: 1.05em;
  margin: 1.6em 0 0.5em;
  padding-left: 12px;
  border-left: 4px solid var(--c-primary);
  display: block;
  background: none;
  box-shadow: none;
}
.container.legal h2::before { display: none; }
.container.legal .step-num { display: none; }
.container.legal ul, .container.legal ol { padding-left: 1.4em; }
.container.legal li { margin: 0.3em 0; }
.container.legal .meta {
  color: var(--c-text-sub);
  font-size: 0.85em;
  margin: 0 0 18px;
}
.back-link {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
}
.back-link a {
  color: var(--c-primary-dark);
  text-decoration: none;
  font-weight: 600;
}

/* ============================================================
   LP (Landing Page)
============================================================ */
body.lp { background: var(--c-bg); }

.last-ticket-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, #2a6f23 0%, #1a4f15 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.last-ticket-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.last-ticket-icon { font-size: 1.6em; }
.last-ticket-body { flex: 1; min-width: 0; }
.last-ticket-title { font-weight: 700; font-size: 0.95em; }
.last-ticket-sub {
  font-size: 0.82em;
  opacity: 0.9;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.last-ticket-btn {
  background: #fff;
  color: #2a6f23;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.9em;
  white-space: nowrap;
}

.lp-hero {
  max-width: 760px;
  margin: 0 auto 20px;
}
.lp-hero-img {
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(45, 36, 24, 0.18);
  margin: 0 -16px 22px;
  border-radius: 0 0 24px 24px;
}
.lp-hero-img img { display: block; width: 100%; height: auto; }
.lp-hero-text { padding: 0 20px; text-align: center; }
.lp-hero-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 14px;
  color: var(--c-accent-dark);
  letter-spacing: 0.02em;
}
.lp-hero-meta {
  font-size: 1em;
  line-height: 1.9;
  color: var(--c-text);
  margin: 0 0 22px;
  font-weight: 600;
}
.lp-cta {
  display: inline-block;
  margin: 12px auto 6px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  text-decoration: none;
}
.lp-hero-sub {
  font-size: 0.88em;
  color: var(--c-text-sub);
  margin: 8px 0 0;
}

.lp-section {
  max-width: 760px;
  margin: 32px auto;
  padding: 0 20px;
}
.lp-section h2 {
  font-size: 1.3em;
  font-weight: 800;
  text-align: center;
  margin: 0 0 18px;
  display: block;
  color: var(--c-text);
}
.lp-section h2::before { display: none; }
.lp-section .step-num { display: none; }
.lp-lead {
  text-align: center;
  font-size: 1em;
  line-height: 1.9;
  color: var(--c-text);
}

.lp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.lp-feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--c-primary);
  text-align: center;
}
.lp-feature-icon { font-size: 2.2em; margin-bottom: 8px; }
.lp-feature-card h3 {
  font-size: 1.05em;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--c-text);
}
.lp-feature-card p {
  font-size: 0.9em;
  color: var(--c-text-sub);
  line-height: 1.7;
  margin: 0;
}

.lp-cta-block {
  background: var(--c-card);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.lp-steps {
  text-align: left;
  max-width: 520px;
  margin: 0 auto 22px;
  padding-left: 1.4em;
}
.lp-steps li { margin: 0.7em 0; line-height: 1.7; }
.lp-steps strong { color: var(--c-accent-dark); }

.lp-footer {
  background: #2d2418;
  color: #d5cbb9;
  margin-top: 40px;
  padding: 28px 16px 22px;
  text-align: center;
  font-size: 0.88em;
}
.lp-footer-links {
  margin: 12px 0;
  display: flex;
  justify-content: center;
  gap: 22px;
}
.lp-footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.lp-footer-links a:hover { color: var(--c-primary); }
.lp-footer-copyright { font-size: 0.78em; opacity: 0.6; margin-top: 14px; }
.lp-footer-staff { font-size: 0.72em; opacity: 0.45; margin-top: 18px; }
.lp-footer-staff a { color: #d5cbb9; text-decoration: underline; }
.lp-footer-staff a:hover { opacity: 0.8; }

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 480px) {
  h1 { font-size: 1.55rem; }
  .event-header { padding: 18px 16px 14px; }
  .reserve-form { padding: 4px 16px 22px; }
  .event-chips li { font-size: 0.85em; padding: 7px 12px; }
  .step-num { min-width: 32px; height: 32px; font-size: 0.78rem; }
}
