/* ═══════════════════════════════════════════
   style.css — Shared styles for all pages
   ═══════════════════════════════════════════ */

/* ── Variables & Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0d1b2a;
  --navy2:   #1b2d42;
  --blue:    #1e6fa8;
  --blue2:   #2a8ed4;
  --accent:  #e8b84b;
  --accent2: #f5cc6a;
  --light:   #f4f7fb;
  --white:   #ffffff;
  --gray:    #6b7a8d;
  --gray2:   #d0d9e4;
  --text:    #1a2533;
  --radius:  10px;
  --shadow:  0 4px 24px rgba(13,27,42,.10);
  --shadow2: 0 8px 40px rgba(13,27,42,.16);
  --trans:   .25s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Noto Sans TC', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw;
  height: 64px;
  background: rgba(13,27,42,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--trans);
}
nav.scrolled { background: rgba(13,27,42,.98); }

.nav-logo { font-size: 1.15rem; font-weight: 700; letter-spacing: .04em; color: var(--white); }
.nav-logo span { color: var(--accent); }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.65);
  transition: color var(--trans);
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: 1px;
  transform: scaleX(0); transition: transform var(--trans);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active::after,
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--accent); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 1px;
  transition: all var(--trans);
}

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(13,27,42,.98); z-index: 190;
  flex-direction: column; padding: 1.2rem 6vw 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.75);
  padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--trans);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.active, .mobile-nav a:hover { color: var(--accent); }

/* ── Page Hero Banner ── */
.page-hero {
  min-height: 340px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #0e2a45 100%);
  display: flex; align-items: flex-end;
  padding: 120px 6vw 56px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -80px; right: -60px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,111,168,.2) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-tag {
  display: inline-block; margin-bottom: .8rem;
  padding: .25rem .85rem; border: 1px solid rgba(232,184,75,.4); border-radius: 100px;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; color: var(--white); line-height: 1.2;
}
.page-hero p { font-size: 1rem; color: rgba(255,255,255,.55); margin-top: .5rem; max-width: 480px; }

/* ── Section Base ── */
section { padding: 80px 6vw; }
.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700;
  color: var(--navy); margin-bottom: .8rem;
}
.section-sub { font-size: .95rem; color: var(--gray); max-width: 560px; line-height: 1.8; }
.section-header { margin-bottom: 3rem; }
.divider { width: 44px; height: 4px; border-radius: 2px; background: var(--accent); margin: .8rem 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .7rem 1.6rem; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600; cursor: pointer;
  transition: all var(--trans); border: none; font-family: inherit;
}
.btn-primary { background: var(--accent); color: var(--navy); }
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(232,184,75,.35); }
.btn-outline-dark { border: 1.5px solid var(--gray2); color: var(--gray); background: none; }
.btn-outline-dark:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--blue); transform: translateY(-2px); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,.35); color: var(--white); background: none; }
.btn-outline-light:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ── Cards ── */
.card {
  background: var(--white); border-radius: 14px;
  border: 1px solid var(--gray2);
  transition: transform var(--trans), box-shadow var(--trans);
  overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow2); }

