/* ════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:    #0c0c0c;
  --bg2:   #111111;
  --white: #f0ece4;
  --muted: #6b6b6b;
  --line:  rgba(255,255,255,0.07);
    --dark-bg: #121212;
    --black: #000000;
    --alternate-black: #0b0b0b;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  /* font-family: 'Oswald', sans-serif; */

}

@font-face {
  font-family: 'TattooFont';
  src: url('/assests/fonts/Copperplate.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


/* ════════════════════════════════════════
   CUSTOM CURSOR
════════════════════════════════════════ */
.cursor-dot {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
.cursor-ring {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid white;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.3s, height 0.3s, opacity 0.3s;
}

/* ════════════════════════════════════════
   SECTION 01 — HERO
════════════════════════════════════════ */



@keyframes linePulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: 0.3; transform: scaleY(0.5); }
}


/* ════════════════════════════════════════
   MARQUEE
════════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  background: var(--white);
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: flex; white-space: nowrap;
  gap: 0;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 0 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #000;
}
.marquee-star {
  width: 12px; height: 12px;
  background: #000; clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}




html { scroll-behavior: smooth; }

body {
  background: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  margin: 0;
  overflow-x: hidden;

}


/* ================= HEADER ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 0;
  background: transparent;
  transition: background 0.4s ease;
}

.navbar.scrolled {
  background: #000;
}

.navbar  .container-lg {
  flex-direction: column;
  display: flex;
  align-items: center;
}

/* Logo */
.nav-logo img {
  height: 24px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;

}

.navbar.scrolled .nav-logo img {
  opacity: 1;
  transform: translateY(0);
  height: 76px;

}

/* Navbar menu */
.navbar-nav {
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  display: flex;
}

.nav-link {
  color: #fff;
  text-transform: uppercase;
   letter-spacing: 2px;
  font-size: 14px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}
.nav-link:hover, .social-links a i:hover{
  color: var(--white);
  transform: scale(1.15);
}
/* Hamburger button styling */
.navbar-toggler {
  border: none;
  font-size: 1.5rem;
  color: #fff;
}
h1{
    font-family: 'TattooFont', sans-serif;
}
h2{
    /* font-family: 'TattooFont-sub', sans-serif; */
   
}
.text-highlight{
  color: var(--white);
}

/* ================= HERO ================= */
#home{
  padding-top: 100px;
}
.hero {
  /* max-height: 100vh; */
  background: url("../image/banner-2.jpg") center/cover no-repeat;
 text-align: center;
  position: relative;
}
.hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.66);
    filter: grayscale(100%);
    z-index: 0;
    backdrop-filter: blur(4px);
}
.hero h1{
    font-size: 70px;
}
.hero p{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px!important;
}
.hero-content{
  z-index: 1;
  position: relative;
  padding-bottom: 100px;
}
/*.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1;
}*/

/* Hero logo */
.hero-logo {
  width: 220px;
  z-index: 2;
  margin: 0 auto;
  
}

.hero-logo img{
  width: 100%;
  transition: all 0.8s ease;
}
/* Logo morph on scroll */
.hero.scrolled .hero-logo img{
  transform: translateY(-200px) scale(0.32);
  opacity: 0;
}

/* ================= SECTIONS ================= */
section {
  /* padding: 0px 15px; */
}


