html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--wf-text, #1b2431);
  background:
    radial-gradient(circle at 10% 20%, rgba(215, 179, 106, 0.16), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(0, 64, 128, 0.16), transparent 22%),
    linear-gradient(180deg, #fbf8f2 0%, #f7f3eb 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.68;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

:target {
  scroll-margin-top: 120px;
}

.bg-ek-green {
  background: var(--wf-theme, #004080) !important;
}

.text-ek-green {
  color: var(--wf-theme, #004080) !important;
}

.wf-page-glow {
  position: fixed;
  inset: auto;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.38;
  z-index: -1;
}

.wf-page-glow--one {
  top: -8rem;
  left: -10rem;
  background: rgba(215, 179, 106, 0.34);
}

.wf-page-glow--two {
  right: -12rem;
  bottom: 8rem;
  background: rgba(0, 64, 128, 0.28);
}

.wf-main {
  position: relative;
  z-index: 1;
}

.wf-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  padding: 1rem 0;
  background: rgba(247, 243, 235, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(215, 221, 231, 0.55);
  transition: padding 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.wf-header.is-scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 20px 45px rgba(6, 19, 39, 0.08);
}

.wf-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--wf-text);
  min-width: 0;
}

.wf-brand__logo-wrap {
  width: 3.35rem;
  height: 3.35rem;
  display: grid;
  place-items: center;
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 235, 0.7));
  border: 1px solid rgba(215, 221, 231, 0.85);
  box-shadow: 0 14px 32px rgba(6, 19, 39, 0.10);
}

.wf-brand__logo {
  max-width: 2.25rem;
  max-height: 2.25rem;
}

.wf-brand__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.wf-brand__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-muted);
}

.wf-brand__title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.15rem, 1vw + 0.9rem, 1.55rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--wf-theme-deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wf-nav-list .nav-link {
  color: var(--wf-muted);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 0.95rem !important;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.wf-nav-list .nav-link:hover,
.wf-nav-list .nav-link.active,
.wf-nav-list .show > .nav-link {
  color: var(--wf-theme-deep);
  background: rgba(215, 179, 106, 0.14);
}

.wf-dropdown {
  min-width: 14rem;
  border: 1px solid rgba(215, 221, 231, 0.9);
  border-radius: 1.15rem;
  padding: 0.55rem;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 26px 48px rgba(6, 19, 39, 0.12);
}

.wf-dropdown .dropdown-item {
  border-radius: 0.85rem;
  color: var(--wf-text);
  font-weight: 600;
  padding: 0.72rem 0.9rem;
}

.wf-dropdown .dropdown-item:hover,
.wf-dropdown .dropdown-item:focus {
  background: rgba(215, 179, 106, 0.16);
  color: var(--wf-theme-deep);
}

.wf-nav-toggle {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--wf-theme-deep);
  font-size: 1.35rem;
}

.wf-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(128, 0, 0, 0.08);
  color: #a51212;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.03em;
  border: 1px solid rgba(165, 18, 18, 0.14);
}

.wf-live-pill__dot {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 0 rgba(165, 18, 18, 0.55);
  animation: wf-pulse 1.8s infinite;
}

@keyframes wf-pulse {
  0% { box-shadow: 0 0 0 0 rgba(165, 18, 18, 0.48); }
  70% { box-shadow: 0 0 0 10px rgba(165, 18, 18, 0); }
  100% { box-shadow: 0 0 0 0 rgba(165, 18, 18, 0); }
}

