/* =========================================
   ROOT
========================================= */

:root {
  --black: #050505;
  --black-soft: #0d0d0d;
  --card: #111111;
  --card-hover: #171717;
  --yellow: #ffd400;
  --yellow-dark: #dcb600;
  --white: #ffffff;
  --gray: #a5a5a5;
  --border: rgba(255, 212, 0, 0.18);
}

/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* =========================================
   HEADER
========================================= */

.site-header {
  width: 100%;
  background: rgba(5, 5, 5, 0.97);
  border-bottom: 1px solid rgba(255, 212, 0, 0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  width: min(1400px, calc(100% - 80px));
  margin: auto;
  min-height: 110px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 180px;
  display: flex;
  align-items: center;
}

.logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-fallback {
  display: none;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  line-height: 0.9;
  letter-spacing: 1px;
  color: var(--yellow);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.desktop-nav > a,
.dropdown-toggle {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  transition: 0.25s ease;
}

.desktop-nav > a:hover,
.desktop-nav > a.active,
.dropdown-toggle:hover {
  color: var(--yellow);
}

/* =========================================
   DROPDOWN
========================================= */

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
}

.dropdown-toggle span {
  font-size: 16px;
  color: var(--yellow);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  transform: translateX(-50%);

  width: 320px;

  background: #111111;
  border: 1px solid var(--border);

  padding: 10px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 20px 18px;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;

  color: white;

  transition: 0.25s ease;
}

.dropdown-menu a:hover {
  background: var(--yellow);
  color: #000;
}

/* =========================================
   HEADER BUTTON
========================================= */

.header-button {
  background: var(--yellow) !important;
  color: #000 !important;

  padding: 22px 34px;

  font-weight: 700 !important;
}

.header-button:hover {
  background: white !important;
}

/* =========================================
   MOBILE BUTTON
========================================= */

.mobile-menu-btn {
  display: none;

  width: 46px;
  height: 46px;

  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;

  cursor: pointer;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: white;
}

/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu {
  display: none;
}

/* =========================================
   HERO
========================================= */

.media-hero {
  min-height: 500px !important;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  position: relative;

  background: linear-gradient(135deg, #080808 0%, #151515 55%, #090909 100%);

  border-bottom: 1px solid var(--border);
}

.media-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 212, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 212, 0, 0.045) 1px, transparent 1px);

  background-size: 70px 70px;

  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;

  width: min(900px, calc(100% - 40px));
}

.eyebrow {
  display: block;

  margin-bottom: 20px;

  color: var(--yellow);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 4px;
}

.media-hero h1 {
  font-family: "Oswald", sans-serif;

  font-size: clamp(70px, 9vw, 140px);

  line-height: 0.9;

  font-weight: 700;

  letter-spacing: 2px;
}

.media-hero p {
  max-width: 650px;

  margin: 28px auto 0;

  color: #b7b7b7;

  font-size: 18px;
  line-height: 1.7;
}

/* =========================================
   INTRO
========================================= */

.media-intro {
  padding: 110px 0 60px;
  background: var(--black);
}

.section-container {
  width: min(900px, calc(100% - 40px));
  margin: auto;
  text-align: center;
}

.media-intro h2 {
  font-family: "Oswald", sans-serif;

  font-size: clamp(42px, 5vw, 72px);

  line-height: 1;

  text-transform: uppercase;

  margin-bottom: 25px;
}

.media-intro p {
  max-width: 720px;
  margin: auto;

  color: var(--gray);

  font-size: 17px;
  line-height: 1.8;
}

/* =========================================
   MEDIA SECTION
========================================= */

.media-section {
  padding: 40px 0 120px;
}

.media-container {
  width: min(1320px, calc(100% - 70px));
  margin: auto;
}

/* =========================================
   MEDIA GRID
========================================= */

.media-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 30px;
}

/* =========================================
   CARD
========================================= */

