:root {
  --black: #0f0f10;
  --white: #ffffff;
  --yellow: #f7a61e;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-mark {
  font-size: clamp(2rem, 6vw, 6rem);
  letter-spacing: -0.08em;
  color: var(--yellow);
  animation: popIn 0.9s var(--ease) both;
}
.logo {
  display: inline-flex;
  align-items: center;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.logo:hover {
  transform: translateY(-2px);
}
.logo-img {
  display: block;
  width: 170px;
  max-width: 42vw;
  height: auto;
}
.page-loader .logo {
  padding: 10px 18px;
  transform: scale(1.15);
  animation: popIn 0.9s var(--ease) both;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.45s var(--ease), padding 0.45s var(--ease),
    backdrop-filter 0.45s var(--ease), border-color 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled,
.site-header.menu-open {
  background: rgba(15, 15, 16, 0.88);
  backdrop-filter: blur(18px);
  padding: 13px 0;
  border-color: rgba(255, 255, 255, 0.09);
}
.nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 650;
  margin: 0 0.25rem;
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav-link:hover {
  color: var(--yellow);
}
.nav-link:after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}
.social-mini {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  margin-left: 0.35rem;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    color 0.35s var(--ease);
}
.social-mini svg,
.social-big svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-mini.facebook svg,
.social-big.facebook svg {
  fill: currentColor;
  stroke: none;
}
.social-mini:hover {
  transform: translateY(-3px);
  background: var(--yellow);
  color: #111;
  border-color: var(--yellow);
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 0.7rem;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}
.lang-switch a {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  height: 28px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.lang-switch a:hover,
.lang-switch a.active {
  background: var(--yellow);
  color: #111;
  transform: translateY(-1px);
}
.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  border-radius: 999px;
  position: relative;
}
.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
      circle at 78% 20%,
      rgba(247, 166, 30, 0.22),
      transparent 28%
    ),
    rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.035);
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease),
    transform 0.55s var(--ease);
}
.mobile-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}
.mobile-panel-inner {
  width: min(780px, 88vw);
  text-align: center;
}
.mobile-panel a {
  display: block;
  color: #fff;
  font-size: clamp(2rem, 9vw, clamp(3rem, 10vh, 5.8rem));
  line-height: 0.94;
  font-weight: 950;
  letter-spacing: -0.08em;
  padding: clamp(0.28rem, 1vh, 0.65rem) 0;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease),
    color 0.3s var(--ease);
}
.mobile-panel.is-open a {
  opacity: 1;
  transform: none;
}
.mobile-panel.is-open a:nth-child(1) {
  transition-delay: 0.06s;
}
.mobile-panel.is-open a:nth-child(2) {
  transition-delay: 0.09s;
}
.mobile-panel.is-open a:nth-child(3) {
  transition-delay: 0.12s;
}
.mobile-panel.is-open a:nth-child(4) {
  transition-delay: 0.15s;
}
.mobile-panel.is-open a:nth-child(5) {
  transition-delay: 0.18s;
}
.mobile-panel.is-open a:nth-child(6) {
  transition-delay: 0.21s;
}
.mobile-panel.is-open a:nth-child(7) {
  transition-delay: 0.24s;
}
.mobile-panel.is-open a:nth-child(8) {
  transition-delay: 0.27s;
}
.mobile-panel.is-open a:nth-child(9) {
  transition-delay: 0.3s;
}
.mobile-panel a:hover {
  color: var(--yellow);
  transform: translateX(8px);
}
.mobile-langs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.mobile-langs a {
  font-size: 0.9rem !important;
  line-height: 1 !important;
  letter-spacing: 0.04em !important;
  padding: 0.7rem 0.85rem !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}