.wf-offcanvas {
  background:
    radial-gradient(circle at top right, rgba(215, 179, 106, 0.18), transparent 28%),
    linear-gradient(180deg, var(--wf-theme-deep), #06111f 100%);
  color: #f7f8fb;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.wf-offcanvas .offcanvas-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
}

.wf-offcanvas-block + .wf-offcanvas-block {
  margin-top: 1.5rem;
}

.wf-offcanvas-title {
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.wf-offcanvas-link {
  display: flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.35rem 0;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.wf-offcanvas-link.active,
.wf-offcanvas-link:hover {
  color: var(--wf-accent);
}

.wf-offcanvas-actions {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.wf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.wf-btn:hover {
  transform: translateY(-1px);
}

.wf-btn-primary {
  background: linear-gradient(135deg, var(--wf-accent), #c99643);
  color: #1b1406;
  box-shadow: 0 18px 34px rgba(201, 150, 67, 0.28);
}

.wf-btn-outline {
  background: rgba(255, 253, 248, 0.7);
  border-color: rgba(27, 36, 49, 0.12);
  color: var(--wf-theme-deep);
}

.wf-btn-outline:hover {
  border-color: rgba(27, 36, 49, 0.2);
  box-shadow: 0 16px 30px rgba(6, 19, 39, 0.08);
}

.wf-section {
  padding: clamp(3.5rem, 5vw, 5.4rem) 0;
}

.wf-page-hero {
  padding: clamp(3.2rem, 6vw, 5.2rem) 0 2rem;
}

.wf-page-hero__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.2rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(215, 179, 106, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 243, 235, 0.84));
  border: 1px solid rgba(215, 221, 231, 0.92);
  box-shadow: 0 32px 64px rgba(6, 19, 39, 0.10);
}

.wf-page-hero__panel::after {
  content: "";
  position: absolute;
  inset: auto -4rem -4rem auto;
  width: 14rem;
  height: 14rem;
  border-radius: 999px;
  background: rgba(0, 64, 128, 0.08);
  filter: blur(20px);
}

.wf-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-theme);
  margin-bottom: 1rem;
}

.wf-display-title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 4.6rem);
  line-height: 0.95;
  color: var(--wf-theme-deep);
}

.wf-page-copy,
.wf-hero-copy,
.wf-footer-copy {
  max-width: 45rem;
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--wf-muted);
  font-size: 1.02rem;
}

.wf-page-actions,
.wf-chip-row,
.wf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.wf-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(215, 221, 231, 0.92);
  color: var(--wf-theme-deep);
  font-weight: 700;
  font-size: 0.92rem;
}

.wf-hero-home {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 5vw, 4rem);
}

.wf-hero-home__media {
  position: absolute;
  inset: 0;
}

.wf-hero-home__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(5, 11, 22, 0.88), rgba(5, 11, 22, 0.45) 48%, rgba(5, 11, 22, 0.72)),
    linear-gradient(180deg, rgba(5, 11, 22, 0.18) 0%, rgba(5, 11, 22, 0.55) 100%);
}

.wf-hero-home .carousel,
.wf-hero-home .carousel-inner,
.wf-hero-home .carousel-item {
  height: 100%;
}

.wf-hero-home .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wf-slow-zoom 18s ease-in-out infinite alternate;
}

@keyframes wf-slow-zoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.09); }
}

.wf-hero-home__content {
  position: relative;
  z-index: 1;
  color: #f8fafc;
}

.wf-hero-home__panel {
  max-width: 50rem;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 2rem;
  background: rgba(6, 19, 39, 0.42);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.wf-hero-home .wf-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.wf-hero-home .wf-display-title {
  color: #fffdf8;
}

.wf-hero-home .wf-hero-copy {
  color: rgba(248, 250, 252, 0.82);
}

.wf-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.wf-stat {
  padding: 1.15rem 1.25rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.wf-stat strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
}

.wf-stat span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(248, 250, 252, 0.78);
  font-size: 0.92rem;
}

.wf-surface,
.wf-card,
.wf-form-panel,
.wf-story-panel,
.wf-data-panel {
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 243, 235, 0.88));
  border: 1px solid rgba(215, 221, 231, 0.9);
  box-shadow: 0 24px 50px rgba(6, 19, 39, 0.09);
}

.wf-card {
  overflow: hidden;
  height: 100%;
}

.wf-card .card-body,
.wf-card-body {
  padding: 1.4rem;
}

.wf-card .card-body h2,
.wf-card .card-body h3,
.wf-card-title,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--wf-theme-deep);
}

.wf-card .card-body p,
.wf-card .card-body time,
.wf-card-meta,
.text-muted,
.small {
  color: var(--wf-muted) !important;
}

.wf-card .card-img-top,
.wf-card-media {
  object-fit: cover;
  height: 15rem;
}

.wf-card .ratio img {
  object-fit: cover;
}

.wf-band {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 1.8rem;
  background: linear-gradient(135deg, var(--wf-theme-deep), var(--wf-theme));
  color: #f8fafc;
  box-shadow: 0 30px 60px rgba(6, 19, 39, 0.18);
}

