
:root {
  --accent: #ff8515;
  --accent-soft: #ffb873;
  --tile: #182254;
  --orange: #ff8515;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
}
body {
  background:
    radial-gradient(ellipse 60% 340px at 50% 0, rgba(255, 255, 255, 0.035), transparent),
    #000;
}

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: #fff;
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ---------- Social icons (sprite) ---------- */
ul.social {
  display: inline-flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.social li {
  padding: 0 8px;
}
ul.social li a {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
}
ul.social li a:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("img/socialmedia.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 1px 0;
  height: 34px;
  width: 34px;
}
ul.social li.instaicon a:before {
  background-position: -34px 0;
}
ul.social li.youtubeicon a:before {
  background-position: -69px 0;
}

/* ---------- Header / logo / menu ---------- */
.site-header {
  border-bottom: 1px solid #242424;
  background: rgba(5, 5, 5, 0.94);
  position: relative;
  z-index: 20;
  backdrop-filter: blur(12px);
}
.site-header:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 8%, rgba(255, 133, 21, 0.85), transparent 92%);
}
.header-main {
  padding-top: 0;
  padding-bottom: 0;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 124px;
}
.header-logo {
  height: 110px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.header-logo img {
  height: 104px;
  width: auto;
  display: block;
  transition: opacity 0.25s ease, transform 0.35s ease;
}
.header-logo:hover img {
  opacity: 0.9;
  transform: translateY(-2px);
}
.menu {
  margin-left: auto;
}
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.menu ul li a {
  position: relative;
  display: block;
  padding: 17px 13px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.25s ease;
}
.menu ul li a:after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 9px;
  left: 13px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.menu ul li a.active,
.menu ul li a:hover {
  color: var(--accent-soft);
  text-decoration: none;
}
.menu ul li a.active:after,
.menu ul li a:hover:after {
  transform: scaleX(1);
}

.navbar-toggle {
  display: none;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 9px 10px;
  cursor: pointer;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

/* ---------- Home category tiles ---------- */
.shop-for-section {
  padding-top: 40px;
}
.page-kicker,
.section-heading > span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-heading p {
  margin: 16px 0 0;
  color: #aaa;
  font-size: 16px;
  font-weight: 300;
}
.h-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.image-wrap-h {
  width: 33.3333%;
  padding: 10px;
  position: relative;
  overflow: hidden;
  animation: fade-up 0.65s ease both;
  box-sizing: border-box;
}
.image-wrap-h:nth-child(n + 4) {
  width: 50%;
}
.tile-inner {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #1c1c1c;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.image-wrap-h:hover .tile-inner {
  border-color: rgba(255, 133, 21, 0.55);
}
.tile-inner:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.55));
  pointer-events: none;
}
.tile-index {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  padding: 5px 9px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.6);
  border-left: 2px solid var(--accent);
}
.image-wrap-h img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) brightness(0.92);
  transition: filter 0.4s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0, 1);
}
.image-wrap-h:hover img {
  filter: saturate(1.12) brightness(1.06);
  transform: scale(1.035);
}
span.six-title {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: 100%;
  color: #fff;
  background: rgba(24, 34, 84, 0.92);
  margin: 0;
  height: 66px;
  justify-content: flex-start;
  align-items: center;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.02em;
  border-top: 2px solid var(--accent);
  transition: background 0.3s ease;
  padding: 0 24px;
}
.image-wrap-h:hover span.six-title {
  background: rgba(24, 34, 84, 0.98);
}

.testimonials-section {
  margin-top: 80px;
  padding: 64px 0 20px;
  border-top: 1px solid #161616;
  background: linear-gradient(180deg, #070707, #000 70%);
}
.section-heading {
  margin-bottom: 34px;
  text-align: center;
}
.section-heading h2:after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 16px auto 0;
  background: var(--accent);
}

h2.wpp-h2 {
  text-align: center;
  color: #fff;
  margin: 0;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  letter-spacing: 0.015em;
}