.mobile-langs a.active,
.mobile-langs a:hover {
  background: var(--yellow);
  color: #111 !important;
  transform: none !important;
}
body.menu-is-open {
  overflow: hidden;
}
.burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #fff;
  transition: 0.35s var(--ease);
}
.burger span:nth-child(1) {
  top: 15px;
}
.burger span:nth-child(2) {
  top: 21px;
}
.burger span:nth-child(3) {
  top: 27px;
}
.burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  background: #050505;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 150px 0 80px;
  isolation: isolate;
}
.hero:before {
  content: "";
  position: absolute;
  inset: -28%;
  z-index: 0;
  background: radial-gradient(
      circle at 14% 22%,
      rgba(247, 166, 30, 0.38),
      transparent 18%
    ),
    radial-gradient(
      circle at 80% 18%,
      rgba(255, 255, 255, 0.14),
      transparent 16%
    ),
    radial-gradient(
      circle at 68% 78%,
      rgba(247, 166, 30, 0.24),
      transparent 23%
    ),
    radial-gradient(
      circle at 28% 78%,
      rgba(255, 255, 255, 0.08),
      transparent 20%
    ),
    linear-gradient(135deg, #050505 0%, #111113 48%, #050505 100%);
  filter: blur(42px);
  transform: scale(1.05);
  animation: abstractFlow 16s var(--ease) infinite alternate;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(
      circle at 50% 48%,
      transparent 0 32%,
      rgba(5, 5, 5, 0.58) 74%,
      #050505 100%
    );
  background-size: 92px 92px, 92px 92px, auto;
  mask-image: radial-gradient(circle at center, #000 45%, transparent 100%);
  opacity: 0.95;
  pointer-events: none;
}
.hero .container {
  z-index: 3;
}
.eyebrow {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
}
.dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 99px;
  box-shadow: 0 0 0 6px rgba(247, 166, 30, 0.13);
}
.hero h1 {
  font-size: clamp(4rem, 10vw, 10.8rem);
  line-height: 0.82;
  letter-spacing: -0.095em;
  font-weight: 950;
  margin: 1.35rem 0 1.2rem;
  max-width: 980px;
}
.hero p {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 730px;
}
.btn-wow {
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.35rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s var(--ease);
  will-change: transform;
}
.btn-wow.primary {
  background: var(--yellow);
  color: #111;
  box-shadow: 0 16px 38px rgba(247, 166, 30, 0.25);
}
.btn-wow.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.btn-wow:hover {
  transform: translateY(-4px) scale(1.02);
}
section {
  padding: 110px 0;
}
.section-kicker {
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.section-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.9;
  margin: 0.6rem 0 2.5rem;
}
.discovery-card {
  display: block;
  color: inherit;
  height: 100%;
  border: 1px solid rgba(15, 15, 16, 0.1);
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 60px rgba(15, 15, 16, 0.07);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  transform-style: preserve-3d;
}
.discovery-card:hover {
  color: inherit;
  transform: translateY(-10px) rotateX(1.2deg) rotateY(-1.2deg);
  box-shadow: 0 32px 80px rgba(15, 15, 16, 0.14);
}
.img-ph {
  height: 320px;
  overflow: hidden;
  position: relative;
  background: #151515;
}
.img-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  filter: saturate(0.92) contrast(1.06);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}
.img-ph:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.28));
  pointer-events: none;
}
.discovery-card:hover .img-ph img {
  transform: scale(1.12);
  filter: saturate(1.08) contrast(1.08);
}
.badge-wow {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--yellow);
  color: #111;
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  font-size: 0.73rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 0.45s var(--ease);
}
.discovery-card:hover .badge-wow {
  transform: translateY(-5px) translateX(5px);
}
.card-body-custom {
  padding: 28px;
}
.card-body-custom h3 {
  font-size: 1.7rem;
  font-weight: 950;
  letter-spacing: -0.055em;
}
.card-body-custom p {
  color: #666;
  line-height: 1.6;
}
.read-more {
  font-weight: 900;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
.read-more span {
  transition: transform 0.3s var(--ease);
}
.read-more:hover span {
  transform: translateX(6px);
}
.categories {
  background: #f6f2ea;
  position: relative;
  overflow: hidden;
}
.categories:before {
  content: "";
  position: absolute;
  left: -120px;
  top: 80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(247, 166, 30, 0.18);
  filter: blur(12px);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  position: relative;
}
.cat-card {
  min-height: 168px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 34px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.56);
  font-size: clamp(1.9rem, 3.7vw, 3.7rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  box-shadow: 0 16px 46px rgba(15, 15, 16, 0.045);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transition: transform 0.48s var(--ease), background 0.48s var(--ease),
    border-color 0.48s var(--ease), box-shadow 0.48s var(--ease),
    color 0.35s var(--ease);
}
.cat-card:before {
  content: "";
  position: absolute;
  inset: auto -18% -72% auto;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  transform: scale(0.35);
  opacity: 0.18;
  transition: transform 0.55s var(--ease), opacity 0.55s var(--ease);
}
.cat-card:after {
  content: "Explore";
  position: absolute;
  left: 30px;
  bottom: 22px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 950;
  color: rgba(15, 15, 16, 0.38);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.cat-card strong {
  position: relative;
  z-index: 2;
}
.cat-card:hover {
  transform: translateY(-9px) scale(1.015);
  background: #111;
  color: #fff;
  box-shadow: 0 34px 86px rgba(15, 15, 16, 0.2);
}
.cat-card:hover:before {
  opacity: 1;
  transform: scale(1.35);
}
.cat-card:hover:after {
  opacity: 1;
  transform: none;
  color: rgba(255, 255, 255, 0.58);
}
.cat-arrow {
  flex: 0 0 auto;
  margin-left: 28px;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  position: relative;
  z-index: 2;
  transition: transform 0.42s var(--ease), background 0.42s var(--ease),
    color 0.42s var(--ease), box-shadow 0.42s var(--ease);
}
.cat-card:hover .cat-arrow {
  transform: translateX(4px) rotate(-35deg) scale(1.12);
  background: #fff;
  color: #111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
.newsletter {
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.newsletter:after {
  content: "";
  position: absolute;
  right: -12%;
  top: -20%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(247, 166, 30, 0.18);
  filter: blur(8px);
}
.newsletter-box {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: clamp(32px, 6vw, 70px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.025)
  );
}
.newsletter input {
  border: 0;
  border-radius: 999px;
  padding: 1.1rem 1.25rem;
  background: #fff;
  min-height: 58px;
}
.newsletter .btn-wow {
  min-height: 58px;
  justify-content: center;
}
.social-section {
  background: #fff;
}
.social-big {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(15, 15, 16, 0.1);
  border-radius: 28px;
  padding: 28px;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 950;
  letter-spacing: -0.05em;
  box-shadow: 0 16px 44px rgba(15, 15, 16, 0.06);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.social-big:hover {
  transform: translateY(-7px);
  background: var(--yellow);
}
footer {
  background: #080808;
  color: #fff;
  padding: 70px 0 35px;
}
.footer-desc {
  color: rgba(255, 255, 255, 0.58);
  max-width: 360px;
}
.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  margin: 0.5rem 0;
}
.footer-link:hover {
  color: var(--yellow);
}
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.stagger {
  transition-delay: calc(var(--i, 0) * 95ms);
}
@keyframes abstractFlow {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1.04) rotate(0deg);
  }
  50% {
    transform: translate3d(2%, 2%, 0) scale(1.1) rotate(2deg);
  }
  100% {
    transform: translate3d(-1%, 1%, 0) scale(1.07) rotate(-1deg);
  }
}
@keyframes shapeFloat {
  from {
    translate: 0 0;
    rotate: 0deg;
  }
  to {
    translate: 0 -24px;
    rotate: 4deg;
  }
}
@keyframes streakSlide {
  from {
    opacity: 0.35;
    transform: translateX(-4%) rotate(-22deg);
  }
  to {
    opacity: 0.9;
    transform: translateX(5%) rotate(-22deg);
  }
}
@keyframes shine {
  to {
    transform: translateX(55%) rotate(16deg);
  }
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 991px) {
  .desktop-nav,
  .header-social {
    display: none !important;
  }
  .burger {
    display: block;
    z-index: 1003;
  }
  .site-header.menu-open {
    background: transparent;
    backdrop-filter: none;
    border-color: transparent;
  }
  .mobile-panel {
    position: fixed;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    inset: 0;
    background: radial-gradient(
        circle at 80% 20%,
        rgba(247, 166, 30, 0.2),
        transparent 28%
      ),
      rgba(5, 5, 5, 0.98);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    pointer-events: none;
    transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease),
      transform 0.45s var(--ease);
  }
  .mobile-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
  }
  .mobile-panel a {
    display: block;
    color: #fff;
    padding: 10px 0;
    font-size: clamp(2.2rem, 9vw, 5.5rem);
    line-height: 0.95;
    font-weight: 950;
    letter-spacing: -0.08em;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease),
      color 0.25s var(--ease);
  }
  .mobile-panel.is-open a {
    opacity: 1;
    transform: none;
  }
  .mobile-panel.is-open a:nth-child(1) {
    transition-delay: 0.05s;
  }
  .mobile-panel.is-open a:nth-child(2) {
    transition-delay: 0.09s;
  }
  .mobile-panel.is-open a:nth-child(3) {
    transition-delay: 0.13s;
  }
  .mobile-panel.is-open a:nth-child(4) {
    transition-delay: 0.17s;
  }
  .mobile-panel.is-open a:nth-child(5) {
    transition-delay: 0.21s;
  }
  .mobile-panel.is-open a:nth-child(6) {
    transition-delay: 0.25s;
  }
  .mobile-panel.is-open a:nth-child(7) {
    transition-delay: 0.29s;
  }
  .mobile-panel.is-open a:nth-child(8) {
    transition-delay: 0.33s;
  }
  .mobile-panel.is-open a:nth-child(9) {
    transition-delay: 0.37s;
  }
  .mobile-panel a:hover {
    color: var(--yellow);
  }
  .abstract-shape.s1 {
    right: -80px;
    top: 16%;
    width: 170px;
    height: 170px;
  }
  .abstract-shape.s2 {
    display: none;
  }
  .abstract-shape.s3 {
    display: none;
  }
  .hero-streak {
    left: 20%;
    top: 22%;
    width: 82vw;
  }
  .hero-ghost {
    font-size: 38vw;
    top: 42%;
  }
  .hero h1 {
    font-size: clamp(4rem, 16vw, 7rem);
  }
  section {
    padding: 80px 0;
  }
  .img-ph {
    height: 240px;
  }
  .logo-img {
    width: 145px;
  }
  .cat-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cat-card {
    min-height: 128px;
    font-size: clamp(2rem, 12vw, 4rem);
    padding: 24px;
  }
  .cat-arrow {
    width: 54px;
    height: 54px;
  }
  .lang-switch {
    display: none;
  }
}
@media (min-width: 992px) {
  .mobile-panel {
    display: none !important;
  }
  .burger {
    display: none !important;
  }
}
.interior {
  background: rgba(15, 15, 16, 0.88);
}

