/* ========================================
   Bursa Bale — Landing (Pure PHP)
   ======================================== */

:root {
  --primary: #d4495f;
  --primary-hover: #c03d52;
  --accent: #d4495f;
  --background: #ffffff;
  --foreground: #1a1a1a;
  --secondary: #e8d5d1;
  --border: #e0e0e0;
  --muted: #666666;
  --card: #f8f5f0;
  --radius: 0.5rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --shadow-header: 0 10px 30px rgba(26, 26, 26, 0.08);
  --container: 1120px;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --header-offset: 5.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}

.btn-sm {
  height: 2rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.75rem;
}

.btn-lg {
  height: 2.5rem;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 2px rgba(26, 26, 26, 0.08);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(212, 73, 95, 0.28);
}

.btn-primary svg {
  transition: transform 0.2s var(--ease);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-ghost {
  height: 2rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26, 26, 26, 0.8);
  border-radius: 0.75rem;
}

.btn-ghost:hover {
  background: rgba(26, 26, 26, 0.06);
  color: var(--foreground);
}

.btn-outline {
  background: #fff;
  border: 1px solid rgba(212, 73, 95, 0.3);
  color: var(--foreground);
}

.btn-outline:hover {
  background: rgba(232, 213, 209, 0.5);
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 0.375rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Brand ---------- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s var(--ease);
}

.brand:hover {
  transform: scale(1.03);
}

.brand-mark {
  position: relative;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.brand-diamond {
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
}

.brand-diamond::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #fff;
  border-radius: 0.15rem;
  transform: rotate(45deg);
}

.brand-dot {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--accent);
  border-radius: 50%;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(calc(100% - 1.5rem), 1040px);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(224, 224, 224, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-header);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  color: rgba(26, 26, 26, 0.8);
  font-size: 0.95rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-link:hover {
  background: rgba(212, 73, 95, 0.05);
  color: var(--foreground);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 240px;
  max-height: min(70vh, 420px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.1);
  padding: 0.35rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 60;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown.is-open .nav-dropdown-toggle svg,
.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-toggle svg {
  transition: transform 0.2s var(--ease);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 0.5rem;
  color: rgba(26, 26, 26, 0.8);
  font-size: 0.9rem;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}

.nav-dropdown-menu a:hover {
  background: rgba(212, 73, 95, 0.06);
  color: var(--foreground);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.header-actions .header-cta {
  display: none;
}

.menu-toggle {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  margin-top: 0.5rem;
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(224, 224, 224, 0.5);
  box-shadow: var(--shadow-header);
  overflow: hidden;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  gap: 0.15rem;
}

.mobile-nav-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.75rem;
}

.mobile-nav-link {
  padding: 0.75rem;
  border-radius: 0.6rem;
  color: rgba(26, 26, 26, 0.85);
  font-weight: 500;
}

.mobile-nav-link:hover {
  background: rgba(212, 73, 95, 0.06);
}

.mobile-nav-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.mobile-nav-actions .btn {
  height: 2.4rem;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  padding: 0.5rem 0.75rem;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--header-offset) + 1.5rem) 0 1.5rem;
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(232, 213, 209, 0.12) 100%);
}

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#particle-canvas {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: auto;
  padding-top: clamp(10rem, 32vh, 18rem);
  padding-bottom: 1.5rem;
}

.hero-title {
  max-width: 48rem;
  margin: 0 auto 1.5rem;
  font-size: clamp(1.35rem, 3.2vw, 1.875rem);
  font-weight: 700;
  line-height: 1.35;
  text-wrap: balance;
  color: var(--foreground);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.85rem;
  max-width: 22rem;
  margin: 0 auto 2.5rem;
}

.hero-actions .btn-primary {
  width: 100%;
}

.hero-actions .btn-icon {
  width: 2.5rem;
  align-self: center;
}

/* ---------- Marquee ---------- */

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  padding: 0.75rem 0 1.25rem;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
}

.marquee-label {
  padding: 0 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.45);
  white-space: nowrap;
}