.bg-alt{
  background-color: #161616;
}
/* ════════════════════════════════════════
   SECTION 02 — ABOUT
════════════════════════════════════════ */
.s-about.artist {
  border-bottom: 1px solid var(--line);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.s-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  border-bottom: 1px solid var(--line);
}
.about-img-col {
  position: relative; overflow: hidden;
  border-right: 1px solid var(--line);
}
.about-img-col .prl-wrap {
  position: absolute;
  inset: -20% 0;
  width: 100%; height: 140%;
  will-change: transform;
}
/* .s-about .about-img-col .prl-wrap{
  height: 100%;
} */
.about-img-col img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-content-wrapper {
  position: relative;
  z-index: 2;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
  gap: 3rem;
}
.about-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
}
.about-text-block h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  color: #fff;
  letter-spacing: 0.02em;
}
.about-gold-line {
  width: 60px;
  height: 3px;
  background: var(--white);
}
.about-info-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-desc-block p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 500px;
}
.about-stats {
  display: flex;
  gap: 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat-big {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-small {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-cta {
  padding-top: 1rem;
}
.about-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--white);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--white);
  transition: all 0.4s ease;
}
.about-ig-btn:hover {
  background: transparent;
  color: var(--white);
}
.btn-icon {
  font-size: 1rem;
  transition: transform 0.3s;
}
.about-ig-btn:hover .btn-icon {
  transform: translate(3px, -3px);
}
.s-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(212,185,134,0.05) 0%, transparent 100%);
  pointer-events: none;
}
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  border-right: 1px solid var(--line);
}
.about-img-frame {
  position: relative;
  width: 85%;
  max-width: 500px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 2px solid var(--white);
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.1) brightness(0.9);
  transition: transform 0.6s ease;
}
.about-img-frame:hover img {
  transform: scale(1.05);
}
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.about-experience-badge {
  position: absolute;
  bottom: 4rem;
  right: 3rem;
  background: var(--white);
  padding: 1.5rem 2rem;
  text-align: center;
  z-index: 3;
  box-shadow: 8px 8px 30px rgba(0,0,0,0.4);
}
.badge-number {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
}
.badge-text {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  margin-top: 4px;
  font-weight: 600;
}
.about-decor-dots {
  position: absolute;
  top: 3rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(var(--white) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.3;
  pointer-events: none;
}
.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
  gap: 2rem;
}
.about-tag {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
}
.about-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  color: #fff;
  letter-spacing: 0.02em;
}
.about-divider {
  width: 60px;
  height: 3px;
  background: var(--white);
}
.about-desc {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 480px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.feature-icon {
  color: var(--white);
  font-size: 0.6rem;
}
.about-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--white);
  padding-bottom: 2px;
  width: fit-content;
  transition: opacity 0.3s;
}
.about-ig-link:hover {
  opacity: 0.7;
}
.ig-arrow {
  font-size: 1rem;
  transition: transform 0.3s;
}
.about-ig-link:hover .ig-arrow {
  transform: translate(3px, -3px);
}
.artist-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  gap: 4rem;
  padding: 0 4rem;
}
.artist-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 4rem 0;
}
.artist-img-wrapper {
  position: relative;
  width: 85%;
  max-width: 450px;
  z-index: 2;
}
.artist-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 2px solid var(--white);
  transform: rotate(-3deg);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.artist-img-frame:hover {
  transform: rotate(0deg) scale(1.02);
}
.artist-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.1) brightness(0.95);
}
.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.artist-exp-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--white);
  padding: 1.2rem 1.5rem;
  text-align: center;
  z-index: 3;
  box-shadow: 5px 5px 20px rgba(0,0,0,0.3);
}
.exp-number {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
}
.exp-text {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  margin-top: 4px;
  font-weight: 600;
}
.artist-decor-circle {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(212,185,134,0.2);
  border-radius: 50%;
  pointer-events: none;
}
.artist-decor-line {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 150px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--white));
  pointer-events: none;
}
.artist-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 0;
}
.artist-tag {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
}
.artist-name {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9;
  color: #fff;
  letter-spacing: 0.02em;
}
.artist-aka {
  display: block;
  font-size: 0.4em;
  letter-spacing: 0.3em;
  color: var(--white);
  margin-top: 0.5rem;
  font-weight: 400;
}
.artist-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.artist-role {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}
.artist-handle {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--white);
}
.artist-desc {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 500px;
}
.artist-stats {
  display: flex;
  gap: 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.artist-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.btn-artist-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--white);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  border: 2px solid var(--white);
}
.btn-artist-instagram:hover {
  background: transparent;
  color: var(--white);
}
.btn-arrow {
  font-size: 1rem;
  transition: transform 0.3s;
}
.btn-artist-instagram:hover .btn-arrow {
  transform: translate(3px, -3px);
}
.btn-artist-book {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.4s ease;
}
.btn-artist-book:hover {
  background-color: var(--white);
  color: var(--black);
  
}
.artist-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 90vh;
}
.artist-image-wrapper {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-col .prl-wrap {
  position: absolute;
  inset: -20% 0;
  width: 100%; height: 140%;
  will-change: transform;
}
.about-img-col img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.artist-info-panel {
  padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
  gap: 2rem;
  background: var(--bg);
  position: relative;
}
.artist-info-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 1px;
  height: 80%;
  background: linear-gradient(to bottom, transparent, var(--white), transparent);
}
.section-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--white);
}
.about-text-col h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700; text-transform: uppercase;
  line-height: 1; letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.about-text-col p {
  font-size: 0.95rem; line-height: 1.9;
  color: var(--muted); max-width: 480px;
}
.artist-label {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.5rem; display: block;
}
.artist-bio {
  margin-top: 1rem;
}
.instagram-link {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  border-bottom: 1px solid var(--white); padding-bottom: 2px;
  width: fit-content; display: inline-flex; align-items: center; gap: 0.5rem;
  transition: opacity 0.3s;
}
.instagram-link:hover { opacity: 0.7; }
.instagram-icon { font-size: 1rem; }
.artist-frame {
  perspective: 1000px;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.artist-image-wrapper {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.artist-frame .prl-wrap {
  position: relative !important;
  inset: auto !important;
  width: 90% !important;
  max-width: 450px;
  height: auto !important;
  aspect-ratio: 3/4;
  will-change: transform;
}
.artist-frame .prl-wrap {
  position: relative;
  transform: rotateY(-8deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  border: 3px solid var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 20px 20px 40px rgba(0,0,0,0.5),
              -5px -5px 20px rgba(212,185,134,0.1);
}
.artist-frame .prl-wrap:hover {
  transform: rotateY(-3deg) rotateX(1deg);
}
.artist-frame .prl-wrap::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212,185,134,0.3);
  border-radius: 6px;
  pointer-events: none;
  z-index: 1;
}
.artist-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.instagram-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  background: var(--white);
  text-decoration: none;
  border: none;
  border-radius: 3px;
  transition: all 0.3s ease;
  font-weight: 600;
}
.instagram-btn:hover {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 2px var(--white);
}

