/* ================================================================
   がんばるママのバテない体づくり セミナー&相談会 LP
   Palette: cream #FBF7EF / brown #A8794A / deep #7C5A33 / ink #4A3F32
   ================================================================ */
:root {
  --cream: #fbf7ef;
  --cream-2: #f5eddd;
  --white: #ffffff;
  --brown: #a8794a;
  --brown-deep: #7c5a33;
  --brown-pale: #e7d7bf;
  --ink: #4a3f32;
  --ink-soft: #7a6c5a;
  --green: #7e9b6e;
  --pink: #e2a49a;
  --radius: 22px;
  --shadow: 0 10px 32px rgba(124, 90, 51, 0.10);
  --font: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.9;
  font-size: 16px;
  overflow-wrap: anywhere;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brown-deep); }
.container { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.sp-only { display: none; }
@media (max-width: 720px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }
}

/* ---------------- header ---------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(251, 247, 239, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.3s;
}
.site-header.is-scrolled { box-shadow: 0 2px 20px rgba(124, 90, 51, 0.12); }
.header-inner {
  max-width: 1120px; margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; gap: 24px;
}
.header-logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; font-weight: 700; color: var(--brown-deep); font-size: 15px;
}
.header-logo .logo-mark { height: 40px; width: auto; display: block; }
@media (max-width: 420px) { .header-logo .logo-mark { height: 34px; } }
.logo-x { color: var(--pink); margin: 0 2px; }
.header-nav { display: flex; gap: 20px; margin-left: auto; }
.header-nav a {
  text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 500;
  padding: 4px 2px; border-bottom: 2px solid transparent; transition: 0.2s;
}
.header-nav a:hover { color: var(--brown); border-bottom-color: var(--brown); }
.header-cta {
  background: var(--brown); color: #fff; text-decoration: none;
  font-weight: 700; font-size: 14px; padding: 9px 22px; border-radius: 999px;
  transition: 0.25s; white-space: nowrap;
}
.header-cta:hover { background: var(--brown-deep); transform: translateY(-1px); }
@media (max-width: 860px) {
  .header-nav { display: none; }
  .header-cta { margin-left: auto; }
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-block; text-decoration: none; text-align: center;
  font-family: var(--font); font-weight: 700; font-size: 16px;
  padding: 15px 38px; border-radius: 999px; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #b98a56, #a8794a);
  color: #fff;
  box-shadow: 0 8px 24px rgba(168, 121, 74, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(168, 121, 74, 0.5); }
.btn-ghost {
  background: transparent; color: var(--brown-deep);
  border: 2px solid var(--brown); padding: 13px 36px;
}
.btn-ghost:hover { background: rgba(168, 121, 74, 0.08); transform: translateY(-2px); }

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  padding: 130px 24px 110px;
  text-align: center;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(226, 164, 154, 0.14), transparent 60%),
    radial-gradient(900px 480px at 10% 108%, rgba(126, 155, 110, 0.12), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero-deco {
  position: absolute; top: 90px; color: var(--brown);
  opacity: 0.45; width: 170px; pointer-events: none;
}
.hero-deco--left { left: max(2vw, 8px); }
.hero-deco--right { right: max(2vw, 8px); color: var(--green); }
@media (max-width: 900px) { .hero-deco { width: 90px; opacity: 0.3; top: auto; bottom: 40px; } }

.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.hero-lead { margin-bottom: 18px; }
.hero-lead span {
  display: inline-block; background: var(--white); color: var(--brown-deep);
  font-weight: 700; font-size: clamp(14px, 2.4vw, 17px);
  padding: 8px 26px; border-radius: 999px;
  border: 1.5px dashed var(--brown);
}
.hero-title {
  font-weight: 900; color: var(--brown-deep); line-height: 1.35;
  display: flex; flex-direction: column; gap: 2px;
}
.hero-title-row { font-size: clamp(26px, 5.4vw, 42px); letter-spacing: 0.06em; }
.hero-title-row--em {
  font-size: clamp(38px, 8vw, 64px);
  background: linear-gradient(transparent 68%, rgba(226, 164, 154, 0.45) 68%);
  width: fit-content; margin: 0 auto; padding: 0 6px;
}
.hero-title-row--sub { font-size: clamp(24px, 5vw, 38px); color: var(--brown); }
.hero-copy {
  margin-top: 18px; font-weight: 500; color: var(--ink-soft);
  font-size: clamp(14px, 2.6vw, 18px); letter-spacing: 0.05em;
}
.hero-date {
  margin: 30px auto 0; display: inline-flex; align-items: center; gap: 20px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px 34px; box-shadow: var(--shadow);
}
.hero-date-main { display: flex; align-items: baseline; gap: 8px; color: var(--brown-deep); font-weight: 900; }
.hero-date-y { font-size: 20px; }
.hero-date-md { font-size: 44px; letter-spacing: 0.02em; }
.hero-date-w {
  font-size: 15px; background: var(--pink); color: #fff;
  border-radius: 50%; width: 32px; height: 32px; line-height: 32px; text-align: center;
  align-self: center;
}
.hero-date-sub { display: flex; flex-direction: column; text-align: left; font-weight: 700; color: var(--ink); font-size: 15px; line-height: 1.6; }
@media (max-width: 480px) {
  .hero-date { flex-direction: column; gap: 4px; padding: 14px 28px; }
  .hero-date-sub { text-align: center; }
}
.hero-badges { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.badge {
  background: var(--white); color: var(--brown-deep); font-size: 13px; font-weight: 700;
  padding: 6px 16px; border-radius: 999px; border: 1px solid var(--brown-pale);
}
.hero-cta { margin-top: 34px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; color: var(--white); line-height: 0; }
.hero-wave svg { width: 100%; height: 52px; }

/* ---------------- sections ---------------- */
.section { padding: 90px 0; }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--gradient {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(150deg, #9c7040, #7c5a33);
  color: #fff;
}
.section-eyebrow {
  text-align: center; color: var(--brown); font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; font-size: 13px;
}
.section-eyebrow--light { color: #ecd9be; }
.section-title {
  text-align: center; font-size: clamp(24px, 4.4vw, 34px); font-weight: 900;
  color: var(--brown-deep); margin: 6px 0 20px; line-height: 1.5;
}
.section-title::after {
  content: ""; display: block; width: 56px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--pink), var(--brown));
  margin: 14px auto 0;
}
.section-title--light { color: #fff; }
.section-title--light::after { background: linear-gradient(90deg, #f3c9bd, #e9d6b8); }
.section-desc { text-align: center; color: var(--ink-soft); margin-bottom: 40px; }
.note { color: var(--ink-soft); font-size: 13px; margin-top: 22px; text-align: center; }

/* ---------------- worries ---------------- */
.worries-grid {
  margin-top: 36px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 720px) { .worries-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.worry-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 26px 14px 20px; text-align: center;
  border: 1px solid var(--cream-2);
  transition: transform 0.25s, box-shadow 0.25s;
}
.worry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.worry-card p { font-weight: 700; font-size: 15px; color: var(--brown-deep); line-height: 1.5; }
.worry-icon {
  width: 62px; height: 62px; margin: 0 auto 12px; padding: 13px;
  background: var(--white); border-radius: 50%; color: var(--brown);
  box-shadow: inset 0 0 0 1.5px var(--brown-pale);
}
.worry-icon svg { width: 100%; height: 100%; }
.worries-message { margin-top: 44px; text-align: center; }
.worries-message-strong {
  font-size: clamp(19px, 3.4vw, 26px); font-weight: 900; color: var(--brown-deep);
  margin-bottom: 12px; line-height: 1.7;
}
.worries-message em {
  font-style: normal; font-weight: 700;
  background: linear-gradient(transparent 70%, rgba(226, 164, 154, 0.5) 70%);
}

/* ---------------- about ---------------- */
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
.about-card {
  background: var(--white); border-radius: var(--radius); padding: 34px 26px 30px;
  box-shadow: var(--shadow); position: relative;
}
.about-card-num {
  font-size: 40px; font-weight: 900; color: var(--brown-pale); line-height: 1;
  margin-bottom: 10px;
}
.about-card h3 { font-size: 18px; color: var(--brown-deep); margin-bottom: 10px; line-height: 1.5; }
.about-card h3 span { font-size: 13px; color: var(--ink-soft); font-weight: 500; margin-left: 4px; }
.about-card p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------------- schedule & price ---------------- */
.schedule-price {
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
@media (max-width: 860px) { .schedule-price { grid-template-columns: 1fr; } }
.timeline { position: relative; padding-left: 6px; }
.tl-item {
  display: flex; gap: 16px; align-items: center;
  padding: 13px 18px; border-radius: 14px; margin-bottom: 10px;
  background: var(--cream); border-left: 5px solid var(--brown-pale);
}
.tl-item--seminar { background: #f7efe2; border-left-color: var(--brown); }
.tl-item--consult { border-left-color: var(--pink); }
.tl-item--break { opacity: 0.75; }
.tl-time { font-weight: 900; color: var(--brown-deep); min-width: 106px; font-size: 14.5px; }
.tl-body { font-weight: 700; font-size: 15px; }
.tl-body span { font-weight: 500; font-size: 12.5px; color: var(--ink-soft); }

.price-cards { display: grid; gap: 20px; }
.price-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 30px;
  border: 1.5px solid var(--brown-pale); position: relative;
}
.price-card--em { border: 2.5px solid var(--brown); box-shadow: var(--shadow); }
.price-card-tag {
  position: absolute; top: -13px; left: 22px;
  background: var(--pink); color: #fff; font-size: 12px; font-weight: 700;
  padding: 3px 14px; border-radius: 999px;
}
.price-card--em .price-card-tag { background: var(--brown); }
.price-card h3 { color: var(--brown-deep); font-size: 20px; }
.price-amount { font-size: 38px; font-weight: 900; color: var(--brown); line-height: 1.3; }
.price-amount span { font-size: 15px; color: var(--ink-soft); font-weight: 700; margin-left: 4px; }
.price-card ul { list-style: none; margin-top: 8px; }
.price-card li {
  font-size: 14.5px; padding: 5px 0 5px 24px; position: relative; font-weight: 500;
}
.price-card li::before {
  content: "✓"; position: absolute; left: 2px; color: var(--green); font-weight: 900;
}

.kids-ok {
  margin-top: 46px; display: flex; gap: 20px; align-items: center;
  background: linear-gradient(135deg, #fdf3ec, #faeee2);
  border-radius: var(--radius); padding: 26px 32px;
  border: 1.5px dashed var(--pink);
}
.kids-ok-icon { width: 56px; height: 56px; color: var(--pink); flex-shrink: 0; }
.kids-ok-icon svg { width: 100%; height: 100%; }
.kids-ok h3 { color: var(--brown-deep); font-size: 19px; }
.kids-ok p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------------- speaker ---------------- */
.speaker-card {
  margin-top: 36px;
  display: flex; gap: 36px; align-items: center;
  background: var(--white); border-radius: var(--radius);
  padding: 40px 44px; box-shadow: var(--shadow);
}
@media (max-width: 720px) { .speaker-card { flex-direction: column; text-align: center; padding: 34px 24px; } }
.speaker-photo img {
  border-radius: 50%; width: 190px; height: 190px; object-fit: cover;
  border: 5px solid var(--cream-2);
}
.speaker-role { color: var(--brown); font-weight: 700; font-size: 14px; }
.speaker-name { font-size: 27px; font-weight: 900; color: var(--brown-deep); margin: 2px 0 14px; }
.speaker-name span { font-size: 15px; font-weight: 700; color: var(--ink-soft); }
.speaker-quals { list-style: none; }
.speaker-quals li {
  display: inline-block; background: var(--cream); border: 1px solid var(--cream-2);
  border-radius: 999px; padding: 5px 16px; margin: 4px 6px 4px 0;
  font-size: 13px; font-weight: 700; color: var(--ink);
}

.well2lab { margin-top: 42px; text-align: center; }
.well2lab-title { font-size: 21px; color: var(--brown-deep); }
.well2lab-logo { color: var(--pink); font-weight: 900; letter-spacing: 0.03em; }
.well2lab-desc { color: var(--ink-soft); margin: 8px 0 26px; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 860px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
.pillar {
  background: #fdf9ee; border-radius: 18px; padding: 24px 18px;
  border: 1px solid #f3e9d2;
}
.pillar h4 { color: var(--brown); font-size: 16px; margin-bottom: 8px; }
.pillar p { font-size: 13px; color: var(--ink-soft); line-height: 1.8; text-align: left; }

/* ---------------- access ---------------- */
.access-grid {
  margin-top: 36px;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: center;
}
@media (max-width: 820px) { .access-grid { grid-template-columns: 1fr; } }
.access-info h3 { font-size: 22px; color: var(--brown-deep); }
.access-addr { font-weight: 700; margin: 6px 0 14px; }
.access-info ul { list-style: none; }
.access-info li { padding: 4px 0 4px 26px; position: relative; font-size: 15px; }
.access-info li::before {
  content: ""; position: absolute; left: 4px; top: 13px;
  width: 9px; height: 9px; border-radius: 50%; background: var(--green);
}
.access-info .note { text-align: left; }
.access-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ---------------- contact ---------------- */
.contact-lead { text-align: center; margin-bottom: 40px; color: #f6ead8; }
.contact-lead strong { color: #fff; }
.contact-form {
  max-width: 640px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius);
  padding: 44px 42px; box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  color: var(--ink);
}
@media (max-width: 560px) { .contact-form { padding: 32px 22px; } }
.form-row { margin-bottom: 22px; }
.form-row--half { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row--half { grid-template-columns: 1fr; } }
.contact-form label {
  display: block; font-weight: 700; font-size: 14px; margin-bottom: 7px; color: var(--brown-deep);
}
.req, .opt {
  font-size: 11px; font-weight: 700; border-radius: 4px; padding: 1.5px 7px;
  margin-left: 6px; vertical-align: 1px;
}
.req { background: #d96f5e; color: #fff; }
.opt { background: var(--cream-2); color: var(--ink-soft); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; font-family: var(--font); font-size: 15.5px; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--cream-2); border-radius: 12px;
  padding: 13px 16px; transition: border-color 0.2s, background 0.2s;
  appearance: none; -webkit-appearance: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--brown); background: #fff;
}
.contact-form textarea { resize: vertical; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: ""; position: absolute; right: 18px; top: 50%;
  width: 9px; height: 9px; border-right: 2px solid var(--brown); border-bottom: 2px solid var(--brown);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-privacy { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 20px; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #b98a56, #a8794a);
  color: #fff; font-size: 17px; letter-spacing: 0.1em;
  padding: 17px; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(168, 121, 74, 0.35);
}
.btn-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(168, 121, 74, 0.45); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-status { margin-top: 16px; font-weight: 700; font-size: 14.5px; text-align: center; min-height: 1.5em; }
.form-status.is-ok { color: #3e7d4e; }
.form-status.is-ng { color: #c0392b; }

/* ---------------- reserve ---------------- */
.slot-area { max-width: 720px; margin: 0 auto 30px; }
.slot-loading { text-align: center; color: var(--ink-soft); padding: 30px 0; }
.slot-block { margin-bottom: 26px; }
.slot-block-title { font-size: 17px; color: var(--brown-deep); margin-bottom: 12px; }
.slot-block-title span { font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.slot-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 12px; }
.slot-row--seminar { grid-template-columns: repeat(2, 1fr); }
.slot-btn {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  min-height: 88px; padding: 16px 10px;
  background: var(--white);
  border: 1.5px solid var(--brown-pale); border-radius: 16px;
  cursor: pointer; font-family: var(--font);
  box-shadow: 0 2px 8px rgba(124, 90, 51, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
.slot-btn:hover:not(:disabled) {
  border-color: var(--brown); transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(168, 121, 74, 0.16);
}
.slot-btn:active:not(:disabled) { transform: translateY(-1px); }
.slot-btn .slot-time {
  font-weight: 900; color: var(--brown-deep); font-size: clamp(15px, 3.6vw, 17px);
  letter-spacing: 0.01em; line-height: 1.1;
}
.slot-btn .slot-status {
  font-size: 11.5px; font-weight: 700; line-height: 1;
  padding: 4px 12px; border-radius: 999px;
  color: #4e7a49; background: rgba(126, 155, 110, 0.16);
}
.slot-btn.is-selected {
  border-color: transparent;
  background: linear-gradient(135deg, #b98a56, #a8794a);
  box-shadow: 0 10px 24px rgba(168, 121, 74, 0.34);
  transform: translateY(-2px);
}
.slot-btn.is-selected .slot-time { color: #fff; }
.slot-btn.is-selected .slot-status {
  color: #fff; background: rgba(255, 255, 255, 0.28);
}
.slot-btn.is-selected::after {
  content: "✓"; position: absolute; top: 7px; right: 9px;
  font-size: 12px; font-weight: 900; color: #fff; opacity: 0.9;
}
.slot-btn.is-full {
  cursor: not-allowed; background: var(--cream); border-color: transparent;
  box-shadow: none;
}
.slot-btn.is-full .slot-time { color: var(--ink-soft); opacity: 0.65; }
.slot-btn.is-full .slot-status { color: #b5726a; background: rgba(226, 164, 154, 0.2); }
.reserve-form { max-width: 640px; }
.reserve-selection {
  background: #f7efe2; border-radius: 12px; padding: 12px 16px; margin-bottom: 20px;
  font-weight: 700; color: var(--brown-deep); font-size: 14.5px;
}

/* ---------------- admin ---------------- */
.admin { min-height: 100vh; background: var(--cream); padding: 40px 16px; }
.admin-inner { max-width: 1080px; margin: 0 auto; }
.admin-title { color: var(--brown-deep); font-size: 26px; }
.admin-note { color: var(--ink-soft); margin-bottom: 24px; }
.admin-gate {
  max-width: 360px; background: #fff; border-radius: 16px; padding: 28px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px;
}
.admin-gate[hidden] { display: none; }
.admin-gate label { font-weight: 700; color: var(--brown-deep); }
.admin-gate input {
  font-family: var(--font); font-size: 16px; padding: 12px 14px;
  border: 1.5px solid var(--cream-2); border-radius: 10px; background: var(--cream);
}
.admin-summary { margin-bottom: 28px; }
.admin-summary h2, .admin-list h2 { font-size: 18px; color: var(--brown-deep); margin-bottom: 12px; }
.admin-slot-group { font-size: 14px; color: var(--brown); font-weight: 700; margin: 16px 0 8px; }
.admin-slot-group:first-of-type { margin-top: 0; }
.admin-summary .admin-slots { margin-bottom: 4px; }
.admin-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; }
.admin-slot {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid var(--cream-2); border-radius: 10px; padding: 8px 14px; font-size: 14px;
}
.admin-slot span { min-width: 0; }
.admin-slot.is-full { background: #fbece9; border-color: #f2c9c1; }
.admin-slot b { color: var(--brown-deep); white-space: nowrap; flex-shrink: 0; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; }
.admin-table th, .admin-table td {
  text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--cream-2);
  font-size: 13.5px; vertical-align: top;
}
.admin-table th { background: var(--cream-2); color: var(--brown-deep); white-space: nowrap; }
.admin-table small { color: var(--ink-soft); }
.admin-cancel {
  background: #d96f5e; color: #fff; border: none; border-radius: 8px;
  padding: 6px 12px; font-family: var(--font); font-weight: 700; cursor: pointer; white-space: nowrap;
}
.admin-cancel:hover:not(:disabled) { background: #c0392b; }
.admin-cancel:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---------------- footer ---------------- */
.site-footer {
  background: #4a3a28; color: #d9cbb6; text-align: center;
  padding: 46px 0 90px; font-size: 13.5px;
}
.footer-event { font-weight: 700; color: #f0e6d4; margin-bottom: 14px; }
.footer-org { margin-bottom: 4px; }
.footer-org a { color: #f3c9bd; }
.footer-contact a { color: #f3c9bd; }
.footer-copy { margin-top: 18px; font-size: 12px; opacity: 0.65; }

/* ---------------- floating CTA ---------------- */
.fab-cta {
  position: fixed; left: 50%; bottom: 18px; transform: translate(-50%, 90px);
  z-index: 90;
  background: linear-gradient(135deg, #d98a70, #cf7458);
  color: #fff; text-decoration: none; font-weight: 900; font-size: 15px;
  padding: 14px 42px; border-radius: 999px;
  box-shadow: 0 10px 30px rgba(207, 116, 88, 0.45);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}
.fab-cta.is-visible { transform: translate(-50%, 0); }
.fab-cta:hover { transform: translate(-50%, -3px); }

/* ---------------- reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-inview { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .fab-cta { transition: none; }
}