.marquee-item {
  padding: 0 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Shared sections ---------- */

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section-eyebrow {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.section-text {
  color: rgba(26, 26, 26, 0.68);
}

.programs,
.about {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  scroll-margin-top: 6rem;
}

.program-card,
.about-stat {
  scroll-margin-top: 6rem;
}

/* ---------- Programs ---------- */

.programs {
  background: linear-gradient(180deg, rgba(232, 213, 209, 0.18), #fff 40%);
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.program-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.35rem 1.25rem;
  display: grid;
  gap: 0.85rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.program-card:hover {
  border-color: rgba(212, 73, 95, 0.35);
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.06);
  transform: translateY(-2px);
}

.program-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.program-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  background: rgba(212, 73, 95, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}

.program-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.program-card > p {
  color: rgba(26, 26, 26, 0.7);
  font-size: 0.95rem;
}

/* ---------- About ---------- */

.about {
  background: #fff;
}

.about-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-copy p {
  color: rgba(26, 26, 26, 0.72);
  margin-bottom: 1rem;
}

.about-copy .btn {
  margin-top: 0.5rem;
}

.about-stats {
  display: grid;
  gap: 0.85rem;
}

.about-stat {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(212, 73, 95, 0.06), #fff);
}

.about-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.about-stat span {
  color: rgba(26, 26, 26, 0.65);
  font-size: 0.95rem;
}

/* ---------- CTA ---------- */

.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #fff;
  scroll-margin-top: 6rem;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.18;
  animation: pulse-glow 4s ease-in-out infinite;
}

.cta-glow-1 {
  top: 0;
  left: 25%;
  width: 22rem;
  height: 22rem;
  background: var(--primary);
}

.cta-glow-2 {
  bottom: 0;
  right: 20%;
  width: 20rem;
  height: 20rem;
  background: rgba(212, 73, 95, 0.7);
  animation-delay: 1s;
}

.cta-glow-3 {
  top: 50%;
  left: 50%;
  width: 16rem;
  height: 16rem;
  background: rgba(212, 73, 95, 0.5);
  transform: translate(-50%, -50%);
  animation-delay: 2s;
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.14;
    transform: scale(1);
  }
  50% {
    opacity: 0.24;
    transform: scale(1.05);
  }
}

.cta-glow-3 {
  animation-name: pulse-glow-center;
}

@keyframes pulse-glow-center {
  0%,
  100% {
    opacity: 0.14;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.24;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 42rem;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.cta-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 1.75rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-desc {
  max-width: 28rem;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 1rem;
}

.footer-quote {
  font-size: 0.875rem;
  font-style: italic;
  color: rgba(26, 26, 26, 0.5);
}

.footer-col h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: rgba(26, 26, 26, 0.7);
  transition: color 0.15s var(--ease);
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: rgba(26, 26, 26, 0.5);
  font-size: 0.95rem;
}

/* ---------- Modal ---------- */

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: min(92vh, 820px);
  overflow: auto;
  border-radius: 1.15rem;
  box-shadow: 0 28px 70px rgba(26, 26, 26, 0.28);
}

.modal-dialog--banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #3a2430 45%, #d4495f 100%);
  color: #fff;
  border: 0;
  padding: 1.5rem 1.35rem 1.35rem;
}

.modal-banner-head {
  margin-bottom: 1.1rem;
  padding-right: 2rem;
}

.modal-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 700;
  margin: 0.55rem 0 0.35rem;
  color: #fff;
}

.modal-banner-text {
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
  font-size: 0.95rem;
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  color: var(--muted);
  z-index: 2;
}

.modal-close--light {
  color: rgba(255, 255, 255, 0.9);
}

.modal-close:hover {
  background: rgba(26, 26, 26, 0.06);
  color: var(--foreground);
}

.modal-close--light:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.register-form {
  display: grid;
  gap: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.form-grid__full {
  grid-column: 1 / -1;
}

.register-form label,
.contact-form label {
  display: grid;
  gap: 0.3rem;
}

.register-form label span,
.contact-form label span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.register-form input,
.register-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 2.55rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--foreground);
  outline: none;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.contact-form textarea {
  resize: vertical;
}