/* ════════════════════════════════════════
   SECTION 03 — BENEFITS / FACTS
 ════════════════════════════════════════ */
.s-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.benefits-left {
  padding: 5rem;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center; gap: 2rem;
}
.benefits-left h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700; text-transform: uppercase; line-height: 1;
}
.benefits-right {
  padding: 5rem;
}
.benefit-list { list-style: none; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.benefit-item:first-child { border-top: 1px solid var(--line); }
.benefit-num {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem; color: var(--white); letter-spacing: 0.1em;
  margin-top: 0.2rem; flex-shrink: 0; width: 30px;
}
.benefit-text { font-size: 0.88rem; line-height: 1.7; color: var(--muted); }

/* ════════════════════════════════════════
   SECTION 04 — PORTFOLIO
════════════════════════════════════════ */
.s-portfolio {
  padding: 6rem 4rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.s-portfolio::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,185,134,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.portfolio-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
  display: none; /* Hidden - using services-header instead */
}
.services-header {
  margin-bottom: 4rem;
  position: relative;
}
.portfolio-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
}
.portfolio-categories {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.portfolio-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--white);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--white);
  transition: all 0.4s ease;
  white-space: nowrap;
}
.portfolio-cta-btn:hover,.submit-btn:hover
 {
  background: transparent;
  color: var(--white);
}
.services-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}
.services-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  color: #fff;
  letter-spacing: 0.02em;
}
.portfolio-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700; text-transform: uppercase; line-height: 1;
  position: relative;
  display: inline-block;
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
  transition: color 0.4s;
}
.portfolio-header h2:hover {
  color: var(--white);
}
.portfolio-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--white);
}
.portfolio-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1rem;
}
.portfolio-header a {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #000; background: var(--white);
  text-decoration: none;
  padding: 0.8rem 2rem;
  transition: all 0.4s ease;
  font-weight: 600;
  border: 2px solid var(--white);
}
.portfolio-header a:hover {
  background: transparent;
  color: var(--white);
}
.portfolio-categories {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.cat-btn {
  padding: 0.6rem 1.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Oswald', sans-serif;
}
.cat-btn:hover, .cat-btn.active {
  background: var(--white);
  color: #000;
  border-color: var(--white);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.p-item {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.p-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.p-item.wide {
  grid-column: span 2;
  aspect-ratio: 4/3;
}
.p-item:hover {
  transform: rotateY(5deg) rotateX(-2deg) scale(1.02);
}
.p-item::before {
  content: '';
  position: absolute;
  inset:0;
  border: 2px solid transparent;
  z-index: 3;
  transition: border-color 0.4s;
}
.p-item:hover::before {
  border-color: var(--white);
}
.p-item:hover::before {
  border-color: var(--white);
}
.p-item .prl-img {
  position: absolute;
  inset: -18% 0;
  width: 100%; height: 136%;
  /* will-change: transform;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); */
}
.p-item:hover .prl-img {
  transform: scale(1.1);
}
.p-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: filter 0.6s;
}
.p-item:hover img { filter: grayscale(0%) contrast(1.1); }
.p-item-num {
  position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 2;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.15em; color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-item:hover .p-item-num {
  opacity: 1;
  transform: translateY(0);
}
.p-item-cat {
  position: absolute; top: 1.5rem; right: 1.5rem; z-index: 2;
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  background: rgba(212,185,134,0.9);
  color: #000;
  padding: 0.4rem 1rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s;
}
.p-item:hover .p-item-cat {
  opacity: 1;
  transform: translateY(0);
}
.p-item-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 40%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}
.p-item:hover .p-item-overlay { opacity: 1; }
.p-item-overlay::after {
  content: 'View';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  transition: all 0.4s;
}
.p-item:hover .p-item-overlay::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ════════════════════════════════════════
   SECTION 05 — SERVICES
════════════════════════════════════════ */
.s-services {
  padding: 6rem 4rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.s-services::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,185,134,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.services-header {
  margin-bottom: 4rem;
  margin-right: 4rem;
  position: relative;
}
.services-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}
.services-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  color: #fff;
  letter-spacing: 0.02em;
}
.services-carousel-wrapper {
  position: relative;
  overflow: visible;
  padding: 0;
}
.services-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
  transform: scale(1);
}
.service-card.active {
  opacity: 1;
  transform: scale(1);
  border-color: var(--line);
}
.service-card:hover {
  border-color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.service-visual {
  background: rgba(212,185,134,0.05);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  min-height: 120px;
}
.service-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.service-icon-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  color: var(--white);
  transition: all 0.4s ease;
}
.service-card:hover .service-icon-wrap {
  background: var(--white);
  color: #000;
}
.service-icon-wrap svg {
  width: 28px;
  height: 28px;
}
.service-info {
  padding: 2rem 3rem 2.5rem;
}
.service-title-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.8rem;
  flex-wrap: nowrap;
}
.service-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin: 0;
  width: 40%;
}
.service-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.service-link {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.service-card:hover .service-link {
  letter-spacing: 0.3em;
}
.service-link {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.service-card:hover .service-link {
  letter-spacing: 0.3em;
}
.s-services::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,185,134,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* ════════════════════════════════════════
   BOOKING
════════════════════════════════════════ */
.s-booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.booking-left {
  padding: 6rem 5rem;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center; gap: 2rem;
}
.booking-left h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700; text-transform: uppercase; line-height: 1.05;
}
.booking-left h2 span { color: var(--white); }
.booking-left p { font-size: 0.9rem; line-height: 1.8; color: var(--muted); }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.check-list li {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.85rem; color: var(--muted);
}
.check-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--white); flex-shrink: 0;
}
.booking-right {
  padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.field-group { margin-bottom: 2rem; }
.field-label {
  display: block;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.6rem;
}
.field-input {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(255,255,255,0.12);
  color: var(--white); padding: 0.6rem 0;
  font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}
.field-input::placeholder { color: rgba(255,255,255,0.18); }
.field-input:focus { border-color: var(--white); }
.submit-btn {
  width: 100%; margin-top: 1.5rem; padding: 1.1rem;
  background: var(--white);  border: 2px solid var(--white); color: #000;
  font-family: 'Oswald', sans-serif; font-size: 0.85rem;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  transition: all 0.4s ease;
  cursor: pointer; transition: opacity 0.3s;
}
.submit-btn:hover { opacity: 0.85; }


/* ════════════════════════════════════════
   CONTACT & FOOTER
════════════════════════════════════════ */
.s-contact {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.contact-col {
  padding: 4rem;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-col:last-child { border-right: none; }
.contact-col .eyebrow {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--white);
}
.contact-col h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em;
}
.contact-col p { font-size: 0.85rem; line-height: 1.8; color: var(--muted); }


/* ════════════════════════════════════════
   VERTICAL SIDE TEXT
════════════════════════════════════════ */
.side-text {
  position: fixed; right: 2rem; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--muted); z-index: 50; pointer-events: none;
  display: flex; align-items: center; gap: 0.8rem;
}
.side-text::before {
  content: ''; display: block; width: 30px; height: 1px; background: var(--muted);
}