.blog-pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.blog-pager a {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #fff;
    color: #111;

    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        color .25s ease;
}

.blog-pager a:hover {
    transform: translateY(-4px);
    background: #f5f5f5;
    color: #111;
    box-shadow: 0 18px 40px rgba(0,0,0,.16);
}

.blog-pager a.active {
    background: var(--yellow);
    color: #fff;
}

.blog-pager a.active:hover {
    transform: none;
}

.wr-article-hero {
    padding: 130px 0 90px;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 214, 0, .25), transparent 32%),
        radial-gradient(circle at 80% 40%, rgba(255, 255, 255, .08), transparent 28%),
        linear-gradient(135deg, #08080c 0%, #171720 100%);
    color: #fff;
    overflow: hidden;
}

.wr-back-link {
    display: inline-flex;
    margin-bottom: 32px;
    color: rgba(255,255,255,.62);
    font-weight: 700;
    text-decoration: none;
}

.wr-back-link:hover {
    color: #ffd600;
}

.wr-article-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    padding: 8px 15px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    color: #ffd600;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.wr-article-title {
    margin: 0 auto;
    max-width: 980px;
    font-size: clamp(3rem, 8vw, 4.7rem);
    line-height: .88;
    letter-spacing: -.075em;
    font-weight: 950;
}