.register-form input:focus,
.register-form select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

body.modal-open {
  overflow: hidden;
}

/* ---------- Promo popup ---------- */

.promo-popup[hidden] {
  display: none;
}

.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.promo-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(5px);
}

.promo-popup-dialog--banner {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  margin: 0 !important;
  box-shadow: 0 28px 70px rgba(26, 26, 26, 0.35);
}

.promo-popup-content {
  position: relative;
  z-index: 1;
}

/* ---------- Blog ---------- */

.blog-page {
  padding: calc(var(--header-offset) + 2rem) 0 4rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  background: #fff;
}

.blog-card time,
.blog-article time {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.blog-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  line-height: 1.35;
}

.blog-card h2 a:hover {
  color: var(--primary);
}

.blog-card p {
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 0.85rem;
}

.blog-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-article {
  max-width: 720px;
}

.blog-back {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.blog-article h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.blog-article p {
  color: rgba(26, 26, 26, 0.78);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.blog-article-cta {
  margin-top: 2rem;
}

.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.blog-breadcrumb a {
  color: var(--primary);
  font-weight: 500;
}

/* ---------- Campaign banner ---------- */

.campaign-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
  margin: 0 0 1.75rem;
  padding: 1.35rem 1.25rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #3a2430 45%, #d4495f 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(212, 73, 95, 0.28);
}

.campaign-banner__glow {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(20px);
  pointer-events: none;
}

.campaign-banner__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
}

.campaign-banner__badge {
  display: inline-flex;
  align-self: start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
}

.campaign-banner__copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  margin-bottom: 0.35rem;
  color: #fff;
}

.campaign-banner__copy p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  margin: 0;
}

.campaign-banner__btn {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #fff4f6 100%);
  color: #d4495f;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.campaign-banner__btn:hover {
  background: #fff;
  color: #c03d52;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.campaign-banner__btn svg {
  transition: transform 0.2s var(--ease);
}

.campaign-banner__btn:hover svg {
  transform: translateX(3px);
}

.campaign-banner__btn--wide {
  width: 100%;
  margin-top: 0.35rem;
}

.blog-article .campaign-banner {
  margin-top: 0.25rem;
}

.blog-article .campaign-banner:last-child {
  margin-top: 2rem;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .campaign-banner__content {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
  }

  .campaign-banner__badge {
    align-self: center;
  }

  .campaign-banner__btn {
    justify-self: end;
    white-space: nowrap;
  }

  .promo-popup-content {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* ---------- Pagination ---------- */

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0;
}

.pagination__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination__num,
.pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--foreground);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s var(--ease), color 0.15s var(--ease), border-color 0.15s var(--ease);
}

.pagination__num:hover,
.pagination__btn:hover {
  border-color: rgba(212, 73, 95, 0.4);
  color: var(--primary);
}

.pagination__num.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ---------- Contact ---------- */

.contact-page {
  padding: calc(var(--header-offset) + 2rem) 0 4rem;
}

.contact-wrap {
  max-width: 820px;
}

.contact-panel {
  margin-top: 0.5rem;
}

.contact-panel__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
}

.contact-panel__intro h2 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: #fff;
  margin: 0.5rem 0 0.35rem;
}

.contact-panel__intro p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.nav-link.is-active {
  color: var(--primary);
  font-weight: 600;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Responsive ---------- */

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
    max-width: none;
  }

  .hero-actions .btn-primary {
    width: auto;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .header-actions .header-cta {
    display: inline-flex;
    white-space: nowrap;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
  }

  .about-inner {
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .site-header {
    top: 0.65rem;
    width: min(calc(100% - 1rem), 920px);
  }

  .header-bar {
    padding: 0.6rem 0.85rem;
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .marquee-label,
  .marquee-item {
    font-size: 0.95rem;
    padding: 0 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .cta-glow,
  .btn,
  .btn-primary svg {
    animation: none !important;
    transition: none !important;
  }
}