/* ════════════════════════════════════════
   REVEAL
════════════════════════════════════════ */
.will-reveal { opacity: 0; transform: translateY(50px); }



.text-gold {
    color: var(--white) !important;
}

.btn-gold {
    background-color: var(--white);
    color: var(--black);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline-gold {
    border: 2px solid var(--white);
    color: var(--white);
    transition: all 0.3s ease;
    letter-spacing: 0.2em;
}

.btn-outline-gold:hover {
    background-color: var(--white);
    color: var(--black);
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--white);
}

/* Footer */
footer {
  padding: 40px 0;
  border-top: 1px solid #333;
  text-align: center;
}

/* .fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.team-member-section {
    margin-top: 100px;
    padding: 20px 0;
}
.team-member {
    display: flex;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    justify-content: space-between;
    padding-bottom: 60px;
}
.team-member__image {
    border-radius: 100px 0 100px 0;
    width: 280px;
    height: auto;
    overflow: hidden;
}
.team-member__image  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-member__des {
    padding-top: 25px;
    width: calc(100% - 350px);
}
.follow-section{
  background: gray;
  text-align: center;
  padding: 60px;

}
.follow-section i{
  font-size: 3em;
}
.follow-section p{
padding-top: 24px;
margin: 0;
} */

.fa-instagram:hover:before {
    color: var(--white)
}
/* ================= MOBILE ================= */
@media (max-width: 992px) {
  section#home{
    padding-top: 50px;
  }
  .hero-logo { width: 240px; }

  /* Navbar layout: logo left, hamburger right */
  .navbar  .container-lg {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 16px;
    background: #000;
    width: 100%;
    padding: 12px;
    text-align: center;
  }

  .nav-link { font-size: 14px; text-align: center; }
  .team-member{
        flex-direction: column;
    align-items: center;
  } 
  .team-member .team-member__des{
    padding-left: 0;
     width: 100%;
  }

  nav { padding: 1.5rem 2rem; }
  .nav-links { display: none; }
  .hero-body { padding: 0 2rem 2.5rem; }
   .s-about .about-img-col .prl-wrap{ max-width: 400px; position: relative;}
 .s-benefits, .s-booking { grid-template-columns: 1fr; }
  .artist-hero { grid-template-columns: 1fr; gap: 2rem; padding: 0 2rem; }
  .artist-visual { height: 100vh; }
  .artist-content { padding: 5rem 0 4rem; }
  .artist-name { font-size: clamp(2.5rem, 8vw, 4rem); }
  .artist-desc { max-width: 100%;}
  .artist-stats { gap: 1.5rem; flex-wrap: wrap; }
  .artist-actions { flex-direction: column; align-items: flex-start; }
  .artist-actions.artist-actions-btns{ flex-direction: row;}
  .s-about::before { display: none; }
  .about-hero { grid-template-columns: 1fr; }
  .about-bg-image { opacity: 0.3; }
  .about-content-wrapper { grid-column: auto; padding: 4rem 2rem; }
  .about-stats { gap: 1.5rem; flex-wrap: wrap; }
  .benefits-left, .benefits-right { padding: 2rem; }
  .benefits-left { border-right: none; border-bottom: 1px solid var(--line); }
  .s-portfolio,.s-services{padding: 3rem;}
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-carousel { grid-template-columns: 1fr; }
  .services-header { margin-bottom: 2rem; }
  .portfolio-controls { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .portfolio-categories { flex-wrap: wrap; }
  .s-contact { grid-template-columns: 1fr; }
  .contact-col { border-right: none; padding: 2rem; }
  footer { flex-direction: column; gap: 1rem; padding: 2rem; text-align: center; }
  .booking-left { padding: 2rem; border-right: none; border-bottom: 1px solid var(--line); }
  .booking-right { padding: 2rem; }
  .side-text, .cursor-dot,.cursor-ring { display: none; }
}