.wr-article-intro {
    max-width: 780px;
    margin: 32px auto 0;
    color: rgba(255,255,255,.72);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.7;
}

.wr-main-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    padding: 17px 28px;
    border-radius: 999px;
    background: #ffd600;
    color: #050505;
    font-weight: 950;
    text-decoration: none;
    border: 0;
    box-shadow: 0 18px 44px rgba(255, 214, 0, .28);
    transition: transform .25s ease, box-shadow .25s ease;
}

.wr-main-cta:hover {
    transform: translateY(-3px);
    background: #ffd600;
    color: #050505;
    box-shadow: 0 26px 60px rgba(255, 214, 0, .38);
}

.wr-article-page {
    padding: 70px 0 100px;
    background: #f7f7f2;
}

.wr-cover {
    margin: -120px 0 70px;
    position: relative;
    z-index: 2;
}

.wr-cover img {
    display: block;
    width: 100%;
    max-height: 680px;
    object-fit: cover;
    border-radius: 38px;
    box-shadow: 0 35px 100px rgba(0,0,0,.22);
}

.wr-article-content {
    background: #fff;
    border-radius: 34px;
    padding: clamp(28px, 5vw, 62px);
    box-shadow: 0 24px 80px rgba(0,0,0,.07);
}

.wr-article-body {
    color: #181818;
    font-size: 1.08rem;
    line-height: 1.88;
}

