/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
   パーフェクトデイ 〜あじさい日和〜
   共通スタイル
━━━━━━━━━━━━━━━━━━━━━━━━━━ */

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

:root {
  --pink:        #d4609a;
  --pink-mid:    #e88cbd;
  --pink-light:  #f7d5e8;
  --pink-pale:   #fef0f7;

  --blue:        #4a8fc4;
  --blue-mid:    #7ab5e0;
  --blue-light:  #bdd9f2;
  --blue-pale:   #edf5fc;

  --purple:      #8055c4;
  --purple-mid:  #a882d8;
  --purple-light:#d5c3ef;
  --purple-pale: #f4effc;

  --green:       #4aaa7a;
  --green-light: #b8e4cf;
  --green-pale:  #edfaf4;

  --text:        #1e1828;
  --text-sub:    #4a4260;
  --text-muted:  #8e87a4;
  --border:      #e6dff2;
  --border-mid:  #d0c5e8;
  --bg:          #fcfaff;
  --surface:     #ffffff;

  --grad-ajisai:   linear-gradient(135deg, #f7d5e8 0%, #d5c3ef 45%, #bdd9f2 100%);
  --grad-vivid:    linear-gradient(135deg, #d4609a 0%, #8055c4 50%, #4a8fc4 100%);
  --grad-soft:     linear-gradient(160deg, #fef0f7 0%, #f4effc 50%, #edf5fc 100%);
  --grad-hero-overlay: linear-gradient(160deg, rgba(180,120,210,0.45) 0%, rgba(200,185,240,0.35) 40%, rgba(140,185,230,0.38) 100%);

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(128,85,196,0.08);
  --shadow-md: 0 4px 20px rgba(128,85,196,0.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  line-height: 1.8;
  font-size: 16px;
}

a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ═══════════════════════════════
   NAVIGATION
═══════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(252, 250, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.site-nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-sub);
  line-height: 1.3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--purple);
  background: var(--purple-pale);
}

.nav-links a.active {
  color: var(--purple);
  background: var(--purple-pale);
}

/* ハンバーガーボタン */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-sub);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* フルスクリーンメニュー */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(252, 250, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 4rem 2rem;
}

.nav-overlay.open { display: flex; }

.nav-overlay-list {
  list-style: none;
  text-align: center;
  width: 100%;
  max-width: 360px;
}

.nav-overlay-list li {
  border-bottom: 1px solid var(--border);
}

.nav-overlay-list li:first-child { border-top: 1px solid var(--border); }

.nav-overlay-list a {
  display: block;
  padding: 1.25rem 1rem;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-overlay-list a:hover { color: var(--purple); }

.nav-overlay-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 0.2rem;
  letter-spacing: 0.08em;
  display: block;
}

.nav-overlay-close-hint {
  margin-top: 2.5rem;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════
   PAGE HEADER (詳細ページ)
═══════════════════════════════ */
.page-header {
  padding: 7rem 2rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.page-header-program {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding: 4px 14px;
  border-radius: 100px;
}

.program-01 { background: var(--purple-pale); color: var(--purple); }
.program-02 { background: var(--blue-pale);   color: var(--blue); }
.program-03 { background: var(--pink-pale);   color: var(--pink); }

.page-header-title {
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.page-header-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-header-divider {
  width: 100%;
  height: 3px;
  border-radius: 3px;
  margin-top: 2rem;
}

.divider-01 { background: linear-gradient(90deg, var(--purple), var(--blue)); }
.divider-02 { background: linear-gradient(90deg, var(--blue), var(--purple)); }
.divider-03 { background: linear-gradient(90deg, var(--pink), var(--purple)); }

/* ═══════════════════════════════
   LAYOUT
═══════════════════════════════ */
.page-body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

.two-col {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 700px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ═══════════════════════════════
   FLYER
═══════════════════════════════ */
.flyer-wrap {
  position: sticky;
  top: 80px;
}

.flyer-img {
  width: 100%;
  aspect-ratio: 1080 / 1350;
  background: var(--grad-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: var(--shadow-md);
}

.flyer-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.flyer-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: center;
}
.flyer-placeholder svg { opacity: 0.3; }

/* ─── Map ─── */
.map-wrap { position: relative; width: 100%; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.map-img { width: 100%; height: auto; display: block; }
.map-placeholder {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 220px;
  background: var(--purple-pale);
  color: var(--text-muted);
  font-size: 13px;
}
.map-placeholder svg { opacity: 0.3; }

/* ─── Venue image ─── */
.venue-img-wrap { position: relative; width: 100%; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.venue-img { width: 100%; height: auto; display: block; }

/* ═══════════════════════════════
   CONTENT BLOCKS
═══════════════════════════════ */
.content-block {
  margin-bottom: 3rem;
}

.block-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.block-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sub);
  line-height: 2;
}

.block-text + .block-text { margin-top: 0.75rem; }

/* ═══════════════════════════════
   INFO TABLE
═══════════════════════════════ */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:first-child { border-top: 1px solid var(--border); }

.info-table th {
  text-align: left;
  padding: 0.8rem 1.25rem 0.8rem 0;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  vertical-align: top;
  white-space: nowrap;
  width: 80px;
}

.info-table td {
  padding: 0.8rem 0;
  color: var(--text-sub);
  line-height: 1.9;
  vertical-align: top;
  font-weight: 500;
}

/* ═══════════════════════════════
   TIMETABLE
═══════════════════════════════ */
.timetable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.timetable tr { border-bottom: 1px solid var(--border); }
.timetable tr:first-child { border-top: 1px solid var(--border); }

.timetable .t-time {
  padding: 0.8rem 1.25rem 0.8rem 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  vertical-align: top;
  white-space: nowrap;
  width: 68px;
}

.timetable .t-desc {
  padding: 0.8rem 0;
  color: var(--text-sub);
  line-height: 1.8;
  vertical-align: top;
}

.timetable .t-name {
  font-size: 15px;
  color: var(--text);
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
}

.timetable .t-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ═══════════════════════════════
   BADGES
═══════════════════════════════ */
.badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1.5px solid;
  margin-right: 0.4rem;
  margin-bottom: 0.5rem;
}

.badge-purple { background: var(--purple-pale); color: var(--purple); border-color: var(--purple-light); }
.badge-blue   { background: var(--blue-pale);   color: var(--blue);   border-color: var(--blue-light); }
.badge-pink   { background: var(--pink-pale);   color: var(--pink);   border-color: var(--pink-light); }
.badge-green  { background: var(--green-pale);  color: var(--green);  border-color: var(--green-light); }

/* ═══════════════════════════════
   ARTIST PROFILES
═══════════════════════════════ */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.artist-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.artist-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.artist-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--grad-soft);
  position: relative;
  overflow: hidden;
}

.artist-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.artist-photo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.artist-photo-placeholder svg { opacity: 0.3; }

.artist-info {
  padding: 1rem 1rem 1.1rem;
}

.artist-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.artist-genre {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.artist-bio {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
}

.artist-sns {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.6rem;
  font-size: 12px;
  color: var(--purple);
  text-decoration: none;
  font-weight: 600;
}
.artist-sns svg { width: 14px; height: 14px; flex-shrink: 0; }
.artist-sns:hover { text-decoration: underline; }

/* ─── Program cross-link cards ─── */
.prog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.prog-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  text-decoration: none;
  background: var(--surface);
  transition: transform 0.16s, box-shadow 0.16s;
}
.prog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(128,85,196,0.15);
}
.prog-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1080 / 1350;
  background: var(--purple-pale);
  overflow: hidden;
}
.prog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prog-card-placeholder {
  display: none;
  position: absolute; inset: 0;
  align-items: center; justify-content: center;
  color: var(--text-muted);
}
.prog-card-placeholder svg { opacity: 0.3; }
.prog-card-body {
  padding: 0.6rem 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.prog-card-tag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  align-self: flex-start;
}
.prog-card-tag.tag-p01 { background: var(--purple); color: #fff; }
.prog-card-tag.tag-p02 { background: var(--blue); color: #fff; }
.prog-card-tag.tag-p03 { background: var(--pink); color: #fff; }
.prog-card-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
}
.prog-card-meta {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 480px) {
  .prog-card-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   PROFILE CARD (住職など)
═══════════════════════════════ */
.profile-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.profile-photo-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  background: var(--grad-soft);
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.profile-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.profile-avatar-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.profile-avatar-placeholder svg { opacity: 0.3; }

.profile-meta {}

.profile-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.profile-role {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.profile-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sub);
  line-height: 1.9;
}

.profile-text + .profile-text { margin-top: 0.6rem; }

/* ═══════════════════════════════
   DOT LIST
═══════════════════════════════ */
.dot-list {
  list-style: none;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 2;
}

.dot-list li {
  display: flex;
  gap: 0.4rem;
  align-items: baseline;
}

.dot-list li::before {
  content: '◆';
  font-size: 6px;
  color: var(--purple-mid);
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

/* ═══════════════════════════════
   BUTTONS & LINKS
═══════════════════════════════ */
.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.ig-btn:hover { transform: translateY(-1px); text-decoration: none; }
.ig-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.ig-btn-purple { border-color: var(--purple-light); background: var(--purple-pale); color: var(--purple); }
.ig-btn-purple:hover { background: var(--purple-light); }
.ig-btn-blue   { border-color: var(--blue-light);   background: var(--blue-pale);   color: var(--blue); }
.ig-btn-blue:hover   { background: var(--blue-light); }
.ig-btn-pink   { border-color: var(--pink-light);   background: var(--pink-pale);   color: var(--pink); }
.ig-btn-pink:hover   { background: var(--pink-light); }

.detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: white;
  background: var(--grad-vivid);
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 2px 12px rgba(128,85,196,0.3);
}

.detail-btn:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  margin-top: 3rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--purple); text-decoration: none; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.site-footer {
  background: var(--grad-ajisai);
  border-top: 1px solid var(--border-mid);
  text-align: center;
  padding: 4rem 2rem 3rem;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 2.2;
}

.site-footer strong { font-weight: 600; color: var(--text); }

.site-footer-logo {
  display: block;
  margin: 0 auto 2rem;
}

.site-footer-logo img {
  height: 36px;
  width: auto;
  opacity: 0.7;
}

/* お問い合わせブロック */
.footer-contact {
  display: inline-block;
  margin: 2rem auto 2rem;
  background: rgba(255,255,255,0.72);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2.5rem;
  text-align: left;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  min-width: 260px;
}

.footer-contact-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-contact-org {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.footer-contact-row {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 2;
}

.footer-contact-row a {
  color: var(--purple);
  text-decoration: none;
}
.footer-contact-row a:hover { text-decoration: underline; }

.footer-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--purple-light);
  background: var(--purple-pale);
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.footer-ig-btn:hover { background: var(--purple-light); text-decoration: none; }
.footer-ig-btn svg { width: 13px; height: 13px; }

.footer-tokoroto-logo {
  display: block;
  height: 28px;
  width: auto;
  margin-bottom: 0.6rem;
}

.footer-web-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  margin-left: 0.4rem;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--border-mid);
  background: rgba(255,255,255,0.7);
  color: var(--text-sub);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.footer-web-btn:hover { background: var(--border); color: var(--text); text-decoration: none; }