@media (max-width: 767px){
  .hero h1 {
    font-size: 45px;
}
.s-about { grid-template-columns: 1fr; }

  .benefit-list,
  .service-list,
  .check-list{
    padding-left: 0;
  }
}

@media (max-width: 575px){
    .hero-logo {
        width: 180px;
    }
    .hero-content{
      padding: 50px 0;
    }
    .hero h1 {
      font-size: 50px;
    }
    .hero p {
    font-size: 10px !important;
}
.hero-content a{
  font-size: 12px;
}
.tc-slide{
    width: 95%;
}
    section {
      padding-block: 1rem;
    }
    .s-about{ padding-top: 0 !important;}
    .about-img-col .prl-wrap { max-width: 100%;
    height: auto;}
    .contact-col,
    .booking-left,
    .booking-right,
    .benefits-left,
    .benefits-right,
    .about-text-col {
      padding-inline: 1rem;
    }
    .s-services,
    .s-portfolio {
      padding-inline: 2rem;
    }
    
    .s-services-head {
      margin-bottom: 0;
    }
    .team-member-section {
      margin-top: 50px;
      padding: 20px 0 0;
    }
    .team-member__image {
      width: auto;
    }
    .team-member {
      padding-bottom: 0;
    }
    section p {
      font-size: 14px !important;
    }
    .display-6 {
      font-size: 26px;
    }
    .portfolio-grid {
      grid-template-columns: 1fr;
    }
    .portfolio-header,
    .s-services-head {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
    .about-text-col,
    .benefits-left,
    .booking-left {
      gap: 4px;
    }
    .s-services {
      padding-top: 6rem;
  }
  .artist-img-wrapper {
    width: 70%;}
    .btn-artist-instagram,.btn-artist-book{
      padding: .5rem;
    }
.p-item{
  border: 1px solid var(--white);
}
  
}


/* ════════════════════════════════════════
   ACHIEVEMENTS (3D Card Slider)
════════════════════════════════════════ */
.s-achievements {
  padding: 6rem 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.s-achievements::before {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
  pointer-events: none;
}

.achievements-header {
  margin-bottom: 3rem;
  padding: 0 4rem;
  position: relative;
}

.achievements-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}

.achievements-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  color: #fff;
  letter-spacing: 0.02em;
}