/* ── Tags / Chips ── */
.chip {
  display: inline-block; padding: .25rem .7rem; border-radius: 100px;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em;
}
.chip-blue { background: rgba(30,111,168,.1); color: var(--blue); }
.chip-gray { background: var(--light); color: var(--gray); border: 1px solid var(--gray2); }
.chip-accent { background: rgba(232,184,75,.12); color: #a07820; border: 1px solid rgba(232,184,75,.35); }
.chip-green { background: rgba(34,139,88,.1); color: #1a7a50; }
.chip-purple { background: rgba(100,60,180,.1); color: #5a3aaa; }
.chip-red { background: rgba(200,60,60,.1); color: #a03030; }

/* ── Modal ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(13,27,42,.7); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: 18px; width: 100%; max-width: 680px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  animation: modalIn .25s ease;
}
@keyframes modalIn {
  from { transform: scale(.96) translateY(12px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.8rem; border-bottom: 1px solid var(--gray2);
  position: sticky; top: 0; background: var(--white); z-index: 1;
}
.modal-header h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.modal-close {
  background: none; border: none; font-size: 1.5rem; color: var(--gray);
  cursor: pointer; line-height: 1; padding: .2rem .4rem; border-radius: 6px;
  transition: background var(--trans);
}
.modal-close:hover { background: var(--light); color: var(--navy); }
.modal-body { padding: 1.8rem; }
.modal-footer {
  padding: 1rem 1.8rem 1.5rem;
  display: flex; justify-content: flex-end; gap: .8rem;
  border-top: 1px solid var(--gray2);
}

/* ── Form Elements ── */
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--gray); }
.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid var(--gray2); border-radius: 8px;
  padding: .65rem 1rem; font-size: .9rem;
  font-family: inherit; color: var(--text);
  outline: none; transition: border-color var(--trans), box-shadow var(--trans);
  resize: vertical; background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,111,168,.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Dark form (contact) ── */
.dark-form .form-group label { color: rgba(255,255,255,.6); }
.dark-form .form-group input,
.dark-form .form-group textarea {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
  color: var(--white);
}
.dark-form .form-group input::placeholder,
.dark-form .form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.dark-form .form-group input:focus,
.dark-form .form-group textarea:focus { border-color: var(--blue2); }

/* ── Expandable content ── */
.expand-content {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
}
.expanded .expand-content { max-height: 3000px; }
.expand-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--light); border: 1px solid var(--gray2);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--gray); cursor: pointer;
  transition: all var(--trans); user-select: none; flex-shrink: 0;
}
.expanded .expand-toggle { background: var(--navy); color: var(--white); border-color: var(--navy); transform: rotate(180deg); }

/* ── Empty state ── */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--gray); }
.empty-state .emoji { font-size: 2.8rem; margin-bottom: 1rem; }
.empty-state p { font-size: .95rem; }
.empty-state small { font-size: .82rem; color: var(--gray2); display: block; margin-top: .3rem; }

/* ── Footer ── */
footer {
  background: #080f18; padding: 2rem 6vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
footer p { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-logo { font-size: .95rem; font-weight: 700; color: rgba(255,255,255,.45); }
.footer-logo span { color: var(--accent); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .8rem; color: rgba(255,255,255,.35); transition: color var(--trans); }
.footer-links a:hover { color: var(--accent); }

/* ── Fade-in animation ── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   NEW NAV — 郭語喬+期末專題 Dropdown Design
   ═══════════════════════════════════════════ */
.nav-brand {
  font-size: 1rem; font-weight: 800; letter-spacing: .02em;
  color: var(--white); white-space: nowrap; flex-shrink: 0;
}
.nav-brand em { font-style: normal; color: var(--accent); }

.nav-right {
  display: flex; align-items: center; gap: .9rem; flex-shrink: 0;
}

/* Dropdown wrapper */
.nav-dropdown { position: relative; }
.nav-dd-btn {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px; cursor: pointer; font-family: inherit;
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.85);
  display: flex; align-items: center; gap: .35rem;
  padding: .38rem .9rem; transition: all var(--trans);
}
.nav-dd-btn:hover { background: rgba(255,255,255,.12); color: var(--white); }
.dd-arrow { font-size: .65rem; transition: transform var(--trans); display: inline-block; }

/* Panel shown on hover or .open (sidebar layout) */
.nav-dd-panel {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: #0d1b2a; border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.55);
  z-index: 500; display: flex; overflow: hidden;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
@media (hover: hover) {
  .nav-dropdown:hover .nav-dd-panel {
    opacity: 1; visibility: visible; pointer-events: auto; transform: none;
  }
  .nav-dropdown:hover .dd-arrow { transform: rotate(180deg); }
}
.nav-dropdown.open .nav-dd-panel {
  opacity: 1; visibility: visible; pointer-events: auto; transform: none;
}
.nav-dropdown.open .dd-arrow { transform: rotate(180deg); }

/* Sidebar nav (left column) */
.dd-sidenav {
  background: rgba(0,0,0,.22); padding: .55rem .4rem;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex; flex-direction: column; gap: .1rem; min-width: 128px;
}
.dd-snav-item {
  display: block; font-size: .79rem; font-weight: 600;
  color: rgba(255,255,255,.5); padding: .48rem .7rem;
  border-radius: 7px; white-space: nowrap;
  transition: all var(--trans);
}
.dd-snav-item:hover, .dd-snav-item.active {
  color: var(--accent); background: rgba(232,184,75,.1);
}

/* Right subpanels */
.dd-subpanels { padding: .65rem .8rem; min-width: 155px; }
.dd-subpanel { display: none; flex-direction: column; gap: .08rem; }
.dd-subpanel.active { display: flex; }
.dd-sub-title {
  font-size: .67rem; font-weight: 700; color: var(--accent);
  letter-spacing: .1em; text-transform: uppercase;
  padding: .2rem .5rem; margin-bottom: .45rem;
}
.dd-subpanel a {
  display: block; font-size: .77rem; color: rgba(255,255,255,.58);
  padding: .32rem .55rem; border-radius: 5px;
  transition: color var(--trans), background var(--trans);
}
.dd-subpanel a:hover { color: var(--white); background: rgba(255,255,255,.07); }

/* Action buttons */
.nav-btn-link {
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.72);
  padding: .35rem .85rem; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.18);
  transition: all var(--trans); white-space: nowrap;
}
.nav-btn-link:hover { color: var(--white); border-color: rgba(255,255,255,.45); }
.nav-fju {
  background: rgba(232,184,75,.1); border-color: rgba(232,184,75,.35);
  color: var(--accent);
}
.nav-fju:hover { background: rgba(232,184,75,.22); color: var(--accent2); }

