:root {
  --primary: #C4121A;
  --black: #000000;
  --dark: #222222;
  --white: #ffffff;
  --light: #f5f5f5;
  --text: #333333;
  --muted: #666666;
  --border: #e7e7e7;
}

/* =========================
   BASE
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

img,
iframe,
video {
  max-width: 100%;
}

/* =========================
   UTILITIES
========================= */

.section-padding {
  padding: 75px 0;
}

.section-light {
  background: var(--light);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.text-red {
  color: var(--primary);
}

.small-note {
  font-size: 0.92rem;
  color: var(--muted);
}

/* =========================
   HEADER / NAVBAR / LOGO
   FINAL CONSISTENT VERSION
========================= */

.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding-top: 18px !important;
  padding-bottom: 18px !important;
  min-height: 145px;
  display: flex;
  align-items: center;

  position: sticky;
  top: 0;
  z-index: 9999;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.navbar .container,
.navbar .container-fluid {
  display: flex;
  align-items: center;
  min-height: 105px;
}

.navbar-brand {
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
}

.site-logo,
img.site-logo,
.logo img,
.brand-logo img,
.navbar-brand img {
  max-height: 105px !important;
  height: auto !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.navbar-collapse {
  align-items: center;
}

.navbar-nav {
  align-items: center !important;
  gap: 18px;
}

.navbar .nav-link {
  color: var(--black);
  font-weight: 800;
  font-size: 17px;
  line-height: 1;
  padding: 16px 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  transition: color 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary);
}

/* Header Start a Project button */
.navbar .btn-primary-custom,
.navbar a.btn-primary-custom {
  background: var(--primary) !important;
  color: var(--white) !important;
  border: 2px solid var(--primary) !important;
  min-height: 64px !important;
  padding: 0 34px !important;
  border-radius: 8px !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  margin-left: 12px !important;
  transition: all 0.25s ease !important;
}

.navbar .btn-primary-custom:hover,
.navbar a.btn-primary-custom:hover {
  background: var(--black) !important;
  border-color: var(--black) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Bootstrap toggler cleanup */
.navbar-toggler {
  border: 1px solid var(--border) !important;
  padding: 10px 13px !important;
  border-radius: 8px !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 4px rgba(196, 18, 26, 0.15) !important;
}

/* Tablet header */
@media (max-width: 1199px) {
  .navbar-nav {
    gap: 12px;
  }

  .navbar .nav-link {
    font-size: 15px;
  }

  .navbar .btn-primary-custom,
  .navbar a.btn-primary-custom {
    min-height: 58px !important;
    padding: 0 24px !important;
    font-size: 16px !important;
  }

  .site-logo,
  img.site-logo,
  .logo img,
  .brand-logo img,
  .navbar-brand img {
    max-height: 95px !important;
  }
}

/* Mobile header */
@media (max-width: 991px) {
  .navbar {
    min-height: 110px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
/* Mobile menu dropdown under sticky header */
@media (max-width: 991px) {
  .navbar-collapse {
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

  .navbar-collapse.show {
    display: block;
  }
}
  .navbar .container,
  .navbar .container-fluid {
    min-height: 82px !important;
  }
/* Prevent sticky header from covering anchor sections */
html {
  scroll-padding-top: 175px;
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 125px;
  }
}
section[id],
div[id] {
  scroll-margin-top: 175px;
}

@media (max-width: 991px) {
  section[id],
  div[id] {
    scroll-margin-top: 125px;
  }
}
  .site-logo,
  img.site-logo,
  .logo img,
  .brand-logo img,
  .navbar-brand img {
    max-height: 78px !important;
  }

  .navbar-collapse {
    background: #ffffff;
    border-top: 1px solid var(--border);
    margin-top: 12px;
    padding: 14px 0 6px;
  }

  .navbar-nav {
    align-items: stretch !important;
    gap: 0;
  }

  .navbar .nav-link {
    justify-content: flex-start;
    min-height: 46px;
    padding: 12px 0 !important;
    font-size: 16px;
    border-bottom: 1px solid #f1f1f1;
  }

  .navbar .btn-primary-custom,
  .navbar a.btn-primary-custom {
    margin-left: 0 !important;
    margin-top: 14px !important;
    min-height: 54px !important;
    width: 100% !important;
    padding: 0 22px !important;
    font-size: 16px !important;
  }
}

/* =========================
   BUTTONS
========================= */

.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
}

.btn-primary-custom:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
}

/* =========================
   HERO
========================= */

.hero {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(34, 34, 34, 0.92)),
    radial-gradient(circle at top right, rgba(196, 18, 26, 0.35), transparent 35%);
  color: var(--white);
  padding: 105px 0;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
}