.achieve-slider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  perspective: 1000px;
}

.achieve-slide-item {
  position: absolute;
  width: 280px;
  height: 380px;
  left: 50%;
  top: 0;
  margin-left: -140px;
  border-radius: 12px;
  background: var(--bg2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.achieve-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.achieve-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.achieve-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) brightness(0.75);
  transition: all 0.5s ease;
}

.achieve-slide-item:hover .achieve-card-img img {
  filter: grayscale(60%) brightness(0.9);
  transform: scale(1.05);
}

.achieve-card-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.achieve-year {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.15em;
}

.achieve-position {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  background: var(--white);
  align-self: flex-start;
}

.achieve-award {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0.3rem 0 0;
  letter-spacing: 0.02em;
}

.achieve-event {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.achieve-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(12,12,12,0.8);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.achieve-btn:hover {
  background: var(--white);
  color: #000;
  border-color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.achieve-btn svg {
  width: 22px;
  height: 22px;
}

.achieve-prev {
  left: 40px;
}

.achieve-next {
  right: 40px;
}

/* ════════════════════════════════════════
   TESTIMONIALS (Review Carousel)
════════════════════════════════════════ */
.s-testimonials {
  padding: 6rem 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.s-testimonials::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-header {
  margin-bottom: 3.5rem;
  padding: 0 2rem;
}

.testimonials-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}

.testimonials-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  color: #fff;
  letter-spacing: 0.02em;
}

.testimonial-carousel {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 1200px){
    .testimonial-carousel{
        gap: 13.25rem;
    }
}
.tc-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.tc-arrow:hover {
  background: var(--white);
  color: #000;
  border-color: var(--white);
}

.tc-arrow svg {
  width: 18px;
  height: 18px;
}

.tc-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.tc-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.tc-slide {
  min-width: 20%;
  max-width: calc(100% - 20px);
  width: 98%;
  flex-shrink: 0;
  padding: 0 20px;
  margin: 0 10px;
  border-radius: 16px;
  box-shadow: rgb(246 246 255 / 25%) 0px 30px 60px -12px inset, rgb(15 15 15 / 30%) 0px 18px 36px -18px inset;
}

.tc-review {
  position: relative;
  padding: 2rem 1rem;
}

.tc-big-quote {
  position: absolute;
  top: 0;
  left: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  user-select: none;
  pointer-events: none;
}

.tc-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--white);
  font-style: italic;
  font-weight: 300;
  margin: 0;
  position: relative;
  z-index: 1;
}