/* Updated footer */
.footer-brand { font-size: .95rem; font-weight: 700; color: rgba(255,255,255,.45); }
.footer-brand span { color: var(--accent); }
.footer-info {
  display: flex; gap: 1.4rem; flex-wrap: wrap; align-items: center;
}
.footer-info span { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.22); }

/* ═══════════════════════════════════════════
   SLIDESHOW
   ═══════════════════════════════════════════ */
#slideshow-section { background: var(--navy); padding: 0; line-height: 0; }
.slideshow-wrap {
  position: relative; overflow: hidden; height: 420px;
  line-height: normal;
}
.slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .9s ease;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.slide.active { opacity: 1; }
.slide-caption-wrap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  padding: 3rem 2.5rem 2.2rem; text-align: center;
}
.slide-caption { color: var(--white); font-size: 1.5rem; font-weight: 700; line-height: 1.3; }
.slide-sub { color: rgba(255,255,255,.52); font-size: .9rem; margin-top: .45rem; }
.slide-ctrl {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); font-size: 1rem; cursor: pointer;
  backdrop-filter: blur(6px); transition: background var(--trans); z-index: 10;
}
.slide-ctrl:hover { background: rgba(255,255,255,.25); }
.slide-prev { left: 1.8rem; }
.slide-next { right: 1.8rem; }
.slide-dots {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .55rem; z-index: 10;
}
.slide-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0;
  background: rgba(255,255,255,.28); cursor: pointer;
  transition: background var(--trans), transform var(--trans);
}
.slide-dot.active { background: var(--accent); transform: scale(1.4); }

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
#gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 1; border-radius: 14px; overflow: hidden;
  cursor: pointer; position: relative;
  transition: transform .3s ease;
}
.gallery-item:hover { transform: scale(1.04); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(13,27,42,.55); opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: opacity var(--trans);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white); font-size: .82rem; font-weight: 700;
  text-align: center; padding: .5rem; text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* ═══════════════════════════════════════════
   FJU MAP SECTION
   ═══════════════════════════════════════════ */
#fju-map { background: var(--light); }
.fju-map-grid { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
.map-iframe-wrap { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.map-iframe-wrap iframe { display: block; width: 100%; height: 360px; border: none; }
.fju-info-card {
  background: var(--white); border-radius: 14px; padding: 2rem;
  border: 1px solid var(--gray2); box-shadow: var(--shadow);
}
.fju-info-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 1.2rem; }
.fju-row { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: .9rem; font-size: .88rem; color: var(--gray); }
.fju-row .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .05rem; }

/* ═══════════════════════════════════════════
   PRICING (shop.html)
   ═══════════════════════════════════════════ */
