/* ==============================================
   TFSC PDW 2026 – Stylesheet
   ============================================== */

/* --- Design tokens --- */
:root {
  --primary:       #b71c1c;
  --primary-mid:   #c62828;
  --primary-light: #e53935;
  --primary-pale:  #ffebee;
  --bg:            #f5f6f8;
  --card:          #ffffff;
  --text:          #1a202c;
  --text-muted:    #5a6475;
  --border:        #e2e8f0;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 12px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg:     0 10px 30px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.06);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     18px;
  --space:         24px;
  --max-w:         1600px;
}

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Roboto', sans-serif;
  font-size: clamp(15px, 4.2vw, 19px);
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

/* --- Decorative gradient backdrop --- */
.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 10% 5%,  rgba(183,28,28,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 90% 90%, rgba(230,81,0,0.06)  0%, transparent 70%);
}

/* --- Layout --- */
.container {
  width: 60%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space);
}
@media (max-width: 1024px) { .container { width: 80%; } }
@media (max-width: 768px)  { .container { width: 92%; padding: 0 16px; } }

/* =====================  HEADER  ===================== */
.site-header {
  background: linear-gradient(135deg, #7b0f0f 0%, var(--primary) 45%, var(--primary-mid) 100%);
  color: #fff;
  padding: 36px 0 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}

/* Subtle dot-grid pattern overlay */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}

.header-left { flex: 1; min-width: 0; }

.header-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.30);
  color: rgba(255,255,255,0.92);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.site-header h1 {
  font-size: clamp(1.35rem, 3vw, 2.05rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.30);
  animation: fadeSlideDown 0.55s ease both;
}

.tagline {
  margin-top: 8px;
  color: rgba(255,255,255,0.88);
  font-size: 0.97rem;
  font-weight: 500;
}

.event-link {
  margin-top: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  word-break: break-word;
}
.event-link a { color: rgba(255,255,255,0.95); text-underline-offset: 2px; }
.event-link a:hover { color: #fff; }

.header-logos {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}
.logo {
  height: 90px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  background: rgba(255,255,255,0.93);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  transition: transform 200ms, box-shadow 200ms;
}
.logo:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,0.28); }

@media (max-width: 700px) {
  .site-header { padding: 22px 0 18px; }
  .header-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .header-logos { gap: 12px; }
  .logo { height: 68px; }
  .tabs { margin-top: 20px; }
}

/* =====================  TABS  ===================== */
.tabs {
  display: flex;
  gap: 4px;
  margin: 32px 0 0;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 5px;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }

.tab-button {
  flex: 1;
  min-width: 0;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  background: transparent;
  border: none;
  padding: 10px 10px;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: calc(var(--radius-lg) - 5px);
  transition: background 180ms, color 180ms, box-shadow 180ms;
  letter-spacing: 0.02em;
}
.tab-button:hover { background: var(--primary-pale); color: var(--primary); }
.tab-button:focus-visible { outline: 2px solid var(--primary); outline-offset: 1px; }
.tab-button, .sub-btn-submit, .sub-btn-add, .sub-btn-remove, .logo {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.tab-button.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(183,28,28,0.28);
}

@media (max-width: 900px) {
  .tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: unset;
    gap: 6px;
    padding: 6px;
    border-radius: var(--radius-md);
  }
  .tab-button {
    padding: 10px 8px;
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .tab-button {
    padding: 10px 6px;
    font-size: 0.80rem;
  }
}

/* =====================  TAB PANELS  ===================== */
.tabs-panel {
  margin-top: 16px;
  min-height: 200px;
}

.tab-content {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
  animation: fadeUp 280ms ease both;
}
.tab-content.hidden { display: none; }

@media (max-width: 600px) {
  .tab-content { padding: 20px 16px; }
}

/* --- Section headings --- */
.tab-content h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary-pale);
}

.tab-content p { margin-bottom: 14px; }
.tab-content p:last-child { margin-bottom: 0; }

.about-section-heading {
  font-size: 0.80rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  margin: 28px 0 10px;
}