.tc-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.tc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  flex-shrink: 0;
}

.tc-review:hover .tc-avatar {
  filter: grayscale(0%);
}

.tc-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.tc-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tc-stars {
  display: flex;
  gap: 2px;
}

.tc-stars i {
  color: var(--white);
  font-size: 0.6rem;
  opacity: 0.9;
}

.tc-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.25rem;
}

.tc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.tc-dot.active {
  background: var(--white);
  width: 20px;
  border-radius: 3px;
}

.tc-dot:hover:not(.active) {
  background: rgba(255,255,255,0.35);
}


@media (max-width: 480px) {
  /* ===== MEET THE ARTIST ===== */
      .hero-logo {
        width: 140px;
    }
    .hero-content{
        padding: 0 20px;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 50px;
    }
.hero h1 {
  font-size: clamp(28px, 8vw, 80px);
  white-space: normal;
}
.about-content-wrapper {
        padding: 2rem;
    }
    .benefits-left{
      padding-block: 0;
    }
  .artist-hero {
    padding: 0 1rem;
    gap: 1.5rem;
  }
  .artist-visual {
    height: 40vh;
    min-height: 300px;
  }
  .artist-img-wrapper {
    width: 85%;
    max-width: 260px;
    margin: 0 auto;
  }
   
  .artist-img-frame {
    transform: rotate(0deg);
  }
  .artist-exp-badge {
    bottom: 15px;
    right: 10px;
    padding: 0.8rem 1rem;
  }
  .exp-number {
    font-size: 1.5rem;
  }
  .artist-decor-circle,
  .artist-decor-line {
    display: none;
  }
  .artist-content {
    padding: 5rem 0 3rem;
    text-align: center;
    align-items: center;
  }
  .artist-name {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .artist-stats {
    gap: 1rem;
    justify-content: center;
  }
  .stat-num {
    font-size: 1.8rem;
  }
  .artist-actions {
    align-items: center;
  }
.s-about,.benefits-left,.testimonials-header{
  text-align: center;
}
.about-gold-line{
  margin: 0 auto;
}
  /* ===== PORTFOLIO ===== */
  .s-portfolio {
    padding: 3rem 1rem;
  }
  .portfolio-header {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .portfolio-controls {
    align-items: center;
  }
  .portfolio-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .p-item {
    aspect-ratio: 3/4;
  }
  .p-item.tall {
    grid-row: auto;
    aspect-ratio: 3/4;
  }
  .p-item.wide {
    grid-column: auto;
    aspect-ratio: 3/4;
  }
  
  .p-item-cat {
    opacity: 1;
    transform: translateY(0);
  }
  .p-item-num {
    opacity: 1;
    transform: translateY(0);
  }
   .p-item .prl-img {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  /* ===== SERVICES ===== */
  .s-services {
    padding: 4rem 0.75rem !important;
  }
  .services-header {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-align: center !important;
    margin-bottom: 4rem !important;
    margin-right: 0 !important;
    padding: 0 0.5rem;
  }
  .services-header h2 {
    font-size: 1.75rem !important;
    line-height: 1.1 !important;
  }
  .services-eyebrow {
    font-size: 0.6rem !important;
  }
  .services-carousel-wrapper {
    overflow: visible !important;
    padding: 0 0.5rem;
  }
  .services-carousel {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    justify-content: center;
    align-items: center;
    transform: none !important;
    width: 100% !important;
    grid-template-columns: none !important;
  }
  .service-card {
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    opacity: 1 !important;
    transform: scale(1) !important;
    border-color: var(--line) !important;
    overflow: hidden !important;
    height: auto !important;
    flex-shrink: 0;
    margin-bottom: 0 !important;
    display: block !important;
    border-radius: 4px;
  }
  .service-card.active {
    opacity: 1 !important;
    transform: scale(1) !important;
    border-color: var(--white) !important;
  }
  .service-card:hover {
    transform: translateY(-2px) !important;
  }
  .service-visual {
    padding: 1rem !important;
    min-height: auto !important;
    border-bottom: 1px solid var(--line);
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.75rem;
  }
  .service-num {
    font-size: 1.75rem !important;
  }
  .service-icon-wrap {
    width: 45px !important;
    height: 45px !important;
  }
  .service-icon-wrap svg {
    width: 22px !important;
    height: 22px !important;
  }
  .service-info {
    padding: 1rem !important;
    height: auto !important;
    display: block !important;
  }
  .service-title-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.4rem !important;
    flex-wrap: wrap !important;
    margin-bottom: 0 !important;
    width: 100% !important;
  }
  .service-title {
    font-size: 1.1rem !important;
    white-space: normal !important;
    line-height: 1.3 !important;
    word-wrap: break-word;
    margin: 0 !important;
    display: block !important;
    width: 100% !important;
    color: #fff !important;
  }
  .service-desc {
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
    display: block !important;
    margin-top: 0.5rem !important;
    flex: none !important;
    color: var(--muted) !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .service-link {
    display: inline-block !important;
    margin-top: 0.75rem !important;
    font-size: 0.6rem !important;
  }
  .carousel-dots {
    display: none !important;
  }

  .artist-visual {
    height: 40vh;
    min-height: 300px;
  }
  .artist-img-wrapper {
    width: 85%;
    max-width: 260px;
    margin: 0 auto;
  }
  .artist-img-frame {
    transform: rotate(0deg);
  }
  .artist-exp-badge {
    bottom: 15px;
    right: 10px;
    padding: 0.8rem 1rem;
  }
  .exp-number {
    font-size: 1.5rem;
  }
  .artist-decor-circle,
  .artist-decor-line {
    display: none;
  }

  .artist-name {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .artist-stats {
    gap: 1rem;
    justify-content: center;
  }
  .stat-num {
    font-size: 1.8rem;
  }
  .artist-actions {
    align-items: center;
  }

  /* ===== PORTFOLIO ===== */
  .s-portfolio {
    padding: 1rem;
  }
  .portfolio-header {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .portfolio-controls {
    align-items: center;
  }
  .portfolio-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .p-item {
    aspect-ratio: 3/4;
  }
  .p-item.tall {
    grid-row: auto;
    aspect-ratio: 3/4;
  }
  .p-item.wide {
    grid-column: auto;
    aspect-ratio: 3/4;
  }

  .p-item-cat {
    opacity: 1;
    transform: translateY(0);
  }
  .p-item-num {
    opacity: 1;
    transform: translateY(0);
  }

  
  /* ===== ACHIEVEMENTS ===== */
  .s-achievements {
    padding: 2.5rem 0 0!important;
  }
  .achievements-header {
    padding: 0 1rem !important;
    margin-bottom: 4rem !important;
    text-align: center !important;
  }
  .achievements-header h2 {
    font-size: 1.5rem !important;
  }
  .achieve-slider {
    height: 360px !important;
  }
  .achieve-slide-item {
    width: 220px !important;
    height: 320px !important;
    margin-left: -110px !important;
  }
  .achieve-card-img {
    height: 160px !important;
  }
  .achieve-card-body {
    padding: 1rem !important;
  }
  .achieve-award {
    font-size: 0.9rem !important;
  }
  .achieve-btn {
    width: 36px !important;
    height: 36px !important;
  }
  .achieve-btn svg {
    width: 16px !important;
    height: 16px !important;
  }
  .achieve-prev {
    left: 5px !important;
  }
  .achieve-next {
    right: 5px !important;
  }

  /* ===== TESTIMONIALS ===== */
  .s-testimonials {
    padding: 3rem 0 !important;
  }
  .testimonials-header {
    padding: 0 1rem !important;
    margin-bottom: 4rem !important;
  }
  .testimonials-header h2 {
    font-size: 1.75rem !important;
  }
  .testimonial-carousel {
    padding: 0 0.5rem !important;
    gap: 0.5rem !important;
  }
  .tc-slide{padding: 0 !important;}
  .tc-arrow {
    width: 32px !important;
    height: 32px !important;
  }
  .tc-arrow svg {
    width: 14px !important;
    height: 14px !important;
  }
  .tc-text {
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
  }
  .tc-big-quote {
    font-size: 4rem !important;
  }
  .tc-avatar {
    width: 30px !important;
    height: 30px !important;
  }
  .tc-name {
    font-size: 0.75rem !important;
  }
  .tc-stars i {
    font-size: 0.5rem !important;
  }


h2 {
  font-size: clamp(2rem, 4vw, 4rem)!important;
}

}