/* ---------- Video slider ---------- */
.yt-slider {
  position: relative;
  padding: 0 50px;
}
.yt-track {
  display: flex;
  gap: 20px;
}
.yt-item {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
}
.yt-item > div,
.yt-item iframe {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #1c1c1c;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.yt-item:hover > div {
  border-color: rgba(255, 133, 21, 0.55);
}
.yt-item img {
  width: 100%;
  display: block;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.9);
  transition: filter 0.3s ease, transform 0.4s ease;
}
.yt-item:hover img {
  filter: saturate(1.08) brightness(1.04);
  transform: scale(1.015);
}
.yt-item iframe,
.yt-item .frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}
.yt-title {
  text-align: center;
  padding: 8px 0 0;
  font-size: 13px;
  color: #ccc;
  letter-spacing: 0.01em;
}
.icon-play {
  width: 80px;
  height: 50px;
  border-radius: 15px;
  top: 50%;
  position: absolute;
  left: 50%;
  margin-left: -40px;
  margin-top: -25px;
  background: #bf1512;
  cursor: pointer;
  pointer-events: none;
}
.icon-play:before {
  content: "";
  width: 34px;
  height: 27px;
  border-left: 2px solid #fff;
  border-radius: 5px;
  position: absolute;
  top: 13px;
  left: 31px;
}
.icon-play:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 24px;
  width: 24px;
  height: 24px;
  transform: rotate(45deg) skew(-5deg, -5deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-radius: 5px;
}
.yt-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}
.yt-arrow.prev {
  left: 0;
}
.yt-arrow.next {
  right: 0;
}

/* ---------- Inner pages ---------- */
.page {
  padding: 46px 0 40px;
}
.page-head {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 20px;
  animation: fade-up 0.55s ease both;
}
.page-head:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 133, 21, 0));
}
.page-kicker {
  margin-bottom: 8px;
}
.page h3 {
  font-size: clamp(30px, 3.6vw, 44px);
  margin: 0;
  color: #fff;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.page p {
  margin: 0 0 10px;
  font-size: 14px;
}
.page-intro {
  max-width: 860px;
  animation: fade-up 0.6s ease 0.08s both;
}
.page-intro p {
  font-size: 15px;
  line-height: 1.75;
  color: #c9c9c9;
  margin-bottom: 14px;
}

/* video reviews grid */
.pod-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px 22px;
}
.pod-item {
  animation: fade-up 0.6s ease both;
}
.pod-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background: #0d0d0d;
  border: 1px solid #202020;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s ease;
}
.pod-item:hover .pod-frame {
  border-color: rgba(255, 133, 21, 0.7);
  transform: translateY(-3px);
}
.pod-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.pod-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.pod-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) brightness(0.9);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0, 1), filter 0.35s ease;
}
.pod-poster:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) brightness(1.02);
}
.pod-poster .icon-play {
  transition: transform 0.3s ease, background 0.3s ease;
}
.pod-poster:hover .icon-play {
  transform: scale(1.08);
  background: #e0221d;
}
.pod-title {
  margin-top: 10px;
  font-size: 13px;
  color: #cfcfcf;
  line-height: 1.4;
}

/* podcast */
.podcast-wrap {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-top: 36px;
}
.podcast-main {
  width: 70%;
}
.now-playing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.now-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 133, 21, 0.6);
  animation: pulse 1.8s ease-out infinite;
}
.you-sl {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #222;
  background: #0a0a0a;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9);
}
.you-sl iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.podcast-thumbs {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.thumbs-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  padding: 4px 6px 8px;
  border-bottom: 1px solid #1e1e1e;
  margin-bottom: 4px;
}
.slider-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px;
  border-radius: 6px;
  opacity: 0.6;
  cursor: pointer;
  border: 1px solid transparent;
  transition: opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.slider-item:hover {
  opacity: 0.9;
  background: #0f0f0f;
  transform: translateX(2px);
}
.slider-thumb {
  position: relative;
  flex: 0 0 118px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
}
.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}
.slider-num {
  position: absolute;
  left: 6px;
  bottom: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}
.slider-item.on {
  opacity: 1;
  background: rgba(255, 133, 21, 0.12);
  border-color: rgba(255, 133, 21, 0.6);
}
.slider-item .ep {
  font-size: 13px;
  font-weight: 500;
  color: #ddd;
  margin: 0;
}
.slider-item.on .ep {
  color: #fff;
}