.hero .brand-line {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #eeeeee;
}

.hero-card {
  background: var(--white);
  color: var(--black);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Homepage hero heading */
.hero-home h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0.5px;
}

.hero-points {
  margin-bottom: 25px;
}

.hero-actions {
  margin-bottom: 35px;
}

@media (min-width: 992px) {
  .hero-home,
  .hero {
    padding-top: 95px !important;
    padding-bottom: 110px !important;
  }
}

@media (max-width: 991px) {
  .hero-home,
  .hero {
    padding-top: 70px !important;
    padding-bottom: 80px !important;
  }
}

/* =========================
   BADGES
========================= */

.badge-red {
  background: var(--primary);
  color: var(--white);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-block;
}

.badge-dark {
  background: var(--black);
  color: var(--white);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-block;
}

/* =========================
   CARDS
========================= */

.card-custom {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  height: 100%;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card-custom h3,
.card-custom h4 {
  color: var(--black);
  font-weight: 800;
}

.card-custom p {
  color: var(--muted);
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(196, 18, 26, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

/* =========================
   PAGE HEADER
========================= */

.page-header {
  background: var(--black);
  color: var(--white);
  padding: 80px 0;
}

.page-header h1 {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.page-header p {
  color: #eeeeee;
  max-width: 850px;
}

/* =========================
   PRICING
========================= */

.price-card {
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  background: var(--white);
  position: relative;
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 18px 40px rgba(196, 18, 26, 0.12);
}

.price {
  color: #C4121A;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 14px 0;
}

.featured-card {
  border: 2px solid #C4121A;
  background: linear-gradient(180deg, #ffffff 0%, #fff5f5 100%);
}

.info-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px;
  border-left: 5px solid #C4121A;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.small-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  border: 1px solid rgba(196, 18, 26, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.small-card h4 {
  font-weight: 800;
  color: #111111;
}

/* =========================
   OUR WORK / PROJECT CARDS
========================= */

.project-grid-custom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.project-card {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card-body {
  padding: 22px;
  flex: 1;
}

.project-card h3 {
  font-weight: 900;
  color: var(--black);
}

.project-meta {
  font-size: 0.95rem;
  color: var(--muted);
}

.media-player {
  width: 100%;
  background: #000;
  overflow: hidden;
}

.media-video {
  height: 260px;
}

.media-audio {
  height: 180px;
}

.media-player iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.platform-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.platform-buttons a,
.platform-buttons button.platform-btn {
  flex: 1 1 115px;
  text-align: center;
  background: var(--black);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.platform-buttons a:hover,
.platform-buttons button.platform-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* =========================
   FEATURED WORK SLIDER
========================= */

.featured-work-slide {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 30px;
}

.carousel-indicators {
  position: relative;
  margin-top: 30px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

/* =========================
   PORTFOLIO FILTER BUTTONS
========================= */

.portfolio-filter-buttons,
.work-filter-buttons,
.filter-buttons,
.work-tabs,
.portfolio-tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 28px auto 42px !important;
  max-width: 1100px !important;
}

.portfolio-filter,
.work-filter,
.filter-btn,
.portfolio-filter-buttons button,
.work-filter-buttons button,
.filter-buttons button,
.work-tabs button,
.portfolio-tabs button {
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 1px solid rgba(196, 18, 26, 0.45) !important;
  background: #ffffff !important;
  color: #111111 !important;
  padding: 10px 16px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  font-family: inherit !important;
  cursor: pointer !important;
  box-shadow: none !important;
  outline: none !important;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease !important;
}

.portfolio-filter:hover,
.work-filter:hover,
.filter-btn:hover,
.portfolio-filter-buttons button:hover,
.work-filter-buttons button:hover,
.filter-buttons button:hover,
.work-tabs button:hover,
.portfolio-tabs button:hover {
  background: #C4121A !important;
  color: #ffffff !important;
  border-color: #C4121A !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(196, 18, 26, 0.25) !important;
}

.portfolio-filter.active,
.work-filter.active,
.filter-btn.active,
.portfolio-filter-buttons button.active,
.work-filter-buttons button.active,
.filter-buttons button.active,
.work-tabs button.active,
.portfolio-tabs button.active {
  background: #C4121A !important;
  color: #ffffff !important;
  border-color: #C4121A !important;
  box-shadow: 0 8px 20px rgba(196, 18, 26, 0.25) !important;
}

.portfolio-filter:focus,
.portfolio-filter:focus-visible,
.work-filter:focus,
.filter-btn:focus,
.portfolio-filter-buttons button:focus,
.portfolio-filter-buttons button:focus-visible,
.work-filter-buttons button:focus,
.filter-buttons button:focus,
.work-tabs button:focus,
.portfolio-tabs button:focus {
  outline: none !important;
  background: #C4121A !important;
  color: #ffffff !important;
  border-color: #C4121A !important;
  box-shadow: 0 0 0 4px rgba(196, 18, 26, 0.18) !important;
}

/* If filter buttons appear inside dark section */
.section-dark .portfolio-filter,
.section-dark .work-filter,
.section-dark .filter-btn,
.section-dark .portfolio-filter-buttons button,
.section-dark .work-filter-buttons button,
.section-dark .filter-buttons button,
.section-dark .work-tabs button,
.section-dark .portfolio-tabs button {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}

.section-dark .portfolio-filter:hover,
.section-dark .portfolio-filter.active,
.section-dark .portfolio-filter:focus,
.section-dark .work-filter:hover,
.section-dark .work-filter.active,
.section-dark .work-filter:focus,
.section-dark .filter-btn:hover,
.section-dark .filter-btn.active,
.section-dark .filter-btn:focus,
.section-dark .portfolio-filter-buttons button:hover,
.section-dark .portfolio-filter-buttons button.active,
.section-dark .portfolio-filter-buttons button:focus {
  background: #C4121A !important;
  color: #ffffff !important;
  border-color: #C4121A !important;
}

/* =========================
   FORMS
========================= */

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.form-label {
  font-weight: 700;
  color: var(--black);
}

.form-control,
.form-select {
  min-height: 48px;
  border-radius: 10px;
}

textarea.form-control {
  min-height: 130px;
}

/* =========================
   ALERT BOX
========================= */

.alert-soft {
  background: #fff5f5;
  border: 1px solid rgba(196, 18, 26, 0.18);
  border-left: 4px solid var(--primary);
  border-radius: 18px;
  padding: 24px;
}

/* =========================
   ARTIST PROFILE CARDS
========================= */

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.artist-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

.artist-photo {
  height: 230px;
  background:
    radial-gradient(circle at top right, rgba(196, 18, 26, 0.45), transparent 35%),
    linear-gradient(135deg, #050505, #252525);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.artist-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.artist-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.artist-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.artist-badge.red {
  background: #c4121a;
  color: #ffffff;
}

.artist-badge.dark {
  background: #000000;
  color: #ffffff;
}

.artist-card h3 {
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 4px;
  color: #111111;
}

.artist-role {
  color: #c4121a;
  font-weight: 800;
  margin-bottom: 16px;
}

.artist-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.artist-info-list li {
  color: #555555;
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.45;
}

.artist-info-list strong {
  color: #111111;
}

.artist-bio {
  color: #555555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.artist-links {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.artist-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 12px;
  background: #000000;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  padding: 10px 12px;
  transition: 0.2s ease;
}

.artist-links a:hover {
  background: #c4121a;
  color: #ffffff;
  transform: translateY(-2px);
}

/* =========================
   POLICIES PAGE
========================= */

.policy-block {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.policy-block h2 {
  font-size: 1.45rem;
  font-weight: 900;
  color: #111111;
  margin-bottom: 14px;
}

.policy-block p {
  color: #555555;
  line-height: 1.75;
  margin-bottom: 14px;
}

.policy-block ul {
  margin-bottom: 14px;
}

.policy-block li {
  color: #555555;
  line-height: 1.7;
  margin-bottom: 8px;
}

.policy-block strong {
  color: #111111;
}

/* =========================
   OLD FOOTER FALLBACK
========================= */

.footer {
  background: var(--black);
  color: var(--white);
  padding: 55px 0 20px;
}

.footer p {
  color: #dddddd;
}

.footer a {
  color: var(--white);
}

.footer a:hover {
  color: var(--primary);
}

.footer-logo {
  height: 95px;
  width: auto;
  background: var(--white);
  padding: 6px;
  border-radius: 8px;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* =========================
   OFFLINE PAGE
========================= */

.offline-wrapper {
  min-height: 100vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 30px;
  background: var(--black);
  color: var(--white);
}

.offline-wrapper h1 {
  color: var(--primary);
  font-weight: 900;
}

/* =========================
   SERVICE ANCHOR CARDS
========================= */

.service-anchor-section {
  background: #ffffff;
  padding: 70px 0 55px;
}

.service-anchor-heading {
  text-align: center;
  margin-bottom: 34px;
}

.service-anchor-heading h2 {
  margin-top: 16px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #222222;
}

.service-anchor-heading p {
  max-width: 820px;
  margin: 12px auto 0;
  color: #444444;
  line-height: 1.7;
  font-size: 17px;
}

.service-anchor-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-anchor-card,
a.service-anchor-card,
.service-anchor-grid a {
  display: block !important;
  height: 100%;
  background: #ffffff !important;
  border: 1px solid rgba(196, 18, 26, 0.22) !important;
  border-radius: 22px !important;
  padding: 24px !important;
  text-decoration: none !important;
  color: #222222 !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07) !important;
  transition: all 0.25s ease !important;
}

.service-anchor-card span,
a.service-anchor-card span,
.service-anchor-grid a span {
  display: inline-flex !important;
  background: rgba(196, 18, 26, 0.1) !important;
  color: #C4121A !important;
  border-radius: 999px !important;
  padding: 6px 12px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  margin-bottom: 14px !important;
}

.service-anchor-card h3,
a.service-anchor-card h3,
.service-anchor-grid a h3 {
  font-size: 21px !important;
  font-weight: 900 !important;
  margin-bottom: 10px !important;
  color: #222222 !important;
}

.service-anchor-card p,
a.service-anchor-card p,
.service-anchor-grid a p {
  margin-bottom: 0 !important;
  color: #555555 !important;
  line-height: 1.6 !important;
  font-size: 15px !important;
}

.service-anchor-card:hover,
.service-anchor-card:focus,
a.service-anchor-card:hover,
a.service-anchor-card:focus,
.service-anchor-grid a:hover,
.service-anchor-grid a:focus {
  background: #C4121A !important;
  border-color: #C4121A !important;
  color: #ffffff !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 18px 45px rgba(196, 18, 26, 0.25) !important;
}

.service-anchor-card:hover span,
.service-anchor-card:focus span,
a.service-anchor-card:hover span,
a.service-anchor-card:focus span,
.service-anchor-grid a:hover span,
.service-anchor-grid a:focus span {
  background: #ffffff !important;
  color: #C4121A !important;
}

.service-anchor-card:hover h3,
.service-anchor-card:focus h3,
.service-anchor-card:hover p,
.service-anchor-card:focus p,
a.service-anchor-card:hover h3,
a.service-anchor-card:focus h3,
a.service-anchor-card:hover p,
a.service-anchor-card:focus p,
.service-anchor-grid a:hover h3,
.service-anchor-grid a:focus h3,
.service-anchor-grid a:hover p,
.service-anchor-grid a:focus p {
  color: #ffffff !important;
}

/* Better anchor jump position under header */
section[id],
div[id] {
  scroll-margin-top: 175px;
}

@media (max-width: 991px) {
  .service-anchor-section {
    padding: 55px 0 40px;
  }

  .service-anchor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-anchor-heading h2 {
    font-size: 28px;
  }

section[id],
div[id] {
  scroll-margin-top: 125px;
}
}

@media (max-width: 575px) {
  .service-anchor-grid {
    grid-template-columns: 1fr;
  }

  .service-anchor-card,
  a.service-anchor-card,
  .service-anchor-grid a {
    padding: 20px !important;
  }

  .service-anchor-heading h2 {
    font-size: 25px;
  }

  .service-anchor-heading p {
    font-size: 15px;
  }
}

/* =========================
   BACK TO TOP ANCHOR
   Hide old text link if present
========================= */

.back-to-top-wrap,
.back-to-top-btn,
.back-to-top-dark {
  display: none !important;
}

/* =========================
   CLEAN ABCS FOOTER
========================= */

.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 70px 0 60px;
}

.site-footer .container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.footer-brand {
  max-width: 430px;
}

.site-footer .footer-logo {
  width: 150px;
  max-width: 100%;
  height: auto;
  background: #ffffff;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 18px;
}

.footer-brand h3,
.footer-col h4 {
  color: #ffffff;
  margin: 0 0 14px;
  font-weight: 800;
}

.footer-brand h3 {
  font-size: 26px;
}

.footer-col h4 {
  font-size: 18px;
}

.footer-brand p,
.footer-col p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 14px;
  line-height: 1.7;
  font-size: 15px;
}

.footer-description {
  margin-top: 20px !important;
}

.footer-col a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 13px;
  font-size: 15px;
  line-height: 1.4;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-col a:hover,
.footer-col a:focus {
  color: #C4121A;
  transform: translateX(4px);
}

.footer-copy-row {
  margin-top: 26px !important;
  width: 100% !important;
}

.footer-copy {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
}

.footer-top-link {
  position: fixed !important;
  right: 28px !important;
  bottom: 28px !important;
  z-index: 9999 !important;

  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;

  background: #C4121A !important;
  border: 3px solid #C4121A !important;
  color: #ffffff !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  text-decoration: none !important;
  font-size: 36px !important;
  font-weight: 900 !important;
  line-height: 1 !important;

  box-shadow: 0 14px 34px rgba(196, 18, 26, 0.35) !important;
  transition: all 0.25s ease !important;
}

.footer-top-link:hover,
.footer-top-link:focus {
  background: #ffffff !important;
  color: #C4121A !important;
  border-color: #C4121A !important;
  transform: translateY(-4px) !important;
}

@media (max-width: 768px) {
  .footer-top-link {
    right: 18px !important;
    bottom: 18px !important;
    width: 46px !important;
    height: 46px !important;
    font-size: 32px !important;
  }
}

/* =========================
   RESPONSIVE GRIDS
========================= */

@media (max-width: 991px) {
  .project-grid-custom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .footer-brand {
    max-width: none;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 55px 0;
  }

  .hero h1,
  .hero-home h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .project-grid-custom {
    grid-template-columns: 1fr;
  }

  .artist-grid {
    grid-template-columns: 1fr;
  }

  .artist-links {
    grid-template-columns: 1fr;
  }

  .media-video {
    height: 220px;
  }

  .media-audio {
    height: 160px;
  }

  .site-footer {
    padding: 52px 0 44px;
  }

  .site-footer .container {
    width: min(100% - 28px, 1120px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer .footer-logo {
    width: 135px;
  }

  .footer-copy-row {
    align-items: center;
  }

  .footer-top-link {
    width: 42px !important;
    height: 42px !important;
    font-size: 30px !important;
  }
  .footer-grid-5 {
  grid-template-columns: 1.5fr 0.75fr 0.85fr 0.9fr 1.1fr;
  gap: 42px;
}

@media (max-width: 991px) {
  .footer-grid-5 {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }
}

@media (max-width: 575px) {
  .footer-grid-5 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
}