.wr-article-body h2,
.wr-article-body h3,
.wr-article-body h4 {
    margin-top: 1em;
    margin-bottom: .7em;
    line-height: 1.08;
    letter-spacing: -.045em;
    font-weight: 950;
}

.wr-article-body h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.wr-article-body h3 {
    font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.wr-article-body p,
.wr-article-body ul,
.wr-article-body ol {
    margin-bottom: 1.35em;
}

.wr-article-body ul,
.wr-article-body ol {
    padding-left: 1.35rem;
}

.wr-article-body li {
    margin-bottom: .45em;
}

.wr-article-body a {
    color: #111;
    font-weight: 800;
    text-decoration-color: #ffd600;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.wr-article-body blockquote {
    margin: 2.4em 0;
    padding: 28px 34px;
    border-left: 6px solid #ffd600;
    border-radius: 0 24px 24px 0;
    background: #f7f7f2;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.55;
}

.wr-article-body img {
    max-width: 100%;
    border-radius: 26px;
}

.wr-section-title {
    margin: 60px 0 24px;
}

.wr-section-title span,
.wr-final-cta span,
.wr-related-label {
    display: inline-flex;
    margin-bottom: 8px;
    color: #8a7700;
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.wr-section-title h2 {
    margin: 0;
    color: #111;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: .95;
    letter-spacing: -.06em;
    font-weight: 950;
}

.wr-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    gap: 16px;
}

.wr-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 190px;
    border-radius: 26px;
    background: #111;
}

.wr-gallery-item.is-large {
    grid-column: span 2;
    grid-row: span 2;
}

.wr-gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    transition: transform .55s ease, opacity .55s ease;
}

.wr-gallery-item:hover img {
    transform: scale(1.08);
    opacity: .78;
}

.wr-video {
    overflow: hidden;
    border-radius: 32px;
    background: #000;
    box-shadow: 0 28px 80px rgba(0,0,0,.18);
	margin-bottom: 2rem;
}

.wr-video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.wr-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 70px;
    padding: clamp(28px, 5vw, 42px);
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(255, 214, 0, .28), transparent 34%),
        #101014;
    color: #fff;
}

.wr-final-cta strong {
    display: block;
    font-size: clamp(1.7rem, 4vw, 3rem);
    line-height: .95;
    letter-spacing: -.06em;
    font-weight: 950;
}

.wr-final-cta p {
    max-width: 480px;
    margin: 12px 0 0;
    color: rgba(255,255,255,.64);
    line-height: 1.6;
}

.wr-final-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 17px 26px;
    border-radius: 999px;
    background: #ffd600;
    color: #050505;
    font-weight: 950;
    text-decoration: none;
    border: 0;
    box-shadow: 0 18px 44px rgba(255, 214, 0, .28);
}

.wr-final-cta a:hover {
    background: #ffd600;
    color: #050505;
    transform: translateY(-2px);
}

.wr-related {
    margin-top: 90px;
}

.wr-related h2 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: .9;
    letter-spacing: -.07em;
    font-weight: 950;
}

.wr-related-card {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    color: #111;
    text-decoration: none;
    box-shadow: 0 20px 60px rgba(0,0,0,.07);
    transition: transform .28s ease, box-shadow .28s ease;
}