.media-card {
  background: var(--card);

  border: 1px solid rgba(255, 255, 255, 0.08);

  overflow: hidden;

  display: flex;
  flex-direction: column;

  min-height: 590px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.media-card:hover {
  transform: translateY(-8px);

  border-color: rgba(255, 212, 0, 0.45);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

/* =========================================
   IMAGE
========================================= */

.media-image {
  width: 100%;
  height: 250px;

  overflow: hidden;

  background: #1b1b1b;
}

.image-placeholder {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  background: linear-gradient(135deg, #111 0%, #1d1d1d 50%, #090909 100%);
}

.image-placeholder::after {
  content: "";

  position: absolute;
  width: 100px;
  height: 100px;

  border: 1px solid rgba(255, 212, 0, 0.25);

  transform: rotate(45deg);
}

.image-placeholder span {
  position: relative;
  z-index: 2;

  color: var(--yellow);

  font-family: "Oswald", sans-serif;

  font-size: 18px;

  letter-spacing: 2px;

  text-align: center;

  max-width: 70%;
}

/* =========================================
   CARD CONTENT
========================================= */

.media-content {
  padding: 32px 30px 28px;

  flex: 1;

  display: flex;
  flex-direction: column;
}

.publication {
  color: var(--yellow);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 18px;
}

.media-content h3 {
  font-family: "Oswald", sans-serif;

  font-size: 27px;

  line-height: 1.15;

  font-weight: 600;

  margin-bottom: 18px;
}

.media-content p {
  color: #a9a9a9;

  font-size: 15px;

  line-height: 1.7;

  margin-bottom: 30px;
}

.media-meta {
  margin-top: auto;

  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;
}

.media-meta span {
  color: #777;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 1px;
}

.media-meta a {
  color: var(--yellow);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1.5px;

  transition: 0.25s ease;
}

.media-meta a:hover {
  color: white;
}

/* =========================================
   CTA
========================================= */

.media-cta {
  padding: 110px 20px;

  background: linear-gradient(135deg, #171717, #050505);

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  max-width: 850px;
  margin: auto;

  text-align: center;
}

.cta-inner h2 {
  font-family: "Oswald", sans-serif;

  font-size: clamp(50px, 7vw, 95px);

  line-height: 0.95;

  margin-bottom: 25px;
}

.cta-inner p {
  color: #a3a3a3;

  max-width: 650px;

  margin: 0 auto 35px;

  font-size: 17px;

  line-height: 1.7;
}

.cta-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 65px;

  padding: 0 42px;

  background: var(--yellow);

  color: #000;

  font-weight: 800;

  letter-spacing: 1px;

  transition: 0.25s ease;
}

.cta-button:hover {
  background: white;

  transform: translateY(-3px);
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  background: #000;

  padding: 80px 0 25px;
}

.footer-inner {
  width: min(1320px, calc(100% - 70px));

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 2fr;

  gap: 100px;
}

.footer-logo {
  display: inline-block;

  color: var(--yellow);

  font-family: "Oswald", sans-serif;

  font-size: 28px;

  line-height: 0.9;

  letter-spacing: 2px;

  margin-bottom: 25px;
}

.footer-brand p {
  max-width: 330px;

  color: #888;

  line-height: 1.7;
}

.footer-links {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 40px;
}

.footer-links h4 {
  color: var(--yellow);

  font-size: 12px;

  letter-spacing: 2px;

  margin-bottom: 22px;
}

.footer-links a {
  display: block;

  color: #999;

  font-size: 14px;

  margin-bottom: 13px;

  transition: 0.25s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links p {
  color: #999;

  font-size: 14px;

  line-height: 1.7;
}

.footer-bottom {
  width: min(1320px, calc(100% - 70px));

  margin: 70px auto 0;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  display: flex;

  justify-content: space-between;

  gap: 20px;

  color: #666;

  font-size: 12px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav > a,
  .dropdown-toggle {
    font-size: 12px;
  }

  .header-button {
    padding: 18px 22px;
  }

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    gap: 50px;
  }
}

@media (max-width: 850px) {
  .header-inner {
    width: calc(100% - 40px);
    min-height: 85px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu {
    position: fixed;

    inset: 0;

    z-index: 2000;

    background: #050505;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 28px;

    padding: 80px 30px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(-20px);

    transition: 0.3s ease;
  }

  .mobile-menu.active {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
  }

  .mobile-menu > a,
  .mobile-services > button {
    color: white;

    background: transparent;

    border: none;

    font-size: 25px;

    font-weight: 600;

    letter-spacing: 2px;

    cursor: pointer;
  }

  .mobile-close {
    position: absolute;

    top: 25px;
    right: 30px;

    background: none;

    border: none;

    color: white;

    font-size: 55px;

    font-weight: 200;

    cursor: pointer;
  }

  .mobile-services {
    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
  }

  .mobile-services > button {
    display: flex;

    align-items: center;

    gap: 10px;
  }

  .mobile-services-list {
    display: none;

    width: min(500px, 100%);

    margin-top: 20px;

    border: 1px solid var(--border);

    background: #111;
  }

  .mobile-services-list.active {
    display: block;
  }

  .mobile-services-list a {
    display: block;

    padding: 17px 15px;

    color: white;

    text-align: center;

    font-size: 13px;

    letter-spacing: 1px;

    border-bottom: 1px solid rgba(255, 212, 0, 0.1);
  }

  .mobile-services-list a:hover {
    background: var(--yellow);

    color: black;
  }

  .mobile-book {
    background: var(--yellow) !important;

    color: black !important;

    padding: 20px 35px;

    margin-top: 10px;
  }

  .media-hero {
    min-height: 330px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-container {
    width: min(650px, calc(100% - 40px));
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .logo {
    width: 140px;
  }

  .media-hero h1 {
    font-size: 70px;
  }

  .media-hero p {
    font-size: 15px;
  }

  .media-intro {
    padding: 80px 0 40px;
  }

  .media-intro h2 {
    font-size: 45px;
  }

  .media-content {
    padding: 25px 22px;
  }

  .media-content h3 {
    font-size: 24px;
  }

  .media-image {
    height: 210px;
  }

  .media-meta {
    flex-direction: column;

    align-items: flex-start;
  }

  .media-cta {
    padding: 80px 20px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

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

/* =========================================
   MEDIA PAGE FOOTER
========================================= */

.site-footer {
  background: #050505;
  color: #fff;
  border-top: 1px solid rgba(255, 215, 0, 0.18);
  padding: 80px 0 30px;
}

.site-footer .container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 60px;
  align-items: start;
}

.footer-brand {
  min-width: 0;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 35px;
}

.footer-logo img {
  width: 230px;
  height: auto;
  display: block;
}

.footer-brand p {
  color: #888;
  font-size: 15px;
  line-height: 1.8;
  max-width: 360px;
  margin: 0;
}


/* SOCIAL ICONS */

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 215, 0, 0.35);
  color: #fff;
  text-decoration: none;

  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #ffd000;
  color: #050505;
  border-color: #ffd000;
  transform: translateY(-3px);
}


/* FOOTER HEADINGS */

.site-footer .footer-links h4 {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  margin: 0 0 25px;
}


/* FOOTER LINKS */

.site-footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-links li {
  margin-bottom: 16px;
  color: #888;
  line-height: 1.6;
}

.site-footer .footer-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer .footer-links a:hover {
  color: #ffd000;
}


/* CONTACT */

.footer-contact-item {
  margin-top: 14px;
}

.footer-contact-item a {
  word-break: break-word;
}


/* DISCLAIMER */

.site-footer .medical-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 65px;
  padding-top: 28px;
  text-align: center;
}

.site-footer .medical-disclaimer p {
  color: #666;
  font-size: 13px;
  line-height: 1.7;
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer .medical-disclaimer strong {
  color: #777;
}

.site-footer .copyright {
  margin-top: 22px !important;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

  .site-footer {
    padding: 60px 0 25px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 35px;
  }

}


@media (max-width: 600px) {

  .site-footer .container {
    width: 88%;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo img {
    width: 200px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .site-footer .footer-links h4 {
    font-size: 20px;
  }

  .site-footer .medical-disclaimer {
    margin-top: 45px;
  }

}


/* =========================================
   FOOTER FIX
========================================= */

.site-footer {
  width: 100%;
  background: #050505;
  color: #fff;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.18);
  box-sizing: border-box;
}

.site-footer .container {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
}


/* FOOTER GRID */

.site-footer .footer-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr 1fr 1.15fr !important;
  gap: 70px !important;
  align-items: start;
}


/* IMPORTANT:
   Keep heading ABOVE the links
*/

.site-footer .footer-links {
  display: block !important;
  width: 100%;
}

.site-footer .footer-links h4 {
  display: block !important;
  width: 100%;
  margin: 0 0 25px !important;

  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
}

.site-footer .footer-links ul {
  display: block !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

.site-footer .footer-links li {
  display: block !important;
  width: 100%;
  margin-bottom: 16px;
}


/* BRAND */

.site-footer .footer-brand {
  display: block !important;
}

.site-footer .footer-logo {
  display: inline-block;
  margin-bottom: 35px;
}

.site-footer .footer-logo img {
  width: 230px;
  max-width: 100%;
  height: auto;
  display: block;
}

.site-footer .footer-brand p {
  max-width: 360px;
  margin: 0;
  color: #888;
  font-size: 15px;
  line-height: 1.8;
}


/* LINKS */

.site-footer .footer-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer .footer-links a:hover {
  color: #ffd000;
}


/* CONTACT */

.site-footer .footer-links li {
  color: #888;
  line-height: 1.6;
}

.site-footer .footer-contact-item {
  margin-top: 14px;
}

.site-footer .footer-contact-item a {
  word-break: normal;
}


/* SOCIAL */

.site-footer .footer-socials {
  display: flex !important;
  gap: 12px;
  margin-top: 28px;
}

.site-footer .footer-socials a {
  width: 42px;
  height: 42px;

  display: flex !important;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 215, 0, 0.35);
  color: #fff;
  text-decoration: none;
}

.site-footer .footer-socials a:hover {
  background: #ffd000;
  color: #050505;
  border-color: #ffd000;
}


/* DISCLAIMER */

.site-footer .medical-disclaimer {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 65px;
  padding-top: 28px;
  text-align: center;
}

.site-footer .medical-disclaimer p {
  color: #666;
  font-size: 13px;
  line-height: 1.7;
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer .copyright {
  margin-top: 22px !important;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 50px !important;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .site-footer {
    padding: 60px 0 25px;
  }

  .site-footer .container {
    width: 88%;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  .site-footer .footer-logo img {
    width: 200px;
  }

  .site-footer .footer-brand p {
    max-width: 100%;
  }

  .site-footer .footer-links h4 {
    font-size: 20px;
    margin-bottom: 20px !important;
  }

  .site-footer .medical-disclaimer {
    margin-top: 45px;
  }

}