/* Generic list */
.tab-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
}
.tab-content ul li {
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.tab-content ul li:last-child { border-bottom: none; }
.tab-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

a { color: var(--primary); transition: color 150ms; text-underline-offset: 2px; }
a:hover { color: var(--primary-light); }

/* =====================  EVENT HERO CARD  ===================== */
.event-hero-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: linear-gradient(135deg, #7b0f0f 0%, var(--primary) 60%, var(--primary-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  margin: 0 0 24px;
  box-shadow: 0 6px 24px rgba(183,28,28,0.22);
  color: #fff;
}
.event-hero-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.event-hero-divider {
  width: 1px;
  background: rgba(255,255,255,0.25);
  margin: 0 36px;
  flex-shrink: 0;
}
.event-hero-label {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.event-hero-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.event-hero-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  margin-top: 2px;
}
@media (max-width: 600px) {
  .event-hero-card { flex-direction: column; padding: 22px 24px; }
  .event-hero-divider { width: auto; height: 1px; margin: 16px 0; }
  .event-hero-value { font-size: 1.1rem; }
}

/* =====================  CALLOUT BOX  ===================== */
.callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(135deg, #fffde7, #fff8e1);
  border: 1px solid #ffe082;
  border-left: 4px solid #f9a825;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-top: 20px;
}
.callout strong { margin-bottom: 4px; color: #6d4c00; font-size: 0.95rem; }
.callout p { margin: 0; color: #5d4037; font-size: 0.93rem; }

/* =====================  SI TITLE BOX  ===================== */
.si-title-box {
  background: linear-gradient(135deg, var(--primary-pale), #fff);
  border: 1px solid rgba(183,28,28,0.20);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 16px 0 20px;
}
.si-label {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.si-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin: 0 0 6px;
}
.si-journal {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.si-official-btn {
  display: inline-block;
  padding: 7px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.si-official-btn:hover { background: var(--primary-dark, #b71c1c); }

.cfp-label {
  display: inline-block;
  background: rgba(183,28,28,0.10);
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
  vertical-align: middle;
  margin-left: 10px;
  font-style: normal;
}

/* =====================  CALL FOR PAPERS  ===================== */
.perspectives-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  counter-reset: perspective;
}
.perspectives-list > li {
  counter-increment: perspective;
  position: relative;
  padding: 20px 20px 20px 64px;
  margin-bottom: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.perspectives-list > li::before {
  content: counter(perspective);
  position: absolute;
  left: 18px;
  top: 20px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.perspectives-list > li::marker { display: none; }
@media (max-width: 600px) {
  .perspectives-list > li { padding: 14px 14px 14px 50px; }
  .perspectives-list > li::before { left: 12px; top: 15px; }
}

.theme-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.theme-list li {
  padding: 6px 0 6px 18px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--text-muted);
}
.theme-list li:last-child { border-bottom: none; }
.theme-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
  transform: translateY(-50%);
}

/* =====================  REFERENCES  ===================== */
.references-section {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 2px solid var(--primary-pale);
}
.references-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.references-list {
  margin: 0;
}
.references-list p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 6px 0 6px 2em;
  text-indent: -2em;
  margin: 0;
  border-bottom: 1px solid var(--border);
}
.references-list p:last-child { border-bottom: none; }
.references-list p em { color: var(--text); font-style: italic; }

/* =====================  SUBMISSION BOX  ===================== */
.submission-box {
  background: var(--primary-pale);
  border: 1px solid rgba(183,28,28,0.14);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 20px;
}
.submission-box h3 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.submission-box .checklist { list-style: disc; padding-left: 22px; margin: 0; }
.submission-box .checklist li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(183,28,28,0.10);
  font-size: 0.95rem;
}
.submission-box .checklist li:last-child { border-bottom: none; }
.submission-box .checklist li::before { display: none; }

/* =====================  TIMELINE (Key Dates)  ===================== */
.timeline { padding: 4px 0; }
.timeline-item {
  display: flex;
  gap: 18px;
  padding-bottom: 28px;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid var(--border);
  background: #fff;
  flex-shrink: 0;
  margin-top: 3px;
}
.timeline-item.highlight .timeline-dot {
  border-color: var(--primary);
  background: var(--primary);
}
.pre-event-dot {
  border-color: #0277bd;
  background: #e1f5fe;
}
.timeline-item:has(.pre-event-dot) .timeline-label { color: #0277bd; }
.timeline-body { flex: 1; }
.timeline-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}
.timeline-item.highlight .timeline-label { color: var(--primary); }
.timeline-body strong { font-size: 1.05rem; display: block; margin-bottom: 4px; }
.timeline-body p { color: var(--text-muted); font-size: 0.93rem; margin: 0; }

/* =====================  INFO GRID (Travel)  ===================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-card h3 { font-size: 0.92rem; font-weight: 700; }
.info-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* =====================  EDITORS GRID  ===================== */
.editors-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.editor-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: start;
  gap: 16px;
}
@media (max-width: 768px) {
  .editor-card { grid-template-columns: 1fr; gap: 6px; }
}
.editor-name {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 1px;
}
.editor-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  padding: 2px 8px;
  border-radius: 20px;
}
.editor-affils {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.editor-affil {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.editor-links {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}
@media (max-width: 768px) {
  .editor-links { text-align: left; }
}
.editor-links a {
  font-size: 0.82rem;
}
.orcid-link {
  color: var(--text-muted);
  font-size: 0.78rem;
}
.orcid-link:hover { color: var(--primary); }

/* =====================  ORGANISER CARDS (Contact)  ===================== */
.organiser-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.organiser-card {
  flex: 1;
  min-width: 200px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.organiser-card strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.organiser-card p { font-size: 0.93rem; margin: 0; }

.contact-email-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, var(--primary-pale), #fff);
  border: 1px solid rgba(183,28,28,0.15);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin: 16px 0 0;
}
.contact-email-icon {
  font-size: 1.6rem;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1;
}
.contact-email-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  margin: 0 0 4px;
}
.contact-email-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  text-underline-offset: 2px;
}
.contact-email-link:hover {
  text-decoration: underline;
  color: var(--primary-light);
}

/* =====================  SUBMISSION FORM  ===================== */
.sub-form { margin-top: 4px; }
.sub-form-group { margin-bottom: 20px; }

.sub-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.sub-required { color: var(--primary); }

.sub-input {
  width: 100%;
  padding: 9px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.90rem;
  color: var(--text);
  background: #fff;
  transition: border-color 150ms;
  box-sizing: border-box;
}
.sub-input:focus { outline: none; border-color: var(--primary); }

.sub-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 5px;
}

.author-row-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 140px 32px;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 6px;
  padding: 0 2px;
}
.author-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 140px 32px;
  gap: 10px;
  margin-bottom: 8px;
  align-items: center;
}
@media (max-width: 768px) {
  .author-row-header { display: none; }
  .author-row { grid-template-columns: 1fr; }
}
.sub-textarea {
  resize: vertical;
  min-height: 130px;
  font-family: inherit;
  line-height: 1.5;
}