.wf-band h2,
.wf-band h3,
.wf-band p,
.wf-band .text-muted {
  color: inherit !important;
}

.wf-prose {
  color: var(--wf-text);
}

.wf-prose p:last-child {
  margin-bottom: 0;
}

.wf-empty {
  padding: 2rem;
  text-align: center;
  color: var(--wf-muted);
  border: 1px dashed rgba(102, 112, 133, 0.35);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
}

.wf-filter-bar {
  padding: 1.15rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(215, 221, 231, 0.92);
  box-shadow: 0 20px 42px rgba(6, 19, 39, 0.06);
}

.form-control,
.form-select,
.btn,
.page-link {
  border-radius: 1rem;
}

.form-control,
.form-select {
  min-height: 3rem;
  border-color: rgba(215, 221, 231, 0.96);
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(0, 64, 128, 0.36);
  box-shadow: 0 0 0 0.25rem rgba(0, 64, 128, 0.10);
}

.pagination {
  gap: 0.35rem;
}

.pagination .page-link {
  color: var(--wf-theme-deep);
  border-color: rgba(215, 221, 231, 0.92);
  min-width: 2.75rem;
  text-align: center;
}

.pagination .page-item.active .page-link {
  background: var(--wf-theme);
  border-color: var(--wf-theme);
  color: #fff;
}

.modal-content {
  border-radius: 1.6rem;
  border: 1px solid rgba(215, 221, 231, 0.8);
  overflow: hidden;
}

.modal-header {
  border-bottom: none;
}

.modal-body {
  color: var(--wf-text);
}

.wf-footer {
  position: relative;
  margin-top: clamp(3rem, 4vw, 4rem);
  padding: clamp(3rem, 5vw, 4.8rem) 0 2rem;
  color: rgba(248, 250, 252, 0.86);
  background:
    radial-gradient(circle at top right, rgba(215, 179, 106, 0.14), transparent 20%),
    linear-gradient(180deg, var(--wf-theme-deep), #07111f 100%);
}

.wf-footer-card {
  height: 100%;
  padding: 1.6rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wf-footer-title {
  font-family: "Fraunces", Georgia, serif;
  color: #fffdf8;
  margin: 0;
  font-size: clamp(1.7rem, 2vw, 2.4rem);
}

.wf-footer-heading {
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
}

.wf-footer-heading-lg {
  font-family: "Fraunces", Georgia, serif;
  color: #fffdf8;
  margin: 0;
}

.wf-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.wf-footer-links a,
.wf-footer-address {
  color: rgba(248, 250, 252, 0.78);
  text-decoration: none;
}

.wf-footer-links a:hover,
.wf-footer-address:hover {
  color: var(--wf-accent);
}

.wf-footer-address {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1rem;
}

.wf-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.wf-footer-socials a {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

.wf-footer-socials a:hover {
  background: rgba(215, 179, 106, 0.2);
  color: var(--wf-accent);
}

.wf-newsletter-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.15rem;
}

.wf-newsletter-msg {
  display: block;
  min-height: 1.2rem;
  margin-top: 0.9rem;
  color: rgba(248, 250, 252, 0.78);
}

.wf-newsletter-msg[data-state="success"] {
  color: #f3d48b;
}

.wf-newsletter-msg[data-state="error"] {
  color: #f7b8b8;
}

.wf-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(248, 250, 252, 0.6);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199.98px) {
  .wf-header {
    padding: 0.85rem 0;
  }
}

@media (max-width: 991.98px) {
  .wf-brand__logo-wrap {
    width: 3rem;
    height: 3rem;
  }

  .wf-card .card-img-top,
  .wf-card-media {
    height: 13rem;
  }
}

@media (max-width: 767.98px) {
  .wf-page-hero__panel,
  .wf-footer-card,
  .wf-band {
    border-radius: 1.4rem;
  }

  .wf-page-copy,
  .wf-hero-copy,
  .wf-footer-copy {
    font-size: 0.96rem;
  }

  .wf-hero-home__panel {
    border-radius: 1.5rem;
  }

  .wf-footer-bottom {
    flex-direction: column;
  }
}