#pricing { background: var(--light); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.pricing-card {
  background: var(--white); border-radius: 20px; padding: 2.2rem;
  border: 2px solid var(--gray2); position: relative;
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); }
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(155deg, var(--navy) 0%, #1b2d42 100%);
}
.pricing-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--navy);
  font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  padding: .28rem 1.1rem; border-radius: 100px; white-space: nowrap;
}
.pricing-icon { font-size: 2.4rem; margin-bottom: .8rem; }
.pricing-name { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.pricing-card.featured .pricing-name { color: var(--white); }
.pricing-tagline { font-size: .84rem; color: var(--gray); margin-bottom: 1.4rem; line-height: 1.6; }
.pricing-card.featured .pricing-tagline { color: rgba(255,255,255,.55); }
.price-row { display: flex; align-items: flex-end; gap: .3rem; margin-bottom: .3rem; }
.price-currency { font-size: .95rem; font-weight: 700; color: var(--blue); line-height: 2.4; }
.price-amount { font-size: 2.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.pricing-card.featured .price-amount { color: var(--accent); }
.pricing-card.featured .price-currency { color: var(--accent); }
.price-period { font-size: .8rem; color: var(--gray); line-height: 3.2; }
.pricing-card.featured .price-period { color: rgba(255,255,255,.4); }
.price-orig { font-size: .8rem; color: var(--gray); margin-bottom: 1.5rem; }
.price-orig del { text-decoration: line-through; }
.pricing-features {
  list-style: none; margin-bottom: 2rem; flex: 1;
}
.pricing-features li {
  padding: .42rem 0; font-size: .86rem; color: var(--text);
  border-bottom: 1px solid var(--gray2);
  display: flex; align-items: center; gap: .55rem;
}
.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,.78); border-color: rgba(255,255,255,.1);
}
.pricing-features li:last-child { border-bottom: none; }
.pf-check { color: #2dcc80; font-weight: 700; flex-shrink: 0; }
.pricing-card.featured .pf-check { color: var(--accent); }
.pricing-cta {
  display: block; text-align: center; padding: .82rem;
  border-radius: 10px; font-weight: 700; font-size: .92rem;
  background: var(--navy); color: var(--white);
  transition: all var(--trans);
}
.pricing-cta:hover { background: var(--blue); transform: translateY(-2px); }
.pricing-card.featured .pricing-cta { background: var(--accent); color: var(--navy); }
.pricing-card.featured .pricing-cta:hover { background: var(--accent2); }

/* ═══════════════════════════════════════════
   COUNTDOWN (shop.html)
   ═══════════════════════════════════════════ */
#special { background: var(--navy); padding: 80px 6vw; text-align: center; }
#special .section-label { color: var(--accent); }
#special .section-title { color: var(--white); }
#special .divider { margin: .8rem auto; }
.countdown-sub { color: rgba(255,255,255,.48); font-size: .95rem; margin-bottom: 2.8rem; }
.countdown-row {
  display: flex; justify-content: center; align-items: center;
  gap: .8rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.cd-unit {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 1.6rem 2.2rem; min-width: 115px;
  text-align: center;
}
.cd-num {
  font-size: 3.2rem; font-weight: 800; color: var(--accent);
  display: block; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-lbl { font-size: .72rem; color: rgba(255,255,255,.42); margin-top: .4rem; letter-spacing: .1em; text-transform: uppercase; }
.cd-colon { font-size: 2.8rem; font-weight: 700; color: var(--accent); opacity: .45; }
.deadline-note { font-size: .82rem; color: rgba(255,255,255,.35); margin-top: 1.2rem; }

/* ═══════════════════════════════════════════
   RESPONSIVE ADDITIONS
   ═══════════════════════════════════════════ */
/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 60px 5vw; }
  .page-hero { padding: 100px 5vw 40px; min-height: 260px; }
  .fju-map-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .page-hero h1 { font-size: 1.7rem; }
  .nav-dd-panel { grid-template-columns: 1fr; min-width: 220px; }
  .countdown-row { gap: .5rem; }
  .cd-unit { min-width: 72px; padding: 1.1rem 1rem; }
  .cd-num { font-size: 2.2rem; }
  .cd-colon { font-size: 2rem; }
  .slideshow-wrap { height: 300px; }
  .slide-emoji { font-size: 3.5rem; }
  .slide-caption { font-size: 1.1rem; }
}