/* contact */
.page-head-center {
  text-align: center;
  margin-bottom: 44px;
}
.page-head-center:after {
  left: 50%;
  transform: translateX(-50%);
}
.contact-only {
  display: flex;
  justify-content: center;
  padding: 0 0 40px;
}
.contact-card {
  width: 100%;
  max-width: 460px;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 34px 32px;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  animation: fade-up 0.6s ease both;
}
.contact-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.contact-card-top {
  text-align: center;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #1c1c1c;
}
.contact-card-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-card-note {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #999;
}
.contact-rows {
  display: grid;
  gap: 6px;
}
.contact-row-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 6px;
  border-bottom: 1px solid #161616;
}
.contact-row-item:last-child {
  border-bottom: none;
}
.contact-row-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  color: var(--accent);
}
.contact-row-icon svg {
  width: 17px;
  height: 17px;
}
.contact-row-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}
.contact-row-label {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #767676;
}
.contact-row-value {
  font-size: 15px;
  color: #f1f1f1;
}
.contact-row-text a {
  font-size: 15px;
  color: #f1f1f1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  width: fit-content;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact-row-text a:hover {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
  text-decoration: none;
}
.contact-card-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-card-footer .contact-row-label {
  padding-top: 0;
}
.contact-card-footer ul.social {
  margin: 0;
}
.contact-card-footer ul.social li:first-child {
  padding-left: 0;
}


@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 133, 21, 0.6);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 133, 21, 0);
  }
}

/* ---------- Footer ---------- */
.footer-custom {
  text-align: center;
  padding-top: 70px;
  margin-top: 70px;
  border-top: 1px solid #1f1f1f;
  position: relative;
}
.footer-custom:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 160px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--accent);
}
.footer-custom .menu-part ul li a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.footer-custom .menu-part ul li a:hover {
  color: var(--accent-soft);
  text-decoration: none;
}
.footer-custom .menu-part ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.footer-custom .menu-part ul li a:hover:after {
  transform: scaleX(1);
}
.lower_footer {
  border-top: 1px solid #141414;
  margin-top: 10px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-brand {
  padding: 0 0 28px;
}
.footer-brand img {
  height: 70px;
  width: auto;
  margin: 0 auto;
  display: block;
  opacity: 0.92;
}
.footer-custom .social-part {
  padding-bottom: 10px;
}
.footer-custom .social-part ul.social li {
  padding: 0 14px;
}
.footer-custom .menu-part {
  padding: 24px 0;
}
.footer-custom .menu-part ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-custom .menu-part ul li {
  padding: 0 24px;
  font-size: 16px;
}
.lower_footer {
  text-align: center;
  padding: 20px 0 30px;
}
.lower_footer p {
  color: #d3d3d3;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .header-main {
    padding: 0 15px;
  }
  .header-flex {
    display: grid;
    grid-template-columns: 45px 1fr 45px;
    gap: 12px;
    min-height: 96px;
  }
  .header-logo {
    height: 90px;
    justify-content: center;
  }
  .header-logo img {
    height: 84px;
  }
  .navbar-toggle {
    display: block;
  }
  .menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #000;
    z-index: 999;
    padding: 20px 0;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.7);
  }
  .menu.open {
    display: block;
  }
  .menu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .menu ul li a {
    padding: 1.2em 1.5em;
    font-size: 16px;
    border-bottom: 1px solid #222;
  }
  .menu-close-btn {
    color: #fff;
    font-size: 26px;
    text-align: right;
    padding: 0 20px 10px;
    cursor: pointer;
  }
  .image-wrap-h {
    width: 50%;
  }
  .pod-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .podcast-wrap {
    flex-direction: column;
  }
  .podcast-main,
  .podcast-thumbs {
    width: 100%;
  }
  .contact-card {
    max-width: 100%;
  }
  .podcast-thumbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .thumbs-label {
    grid-column: 1 / -1;
  }
  .yt-item:nth-child(n + 3) {
    display: none;
  }
}
@media (min-width: 992px) {
  .menu-close-btn {
    display: none;
  }
  .mobile-balance {
    display: none;
  }
}
@media (max-width: 600px) {
  .image-wrap-h,
  .image-wrap-h:nth-child(n + 4) {
    width: 100%;
  }
  span.six-title {
    font-size: 18px;
    height: 56px;
    padding: 0 16px;
  }
  .section-heading p {
    font-size: 14px;
  }
  .testimonials-section {
    padding-top: 58px;
  }
  .pod-grid {
    grid-template-columns: 1fr;
  }
  .podcast-thumbs {
    grid-template-columns: 1fr;
  }
  .page {
    padding-top: 30px;
  }
  .yt-slider {
    padding: 0 40px;
  }
  .yt-item:nth-child(n + 2) {
    display: none;
  }
  .footer-custom .menu-part ul li {
    padding: 6px 12px;
  }
}

.menu-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:998}
.menu-overlay.active{display:block}