.footer-web-btn svg { width: 13px; height: 13px; flex-shrink: 0; }

.footer-divider {
  width: 40px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-vivid);
  margin: 2rem auto 1.5rem;
  opacity: 0.4;
}

.footer-credits {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 2.2;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .page-header { padding-top: 5rem; }
  .page-body { padding: 1.5rem 1.25rem 5rem; }

  .flyer-wrap { position: static; }
  .flyer-img { box-shadow: none; }

  /* SP: 全体的に文字を5〜10%大きく */
  .block-label   { font-size: 14px; }
  .block-text    { font-size: 15px; }
  .info-table    { font-size: 15px; }
  .info-table th { font-size: 13px; }
  .timetable     { font-size: 15px; }
  .timetable .t-time { font-size: 14px; }
  .timetable .t-name { font-size: 16px; }
  .timetable .t-note { font-size: 14px; }
  .badge         { font-size: 12px; }
  .artist-name   { font-size: 17px; }
  .artist-genre  { font-size: 13px; }
  .artist-bio    { font-size: 14px; }
  .profile-name  { font-size: 17px; }
  .profile-role  { font-size: 13px; }
  .profile-text  { font-size: 15px; }
  .dot-list      { font-size: 15px; }
  .prog-card-title { font-size: 14px; }
  .prog-card-meta  { font-size: 12px; }
  .page-header-subtitle { font-size: 15px; }
}

@media (min-width: 681px) {
  .nav-overlay { display: none !important; }
  .nav-hamburger { display: none; }
}

/* ═══════════════════════════════
   UTILITIES
═══════════════════════════════ */
.color-divider {
  width: 40px;
  height: 3px;
  border-radius: 3px;
  margin: 1.5rem 0;
}
.purple-divider { background: linear-gradient(90deg, var(--purple), var(--blue)); }
.blue-divider   { background: linear-gradient(90deg, var(--blue), var(--purple)); }
.pink-divider   { background: linear-gradient(90deg, var(--pink), var(--purple)); }

small { font-size: 0.85em; }