.sub-btn-remove {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 150ms, color 150ms;
}
.sub-btn-remove:hover { border-color: var(--primary); color: var(--primary); }

.sub-btn-add {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  background: none;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-sm);
  color: var(--primary);
  padding: 7px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 150ms, background 150ms;
}
.sub-btn-add:hover { border-color: var(--primary); background: var(--primary-pale); }

.sub-file-input {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-family: inherit;
  width: 100%;
}

.sub-btn-submit {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(183,28,28,0.22);
  transition: background 180ms, box-shadow 180ms;
}
.sub-btn-submit:hover { background: var(--primary-mid); box-shadow: 0 6px 18px rgba(183,28,28,0.30); }
.sub-btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
@media (max-width: 600px) {
  .sub-btn-submit { width: 100%; padding: 14px; }
  .sub-btn-add { width: 100%; justify-content: center; }
}

.sub-message {
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  margin-bottom: 16px;
}
.sub-message--success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
}
.sub-message--error {
  background: var(--primary-pale);
  border: 1px solid rgba(183,28,28,0.25);
  color: var(--primary);
}

/* =====================  FOOTER  ===================== */
.site-footer {
  margin-top: 48px;
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 20px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--primary); }
@media (max-width: 600px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* =====================  BROCHURE NOTICE  ===================== */
.brochure-notice {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 18px 0;
  padding: 8px 14px;
  background: #f5f7fa;
  border-left: 3px solid var(--primary);
  border-radius: 4px;
}
.brochure-notice a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.brochure-notice a:hover { text-decoration: underline; }

/* =====================  ANIMATIONS  ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