.wr-related-card:hover {
    transform: translateY(-6px);
    color: #111;
    box-shadow: 0 30px 90px rgba(0,0,0,.12);
}

.wr-related-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .45s ease;
}

.wr-related-card:hover img {
    transform: scale(1.06);
}

.wr-related-card div {
    padding: 24px;
}

.wr-related-card span {
    display: block;
    margin-bottom: 10px;
    color: #8a7700;
    font-size: .76rem;
    font-weight: 950;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.wr-related-card strong {
    display: block;
    min-height: 74px;
    font-size: 1.28rem;
    line-height: 1.15;
    letter-spacing: -.04em;
    font-weight: 950;
}

.wr-related-card em {
    display: inline-flex;
    margin-top: 18px;
    color: #111;
    font-style: normal;
    font-weight: 900;
}

@media (max-width: 991px) {
    .wr-article-hero {
        padding: 110px 0 80px;
    }

    .wr-cover {
        margin-top: -100px;
    }

    .wr-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .wr-final-cta {
        display: block;
    }

    .wr-final-cta a {
        margin-top: 26px;
    }
}

@media (max-width: 575px) {
    .wr-article-hero {
        padding: 92px 0 68px;
    }

    .wr-article-title {
        font-size: clamp(2.7rem, 15vw, 4.2rem);
    }

    .wr-cover {
        margin: -86px 0 44px;
    }

    .wr-cover img {
        border-radius: 26px;
    }

    .wr-article-content {
        border-radius: 28px;
    }

    .wr-gallery {
        grid-template-columns: 1fr;
    }

    .wr-gallery-item.is-large {
        grid-column: auto;
        grid-row: auto;
    }

    .wr-final-cta a {
        width: 100%;
        justify-content: center;
    }
}

.wr-article-content a {
    color: #171717;
    font-weight: 600;
    text-decoration: none;
    box-shadow: inset 0 -4px 0 #ffd600;
    transition:
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.wr-article-content a:hover,
.wr-article-content a:focus-visible {
    color: #171717;
    box-shadow: inset 0 -1.35em 0 #ffd600;
}

.wr-article-content a:focus-visible {
    outline: 2px solid #171717;
    outline-offset: 3px;
}

.wr-suggest-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(50px, 8vw, 130px);
    align-items: start;
}

.wr-suggest-intro {
    position: sticky;
    top: 130px;
}

.wr-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: #8f8f8f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
}

.wr-section-label::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffd600;
    content: "";
}

.wr-suggest-intro h2 {
    max-width: 540px;
    margin: 0 0 30px;
    color: #111;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.wr-suggest-intro > p {
    max-width: 540px;
    margin: 0 0 20px;
    color: #626262;
    font-size: 17px;
    line-height: 1.75;
}

.wr-suggest-note {
    display: flex;
    gap: 18px;
    margin-top: 42px;
    padding: 25px;
    border: 1px solid rgba(17, 17, 17, 0.09);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 214, 0, 0.18),
            transparent 45%
        ),
        #f8f8f5;
}

.wr-suggest-note-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffd600;
    color: #111;
    font-size: 18px;
}

.wr-suggest-note strong {
    display: block;
    margin-bottom: 7px;
    color: #111;
    font-size: 15px;
}

.wr-suggest-note p {
    margin: 0;
    color: #676767;
    font-size: 14px;
    line-height: 1.65;
}

.wr-suggest-form-wrapper {
    position: relative;
}

.wr-suggest-form-wrapper::before {
    position: absolute;
    z-index: -1;
    top: -35px;
    right: -35px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #ffd600;
    content: "";
    filter: blur(80px);
    opacity: 0.25;
}

.wr-suggest-form {
    padding: clamp(26px, 4vw, 56px);
    border: 1px solid rgba(17, 17, 17, 0.09);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(17, 17, 17, 0.07);
}

.wr-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.wr-form-group {
    position: relative;
    margin-bottom: 25px;
}

.wr-form-group label,
.wr-form-label {
    display: block;
    margin-bottom: 10px;
    color: #171717;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.wr-form-group label > span {
    color: #d5b300;
}

.wr-form-group input[type="text"],
.wr-form-group input[type="email"],
.wr-form-group input[type="url"],
.wr-form-group select,
.wr-form-group textarea {
    width: 100%;
    border: 1px solid #deded9;
    border-radius: 14px;
    outline: none;
    background: #fafaf8;
    color: #171717;
    font-family: inherit;
    font-size: 15px;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.wr-form-group input[type="text"],
.wr-form-group input[type="email"],
.wr-form-group input[type="url"],
.wr-form-group select {
    height: 58px;
    padding: 0 18px;
}

.wr-form-group textarea {
    min-height: 180px;
    padding: 18px;
    line-height: 1.65;
    resize: vertical;
}

.wr-form-group input::placeholder,
.wr-form-group textarea::placeholder {
    color: #a2a2a2;
}

.wr-form-group input:focus,
.wr-form-group select:focus,
.wr-form-group textarea:focus {
    border-color: #d6b700;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 214, 0, 0.15);
}

.wr-form-group small {
    display: block;
    margin-top: 8px;
    color: #929292;
    font-size: 12px;
    line-height: 1.5;
}

.wr-select-wrapper {
    position: relative;
}

.wr-select-wrapper::after {
    position: absolute;
    top: 50%;
    right: 19px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    content: "";
    pointer-events: none;
    transform: translateY(-70%) rotate(45deg);
}

.wr-form-group select {
    cursor: pointer;
    appearance: none;
}

.wr-character-count {
    margin-top: 7px;
    color: #aaa;
    font-size: 11px;
    text-align: right;
}

.wr-choice-list {
    display: grid;
    gap: 10px;
}

.wr-choice {
    display: flex !important;
    align-items: flex-start;
    gap: 13px;
    margin: 0 !important;
    padding: 15px 16px;
    border: 1px solid #e3e3df;
    border-radius: 13px;
    background: #fafaf8;
    cursor: pointer;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.5;
}

.wr-choice input,
.wr-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wr-choice-check {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    margin-top: 1px;
    border: 1px solid #bdbdb8;
    border-radius: 50%;
    background: #fff;
}

.wr-choice input:checked + .wr-choice-check {
    border-color: #111;
    box-shadow: inset 0 0 0 5px #ffd600;
}

.wr-form-confirmation {
    margin-top: 32px;
    padding-top: 25px;
    border-top: 1px solid #ecece8;
}

.wr-checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 13px;
    margin: 0 !important;
    color: #686868 !important;
    cursor: pointer;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.65;
}

.wr-checkbox-box {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border: 1px solid #bdbdb8;
    border-radius: 5px;
    background: #fff;
}

.wr-checkbox input:checked + .wr-checkbox-box {
    border-color: #ffd600;
    background: #ffd600;
}

.wr-checkbox input:checked + .wr-checkbox-box::after {
    position: absolute;
    width: 6px;
    height: 10px;
    margin: 3px 0 0 6px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    content: "";
    transform: rotate(45deg);
}

.wr-turnstile-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.wr-turnstile-wrapper .cf-turnstile {
    width: 100%;
}

.wr-turnstile-wrapper iframe {
    max-width: 100%;
}

.wr-suggest-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 64px;
    margin-top: 5px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
}

.wr-suggest-submit:disabled {
    cursor: wait;
    opacity: 0.65;
}

.wr-form-result {
    display: none;
    margin-bottom: 18px;
    padding: 15px 18px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
}

.wr-form-result.is-success {
    display: block;
    border: 1px solid rgba(26, 122, 68, 0.18);
    background: rgba(26, 122, 68, 0.08);
    color: #176f40;
}

.wr-form-result.is-error {
    display: block;
    border: 1px solid rgba(191, 44, 44, 0.17);
    background: rgba(191, 44, 44, 0.07);
    color: #a52929;
}

.wr-form-footer {
    max-width: 520px;
    margin: 17px auto 0;
    color: #a0a0a0;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}

.wr-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
}

@media (max-width: 991px) {
    .wr-suggest-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .wr-suggest-intro {
        position: static;
    }
}

@media (max-width: 767px) {
    .wr-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .wr-suggest-form {
        padding: 25px 18px;
        border-radius: 22px;
    }

    .wr-suggest-note {
        padding: 20px;
    }

    .wr-suggest-intro h2 {
        font-size: 42px;
    }
}
